Re: [U-Boot] Problems using vxboot

2011-08-12 Thread reinhard.a...@t-online.de
Hello, i do not find a requirement that the cache needs to be off in the vxWorks manuals. The entry point sysInit(int) intended by Windriver to be called from the vxWorks bootrom, a very small vxWorks system. The routine is called by the go() handler in the bootrom, that clears the cache f

Re: [U-Boot] Pull request: u-boot-arm/master

2011-08-12 Thread Albert ARIBAUD
Hi Igor, On 18/07/2011 19:52, Albert ARIBAUD wrote: > Hi Igor, > >>> Igor Grinberg (1): >>> arm: add CONFIG_MACH_TYPE setting and documentation >> >> hmm... no [2/3] and [3/3]... ? >> >> http://patchwork.ozlabs.org/patch/103048/ >> http://patchwork.ozlabs.org/patch/103047/ >> >> When do y

[U-Boot] [PATCH] armv7:cache: D cache line size read method

2011-08-12 Thread Lukasz Majewski
This commit adds support for reading the D cache line size for armv7 architecture. The get_dcache_line_size() function is supposed to work in conjunction with memalign call to provide D cache aligned DMA buffers. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park CC: Aneesh V CC: Albe

[U-Boot] [PATCH] mmc: dcache: Replace ext_csd buffer with cache aligned one

2011-08-12 Thread Lukasz Majewski
This commit replaces the ext_csd buffer allocated as an automatic variable with one cache aligned. The ext_csd might be allocated with alignment not equal to the L1 D cache alignment. The memalign from common/dlmalloc.c is allowing for buffer allocation with proper cache alignment. The common/dlm

Re: [U-Boot] [PATCH 8/8 v5] integrator: convert to new build system

2011-08-12 Thread Albert ARIBAUD
On 05/08/2011 16:42, Albert ARIBAUD wrote: > On 05/08/2011 15:49, Linus Walleij wrote: >> This deletes the integrator split_by_variant.sh script and >> defines a number of unique board types for the core modules >> that are meaningful to support for the Integrator AP/CP, i.e. >> the ones that did n

[U-Boot] [PATCH 0/2] i2c:gpio:s5p: I2C GPIO SW implementation (via soft_i2c)

2011-08-12 Thread Lukasz Majewski
This patches adds support for I2C GPIO S5PC1xx and S5PC2xx targets. Moreover the I2C GPIO on the S5PC110 GONI reference target is enabled. Lukasz Majewski (2): i2c:gpio:s5p: I2C GPIO Software implementation (via soft_i2c) i2c:gpio:s5p: Enable I2C GPIO on the GONI target arch/arm/include/asm/

[U-Boot] [PATCH 1/2 v4] i2c:gpio:s5p: I2C GPIO Software implementation (via soft_i2c)

2011-08-12 Thread Lukasz Majewski
This patch adds support for software I2C for GONI reference target. It adds support for access to GPIOs by number, not as it is present, by bank and offset. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Minkyu Kang Cc: Heiko Schocher --- Changes for v2: - Generic GPI

[U-Boot] [PATCH 2/2] i2c:gpio:s5p: Enable I2C GPIO on the GONI target

2011-08-12 Thread Lukasz Majewski
This patch enables the software I2C for GONI reference target. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Minkyu Kang Cc: Heiko Schocher --- include/configs/s5p_goni.h | 13 + 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/include/configs/s5

Re: [U-Boot] [PATCH 8/8 v5] integrator: convert to new build system

2011-08-12 Thread Linus Walleij
On Fri, Aug 12, 2011 at 10:27 AM, Albert ARIBAUD wrote: >>> Signed-off-by: Linus Walleij >> >> Sorry, still does not apply properly on u-boot-arm/master. >> >> Specifically, it does not apply to Makefile. >> >> Please fetch u-boot-arm and rebase, then post as V6 with added history. >> >> Amicalem

Re: [U-Boot] [PATCH] arm: lib: memcpy: Do not copy to same address

2011-08-12 Thread Albert ARIBAUD
On 23/05/2011 11:06, Matthias Weisser wrote: > In some cases (e.g. bootm with a elf payload which is already at the right > position) there is a in place copy of data to the same address. Catching this > saves some ms while booting. > > Signed-off-by: Matthias Weisser > --- > arch/arm/lib/memcpy.

Re: [U-Boot] [PATCH] armv7:cache: D cache line size read method

2011-08-12 Thread Albert ARIBAUD
Hi Lukasz, On 12/08/2011 10:24, Lukasz Majewski wrote: > This commit adds support for reading the D cache line size for armv7 > architecture. > > The get_dcache_line_size() function is supposed to work in conjunction > with memalign call to provide D cache aligned DMA buffers. > > Signed-off-by: L

Re: [U-Boot] [PATCH] armv7:cache: D cache line size read method

2011-08-12 Thread Aneesh V
On Friday 12 August 2011 01:54 PM, Lukasz Majewski wrote: > This commit adds support for reading the D cache line size for armv7 > architecture. > > The get_dcache_line_size() function is supposed to work in conjunction > with memalign call to provide D cache aligned DMA buffers. > > Signed-off-b

Re: [U-Boot] [PATCH] mmc: dcache: Replace ext_csd buffer with cache aligned one

2011-08-12 Thread Albert ARIBAUD
Hi Lukasz, On 12/08/2011 10:25, Lukasz Majewski wrote: > + char *ext_csd = memalign(get_dcache_line_size(), mmc->read_bl_len); Since this is the first effort for aligning buffers on the caller side, I'd like to make sure the method can be, and is, standardized across all changes. So befor

Re: [U-Boot] [PATCH] arm: fix bd pointer dereference prior initialization

2011-08-12 Thread Albert ARIBAUD
Hi Igor, On 28/07/2011 11:04, Igor Grinberg wrote: > gd->bd pointer has been used prior been initialized. > Move the relevant code after the initialization. > > Signed-off-by: Igor Grinberg > --- > arch/arm/lib/board.c |8 > 1 files changed, 4 insertions(+), 4 deletions(-) > > diff

Re: [U-Boot] [PATCH] armv7:cache: D cache line size read method

2011-08-12 Thread Aneesh V
Hi Albert, Lukasz, On Friday 12 August 2011 02:28 PM, Albert ARIBAUD wrote: > Hi Lukasz, > > On 12/08/2011 10:24, Lukasz Majewski wrote: >> This commit adds support for reading the D cache line size for armv7 >> architecture. >> >> The get_dcache_line_size() function is supposed to work in conjunc

Re: [U-Boot] [PATCH] mmc: dcache: Replace ext_csd buffer with cache aligned one

2011-08-12 Thread Lukasz Majewski
Hi Albert, On Fri, 12 Aug 2011 11:07:57 +0200 Albert ARIBAUD wrote: > I know it is in GNU LIBC; I also know it is not (yet...) in U-Boot's > own C library. What about the most common toolchains used on U-Boot? The memalign is already defined in the u-boot tree (common/dlmalloc.c). The dlmalloc

Re: [U-Boot] [PATCH] AT91: Defer Dataflash access to env_relocate_spec

2011-08-12 Thread Albert ARIBAUD
On 03/08/2011 09:36, Hong Xu wrote: > Hi Reinhard, > > On 08/03/2011 03:20 PM, Reinhard Meyer wrote: >> Dear Hong Xu, >> > When env_init is called, the SPI is not actually initialized in U-Boot. >> > So that we can not read Dataflash for its content. >> > We simply mark it OK for now, and

Re: [U-Boot] [PATCH] armv7:cache: D cache line size read method

2011-08-12 Thread Lukasz Majewski
Hi Anessh, On Fri, 12 Aug 2011 14:32:52 +0530 Aneesh V wrote: > > + > > +int get_dcache_line_size(void) > > +{ > > + return 0; > > +} > > Does memalign() take 0 as input and if so what is the output. The GNU > C library seems to mandate only that it's a power of 2. But the > following man p

Re: [U-Boot] [PATCH] armv7:cache: D cache line size read method

2011-08-12 Thread Albert ARIBAUD
(Added Hong Xu) Hi Aneesh, On 12/08/2011 11:16, Aneesh V wrote: > Hi Albert, Lukasz, > > On Friday 12 August 2011 02:28 PM, Albert ARIBAUD wrote: >> Hi Lukasz, >> >> On 12/08/2011 10:24, Lukasz Majewski wrote: >>> This commit adds support for reading the D cache line size for armv7 >>> architectu

Re: [U-Boot] [PATCH] mmc: dcache: Replace ext_csd buffer with cache aligned one

2011-08-12 Thread Albert ARIBAUD
Hi Lukasz, On 12/08/2011 11:35, Lukasz Majewski wrote: > Hi Albert, > > On Fri, 12 Aug 2011 11:07:57 +0200 > Albert ARIBAUD wrote: > >> I know it is in GNU LIBC; I also know it is not (yet...) in U-Boot's >> own C library. What about the most common toolchains used on U-Boot? > > The memalign is

Re: [U-Boot] [PATCH v4] ARM926ejs: Add routines to invalidate D-Cache

2011-08-12 Thread Albert ARIBAUD
On 11/08/2011 09:30, Marek Vasut wrote: > That's actually not a bad idea, but we need to be definitelly 100% sure it'll > work for all these different v5 and v6 cores ! That's what I'm afraid of: not all v5 or v6 cores may have the same set of cache functions. I'll have a look at various ARMv5 b

Re: [U-Boot] [PATCH v4] ARM926ejs: Add routines to invalidate D-Cache

2011-08-12 Thread Marek Vasut
On Friday, August 12, 2011 11:57:08 AM Albert ARIBAUD wrote: > On 11/08/2011 09:30, Marek Vasut wrote: > > That's actually not a bad idea, but we need to be definitelly 100% sure > > it'll work for all these different v5 and v6 cores ! > > That's what I'm afraid of: not all v5 or v6 cores may have

[U-Boot] [PATCH 8/8 v6] integrator: convert to new build system

2011-08-12 Thread Linus Walleij
This deletes the integrator split_by_variant.sh script and defines a number of unique board types for the core modules that are meaningful to support for the Integrator AP/CP, i.e. the ones that did not just say "unsupported core module" in split_by_variant.sh. If more core modules need to be suppo

Re: [U-Boot] d-cache enable

2011-08-12 Thread Aneesh V
Hi Lukasz, On Tuesday 09 August 2011 08:11 PM, Lukasz Majewski wrote: > Dear all, > > As we know dcache is now enabled in u-boot. > > I'm trying to make the S5P Goni target working with d-cache enabled. > There are some patches and ideas appearing on the list (e.g. > http://patchwork.ozlabs.org/

Re: [U-Boot] d-cache enable

2011-08-12 Thread Lukasz Majewski
Hi Aneesh, On Fri, 12 Aug 2011 16:29:25 +0530 Aneesh V wrote: > Hi Lukasz, > > On Tuesday 09 August 2011 08:11 PM, Lukasz Majewski wrote: > > Dear all, > > > > As we know dcache is now enabled in u-boot. > > > > I'm trying to make the S5P Goni target working with d-cache enabled. > > There ar

Re: [U-Boot] d-cache enable

2011-08-12 Thread Albert ARIBAUD
Hi Lukasz, On 12/08/2011 13:41, Lukasz Majewski wrote: > It is embarrassing to admit, but I've __wrongly__ assumed that *_range() > functions are accepting the start address and range for > invalidation/flushing. Do you mean we're hitting again a confusion between *_range(start, stop) and *_ran

Re: [U-Boot] d-cache enable

2011-08-12 Thread Aneesh V
Hi Lukasz, On Friday 12 August 2011 05:11 PM, Lukasz Majewski wrote: > Hi Aneesh, > > On Fri, 12 Aug 2011 16:29:25 +0530 > Aneesh V wrote: > >> Hi Lukasz, >> >> On Tuesday 09 August 2011 08:11 PM, Lukasz Majewski wrote: >>> Dear all, >>> >>> As we know dcache is now enabled in u-boot. >>> >>> I

Re: [U-Boot] d-cache enable

2011-08-12 Thread Reinhard Meyer
Dear *ALL*, >> It is embarrassing to admit, but I've __wrongly__ assumed that *_range() >> functions are accepting the start address and range for >> invalidation/flushing. > > Do you mean we're hitting again a confusion between *_range(start, stop) > and *_range(start, length)? > > If so, then

Re: [U-Boot] [PATCH 8/8 v6] integrator: convert to new build system

2011-08-12 Thread Albert ARIBAUD
Hi Linus, On 12/08/2011 12:28, Linus Walleij wrote: > This deletes the integrator split_by_variant.sh script and > defines a number of unique board types for the core modules > that are meaningful to support for the Integrator AP/CP, i.e. > the ones that did not just say "unsupported core module"

Re: [U-Boot] d-cache enable

2011-08-12 Thread Albert ARIBAUD
Hi Reinhard, On 12/08/2011 14:32, Reinhard Meyer wrote: > Dear *ALL*, >>> It is embarrassing to admit, but I've __wrongly__ assumed that *_range() >>> functions are accepting the start address and range for >>> invalidation/flushing. >> >> Do you mean we're hitting again a confusion between *_rang

Re: [U-Boot] [PATCH 14/52] ARM: remove broken "integratorap" board

2011-08-12 Thread Albert ARIBAUD
Hi Linus, Wolfgang, On 18/07/2011 21:33, Linus Walleij wrote: > On Mon, Jul 18, 2011 at 2:00 PM, Wolfgang Denk wrote: > >> Linus, do you see a way to adapt the board(s) you are taking >> responibility for to using configuration through bopards.cfg, so we >> can get rid of the split_by_variant.sh

Re: [U-Boot] [PATCH 38/52] ARM: remove broken "integratorcp" board

2011-08-12 Thread Albert ARIBAUD
Hi Linus, Wolfgang, On 18/07/2011 00:17, Wolfgang Denk wrote: > Signed-off-by: Wolfgang Denk > --- Boards now build again thanks to Linus' patchset. Therefore I have marked this patch 38/52 'Not Applicable'. Amicalement, -- Albert. ___ U-Boot mailing

Re: [U-Boot] d-cache enable

2011-08-12 Thread Lukasz Majewski
Hi Albert, On Fri, 12 Aug 2011 14:21:18 +0200 Albert ARIBAUD wrote: > Hi Lukasz, > > On 12/08/2011 13:41, Lukasz Majewski wrote: > > > It is embarrassing to admit, but I've __wrongly__ assumed that > > *_range() functions are accepting the start address and range for > > invalidation/flushing.

Re: [U-Boot] [PATCH] AT91: fix at91cap9 SoC files

2011-08-12 Thread Albert ARIBAUD
Hi Reinhard, On 03/08/2011 10:39, Reinhard Meyer wrote: > Signed-off-by: Reinhard Meyer > --- FYI, there are two consecutive commits in your u-boot-atmel/fix-at91cap9 branch with this same exact title of "AT91: fix at91cap9 SoC files". Somehow this can't be correct: either both patches contribu

Re: [U-Boot] d-cache enable

2011-08-12 Thread Albert ARIBAUD
On 12/08/2011 15:08, Lukasz Majewski wrote: > Hi Albert, > > On Fri, 12 Aug 2011 14:21:18 +0200 > Albert ARIBAUD wrote: > >> Hi Lukasz, >> >> On 12/08/2011 13:41, Lukasz Majewski wrote: >> >>> It is embarrassing to admit, but I've __wrongly__ assumed that >>> *_range() functions are accepting the

[U-Boot] [STATUS] u-boot-arm/master branch complete wrt merge window?

2011-08-12 Thread Albert ARIBAUD
Hi all, I *think* I've finished getting in all patches that should have gone in from the merge window, and also bugfixes. However, I seem to remember a mail asking me to consider some patches I'd missed, but I could not find this mail in any of my folders to save my life. :( So apologies in a

Re: [U-Boot] [PATCH] AT91: fix at91cap9 SoC files

2011-08-12 Thread Reinhard Meyer
Dear Albert, >> Signed-off-by: Reinhard Meyer >> --- > > FYI, there are two consecutive commits in your u-boot-atmel/fix-at91cap9 > branch with this same exact title of "AT91: fix at91cap9 SoC files". > > Somehow this can't be correct: either both patches contribute to the same > atomic change

Re: [U-Boot] [PATCH 8/8 v6] integrator: convert to new build system

2011-08-12 Thread Linus Walleij
On Fri, Aug 12, 2011 at 2:32 PM, Albert ARIBAUD wrote: > Just a side and general note: as tiring as it may seem, people, please > always keep the full history in every patch version, so that anyone can tell > what was done and why, without having to go back to mails that they may not > have in th

Re: [U-Boot] [STATUS] u-boot-arm/master branch complete wrt merge window?

2011-08-12 Thread Heiko Schocher
Hello Albert, Albert ARIBAUD wrote: > Hi all, > > I *think* I've finished getting in all patches that should have gone in > from the merge window, and also bugfixes. > > However, I seem to remember a mail asking me to consider some patches > I'd missed, but I could not find this mail in any of

Re: [U-Boot] [STATUS] u-boot-arm/master branch complete wrt merge window?

2011-08-12 Thread Simon Schwarz
Hi Albert, OMAP3 SPL - would be great: http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/102112/focus=105261 Matter was discussed in this thread: http://article.gmane.org/gmane.comp.boot-loaders.u-boot/103578 Haven't heard anything after sending in V9. Regards Simon On 08/12/2011 03:23 PM

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

2011-08-12 Thread Stefano Babic
Hi Albert, please pull from u-boot-imx (rebased on your current u-boot-arm): The following changes since commit ee9cb9fc8922b223f8029259e84f56d06d8c8b3b: integrator: convert to new build system (2011-08-12 14:29:15 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-

Re: [U-Boot] [STATUS] u-boot-arm/master branch complete wrt merge window?

2011-08-12 Thread Aneesh V
Hi Albert, On Friday 12 August 2011 06:53 PM, Albert ARIBAUD wrote: > Hi all, > > I *think* I've finished getting in all patches that should have gone in > from the merge window, and also bugfixes. > > However, I seem to remember a mail asking me to consider some patches > I'd missed, but I co

[U-Boot] (no subject)

2011-08-12 Thread Ronny D
http://likvidacestromu.cz/oldtemp/htcgrw.htm";>http://likvidacestromu.cz/oldtemp/htcgrw.htm___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/2] fdt: Add a fdt_set_node_status function

2011-08-12 Thread Scott Wood
On 08/11/2011 10:18 PM, Chunhe Lan wrote: > Add a fdt_set_node_status function that will set the specified > node's status to the value contained in "status". If the node > doesn't have "status" property that will be created. > > Signed-off-by: Chunhe Lan > --- > common/fdt_support.c | 17 +++

Re: [U-Boot] [PATCH] powerpc/mpc83xx: Cleanup usage of LBC and DDR constants

2011-08-12 Thread Joe Hershberger
On Fri, Aug 12, 2011 at 1:38 AM, Joe Hershberger wrote: > Attempt to make 83xx use constants consistently. > In the course of switching from numerics to field constants, a number of > reserved fields being assigned were found. > Those places that seemed broken I marked with [RFC]... please provid

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

2011-08-12 Thread Albert ARIBAUD
Hi Stefano, Le 12/08/2011 16:08, Stefano Babic a écrit : > Hi Albert, > > please pull from u-boot-imx (rebased on your current u-boot-arm): > > The following changes since commit ee9cb9fc8922b223f8029259e84f56d06d8c8b3b: > >integrator: convert to new build system (2011-08-12 14:29:15 +0200) >

Re: [U-Boot] [PATCH 2/2] arm, lib/board.c: use gd->ram_size instead of bd->bi_memsize

2011-08-12 Thread Albert ARIBAUD
Hi Heiko, Le 03/06/2011 10:11, Heiko Schocher a écrit : > Signed-off-by: Heiko Schocher > cc: Albert Aribaud > --- > arch/arm/lib/board.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c > index 05ee71b..0acd23b 100644 >

Re: [U-Boot] [STATUS] u-boot-arm/master branch complete wrt merge window?

2011-08-12 Thread Albert ARIBAUD
Le 12/08/2011 15:59, Heiko Schocher a écrit : > Hello Albert, > > Albert ARIBAUD wrote: >> Hi all, >> >> I *think* I've finished getting in all patches that should have gone in >> from the merge window, and also bugfixes. >> >> However, I seem to remember a mail asking me to consider some patches >

Re: [U-Boot] [STATUS] u-boot-arm/master branch complete wrt merge window?

2011-08-12 Thread Albert ARIBAUD
Hi Simon, Le 12/08/2011 16:02, Simon Schwarz a écrit : > Hi Albert, > > OMAP3 SPL - would be great: > http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/102112/focus=105261 > > Matter was discussed in this thread: > http://article.gmane.org/gmane.comp.boot-loaders.u-boot/103578 > > Haven't hea

Re: [U-Boot] [STATUS] u-boot-arm/master branch complete wrt merge window?

2011-08-12 Thread Albert ARIBAUD
Hi Aneesh, Le 12/08/2011 16:06, Aneesh V a écrit : > Hi Albert, > > On Friday 12 August 2011 06:53 PM, Albert ARIBAUD wrote: >> Hi all, >> >> I *think* I've finished getting in all patches that should have gone in >> from the merge window, and also bugfixes. >> >> However, I seem to remember a mai

Re: [U-Boot] [PATCH v5 1/3] gpio: Move common gpio.h to include/asm-generic

2011-08-12 Thread Mike Frysinger
On Friday, August 12, 2011 04:11:22 Joe Hershberger wrote: > +int gpio_request(int gp, const char *label); > +void gpio_free(int gp); > +int gpio_direction_input(int gp); > +int gpio_direction_output(int gp, int value); > +int gpio_get_value(int gp); > +void gpio_set_value(int gp, int value); plea

Re: [U-Boot] [PATCH 1/2] dm3730: enable dpll5

2011-08-12 Thread Jason Kridner
On Fri, Jun 10, 2011 at 6:21 PM, Eric Bénard wrote: > which is used to provide 120MHz to USB EHCI > This allows EHCI to work on BeagleBoard XM > > Signed-off-by: Eric Bénard Acked-by: Jason Kridner We've tested this at TI. Thanks for the patch. Sandeep, can you apply this to the TI staging t

[U-Boot] [PATCH v2 0/4] powerpc/mpc83xx: Cleanup usage of LBC and DDR constants

2011-08-12 Thread Joe Hershberger
Attempt to make 83xx use constants consistently. In the course of switching from numerics to field constants, a number of reserved fields being assigned were found. Those places that seemed broken I marked with [RFC]... please provide guidance if you are familiar with that target. Cc: Joe Hershb

[U-Boot] [PATCH v2 1/4] powerpc/mpc83xx: Whitespace changes

2011-08-12 Thread Joe Hershberger
Signed-off-by: Joe Hershberger Cc: Joe Hershberger Cc: Kim Phillips --- Changes for v2: - Split include/configs/MPC8315ERDB.h | 13 +++-- include/configs/MPC8323ERDB.h |6 +++--- include/configs/MPC832XEMDS.h |6 +++--- include/configs/MPC8349EMDS.h | 36 ++

[U-Boot] [PATCH v2 3/4] powerpc/mpc83xx: Cleanup usage of DDR constants

2011-08-12 Thread Joe Hershberger
Signed-off-by: Joe Hershberger Cc: Joe Hershberger Cc: Kim Phillips --- Changes for v2: - Split arch/powerpc/cpu/mpc83xx/spd_sdram.c |9 + include/configs/MPC8308RDB.h |5 ++- include/configs/MPC8313ERDB.h| 10 -- include/configs/MPC8315ERDB.h|5 +

Re: [U-Boot] [PATCH 2/2] beagleboard: enable HUB power on XM boards

2011-08-12 Thread Jason Kridner
On Tue, Jun 14, 2011 at 10:33 AM, Eric Bénard wrote: > Hi Christian, > > On 14/06/2011 16:27, Christian Spielberger wrote: >> we have both, a beagle xM-B and a beagle xM-C. The following works on >> both boards and is different from your patch. It is not possible to >> differentiate between Rev xM

[U-Boot] [PATCH v6 4/4] mpc8313erdb: Enable GPIO support on the MPC8313E RDB

2011-08-12 Thread Joe Hershberger
Signed-off-by: Joe Hershberger Cc: Joe Hershberger Cc: Kim Phillips --- Changes for v2: - Moved changes to board/freescale/mpc8313erdb/mpc8313erdb.c from patch 1/2 Changes for v3: - Renamed gpio_init_* to mpc83xx_gpio_init_* - Added board_early_init_r support to MPC8313ERDB targets Changes fo

[U-Boot] [PATCH v6 1/4] gpio: Move common gpio.h to include/asm-generic

2011-08-12 Thread Joe Hershberger
Common GPIO API used by cmd_gpio should be available to any arch Signed-off-by: Joe Hershberger Cc: Joe Hershberger Cc: Mike Frysinger --- Changes for v4: - Split out of patch 1/2 Changes for v5: - Moved asm/arch/gpio.h include to asm/gpio.h Changes for v6: arch/arm/include/asm/gpio.h

[U-Boot] [PATCH v6 3/4] mpc83xx: Add a GPIO driver for the MPC83XX family

2011-08-12 Thread Joe Hershberger
Signed-off-by: Joe Hershberger Cc: Joe Hershberger Cc: Kim Phillips --- Changes for v2: - Improved names of INIT constants (to include "CONFIG_") - Moved changes to board/freescale/mpc8313erdb/mpc8313erdb.c to patch 2/2 Changes for v3: - gpio_init_* is now mpc83xx_gpio_init_* Changes for v4:

[U-Boot] [PATCH v6 2/4] gpio: Modify common gpio.h to more closely match Linux

2011-08-12 Thread Joe Hershberger
Change "int gp" to "unsigned gpio" Update the 2 existing arm implementations to match the new API Remove the gpio_toggle() implementation (never used) Signed-off-by: Joe Hershberger Cc: Joe Hershberger Cc: Mike Frysinger --- Changes for v6: - Linuxize gpio API drivers/gpio/da8xx_gpio.c |

[U-Boot] MTCN Numbers: 6096147516

2011-08-12 Thread Mr. Garry Moore
-- My associate has helped me to send your first payment of $7,500 USD to you as instructed by the Malaysian Government and Mr. David Cameron the United Kingdom prime minister after the last G20 meeting that was held in Malaysia, making you one of the beneficiaries. Here is the information below

Re: [U-Boot] ehci-hcd: Allow cleanups to happen on an EHCI timeout.

2011-08-12 Thread Joel A Fernandes
Hi Simon, Sorry for the delayed response to your email. I was just trying to prepare a proper response to your email with collating information about similar fixes to the EHCI timeout but never got to completing it. Please excuse me, thanks. I'm following up on your feedback for the patch titled:

Re: [U-Boot] ehci-hcd: Allow cleanups to happen on an EHCI timeout.

2011-08-12 Thread Joel A Fernandes
[Adding Simon to CC] Hi Simon, Sorry for the delayed response to your email. I was just trying to prepare a proper response to your email with collating information about similar fixes to the EHCI timeout but never got to completing it. Please excuse me, thanks. I'm following up on your feedback

[U-Boot] MTCN Numbers: 6096147516

2011-08-12 Thread Mr. Garry Moore
-- My associate has helped me to send your first payment of $7,500 USD to you as instructed by the Malaysian Government and Mr. David Cameron the United Kingdom prime minister after the last G20 meeting that was held in Malaysia, making you one of the beneficiaries. Here is the information below