[U-Boot] [PATCH V2] examples: api: allow build with private libgcc

2011-10-18 Thread Che-Liang Chiou
The examples/api is not configured with USE_PRIVATE_LIBGCC. This makes building examples/api break on certain boards that do not/cannot use the public libgcc. Nevertheless, this patch has to also touch the top-level Makefile to fix this problem because the current top-level Makefile does not spec

Re: [U-Boot] [PATCH V2 2/2] api: export LCD and video to external apps

2011-10-18 Thread Anatolij Gustschin
Hi, On Tue, 18 Oct 2011 14:12:59 +0800 Che-liang Chiou wrote: ... > > Many boards defining CONFIG_LCD also define CONFIG_LCD_LOGO. > > Enabling CONFIG_API for such board configurations will break > > compiling, e.g.: > > > > $ ./MAKEALL TQM823L_LCD > > Configuring for TQM823L_LCD - Board: TQM823L

[U-Boot] [PATCH v3] tools/env: add posibility to inject configuration

2011-10-18 Thread Andreas Bießmann
If one wants to use fw_printenv/fw_setenv in special variants (eg compiled in MTD parameters without configuration file) he needs to change the sources. This patch add the posibillity to change the behaviour of fw_printenv by defining a specific configuration header at compile time. Signed-off-by:

[U-Boot] [PATCH v2] tools/env: use lib/crc32.c directly

2011-10-18 Thread Andreas Bießmann
Instead of linking the file into $(obj) tree use directly the source file. This also prevents littered source tree if building not out-of-tree. Signed-off-by: Andreas Bießmann Acked-by: Mike Frysinger --- total: 0 errors, 0 warnings, 27 lines checked 0001-tools-env-use-lib-crc32.c-directly.patc

Re: [U-Boot] [PATCH V2 2/2] api: export LCD and video to external apps

2011-10-18 Thread Che-liang Chiou
Hi Anatolij, On Tue, Oct 18, 2011 at 3:17 PM, Anatolij Gustschin wrote: > Hi, > > On Tue, 18 Oct 2011 14:12:59 +0800 > Che-liang Chiou wrote: > ... >> > Many boards defining CONFIG_LCD also define CONFIG_LCD_LOGO. >> > Enabling CONFIG_API for such board configurations will break >> > compiling,

Re: [U-Boot] [PATCH v6 03/20] sandbox: Add architecture image support

2011-10-18 Thread 馬克泡
HI Simon, 2011/10/18 Wolfgang Denk : > Dear Simon Glass, > >> Changes in v5: >> - Define IH_ARCH_DEFAULT which is now required >> >>  arch/sandbox/include/asm/u-boot.h |    3 +++ >>  include/image.h                   |    1 + >>  2 files changed, 4 insertions(+), 0 deletions(-) > > Applied, thanks

Re: [U-Boot] [PATCH] Makefile: prevent libgcc to be linked twice

2011-10-18 Thread Nicolas Ferre
On 10/17/2011 07:25 PM, Mike Frysinger : > On Monday 17 October 2011 09:41:15 Nicolas Ferre wrote: >> If we define USE_PRIVATE_LIBGCC, PLATFORM_LIBS is used during >> link. During this last link editing, libgcc may be listed twice >> and fail. >> Prevent this using "filter-out" in top Makefile. >

Re: [U-Boot] [PATCH v16 1/9] nds32: add header files support for nds32

2011-10-18 Thread 馬克泡
Hi Wolfgang, 2011/10/12 Macpaul Lin : > Add generic header files support for nds32 architecture. > Cache, ptregs, data type and other definitions are included. > > Signed-off-by: Macpaul Lin Just wondering if you have comment to these patch v16. I've fixed volatiles which complained by checkpat

Re: [U-Boot] [PATCH v6 07/20] sandbox: Add sandbox board

2011-10-18 Thread 馬克泡
HI Simon 2011/10/11 Simon Glass : > This adds basic files for the sandbox board. The lds file is very simple > since we can rely mostly on the linker defaults. > > Signed-off-by: Simon Glass > --- > Changes in v5: > - Simplify the declaration of gd_t in sandbox's board.c > >  board/sandbox/sandbo

Re: [U-Boot] [PATCH] mx5 configs: CONFIG_PRIME should really be CONFIG_ETHPRIME

2011-10-18 Thread Stefano Babic
On 10/17/2011 08:21 PM, Wolfgang Grandegger wrote: > Signed-off-by: Wolfgang Grandegger > --- > > Resend due to missing [PATCH] prefix. > > include/configs/mx51evk.h |2 +- > include/configs/mx53ard.h |2 +- > include/configs/mx53evk.h |2 +- > include/configs/mx53loco.h |2 +

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Lukasz Majewski
On Tue, 18 Oct 2011 08:23:10 +0200 Wolfgang Denk wrote: > I need your help. I'd propose to sent result from a night build (for a respective architecture/the whole u-boot) to the u-boot mailing list. Then, in the morning (well, depends on the part of the world) a custodian or culprit of the erro

Re: [U-Boot] [PATCH] STx AMC8548: initial support for Silicon Turnkey Express AMC8548 board

2011-10-18 Thread Alex Dubov
- Original Message - > From: Kumar Gala > > > On Apr 12, 2011, at 12:04 AM, Alex Dubov wrote: > >> From: Alex Dubov >> >> AMC8548 is a RapidIO development board in AMC form factor, featuring > MPC8548E > > Patch needs some minor updates to apply & build with current HEAD.  Please

[U-Boot] [PATCH V3 0/4] api: export LCD and video to external apps

2011-10-18 Thread Che-Liang Chiou
This patch set exports LCD and video clearing and bitmap-rendering on screen functions to external apps, and provides a unified interface of accessing them. Che-Liang Chiou (4): lcd: video: add clear and draw bitmap declaration tools: logo: add static and unused to bmp arrays video: add acce

[U-Boot] [PATCH V3 1/4] lcd: video: add clear and draw bitmap declaration

2011-10-18 Thread Che-Liang Chiou
The functions for clearing and drawing bitmaps on the screen were not exposed publicly and are made public in this patch in preparation for implementing the display interface of api_public.h. Signed-off-by: Che-Liang Chiou --- Changes in V3 Rebase to ToT Changes in V2 Fix style errors com

[U-Boot] [PATCH V3 2/4] tools: logo: add static and unused to bmp arrays

2011-10-18 Thread Che-Liang Chiou
The generated header bmp_logo.h is useful even outside common/lcd.c for the logo dimension. However, the problem is, the generated bmp_logo.h cannot be included multiple times because bmp_logo_palette[] and bmp_logo_bitmap[] are defined in the bmp_logo.h. We may remedy this by adding static __a

[U-Boot] [PATCH V3 3/4] video: add access to GraphicDevice struct

2011-10-18 Thread Che-Liang Chiou
video_hw_init() returns this struct, which is quite useful, but it is probably not okay to call this function multiple times. So this patch adds video_devinfo() that does nothing but return this struct. video_devinfo() does not guarantee that this struct is initialized. It is user's responsibilit

[U-Boot] [PATCH V3 4/4] api: export LCD and video to external apps

2011-10-18 Thread Che-Liang Chiou
This patch exports LCD and video information and bitmap-rendering functions to external apps. This patch is tested on a Seaboard, which does not have a video output. So I only tested LCD code paths. NOTE: The Seaboard LCD driver is not yet upstreamed; the test was done in a local downstream repo.

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Andreas Bießmann
Dear Simon, Am 18.10.2011 08:51, schrieb Simon Schwarz: > Hi Wolfgang, > > On 10/18/2011 08:23 AM, Wolfgang Denk wrote: > [SNIP] >> >> Why is nobody doing this? > > One of my big problems with this was that you not only have to run a > MAKEALL with your own changes but also have to do that with

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Wolfgang Denk
Dear Simon Schwarz, In message <4e9d21f8.40...@gmail.com> you wrote: > > One of my big problems with this was that you not only have to run a > MAKEALL with your own changes but also have to do that with the former > state of the repo to identifie the differences. > > So one suggestion I have

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Wolfgang Denk
Dear Andreas, In message <4e9d4552.5040...@gmail.com> you wrote: > > We should first get a state of "all boards build clean" for a sort of > toolchains (I think arm is now at this state after a lot of tumult in > the last two releases). PowerPC has traditionally always been build-clean (all boar

Re: [U-Boot] [PATCH] PPC: Cleanup tqm8xx_pcmcia.c

2011-10-18 Thread Marek Vasut
> Dear Marek Vasut, > > In message <1317819115-9089-1-git-send-email-marek.va...@gmail.com> you > wrote: > > Signed-off-by: Marek Vasut > > --- > > drivers/pcmcia/tqm8xx_pcmcia.c |  154 > > +--- 1 files changed, 81 > > insertions(+), 73 deletions(-) > > This

Re: [U-Boot] [RFC] general ULPI support

2011-10-18 Thread Detlev Zundel
Hi Marek, [...] > Anyway, do you really need the linux ulpi code as is or can you implement > more > lightweight thing? Especially with respect to usb I'd like to encourage code sharing. The first USB implementation in U-Boot was such a "we do it ourself" thing and effectively cut us off from

[U-Boot] [PATCH 1/2] microblaze: Fix strict-aliasign rules for in_be32

2011-10-18 Thread Michal Simek
readl should work with unsigned int instead of unsigned long. Signed-off-by: Michal Simek --- arch/microblaze/include/asm/io.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/microblaze/include/asm/io.h b/arch/microblaze/include/asm/io.h index 7e190d1..187ae73 1006

[U-Boot] [PATCH 2/2] serial: uartlite: Fix compilation warnings

2011-10-18 Thread Michal Simek
Do not setup userial_ports array as const because in uartlite_serial_putc is out_be32 which can't write to tx_fifo if is const. Warning log: serial_xuartlite.c: In function 'uartlite_serial_putc': serial_xuartlite.c:60: warning: initialization discards qualifiers from pointer target type serial_x

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Lukasz Majewski
Hi, > I guess it will be doable to have some scripts/prepare-patch which > runs a) git format-patch > b) checkpatch on the patch I'm a bit confused. Joe Hershberger has prepared a following patch: http://patchwork.ozlabs.org/patch/119083/ Is this THE ONE checkpatch version which we shall use

[U-Boot] [PATCH v2] microblaze: Fix strict-aliasign rules for in_be32

2011-10-18 Thread Michal Simek
readl should work with unsigned int instead of unsigned long. Signed-off-by: Michal Simek --- v2: Fix coding style issue. --- arch/microblaze/include/asm/io.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/microblaze/include/asm/io.h b/arch/microblaze/include/asm

Re: [U-Boot] [PATCH 1/2] microblaze: Fix strict-aliasign rules for in_be32

2011-10-18 Thread Michal Simek
Michal Simek wrote: > readl should work with unsigned int instead of unsigned long. > > Signed-off-by: Michal Simek > --- > arch/microblaze/include/asm/io.h |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Reject - coding style issue - I was too fast. Thanks, Michal -- Michal Si

Re: [U-Boot] [PATCH 3/5] pxa: convert pxa27x_udc to use read and write functions

2011-10-18 Thread Stefan Herbrechtsmeier
Am 17.10.2011 19:31, schrieb Marek Vasut: > On Monday, October 17, 2011 05:22:48 PM Stefan Herbrechtsmeier wrote: >> Signed-off-by: Stefan Herbrechtsmeier >> CC: Marek Vasut >> CC: Remy Bohmer >> --- > Hi Stefan, > > this patch is awesome, I really need this one. But ... Do you plan do add support

[U-Boot] [PATCH] gplug: fixed build error as a result of code cleanup patch

2011-10-18 Thread Prafulla Wadaskar
Signed-off-by: Prafulla Wadaskar --- board/Marvell/gplugd/gplugd.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/board/Marvell/gplugd/gplugd.c b/board/Marvell/gplugd/gplugd.c index 42c8389..a697c19 100644 --- a/board/Marvell/gplugd/gplugd.c +++ b/board/Marvell/gplugd/gp

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Wolfgang Denk
Dear Lukasz Majewski, In message <20111018122416.483205d6@lmajewski.digital.local> you wrote: > > Joe Hershberger has prepared a following patch: > > http://patchwork.ozlabs.org/patch/119083/ > > Is this THE ONE checkpatch version which we shall use (including its > config file)? It shall bec

Re: [U-Boot] [PATCH v2] microblaze: Fix strict-aliasign rules for in_be32

2011-10-18 Thread Wolfgang Denk
Dear Michal Simek, In message <1318933530-18161-1-git-send-email-mon...@monstr.eu> you wrote: > readl should work with unsigned int instead of unsigned long. Please also fix the typo in the Subject: s/aliasign/aliasing/ Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wo

[U-Boot] Pull request for u-boot-marvell.git

2011-10-18 Thread Prafulla Wadaskar
Hi Albert Please kindly pull The following changes since commit 0e005ee09d3424e2780efc6895fcbfbdf7a492fa: Prafulla Wadaskar (1): Merge branch 'master' of git://git.marvell.com/mirror/denx.de/u-boot-arm into armmaster are available in the git repository at: u-boot-marvell.git master

Re: [U-Boot] [PATCH V2 2/5] ARM: armada100: reduce dependence of including platform file

2011-10-18 Thread Prafulla Wadaskar
> -Original Message- > From: Lei Wen [mailto:lei...@marvell.com] > Sent: Friday, October 14, 2011 8:04 PM > To: Prafulla Wadaskar; Wolfgang Denk; u-boot@lists.denx.de > Subject: [PATCH V2 2/5] ARM: armada100: reduce dependence of including > platform file > > For files like the drivers/s

Re: [U-Boot] [PATCH V2 0/5] Marvell: reduce dependence files

2011-10-18 Thread Prafulla Wadaskar
> -Original Message- > From: Lei Wen [mailto:lei...@marvell.com] > Sent: Friday, October 14, 2011 8:04 PM > To: Prafulla Wadaskar; Wolfgang Denk; u-boot@lists.denx.de > Subject: [PATCH V2 0/5] Marvell: reduce dependence files > > Changelog: > V2: rebase over latest u-boot-marvell.git >

Re: [U-Boot] [PATCH] gplug: fixed build error as a result of code cleanup patch

2011-10-18 Thread Prafulla Wadaskar
> -Original Message- > From: Prafulla Wadaskar [mailto:prafu...@marvell.com] > Sent: Tuesday, October 18, 2011 8:07 PM > To: u-boot@lists.denx.de > Cc: Lei Wen; Ashish Karkare; Prafulla Wadaskar > Subject: [PATCH] gplug: fixed build error as a result of code cleanup > patch > > Signed-of

Re: [U-Boot] [PATCH] kirkwood_spi: add dummy spi_init()

2011-10-18 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de [mailto:u-boot-boun...@lists.denx.de] > On Behalf Of Michael Walle > Sent: Friday, October 07, 2011 3:54 AM > To: u-boot@lists.denx.de > Subject: [U-Boot] [PATCH] kirkwood_spi: add dummy spi_init() > > The spi_init() function is m

[U-Boot] USB protocol error

2011-10-18 Thread Sadashiva
Hi Sir, I am facing problem with USB UHCI protocol but my u-boot code is able to detect the connected usb decive but facing problem with communication. The below message is debuging code when I execute USB reset command. I am using u-boot-2009.01 code for PPC405GPr processor. The board

Re: [U-Boot] [PATCH 7/7][v2] fsl_ifc: Add the workaround for erratum IFC A-003399(enabled on P1010)

2011-10-18 Thread Kumar Gala
On Oct 18, 2011, at 1:35 AM, Wolfgang Denk wrote: > Dear Kumar Gala, > > In message <1312555480-13401-8-git-send-email-ga...@kernel.crashing.org> you > wrote: >> From: Poonam Aggrwal >> >> Issue: Address masking doesn't work properly. >> When sum of the base address, defined by BA, and memory

Re: [U-Boot] [PATCH 7/7][v2] fsl_ifc: Add the workaround for erratum IFC A-003399(enabled on P1010)

2011-10-18 Thread Aggrwal Poonam-B10812
Kumar, Wolfgang I think this is my mistake, I did not take care of checkpatch. Please let me know , I can submit it again. Regards Poonam > -Original Message- > From: Kumar Gala [mailto:ga...@kernel.crashing.org] > Sent: Tuesday, October 18, 2011 5:18 PM > To: Wolfgang Denk > Cc

Re: [U-Boot] USB protocol error

2011-10-18 Thread Stefan Roese
Hi, please don't send the same message over and over again. On Tuesday 18 October 2011 13:24:37 Sadashiva wrote: > I am facing problem with USB UHCI protocol but my u-boot code is > able to detect the connected usb decive but facing problem with > communication. The below message is debug

Re: [U-Boot] [PATCH] common: fix missing function pointer relocation in fixup_cmdtable()

2011-10-18 Thread Daniel Schwierzeck
Dear Wolfgang, On Sat, Oct 15, 2011 at 10:19 PM, Wolfgang Denk wrote: > Dear Daniel Schwierzeck, > > In message > <1318522059-16182-1-git-send-email-daniel.schwierz...@googlemail.com> you > wrote: >> The command auto-completion does not work on architectures relying ... > > Applied, thanks. yo

[U-Boot] [PATCH 1/3] ARM: vexpress: move files in preparation for adding a new platform

2011-10-18 Thread Ryan Harkin
The current ca9x4_ct_vxp platform contains support for a Versatile Express motherboard with a quad core A9 core tile. This patch is the first stage of making separating the Versatile Express motherboard code and the A9 specific code, before adding support for the dual core A5 core tile. Signed-of

[U-Boot] [PATCH 2/3] ARM: vexpress: create A9 specific board config

2011-10-18 Thread Ryan Harkin
This patch creates a new config for the A9 quad core tile that includes the generic config for the Versatile Express platform. Signed-off-by: Ryan Harkin --- MAINTAINERS |2 +- boards.cfg|2 +- include/configs/vexpress_ca9x4.h | 34 +++

[U-Boot] [PATCH 0/3] ARM: vexpress: add support for A5 core tile

2011-10-18 Thread Ryan Harkin
Add support for the A5 Core Tile on the Versatile Express motherboard. Ryan Harkin (3): ARM: vexpress: move files in preparation for adding a new platform ARM: vexpress: create A9 specific board config ARM: vexpress: create A5 specific board config MAINTAINERS

[U-Boot] [PATCH 3/3] ARM: vexpress: create A5 specific board config

2011-10-18 Thread Ryan Harkin
This patch creates a new config for the A5 dual core tile that includes the generic config for the Versatile Express platform. The generic config has been modified to provide support for the Extended Memory Map, as used on the A5 core tile. A5 does not support the legacy memory map. Signed-off-b

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Jason
Wolfgang, On Tue, Oct 18, 2011 at 11:44:37AM +0200, Wolfgang Denk wrote: > Dear Andreas, > > In message <4e9d4552.5040...@gmail.com> you wrote: > > I guess it will be doable to have some scripts/prepare-patch which runs > > a) git format-patch > > b) checkpatch on the patch > > c) (configurabl

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Simon Schwarz
On 10/18/2011 11:34 AM, Wolfgang Denk wrote: > Dear Simon Schwarz, > > In message<4e9d21f8.40...@gmail.com> you wrote: >> >> One of my big problems with this was that you not only have to run a >> MAKEALL with your own changes but also have to do that with the former >> state of the repo to identi

Re: [U-Boot] [PATCH] STx AMC8548: initial support for Silicon Turnkey Express AMC8548 board

2011-10-18 Thread Kumar Gala
On Oct 18, 2011, at 4:02 AM, Alex Dubov wrote: > - Original Message - > >> From: Kumar Gala >> >> >> On Apr 12, 2011, at 12:04 AM, Alex Dubov wrote: >> >>> From: Alex Dubov >>> >>> AMC8548 is a RapidIO development board in AMC form factor, featuring >> MPC8548E >> >> Patch needs

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Jason
Of course, I had another idea _after_ I hit send... On Tue, Oct 18, 2011 at 09:05:07AM -0400, Jason wrote: > 1.) modify git to add a hook in format-patch, output is dumped after the >'---' and before the diff. We use this the run checkpatch.pl with our >config. Our script include

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Simon Schwarz
On 10/18/2011 03:05 PM, Jason wrote: > Wolfgang, > > On Tue, Oct 18, 2011 at 11:44:37AM +0200, Wolfgang Denk wrote: >> Dear Andreas, >> >> In message<4e9d4552.5040...@gmail.com> you wrote: >>> I guess it will be doable to have some scripts/prepare-patch which runs >>> a) git format-patch >>> b

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Andreas Bießmann
Dear Jason, Am 18.10.2011 15:05, schrieb Jason: > Wolfgang, > > On Tue, Oct 18, 2011 at 11:44:37AM +0200, Wolfgang Denk wrote: >> Dear Andreas, >> >> In message <4e9d4552.5040...@gmail.com> you wrote: >>> I guess it will be doable to have some scripts/prepare-patch which runs >>> a) git format-p

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Jason
On Tue, Oct 18, 2011 at 03:13:45PM +0200, Simon Schwarz wrote: > On 10/18/2011 03:05 PM, Jason wrote: > >2.) Add a '--versioning' option to format-patch which will scan the > > output directory for previous versions of the patch. > > a.) Use the Message-Id of the first version as an In-Rep

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Simon Glass
Hi, On Tue, Oct 18, 2011 at 2:44 AM, Wolfgang Denk wrote: > Dear Andreas, > > In message <4e9d4552.5040...@gmail.com> you wrote: >> >> We should first get a state of "all boards build clean" for a sort of >> toolchains (I think arm is now at this state after a lot of tumult in >> the last two rel

Re: [U-Boot] [PATCH v6 18/20] Adjust dependency rules to permit per-file flags

2011-10-18 Thread Simon Glass
Hi Wolfgang, On Mon, Oct 17, 2011 at 10:46 PM, Wolfgang Denk wrote: > Dear Simon Glass, > > In message <1318270953-32482-19-git-send-email-...@chromium.org> you wrote: >> The dependency rules are currently done in a shell 'for' loop. This does not >> permit Makefile variables to adjust preprocess

[U-Boot] [PATCH 1/1] ARM: vexpress: Change maintainer for ARM Versatile Express platforms

2011-10-18 Thread Ryan Harkin
Change maintainer for ARM Versatile Express platforms. Signed-off-by: Ryan Harkin --- MAINTAINERS |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 578f38e..dbc9269 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -856,7 +856,8 @@ Hugo Villen

[U-Boot] [PATCH v2 0/3] usb:gadget: USB Mass Storage Gadget

2011-10-18 Thread Lukasz Majewski
This patch series provide the USB Mass Storage Gadget (UMS) support. Tested at S5P GONI reference target. Lukasz Majewski (3): usb:gadget: USB Mass Storage - files from Linux kernel usb:gadget: USB Mass Storage Gadget support usb:gadget:s5p Support for USB Mass Storage Gadget on GONI boar

[U-Boot] [PATCH v2 3/3] usb:gadget:s5p Support for USB Mass Storage Gadget at GONI

2011-10-18 Thread Lukasz Majewski
This patch adds support for USB Mass Storage Gadget on the Samsung's GONI reference target Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Remy Bohmer Cc: Minkyu Kang --- Changes for v2: - #include added for fixing build warning --- board/samsung/goni/goni.c | 69 +

[U-Boot] [PATCH v2 2/3] usb:gadget: USB Mass Storage Gadget support

2011-10-18 Thread Lukasz Majewski
This patch adds the USB Mass Storage Gadget to u-boot New command called "ums" is implemented to provide access to on-device embedded persistent memory. USB Mass Storage is supposed to work on top of the USB Gadget framework Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Minkyu

Re: [U-Boot] [PATCH] gpio: Add PCA9698 40-bit I2C I/O port

2011-10-18 Thread Stefan Roese
Hi Dirk, On Tuesday 04 October 2011 11:13:51 eib...@gdsys.de wrote: > From: Dirk Eibach Checkpatch output: ERROR: memset size is 3rd argument, not the second. #239: FILE: drivers/gpio/pca9698.c:120: + memset(data, sizeof(data), 0); total: 1 errors, 0 warnings, 139 lines checked So, this

[U-Boot] [PATCH] arm:fix:cleanup: Volatile keyword removal

2011-10-18 Thread Lukasz Majewski
Volatile keyword removal from ./arch/arm/include/asm/bitops.h Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park --- arch/arm/include/asm/bitops.h |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/include/asm/bitops.h b/arch/arm/include/asm/bitops.h

Re: [U-Boot] [PATCH V4 0/5] fix and enhancement patches for sdhci

2011-10-18 Thread Lei Wen
Hi Andy, On Sat, Oct 8, 2011 at 10:14 PM, Lei Wen wrote: > This seris fix several issue like flush cache and build warning. And > give this generic driver enhancement for timeout when transferring data > and additional structure member to access in platform self driver. > > Changelog: > V2: code

Re: [U-Boot] [PATCH 0/3] enable dcache for pantheon and armada100

2011-10-18 Thread Lei Wen
Hi Prafulla, On Sat, Oct 8, 2011 at 9:59 PM, Lei Wen wrote: > This patch seris use Marvell its own special op code to flush the dcache > > Lei Wen (3): >  ARM: add special dcache flush op code for 88SV331xV5 >  ARM: pantheon: enable dcache by default >  ARM: armada100: enable dcache by default >

Re: [U-Boot] [PATCH v6 03/20] sandbox: Add architecture image support

2011-10-18 Thread Mike Frysinger
On Tuesday 18 October 2011 04:28:23 馬克泡 wrote: > 2011/10/18 Wolfgang Denk : > > Dear Simon Glass, > > > >> Changes in v5: > >> - Define IH_ARCH_DEFAULT which is now required > >> > >> arch/sandbox/include/asm/u-boot.h |3 +++ > >> include/image.h |1 + > >> 2 files chan

Re: [U-Boot] [PATCH v6 07/20] sandbox: Add sandbox board

2011-10-18 Thread Mike Frysinger
On Tuesday 18 October 2011 04:43:09 馬克泡 wrote: > 2011/10/11 Simon Glass : > > +include $(TOPDIR)/config.mk > > + > > +LIB= $(obj)lib$(BOARD).o > > + > > +COBJS := $(BOARD).o > > + > > +SRCS := $(COBJS:.o=.c) > > +OBJS := $(addprefix $(obj),$(COBJS)) > > + > > +$(LIB):$(obj).depend

[U-Boot] [PATCH 1/2 v2] build: add missing $(AR)->$(cmd_link_o_target) update

2011-10-18 Thread Mike Frysinger
Seems people fixed their files to use libfoo.o, but didn't actually update the creation targets to use $(cmd_link_o_target). Update the rest of the Makefile's found with grep. Signed-off-by: Mike Frysinger --- v2 - fixup new sandbox makefile too arch/arm/cpu/arm926ejs/armada100/Makefil

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Jason
Let's try that example again... [PATCH 0/3] add xyz support. |-[PATCH 1/3] fix some junk |-[PATCH 2/3] add support for xyz board |-[PATCH 3/3] add xyz board to MAKEALL |-[PATCH 0/3 V2] add xyz support. | |-[PATCH 1/3 V2] whitespace cleanup | |-[PATCH 2/3 V2] add support for xyz board | \

Re: [U-Boot] [PATCH v6 03/20] sandbox: Add architecture image support

2011-10-18 Thread 馬克泡
Hi Mike, 2011/10/18 Mike Frysinger : > On Tuesday 18 October 2011 04:28:23 馬克泡 wrote: >> 2011/10/18 Wolfgang Denk : [deleted] >> static const table_entry_t uimage_arch[] >> [deleted] >> { IH_ARCH_BLACKFIN, "blackfin", "Blackfin", }, >> { IH_ARCH_AVR32,

Re: [U-Boot] [PATCH 1/1] ARM: vexpress: Change maintainer for ARM Versatile Express platforms

2011-10-18 Thread Matt Waddel
On 10/18/2011 08:22 AM, Ryan Harkin wrote: > Change maintainer for ARM Versatile Express platforms. > > Signed-off-by: Ryan Harkin Acked-by: Matt Waddel > --- > MAINTAINERS |3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git a/MAINTAINERS b/MAINTAINERS > index 578f3

[U-Boot] [PATCH] Correct dependency rule to fix SPL build

2011-10-18 Thread Simon Glass
Commit 4750884 introduced a change in the dependency generation which breaks SPL, because the source files being built are not initially present and are symlinked as part of the build. The .depend file must depend not only on the files in the DEPS list but also on the sources which did not contrib

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Jason
Andreas, On Tue, Oct 18, 2011 at 03:36:21PM +0200, Andreas Bießmann wrote: > Dear Jason, > > Am 18.10.2011 15:05, schrieb Jason: ... > > I've been mulling this over, and here's my approach: > > > > 1.) modify git to add a hook in format-patch, output is dumped after the > > '---' and before

[U-Boot] [PATCH v3] arm926ejs: add NXP LPC32x0 cpu series support

2011-10-18 Thread Vladimir Zapolskiy
This change adds initial support for NXP LPC32x0 SoC series. Signed-off-by: Vladimir Zapolskiy --- Changes from v2 to v3: * checkpatch.pl reports zero errors and warnings Changes from v1 to v2: * BIT(n) and SBF(s, v) macro are not used anymore * removed NS16550 and 14-clock UART definitions from

Re: [U-Boot] [PATCH v6 18/20] Adjust dependency rules to permit per-file flags

2011-10-18 Thread Simon Glass
Hi Wolfgang, On Tue, Oct 18, 2011 at 7:08 AM, Simon Glass wrote: > Hi Wolfgang, > > On Mon, Oct 17, 2011 at 10:46 PM, Wolfgang Denk wrote: >> Dear Simon Glass, >> >> In message <1318270953-32482-19-git-send-email-...@chromium.org> you wrote: >>> The dependency rules are currently done in a shell

Re: [U-Boot] [PATCH v3] Move timestamp and version files into 'generated' subdir

2011-10-18 Thread Simon Glass
Hi Wolfgang, On Mon, Oct 17, 2011 at 11:13 PM, Wolfgang Denk wrote: > Dear Simon Glass, > > In message <1318272919-17706-1-git-send-email-...@chromium.org> you wrote: >> There is a rather subtle build problem where the build time stamp is not >> updated for out-of-tree builds if there exists an i

Re: [U-Boot] [PATCH] arm, doc: add CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST documentation

2011-10-18 Thread Tom Rini
Ah, but we asked (and you agreed) to name the option generically since it's about OOB position rather than ECC size. And the help should reflect that it's about changing the OOB position relative to data as foudn on some davinci platforms rather than just being to enable support in davinci SoCs.

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Mike Frysinger
On Tuesday 18 October 2011 09:13:45 Simon Schwarz wrote: > On 10/18/2011 03:05 PM, Jason wrote: > > a.) Use the Message-Id of the first version as an In-Reply-To > > - Where do you get the Message-Id from? Isn't the message-id assigned by > the mail system? fairly certain the MTA never does t

Re: [U-Boot] [PATCH] Makefile: prevent libgcc to be linked twice

2011-10-18 Thread Mike Frysinger
On Tuesday 18 October 2011 04:30:27 Nicolas Ferre wrote: > On 10/17/2011 07:25 PM, Mike Frysinger : > > On Monday 17 October 2011 09:41:15 Nicolas Ferre wrote: > >> If we define USE_PRIVATE_LIBGCC, PLATFORM_LIBS is used during > >> link. During this last link editing, libgcc may be listed twice > >

Re: [U-Boot] [PATCH v6 03/20] sandbox: Add architecture image support

2011-10-18 Thread Mike Frysinger
On Tuesday 18 October 2011 11:43:49 馬克泡 wrote: > 2011/10/18 Mike Frysinger: > > On Tuesday 18 October 2011 04:28:23 馬克泡 wrote: > >> 2011/10/18 Wolfgang Denk : > [deleted] > > >> static const table_entry_t uimage_arch[] > >> [deleted] > >> > >> { IH_ARCH_BLACKFIN, "blackfin",

[U-Boot] Pull request for u-boot-coldfire.git

2011-10-18 Thread Jin Zhengxiong-R64188
Hi, Wolfgang, Please kindly pull The following changes since commit efb2172ece93ef48f34fb8bdf963d3b72880cc7d: Move timestamp and version files into 'generated' subdir (2011-10-17 23:57:00 +0200) are available in the git repository at: git://git.denx.de/u-boot-coldfire.git master stany MARCE

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Anton Staaf
On Tue, Oct 18, 2011 at 7:05 AM, Simon Glass wrote: > Hi, > > On Tue, Oct 18, 2011 at 2:44 AM, Wolfgang Denk wrote: >> Dear Andreas, >> >> In message <4e9d4552.5040...@gmail.com> you wrote: >>> >>> We should first get a state of "all boards build clean" for a sort of >>> toolchains (I think arm i

[U-Boot] MAKEALL

2011-10-18 Thread Mike Frysinger
On Tuesday 18 October 2011 02:23:10 Wolfgang Denk wrote: > Before sending the patch, you must run the MAKEALL script on > your patched source tree and make sure that no errors or > warnings are reported for any of the boards. Well, at least > not any more warnings than witho

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Anton Staaf
On Mon, Oct 17, 2011 at 11:23 PM, Wolfgang Denk wrote: > Hi all, > > the patches that have been submitted for this release turn out to of > of shockingly bad quality.  About every other batch of patches I apply > will break building not only for a single board r a few boards, but > for large numbe

Re: [U-Boot] [PATCH v5] OMAP3: mvblx: Initial support for mvBlueLYNX-X

2011-10-18 Thread Tom Rini
On Wed, Oct 5, 2011 at 8:08 AM, Michael Jones wrote: > Add support for the MATRIX VISION mvBlueLYNX-X, an OMAP3-based > intelligent camera. > > Signed-off-by: Michael Jones Configuring for omap3_mvblx board... mv_common.c:32:14: warning: 'entries_to_keep' defined but not used textdata

Re: [U-Boot] MAKEALL

2011-10-18 Thread Simon Glass
Hi, On Tue, Oct 18, 2011 at 10:01 AM, Mike Frysinger wrote: > On Tuesday 18 October 2011 02:23:10 Wolfgang Denk wrote: >>       Before sending the patch, you must run the MAKEALL script on >>       your patched source tree and make sure that no errors or >>       warnings are reported for any of

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Albert ARIBAUD
Le 18/10/2011 19:16, Anton Staaf a écrit : > I would like to start a thread addressing this question. I don't think > the people submitting are running MAKEALL because it has a very high > barrier to entry. In particular I spent a few days trying to get as > many architecture toolchains up and r

Re: [U-Boot] Pull request for u-boot-marvell.git

2011-10-18 Thread Albert ARIBAUD
Hi Prafulla, Le 18/10/2011 13:12, Prafulla Wadaskar a écrit : > Hi Albert > > Please kindly pull > The following changes since commit 0e005ee09d3424e2780efc6895fcbfbdf7a492fa: >Prafulla Wadaskar (1): > Merge branch 'master' of > git://git.marvell.com/mirror/denx.de/u-boot-arm into ar

Re: [U-Boot] MAKEALL

2011-10-18 Thread Tom Rini
On Tue, Oct 18, 2011 at 10:01 AM, Mike Frysinger wrote: > On Tuesday 18 October 2011 02:23:10 Wolfgang Denk wrote: >>       Before sending the patch, you must run the MAKEALL script on >>       your patched source tree and make sure that no errors or >>       warnings are reported for any of the b

Re: [U-Boot] [STATUS] "Quality" of patches / testing.

2011-10-18 Thread Anton Staaf
On Tue, Oct 18, 2011 at 10:44 AM, Albert ARIBAUD wrote: > Le 18/10/2011 19:16, Anton Staaf a écrit : > >> I would like to start a thread addressing this question.  I don't think >> the people submitting are running MAKEALL because it has a very high >> barrier to entry.  In particular I spent a fe

Re: [U-Boot] [PATCH 3/3] tegra2: Enable CONFIG_SYS_RELATIVE_IMAGES

2011-10-18 Thread Stephen Warren
Stephen Warren wrote at Tuesday, October 11, 2011 10:16 AM: > v2: New patch > > Signed-off-by: Stephen Warren Wolfgang, Does this new patch series look good? It doesn't look like patch 1/3 (the cleanup patch for pre-existing checkpatch failures) ever made it to the mailing list; it was deemed

Re: [U-Boot] MAKEALL

2011-10-18 Thread Mike Frysinger
On Tuesday 18 October 2011 13:58:22 Tom Rini wrote: > On Tue, Oct 18, 2011 at 10:01 AM, Mike Frysinger wrote: > > On Tuesday 18 October 2011 02:23:10 Wolfgang Denk wrote: > >> Before sending the patch, you must run the MAKEALL script on > >> your patched source tree and make sure that n

Re: [U-Boot] [GIT PULL] Pull request: u-boot-imx

2011-10-18 Thread Albert ARIBAUD
Le 17/10/2011 10:05, Stefano Babic a écrit : > Hi Albert, > > please pull from u-boot-imx, thanks. Generating the pull request I see > that three patches are missing (the three patches by Łukasz Majewski). > However, everything in the tree seems correct and the tree is already > rebased on uboot_a

Re: [U-Boot] [PATCH v6 1/5] tegra2: Use cmd_link_o_target in board Makefiles

2011-10-18 Thread Stephen Warren
Stephen Warren wrote at Wednesday, October 12, 2011 4:53 PM: > [Patch series relating to SD/MMC support on Tegra boards.] Does this patch series look good? Since these are my first U-Boot patches, I'm not sure exactly who would pick these up and apply them (I assume the "ARM custodians", who are

Re: [U-Boot] MAKEALL

2011-10-18 Thread Mike Frysinger
On Tuesday 18 October 2011 13:58:22 Tom Rini wrote: > If we're going to throw out feature requests, I'd like more than one > SoC family support. > I've got a wrapper around MAKEALL right now to build omap3 then omap4 > then davinci. hmm, actually doesn't the newish -s flag do what you want ?

Re: [U-Boot] [PATCH v6 1/5] tegra2: Use cmd_link_o_target in board Makefiles

2011-10-18 Thread Simon Glass
Hi Tom, On Tue, Oct 18, 2011 at 11:14 AM, Stephen Warren wrote: > Stephen Warren wrote at Wednesday, October 12, 2011 4:53 PM: >> [Patch series relating to SD/MMC support on Tegra boards.] > > Does this patch series look good? > > Since these are my first U-Boot patches, I'm not sure exactly who

Re: [U-Boot] [PATCH v6 07/20] sandbox: Add sandbox board

2011-10-18 Thread Simon Glass
On Tue, Oct 18, 2011 at 8:29 AM, Mike Frysinger wrote: > On Tuesday 18 October 2011 04:43:09 馬克泡 wrote: >> 2011/10/11 Simon Glass : >> > +include $(TOPDIR)/config.mk >> > + >> > +LIB    = $(obj)lib$(BOARD).o >> > + >> > +COBJS  := $(BOARD).o >> > + >> > +SRCS   := $(COBJS:.o=.c) >> > +OBJS   := $(

Re: [U-Boot] [PATCH v6 03/20] sandbox: Add architecture image support

2011-10-18 Thread Simon Glass
Hi, On Tue, Oct 18, 2011 at 9:07 AM, Mike Frysinger wrote: > On Tuesday 18 October 2011 11:43:49 馬克泡 wrote: >> 2011/10/18 Mike Frysinger: >> > On Tuesday 18 October 2011 04:28:23 馬克泡 wrote: >> >> 2011/10/18 Wolfgang Denk : >> [deleted] >> >> >> static const table_entry_t uimage_arch[] >> >> [dele

Re: [U-Boot] [PATCH v16 1/9] nds32: add header files support for nds32

2011-10-18 Thread Simon Glass
Hi, On Tue, Oct 18, 2011 at 1:36 AM, 馬克泡 wrote: > Hi Wolfgang, > > 2011/10/12 Macpaul Lin : >> Add generic header files support for nds32 architecture. >> Cache, ptregs, data type and other definitions are included. >> >> Signed-off-by: Macpaul Lin > > Just wondering if you have comment to these

Re: [U-Boot] [RFC] ARM ISA/cpu/SoC code organization for cache and other functions

2011-10-18 Thread Albert ARIBAUD
Le 14/10/2011 06:43, Mike Frysinger a écrit : > On Thursday 15 September 2011 17:42:12 Albert ARIBAUD wrote: >> The object files shall be linked in decreasing precedence order, i.e. >> SoC file first, then cpu file, then isa file, then lib last, so that for >> each cache op, the weak symbol mechani

Re: [U-Boot] MAKEALL

2011-10-18 Thread Tom Rini
On Tue, Oct 18, 2011 at 11:31 AM, Mike Frysinger wrote: > On Tuesday 18 October 2011 13:58:22 Tom Rini wrote: >> If we're going to throw out feature requests, I'd like more than one >> SoC family support. >> I've got a wrapper around MAKEALL right now to build omap3 then omap4 >> then davinci. > >

[U-Boot] [PATCH/RFC] MAKEALL: allow people to specify arch/cpu/soc/vendor names

2011-10-18 Thread Mike Frysinger
Rather than maintain a hand coded list of targets which represent cpus/etc and expand into a bunch of board names, add automatic look up to all targets. This makes target selection a bit more natural imo, and keeps down on code duplication. Signed-off-by: Mike Frysinger --- MAKEALL | 384 +

[U-Boot] MPC8377E eTSEC CRC error with RTL8305SC

2011-10-18 Thread Alemao
Hi all, Our board has eTSEC1 connected to a Realtek RTL8305SC switch (PHY MII mode). eTSEC1 says that all packets received has CRC errors, but the packets are OK. U-Boot says: "Got error 4". If I ignore CRC status, I can load Linux kernel, but the driver Gianfar also says that received packets ha

  1   2   >