Re: [U-Boot] Merging the pogo_e02 and sheevaplug code

2012-08-02 Thread Prafulla Wadaskar
> -Original Message- > From: Karl O. Pinc [mailto:k...@meme.com] > Sent: 02 August 2012 23:07 > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; david.c.pu...@gmail.com > Subject: Re: Merging the pogo_e02 and sheevaplug code > > On 08/02/2012 12:10:28 PM, Prafulla Wadaskar wrote: > > >

Re: [U-Boot] [PATCH v2] Cosmetic doc typo fixes to the kwbimage feature docs

2012-08-02 Thread Prafulla Wadaskar
> -Original Message- > From: Karl O. Pinc [mailto:k...@meme.com] > Sent: 03 August 2012 07:40 > To: Prafulla Wadaskar; u-boot@lists.denx.de > Cc: Karl O. Pinc > Subject: [PATCH v2] Cosmetic doc typo fixes to the kwbimage feature > docs > > > Signed-off-by: Karl O. Pinc > --- > board/M

Re: [U-Boot] [PATCH] cosmetic: Better explain how to use the kirkwood kwbimage.cfg file.

2012-08-02 Thread Prafulla Wadaskar
> -Original Message- > From: Karl O. Pinc [mailto:k...@meme.com] > Sent: 03 August 2012 08:22 > To: Prafulla Wadaskar; u-boot@lists.denx.de > Cc: Karl O. Pinc > Subject: [PATCH] cosmetic: Better explain how to use the kirkwood > kwbimage.cfg file. > > Hi, > > This adds to the documenati

Re: [U-Boot] [PATCH v3 5/7] dfu:cmd: Support for DFU u-boot command

2012-08-02 Thread Lukasz Majewski
Dear Stephen Warren, > Again, this is confusing two different kinds of partitions. > > There are HW-level partitions/regions/areas within the eMMC HW itself. > You need to send commands to the eMMC device to select whether > read/write commands act on the boot0/boot1/general*/user HW partition.

[U-Boot] [PATCH V3 4/4] ARM: add Raspberry Pi model B board, using BCM2835 SoC

2012-08-02 Thread Stephen Warren
The Raspberry Pi model B uses the BCM2835 SoC, has 256MB of RAM, contains an SMSC 9512 USB LAN/Hub chip, and various IO connectors. For more details, see http://www.raspberrypi.org/. Various portions (cache enable, MACH_TYPE setup, RAM size limit, stack relocation to top of RAM) extracted from wor

[U-Boot] [PATCH V3 2/4] ARM: arm1176: enable instruction cache in arch_cpu_init()

2012-08-02 Thread Stephen Warren
Note that this affects all users of the ARM1176 CPU that enable CONFIG_ARCH_CPU_INIT, not just the BCM2835 SoC, potentially such as tnetv107x. Cc: Cyril Chemparathy Signed-off-by: Stephen Warren --- v3: No change, re-ordered patch v2: No change --- arch/arm/cpu/arm1176/cpu.c |7 +++ 1 f

[U-Boot] [PATCH V3 3/4] ARM: add basic support for the Broadcom BCM2835 SoC

2012-08-02 Thread Stephen Warren
This SoC is used in the Raspberry Pi, for example. For more details, see: http://www.broadcom.com/products/BCM2835 http://www.raspberrypi.org/wp-content/uploads/2012/02/BCM2835-ARM-Peripherals.pdf. Initial support is enough to boot to a serial console, execute a minimal set of U-Boot commands, do

[U-Boot] [PATCH V3 1/4] README: fix references to config_cmd_default.h

2012-08-02 Thread Stephen Warren
All usage of config_cmd_default.h uses <> for the include statement. Update the README to do the same, rather than using "". Signed-off-by: Stephen Warren --- v3: No change v2: New patch --- README |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index d

Re: [U-Boot] Cosmetic doc typo fixes to the kwbimage feature docs

2012-08-02 Thread Karl O. Pinc
On 07/30/2012 01:36:07 AM, Prafulla Wadaskar wrote: > > > > -Original Message- > > From: u-boot-boun...@lists.denx.de [mailto:u-boot- > > boun...@lists.denx.de] On Behalf Of Karl O. Pinc > > Sent: 27 July 2012 20:23 > > To: u-boot@lists.denx.de > > Subject: Re: [U-Boot] Cosmetic doc typo

Re: [U-Boot] [PATCH v2 3/4] EXYNOS: mmc: support DesignWare Controller for Samsung-SoC

2012-08-02 Thread Minkyu Kang
On 3 July 2012 16:58, Jaehoon Chung wrote: > Support DesignWare MMC Controller for Samsung Specific. > > Signed-off-by: Jaehoon Chung > Signed-off-by: Kyungmin Park > Signed-off-by: Rajeshawari Shinde > --- > arch/arm/include/asm/arch-exynos/dwmmc.h | 36 ++ > drivers/mmc/exy

Re: [U-Boot] [PATCH v2 4/4] mmc: dw-mmc: add dw-mmc's confiuration at Makefile

2012-08-02 Thread Minkyu Kang
Jaehoon, On 3 July 2012 16:58, Jaehoon Chung wrote: > Signed-off-by: Jaehoon Chung > Signed-off-by: Kyungmin Park > --- > drivers/mmc/Makefile |3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) Need rebase this patch. > > diff --git a/drivers/mmc/Makefile b/drivers/mmc/Makefile

[U-Boot] [PATCH] cosmetic: Reference nand monitor commands in U-Boot README

2012-08-02 Thread Karl O. Pinc
Signed-off-by: Karl O. Pinc --- README |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/README b/README index fb9d904..6bb5992 100644 --- a/README +++ b/README @@ -3725,6 +3725,7 @@ saveenv - save environment variables to persistent storage protect - enable or disable FL

[U-Boot] [PATCH] cosmetic: Better explain how to use the kirkwood kwbimage.cfg file.

2012-08-02 Thread Karl O. Pinc
Hi, This adds to the documenation to explain how to use the kwbimage.cfg file necessary to generate an image with prefixed board setup values necessary for the kirkwood boards. Signed-off-by: Karl O. Pinc --- doc/README.kwbimage | 17 ++--- 1 files changed, 14 insertions(+), 3 del

[U-Boot] [PATCH v2] Cosmetic doc typo fixes to the kwbimage feature docs

2012-08-02 Thread Karl O. Pinc
Signed-off-by: Karl O. Pinc --- board/Marvell/sheevaplug/kwbimage.cfg |4 ++-- doc/README.kwbimage |2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/board/Marvell/sheevaplug/kwbimage.cfg b/board/Marvell/sheevaplug/kwbimage.cfg index 3b9c53f..55be3a3

[U-Boot] [PATCH v2] Cosmetic doc typo fixes to the kwbimage feature docs

2012-08-02 Thread Karl O. Pinc
This is a resend of the first email I tried sending to the list. I don't believe the original email went through, probably due to my weak git skills. This fixes a few obvious typos in the kirkwood docs. Karl O. Pinc (1): Cosmetic doc typo fixes to the kwbimage feature docs board/Marvell/shee

Re: [U-Boot] Board-specific commands unintentionally linked into SPL?

2012-08-02 Thread Tyler Olmstead
Hi all, Apologies for the delay in response, I've been working on a high priority issue. On Thu, Jul 26, 2012 at 4:02 PM, Christian Riesch wrote: > Hi, > > > On Thursday, July 26, 2012, Aneesh V wrote: >> >> Hi Tyler, >> >> On 07/26/2012 11:54 AM, Tyler Olmstead wrote: >>> >>> Hi Christian, >>>

Re: [U-Boot] [PATCH v2 1/2] sf: stmicro: support JEDEC standard two-byte signature

2012-08-02 Thread Mike Frysinger
On Thursday 02 August 2012 14:47:29 Stephan Linz wrote: > There are more than the M25Pxx serial flashs that can be > used with the stmicro driver, for example: the M25PXxx or > N25Qxx serie. All these chips have burned in the original > stmicro manufacture id 0x20 together with a standard > two-byt

Re: [U-Boot] [PATCH 2/7 V4] SPI: Add W25Q32 to Winbond SPI flash table

2012-08-02 Thread Mike Frysinger
On Thursday 02 August 2012 11:19:16 Mike Frysinger wrote: > On Thursday 02 August 2012 03:25:05 Rajeshwari Shinde wrote: > > SMDK EVT1 has a different Winbond part, added its part details > > to the SPI flash table > > thanks, merged in my sf branch actually, you didn't rebase it. half the fiel

[U-Boot] [PATCH] input: key_matrix: fix header inclusion

2012-08-02 Thread Stephan Linz
On Microblaze with device tree support enabled we run into the error below. I'm not sure, but I think that all source code should include at least the common.h and just this fix the problem on Microblaz architecture. The error is: In file included from key_matrix.c:29: include/malloc.h:364: erro

Re: [U-Boot] Testing report for i.MX51 using Linaro/Ubuntu gcc 4.6.3 (from Precise repositories), libgcc, etc.

2012-08-02 Thread Wolfgang Denk
Dear Matt, In message you wrote: > Marek Vasut insists I report this to the list, so here goes; Indeed such problem reports are valuable information, so thanks for the message. > This is not the first problem we've ever had with the Linaro gcc > toolchain, especially not with 4.6. So far, reve

Re: [U-Boot] [PATCH v4 1/2] tools, config.mk: add binutils-version

2012-08-02 Thread Wolfgang Denk
Dear Allen Martin, In message <20120802171230.gc7...@nvidia.com> you wrote: > > Challenge accepted ... > tmp=$(mktemp) > echo > '>>[<>-]>>+[>+<-]>+>,[>>[<>-]>>+[>\ > +<-]>+>,]<<[<<]>>[<[<+>-]>[<<-<+>>>-]<<<[>>>+<<<-]>[>+<[-]]\ >

Re: [U-Boot] add more function in hello_world.c for standalone application

2012-08-02 Thread Wolfgang Denk
Dear Kassey Lee, In message you wrote: > > I've tried the examples/standalone/hello_world.c, it > works on my platform! Good. > but when i add more functions in > examples/standalone/hello_world.c, for example > it will take the test function as the entr

[U-Boot] [PATCH v2 2/2] sf: stmicro: add support N25Q128 parts

2012-08-02 Thread Stephan Linz
Adds support for Numonyx's N25Q128 SPI flash. These devices are used on (among others) Avnet Spartan-6 LX9 micro-evaluation boards. Tested with "sf" commands and CONFIG_ENV_IS_IN_SPI_FLASH. Signed-off-by: Stephan Linz --- v2: rebase to master sha1:56249fe --- drivers/mtd/spi/stmicro.c |6 +++

[U-Boot] [PATCH v2 1/2] sf: stmicro: support JEDEC standard two-byte signature

2012-08-02 Thread Stephan Linz
There are more than the M25Pxx serial flashs that can be used with the stmicro driver, for example: the M25PXxx or N25Qxx serie. All these chips have burned in the original stmicro manufacture id 0x20 together with a standard two-byte signature. In preperation to support all these chips the stmicr

Re: [U-Boot] [PATCH 02/17] am335x_evm: Update config for common usage

2012-08-02 Thread Tom Rini
On Mon, Jul 30, 2012 at 09:48:48AM -0700, Tom Rini wrote: > - Add default commands > - Add HUSH parser > - Make environment, malloc areas larger > - Add ATAGS and OF_LIBFDT > - Add defaults to boot ramdisk and MMC, use uEnv.txt > > Signed-off-by: Tom Rini I plan to commit this with the followin

[U-Boot] [PATCH] PPC temac phy probe unsigned int underflow fix.

2012-08-02 Thread hpeyerl
Signed-off-by: hpey...@beer.org (Herb Peyerl) Apologies for the non-git formatted drive-by patch. If, during phy detection, your phy does not respond, then ll_temac_phy_addr() will underflow due to the declaration of local variable 'phy' as an unsigned int. --- drivers/net/xilinx_ll_temac_m

Re: [U-Boot] [PATCH 1/2] GPIO: Extend the cmd_gpio API by gpio_{from, to}_string()

2012-08-02 Thread Mike Frysinger
On Thursday 02 August 2012 06:05:14 Marek Vasut wrote: > Dear Mike Frysinger, > > > On Monday 14 May 2012 07:31:35 Marek Vasut wrote: > > > Dear Mike Frysinger, > > > > > > > On Tuesday 01 May 2012 16:50:14 Marek Vasut wrote: > > > > > The gpio_from_string() call shall parse the incoming GPIO nam

[U-Boot] Testing report for i.MX51 using Linaro/Ubuntu gcc 4.6.3 (from Precise repositories), libgcc, etc.

2012-08-02 Thread Matt Sealey
Marek Vasut insists I report this to the list, so here goes; Compiling a U-Boot for i.MX51 here (for the Efika MX) basically doesn't operate well. Among other things, we got data aborts in several places, most annoyingly sometime after boot_relocate_fdt. This was using a 64-bit Ubuntu Precise Pang

Re: [U-Boot] [PATCH] config: Always use GNU ld

2012-08-02 Thread Mike Frysinger
On Thursday 02 August 2012 12:19:34 Otavio Salvador wrote: > This patch makes sure that we always use the GNU ld. U-Boot uses certain > construct e.g. OVERLAY which are not implemented in gold therefore it > always needs GNU ld for linking. > > It works well if default linker in toolchain is GNU l

Re: [U-Boot] [PATCH v3 5/7] dfu:cmd: Support for DFU u-boot command

2012-08-02 Thread Mike Frysinger
On Thursday 02 August 2012 03:16:18 Marek Vasut wrote: > Dear Mike Frysinger, > > > On Tuesday 31 July 2012 02:37:01 Lukasz Majewski wrote: > > > --- /dev/null > > > +++ b/common/cmd_dfu.c > > > > > > + static char *s = "dfu"; > > > > no need for this to be static > > It can be pulled out of th

Re: [U-Boot] Merging the pogo_e02 and sheevaplug code

2012-08-02 Thread Karl O. Pinc
On 08/02/2012 12:10:28 PM, Prafulla Wadaskar wrote: > > > > -Original Message- > > From: Karl O. Pinc [mailto:k...@meme.com] > > Sent: 01 August 2012 21:13 > > To: u-boot@lists.denx.de; david.c.pu...@gmail.com; Prafulla > Wadaskar > > Subject: Merging the pogo_e02 and sheevaplug code > >

Re: [U-Boot] [PATCH] image/FIT: Add ramdisk load, entry address and OS tag inclusion

2012-08-02 Thread jagan
Any point to consider this..or we have any solution that may not require this change? Regards, Jagan. On Sat, Jul 28, 2012 at 1:32 PM, Jagan <402ja...@gmail.com> wrote: > From: Jagannadha Sutradharudu Teki <402ja...@gmail.com> > > This patch adds support to include Load, Entry address and OS tag

Re: [U-Boot] [PATCH v4 1/2] tools, config.mk: add binutils-version

2012-08-02 Thread Allen Martin
On Wed, Aug 01, 2012 at 04:01:41PM -0700, Mike Frysinger wrote: > On Wednesday 01 August 2012 18:46:18 Allen Martin wrote: > > But maybe I'll rewrite it in prolog just to mess with you guys > > i'd ack it if it were written in bf > -mike > Challenge accepted #!/bin/sh # # binutils-version [-p]

Re: [U-Boot] Merging the pogo_e02 and sheevaplug code

2012-08-02 Thread Prafulla Wadaskar
> -Original Message- > From: Karl O. Pinc [mailto:k...@meme.com] > Sent: 01 August 2012 21:13 > To: u-boot@lists.denx.de; david.c.pu...@gmail.com; Prafulla Wadaskar > Subject: Merging the pogo_e02 and sheevaplug code > > Hi, > > I'm looking at possibly merging the pogo_e02 and sheevaplu

[U-Boot] [PATCH] config: Always use GNU ld

2012-08-02 Thread Otavio Salvador
From: Khem Raj This patch makes sure that we always use the GNU ld. U-Boot uses certain construct e.g. OVERLAY which are not implemented in gold therefore it always needs GNU ld for linking. It works well if default linker in toolchain is GNU ld but in some cases we can have gold to be the defau

Re: [U-Boot] [PATCH v3 5/7] dfu:cmd: Support for DFU u-boot command

2012-08-02 Thread Stephen Warren
On 08/02/2012 02:31 AM, Lukasz Majewski wrote: > On Wed, 01 Aug 2012 11:13:14 -0600 > Stephen Warren wrote: > >> On 08/01/2012 01:16 AM, Lukasz Majewski wrote: >>> Hi Stephen Warren, >>> On 07/31/2012 12:37 AM, Lukasz Majewski wrote: > Support for u-boot's "dfu [list]" command. >>

[U-Boot] Problem booting linux kernel due to garbled available machine support

2012-08-02 Thread Dallas Clement
Hello All, I'm having a problem booting a linux kernel built with Marvell buildroot-sdk-6.0 for an Armada XP development board (DB-78460-BP). The kernel messages indicate that the machine id is not recognized or not supported, but I believe this is because the available machine support is all junk

Re: [U-Boot] [PATCH v3 5/7] dfu:cmd: Support for DFU u-boot command

2012-08-02 Thread Lukasz Majewski
Dear Marek Vasut, > Dear Mike Frysinger, > > > On Tuesday 31 July 2012 02:37:01 Lukasz Majewski wrote: > > > --- /dev/null > > > +++ b/common/cmd_dfu.c > > > > > > + static char *s = "dfu"; > > > > no need for this to be static > > It can be pulled out of the function and be made into const st

Re: [U-Boot] [PATCH 5/7 V4] SPI: Add SPI Driver for EXYNOS.

2012-08-02 Thread Mike Frysinger
Acked-by: Mike Frysinger -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 2/7 V4] SPI: Add W25Q32 to Winbond SPI flash table

2012-08-02 Thread Mike Frysinger
On Thursday 02 August 2012 03:25:05 Rajeshwari Shinde wrote: > SMDK EVT1 has a different Winbond part, added its part details > to the SPI flash table thanks, merged in my sf branch -mike signature.asc Description: This is a digitally signed message part. ___

Re: [U-Boot] [PATCH v3 4/7] dfu: MMC specific routines for DFU operation

2012-08-02 Thread Lukasz Majewski
Dear Mike Frysinger, > On Tuesday 31 July 2012 02:37:00 Lukasz Majewski wrote: > > --- /dev/null > > +++ b/drivers/dfu/dfu_mmc.c > > > > +static int mmc_block_op(enum dfu_mmc_op op, struct dfu_entity *dfu, > > + void *buf, long *len) > > +{ > > + ALLOC_CACHE_ALIGN_BUFFER(char,

Re: [U-Boot] [PATCH] at91: Add support for taskit AT91SAM9G20 boards.

2012-08-02 Thread Markus Hubig
On Wed, Aug 01, 2012 at 11:58:22AM +0200, Andreas Bießmann wrote: > On 30.07.12 20:01, Markus Hubig wrote: > > > > +int board_early_init_f(void) > > +{ > > + struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC; > > + > > + /* Enable clocks for all PIOs */ > > + writel((1 << ATMEL_ID_P

[U-Boot] [PATCHv3] at91: Add support for taskit AT91SAM9G20 boards.

2012-08-02 Thread Markus Hubig
This adds support for the AT91SAM9G20 boards by taskit GmbH. Both boards, Stamp9G20 and PortuxG20, are integrated in one file. PortuxG20 is basically a SBC built around the Stamp9G20. Signed-off-by: Markus Hubig Cc: Andreas Bießmann --- MAINTAINERS| 16 ++- board/taski

Re: [U-Boot] [PATCH v3 3/7] dfu: DFU backend implementation

2012-08-02 Thread Lukasz Majewski
Dear Mike Frysinger, > On Tuesday 31 July 2012 02:36:59 Lukasz Majewski wrote: > > --- /dev/null > > +++ b/drivers/dfu/dfu.c > > > > +static int dfu_find_alt_num(char *s) > > const char *s Good point. > > > +{ > > + int i = 0; > > + > > + for (; *s; s++) > > + if (*s == ';') > > +

Re: [U-Boot] [PATCH v5] Corrupted NAND Flash access on KARO TX25 modules.

2012-08-02 Thread Benoît Thébaudeau
Dear Daniel, Scott, On Thu, Aug 2, 2012 at 01:28:08 PM, Benoît Thébaudeau wrote: > On Thu, Aug 2, 2012 at 01:17:07 PM, Daniel Gachet wrote: > > The mxc_nand driver uses the symmetric mode to access the NAND > > Flash, > > but the > > devices populated on the KARO TX25 only support ann asymmetic mo

Re: [U-Boot] [PATCH] at91: Add support for taskit AT91SAM9G20 boards.

2012-08-02 Thread Markus Hubig
On Wed, Aug 01, 2012 at 10:21:04PM +0200, Andreas Bießmann wrote: > On 01.08.12 21:28, Markus Hubig wrote: > > On Wed, Aug 01, 2012 at 11:58:22AM +0200, Andreas Bießmann wrote: > >>> + /* Need to reset PHY -> 500ms reset */ > >>> + writel(AT91_RSTC_KEY | AT91_RSTC_MR_ERSTL(13) | > >>> + AT9

Re: [U-Boot] i.MX35PDK: Starting U-Boot from serial NOR-Flash

2012-08-02 Thread Stefano Babic
On 02/08/2012 14:55, Fabio Estevam wrote: > On 8/2/12, Michael Hornung wrote: >> Hi Fabio, >> Hi Michael, >> Starting kernel ... >> >> Uncompressing >> Linux.. >>

Re: [U-Boot] i.MX35PDK: Starting U-Boot from serial NOR-Flash

2012-08-02 Thread Fabio Estevam
On 8/2/12, Michael Hornung wrote: > Hi Fabio, > >>> >>> Have you had any progress on this? >> > > I had some progress on my issue, here a summary of what I did: > > - I configured a SD-Card as described in doc/README.imximage > - I did the following changes to the U-Boot sources: > > +++ b/board/f

Re: [U-Boot] [PATCH v5] Corrupted NAND Flash access on KARO TX25 modules.

2012-08-02 Thread Benoît Thébaudeau
Dear Daniel, On Thu, Aug 2, 2012 at 01:17:07 PM, Daniel Gachet wrote: > The mxc_nand driver uses the symmetric mode to access the NAND Flash, > but the > devices populated on the KARO TX25 only support ann asymmetic mode > (MX25: bit 8 within NAND_FLAHS_CONFIG1 register cleared). > > This patch e

[U-Boot] [PATCH v5] Corrupted NAND Flash access on KARO TX25 modules.

2012-08-02 Thread Daniel Gachet
The mxc_nand driver uses the symmetric mode to access the NAND Flash, but the devices populated on the KARO TX25 only support ann asymmetic mode (MX25: bit 8 within NAND_FLAHS_CONFIG1 register cleared). This patch enables to selected the NAND Flash access mode with the configuration flag CONFIG_SY

Re: [U-Boot] [PATCH v3 2/7] dfu:usb: DFU USB function (f_dfu) support for g_dnl composite gadget

2012-08-02 Thread Lukasz Majewski
Dear Mike, > On Tuesday 31 July 2012 02:36:58 Lukasz Majewski wrote: > > --- /dev/null > > +++ b/drivers/usb/gadget/f_dfu.c > > > > +static struct usb_interface_descriptor dfu_intf_runtime = { > > can this be made const ? Unfortunately those structs cannot be const, since some of their fields ar

Re: [U-Boot] [PATCHv2] at91: Add support for taskit AT91SAM9G20 boards.

2012-08-02 Thread Markus Hubig
On Wed, Aug 01, 2012 at 10:59:10PM +0200, Andreas Bießmann wrote: > On 01.08.12 21:57, Markus Hubig wrote: > > +Markus Hubig > > + > > + STAMP9G20 ARM926EJS > > + > > Ilko Iliev > > unfortunately Ilko Iliev is wrong here ... this is the PPC section (all > these MPCxx). About line 566 be

Re: [U-Boot] [PATCH 1/2] GPIO: Extend the cmd_gpio API by gpio_{from, to}_string()

2012-08-02 Thread Marek Vasut
Dear Mike Frysinger, > On Monday 14 May 2012 07:31:35 Marek Vasut wrote: > > Dear Mike Frysinger, > > > > > On Tuesday 01 May 2012 16:50:14 Marek Vasut wrote: > > > > The gpio_from_string() call shall parse the incoming GPIO name taken > > > > from the command line and return the GPIO number used

Re: [U-Boot] [PATCH v3 1/7] dfu:usb: Support for g_dnl composite download gadget.

2012-08-02 Thread Lukasz Majewski
Hi Mike, > On Tuesday 31 July 2012 02:36:57 Lukasz Majewski wrote: > > --- /dev/null > > +++ b/drivers/usb/gadget/g_dnl.c > > > > +static const struct usb_descriptor_header *otg_desc[] = { > > + (struct usb_descriptor_header *) &(struct > > usb_otg_descriptor){ > > since you're just casting awa

[U-Boot] [PATCH v2 4/7] powerpc/82xx: move km/km82xx-common.h within km82xx.h

2012-08-02 Thread Gerlando Falauto
The only file including km82xx-common.h is km82xx.h. So there is no need to have it as a separate file. Signed-off-by: Gerlando Falauto --- Changes from v1: switched to git v1.7.10.4, used git format-patch -M -C -B --- include/configs/{km/km82xx-common.h => km82xx.h} | 128 +++

Re: [U-Boot] [PATCH 4/7] powerpc/82xx: move km/km82xx-common.h within km82xx.h

2012-08-02 Thread Gerlando Falauto
On 07/30/2012 09:12 PM, Wolfgang Denk wrote: Dear Gerlando, In message<5016d241.4030...@keymile.com> you wrote: Please also try with -M -C and see if this changes anything. For this one patch I can't get git to detect renames. Neither can I. Thanks for trying, though. It turns out you

Re: [U-Boot] i.MX35PDK: Starting U-Boot from serial NOR-Flash

2012-08-02 Thread Michael Hornung
Hi Fabio, >> >> Have you had any progress on this? > I had some progress on my issue, here a summary of what I did: - I configured a SD-Card as described in doc/README.imximage - I did the following changes to the U-Boot sources: +++ b/board/freescale/mx35pdk/imximage.cfg +BOOT_FROM sd +

Re: [U-Boot] [PATCH v3 5/7] dfu:cmd: Support for DFU u-boot command

2012-08-02 Thread Lukasz Majewski
On Wed, 01 Aug 2012 11:13:14 -0600 Stephen Warren wrote: > On 08/01/2012 01:16 AM, Lukasz Majewski wrote: > > Hi Stephen Warren, > > > >> On 07/31/2012 12:37 AM, Lukasz Majewski wrote: > >>> Support for u-boot's "dfu [list]" command. > >> > >>> +U_BOOT_CMD(dfu, CONFIG_SYS_MAXARGS, 1, do_dfu, >

Re: [U-Boot] [PATCH] mx6q: mx6qsabrelite: add GPIO_0__CCM_CLKO and GPIO_3__CCM_CLKO2 pin mux

2012-08-02 Thread Stefano Babic
On 02/08/2012 09:36, Dirk Behme wrote: > On 01.08.2012 13:05, Dirk Behme wrote: >> A recent Linux kernel (>= 3.5) has support for the SGTL 5000 sound >> on the SabreLite board. To make this work, U-Boot has to configure the >> pin mux for PAD_GPIO_0__CCM_CLKO and PAD_GPIO_3__CCM_CLKO2 correctly. >>

Re: [U-Boot] [PATCH] mx6q: mx6qsabrelite: add GPIO_0__CCM_CLKO and GPIO_3__CCM_CLKO2 pin mux

2012-08-02 Thread Dirk Behme
On 01.08.2012 13:05, Dirk Behme wrote: A recent Linux kernel (>= 3.5) has support for the SGTL 5000 sound on the SabreLite board. To make this work, U-Boot has to configure the pin mux for PAD_GPIO_0__CCM_CLKO and PAD_GPIO_3__CCM_CLKO2 correctly. Taken from Freescale's ER5 U-Boot for the SabreLi

[U-Boot] [PATCH 7/7] EXYNOS5: Enable SPI booting.

2012-08-02 Thread Rajeshwari Shinde
This patch enables SPI Booting for EXYNOS5 Signed-off-by: Rajeshwari Shinde --- Changes in V2: - None. Changes in V3: - None. Changes in V4: - Rebased on Mainline u-boot.git. - Corrected the Commit message. board/samsung/smdk5250/Makefile |2

[U-Boot] [PATCH 4/7 V4] EXYNOS5: Add base address for SPI.

2012-08-02 Thread Rajeshwari Shinde
Signed-off-by: Rajeshwari Shinde --- Changes in V2: - None Changes in V3: - None. Changes in V4: - Rebased on Mainline u-boot.git. arch/arm/include/asm/arch-exynos/cpu.h |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/arch/arm/include/asm/arch

[U-Boot] [PATCH 5/7 V4] SPI: Add SPI Driver for EXYNOS.

2012-08-02 Thread Rajeshwari Shinde
This patch adds SPI driver for EXYNOS. Signed-off-by: Simon Glass Signed-off-by: Padmavathi Venna Signed-off-by: Gabe Black Signed-off-by: Rajeshwari Shinde --- Changes in V2: - None. Changes in V3: - Removed SPI_SLAVE flag. Changes in V4: - Rebased on Mainline u-boot.g

[U-Boot] [PATCH 6/7 V4] EXYNOS5: Enable SPI

2012-08-02 Thread Rajeshwari Shinde
This patch enables SPI driver for EXYNOS5. Signed-off-by: Rajeshwari Shinde --- Changes in V2: - None. Changes in V3: - Corrected the warning message. Changes in V4: - Rebased on Mainline u-boot.git. board/samsung/smdk5250/smdk5250.c |4 include/configs/smdk5250.

[U-Boot] [PATCH 3/7 V4] EXYNOS: Add clock for SPI.

2012-08-02 Thread Rajeshwari Shinde
This patch adds api to calculate and set the clock for SPI channels Signed-off-by: Simon Glass Signed-off-by: Rajeshwari Shinde --- Changes in V2: - None Changes in V3: - Corrected Warning messages. Changes in V4: - Rebased on Mainline u-boot.git. arch/arm/cpu/armv7/exyn

[U-Boot] [PATCH 2/7 V4] SPI: Add W25Q32 to Winbond SPI flash table

2012-08-02 Thread Rajeshwari Shinde
SMDK EVT1 has a different Winbond part, added its part details to the SPI flash table Signed-off-by: Abhilash Kesavan Signed-off-by: Rajeshwari Shinde --- Changes in V2: - Corrected the commit message. Changes in V3: - None. Changes in V4: - Rebased on Mainline u-boot.gi

[U-Boot] [PATCH 1/7 V4] EXYNOS5: Add pinmux support for SPI

2012-08-02 Thread Rajeshwari Shinde
This patch adds pinmux support for SPI channels Signed-off-by: Rajeshwari Shinde --- Changes in V2: - None. Changes in V3: - Removed the slave flag for SPI. Changes in V4: - Rebased on Mainline u-boot.git. arch/arm/cpu/armv7/exynos/pinmux.c| 51 +

[U-Boot] [PATCH 0/7 V4] EXYNOS5: Enable SPI support

2012-08-02 Thread Rajeshwari Shinde
This patch set adds SPI driver for EXYNOS5 and enables same. This patch set is based on latest Mainline u-boot.git tree. Changes in V2: - Correted the Commit message. Changes in V3: - Removed SPI_SLAVE Flag. - Corrected warning messages. Changes on V4: - Rebased on

Re: [U-Boot] [PATCH v3 5/7] dfu:cmd: Support for DFU u-boot command

2012-08-02 Thread Marek Vasut
Dear Mike Frysinger, > On Tuesday 31 July 2012 02:37:01 Lukasz Majewski wrote: > > --- /dev/null > > +++ b/common/cmd_dfu.c > > > > + static char *s = "dfu"; > > no need for this to be static It can be pulled out of the function and be made into const static > -mike Best regards, Marek Vasu

[U-Boot] add more function in hello_world.c for standalone application

2012-08-02 Thread Kassey Lee
hi, Wolfgang: I've tried the examples/standalone/hello_world.c, it works on my platform! but when i add more functions in examples/standalone/hello_world.c, for example it will take the test function as the entry, but ignore the hello_world ? can i have more