Re: [U-Boot] Which Board name in u-boot similar to NIC card?

2010-05-10 Thread Wolfgang Denk
Dear Hari Babu, In message you wrote: > > Can u help on u-boot source code to find which board name is similar to NIC > card,irrespective of cpu and other hardware devices.Thank u. This request is preposterous - it is exactly the "cpu and other hardware devices" which makes the differences bet

[U-Boot] 8640D Errata

2010-05-10 Thread Thirumalai
Hi denx, Is 8640D all errata has fixed on the u-boot-2009.06 version ? Or it is the responsible for end user ? Kindly clarify me. -Thirumalai ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] Avoid use of divides in print_size.

2010-05-10 Thread Nick Thompson
Modification of print_size to avoid use of divides and especially long long divides. Keep the binary scale factor in terms of bit shifts instead. This should be faster, since the previous code gave the compiler no clues that the divides where always powers of two, preventing optimisation. Signed-o

[U-Boot] [PATCH 1/3] Support for devices with FAT32 PBR

2010-05-10 Thread Igor Luri
Signed-off-by: Igor Luri --- disk/part_dos.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/disk/part_dos.c b/disk/part_dos.c index 887b75e..d91f773 100644 --- a/disk/part_dos.c +++ b/disk/part_dos.c @@ -77,7 +77,8 @@ static int test_block_type(unsigned char *buffer)

[U-Boot] [PATCH 2/3] Support for devices with FAT32 PBR

2010-05-10 Thread Igor Luri
Signed-off-by: Igor Luri --- disk/part_dos.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/disk/part_dos.h b/disk/part_dos.h index ac93f20..6383c58 100644 --- a/disk/part_dos.h +++ b/disk/part_dos.h @@ -35,6 +35,7 @@ #define DOS_PART_TBL_OFFSET0x1be #define DOS_P

[U-Boot] [PATCH 3/3] Support for devices with FAT32 PBR

2010-05-10 Thread Igor Luri
Signed-off-by: Igor Luri --- fs/fat/fat.c |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/fs/fat/fat.c b/fs/fat/fat.c index 2445f1e..4da4351 100644 --- a/fs/fat/fat.c +++ b/fs/fat/fat.c @@ -50,6 +50,7 @@ static int cur_part = 1; #define DOS_PART_TBL_OFFSET0x1b

Re: [U-Boot] Building for da830 fails

2010-05-10 Thread Nick Thompson
On 07/05/10 16:30, Timur Tabi wrote: > Scott McNutt wrote: >> lib/libgeneric.a(display_options.o): In function `print_size': >> /home/smcnutt/27xx/u-boot.git/lib/display_options.c:66: undefined >> reference to `__udivdi3' >> /home/smcnutt/27xx/u-boot.git/lib/display_options.c:69: undefined >> ref

Re: [U-Boot] [PATCH v4 6/8] mpc5121: add support for PDM360NG board

2010-05-10 Thread Anatolij Gustschin
On Sun, 9 May 2010 11:01:45 +0300 Michael Zaidman wrote: > On Sat, Apr 24, 2010 at 8:27 PM, Anatolij Gustschin wrote: > > PDM360NG is a MPC5121E based board by ifm ecomatic gmbh. > > > > [snip] > > +#define CONFIG_SYS_INIT_RAM_ENDCONFIG_SYS_SRAM_SIZE > /* End of area */ > + > +

Re: [U-Boot] [PATCH 1/3] Support for devices with FAT32 PBR

2010-05-10 Thread Sergei Shtylyov
Hello. Igor Luri wrote: > Signed-off-by: Igor Luri > --- > disk/part_dos.c |3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git a/disk/part_dos.c b/disk/part_dos.c > index 887b75e..d91f773 100644 > --- a/disk/part_dos.c > +++ b/disk/part_dos.c > @@ -77,7 +77,8 @@ static

Re: [U-Boot] query about USB gadget framework

2010-05-10 Thread Detlev Zundel
Hi Dmitry, > I'm curious what are the current plans for merging the USB gadget > framework [1] into mainline tree? You should address this question to the USB custodian Remy Bohmer (I put him on CC). > Looks like there were attempts [2] to do so but I failed to figure out > why it was not actu

Re: [U-Boot] [PATCH v4] POST cleanup.

2010-05-10 Thread Detlev Zundel
Hi Michael, > Combine previously submitted POST cleanup patch series > into single patch. Fix plain POST support introduced recently > for mpc812x arch. > > - Revives POST for blackfin arch; > - Removes redundant code: > arch/blackfin/lib/post.c > board/ssv/common/post.c > arch/powe

Re: [U-Boot] 8640D Errata

2010-05-10 Thread Wolfgang Denk
Dear "Thirumalai", In message you wrote: > > Is 8640D all errata has fixed on the u-boot-2009.06 version ? Or it is > the responsible for end user ? > Kindly clarify me. I am not working on 8640D processors, I have no idea. Please check yourself. Best regards, Wolfgang Denk -- DENX So

[U-Boot] [PATCH v2 1/2] Support for devices with FAT32 PBR

2010-05-10 Thread Igor Luri
Signed-off-by: Igor Luri --- disk/part_dos.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/disk/part_dos.c b/disk/part_dos.c index 887b75e..d91f773 100644 --- a/disk/part_dos.c +++ b/disk/part_dos.c @@ -77,7 +77,8 @@ static int test_block_type(unsigned char *buffer)

[U-Boot] [PATCH v2 2/2] Support for devices with FAT32 PBR

2010-05-10 Thread Igor Luri
Signed-off-by: Igor Luri --- fs/fat/fat.c |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/fs/fat/fat.c b/fs/fat/fat.c index 2445f1e..4da4351 100644 --- a/fs/fat/fat.c +++ b/fs/fat/fat.c @@ -50,6 +50,7 @@ static int cur_part = 1; #define DOS_PART_TBL_OFFSET0x1b

Re: [U-Boot] [PATCH v4] POST cleanup.

2010-05-10 Thread Michael Zaidman
On Mon, May 10, 2010 at 2:17 PM, Detlev Zundel wrote: > Hi Michael, > >> Combine previously submitted POST cleanup patch series >> into single patch. Fix plain POST support introduced recently >> for mpc812x arch. >> >> - Revives POST for blackfin arch; >> - Removes redundant code: >>      arch/bl

Re: [U-Boot] [PATCH v4] POST cleanup.

2010-05-10 Thread Anatolij Gustschin
On Sun, 9 May 2010 18:27:10 +0300 Michael Zaidman wrote: > Combine previously submitted POST cleanup patch series > into single patch. Fix plain POST support introduced recently > for mpc812x arch. > > - Revives POST for blackfin arch; > - Removes redundant code: > arch/blackfin/lib/post.c

Re: [U-Boot] [PATCH v2 2/2] Support for devices with FAT32 PBR

2010-05-10 Thread Wolfgang Denk
Dear Igor Luri, In message <1273491334-10693-2-git-send-email-il...@aotek.es> you wrote: > > Signed-off-by: Igor Luri > --- > fs/fat/fat.c |7 +-- > 1 files changed, 5 insertions(+), 2 deletions(-) It makes no sense to split these patches. Please merge them into one, as Sergei asked be

Re: [U-Boot] [PATCH v4] POST cleanup.

2010-05-10 Thread Michael Zaidman
On Mon, May 10, 2010 at 2:51 PM, Anatolij Gustschin wrote: ... > mpc512x related changes are OK. I tested them on mpc5121 > based pdm360ng board. Thanks again for this work! > For mpc5121 part you can add > Tested-by: Anatolij Gustschin > Ok, thanks for testing. Michael _

Re: [U-Boot] [PATCH v4] POST cleanup.

2010-05-10 Thread Michael Zaidman
On Mon, May 10, 2010 at 2:17 PM, Detlev Zundel wrote: > > It would have been really nice if you put the maintainers on CC (simply > include a CC: ... in the patch git-send-email does the rest) of the > boards that you change config files.  This way they knew that there was > a change which they sh

Re: [U-Boot] [PATCH v2 2/2] Support for devices with FAT32 PBR

2010-05-10 Thread Igor Luri
Dear Wolfgang, El lun, 10-05-2010 a las 13:54 +0200, Wolfgang Denk escribió: > It makes no sense to split these patches. Please merge them into one, > as Sergei asked before. Sorry, I'll do it inmediately. > > Also, I doubt that this fixes all current problems with FAT32 code. > Did you - jus

[U-Boot] [PATCH v3] Support for devices with FAT32 PBR

2010-05-10 Thread Igor Luri
Signed-off-by: Igor Luri --- disk/part_dos.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/disk/part_dos.c b/disk/part_dos.c index 887b75e..d91f773 100644 --- a/disk/part_dos.c +++ b/disk/part_dos.c @@ -77,7 +77,8 @@ static int test_block_type(unsigned char *buffer)

[U-Boot] [PATCH v5] POST cleanup.

2010-05-10 Thread Michael Zaidman
Combine previously submitted POST cleanup patch series into single patch. Fix plain POST support introduced recently for mpc812x arch. - Revives POST for blackfin arch; - Removes redundant code: arch/blackfin/lib/post.c board/ssv/common/post.c arch/powerpc/cpu/ppc4xx/commproc.c

Re: [U-Boot] [PATCH] ARM1136: Fix cache_flush() error and correct cpu_init_crit() comments

2010-05-10 Thread Dirk Behme
Hi George, On 05.05.2010 23:09, George G. Davis wrote: > The ARM1136 cache_flush() function uses the "mcr p15, 0, rn, c7, c7, 0" > instruction which means "Invalidate Both Caches ... Also flushes the branch target cache" > " when in fact the intent > is to "Clean and Invalidate Entire Data Cache

Re: [U-Boot] u-boot hangs after detecting DDR3 RAM and Flash.

2010-05-10 Thread prakash bedge
Hi, I got the root cause. It was the DDR related issue while reading the DMC registers. Now the problem is solved. I am not not getting exception error after enabling MSR_EE. I am moving to use the latest u-boot code (2010.03) believing that there might be fixup for timing issue I am facing when

[U-Boot] [PATCH] remove useless free(ptr) calls on NULL ptr

2010-05-10 Thread Serge Ziryukin
Signed-off-by: Serge Ziryukin --- drivers/net/lan91c96.c |1 - drivers/net/smc911x.c |1 - 2 files changed, 0 insertions(+), 2 deletions(-) diff --git a/drivers/net/lan91c96.c b/drivers/net/lan91c96.c index 90e4002..810079f 100644 --- a/drivers/net/lan91c96.c +++ b/drivers/net/lan91c96.

[U-Boot] tftp not working for larger rootfs image

2010-05-10 Thread Navaneethan P
Hi All, I am using Freescale's iMX51 based custom board with NAND flash size of 128MB. My root file system image size happens to be 75MB. I have DDR RAM of 128MB. My DDR Start Address is 0x9000_. I am trying to load my root file system to 0x9080_.(8MB after the starting location). But w

Re: [U-Boot] tftp not working for larger rootfs image

2010-05-10 Thread Fabio Estevam
--- On Mon, 5/10/10, Navaneethan P wrote: > From: Navaneethan P > Subject: [U-Boot] tftp not working for larger rootfs image > To: "u-boot@lists.denx.de" > Date: Monday, May 10, 2010, 12:11 PM > Hi All, > > I am using Freescale's iMX51 based custom board with NAND > flash size of > 128MB.

Re: [U-Boot] [PATCH v3] Support for devices with FAT32 PBR

2010-05-10 Thread Sergei Shtylyov
Hello. Igor Luri wrote: > Signed-off-by: Igor Luri > --- > disk/part_dos.c |3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > > diff --git a/disk/part_dos.c b/disk/part_dos.c > index 887b75e..d91f773 100644 > --- a/disk/part_dos.c > +++ b/disk/part_dos.c > @@ -77,7 +77,8 @@ static

Re: [U-Boot] [PATCH] remove useless free(ptr) calls on NULL ptr

2010-05-10 Thread Mike Frysinger
the subject should probably have a qualifier like "net:" or "smsc:", but other than that, this looks good. -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailm

Re: [U-Boot] tftp not working for larger rootfs image

2010-05-10 Thread Navaneethan P
Thanks for reply...! >> You could flash your rootfs.jffs2 directly to NAND and mount it from there, No idea how to do it. Is there any way, I can directly load the data to NAND through tftp or any other command? >> or if you have access to the FEC you could mount your rootfs via NFS. I have t

Re: [U-Boot] tftp not working for larger rootfs image

2010-05-10 Thread Wolfgang Denk
Dear Navaneethan P, In message you wrote: > > I am using Freescale's iMX51 based custom board with NAND flash size of > 128MB. This code is not in mainline, so how should we able to know where or how you (mis)configured your system? > My root file system image size happens to be 75MB. > I h

Re: [U-Boot] tftp not working for larger rootfs image

2010-05-10 Thread Wolfgang Denk
Dear Navaneethan P, In message you wrote: > > >> You could flash your rootfs.jffs2 directly to NAND and mount it from > there, > No idea how to do it. Is there any way, I can directly load the data to > NAND through tftp or any other command? Yes, there is - using an appropriate JTAG debugg

Re: [U-Boot] [PATCH] Avoid use of divides in print_size.

2010-05-10 Thread Timur Tabi
On Mon, May 10, 2010 at 4:51 AM, Nick Thompson wrote: > Modification of print_size to avoid use of divides and especially > long long divides. Keep the binary scale factor in terms of bit > shifts instead. This should be faster, since the previous code > gave the compiler no clues that the divides

Re: [U-Boot] query about USB gadget framework

2010-05-10 Thread Remy Bohmer
Hi, 2010/5/10 Detlev Zundel : > Hi Dmitry, > >> Looks like there were attempts [2] to do so but I failed to figure out >> why it was not actually merged. Or was it dropped at some point later? >> Interesting why. > > Well this is strange.  From the link you provide, it seems like Wolfgang > applie

Re: [U-Boot] Read-only env variables

2010-05-10 Thread Joe Hershberger
On Mon, May 10, 2010 at 1:56 AM, Wolfgang Denk wrote: > Well, we could go for a simple type scheme, something like > >        d - decimal number >        i - IP address >        m - mac address >        s - string >        x - hex number >        ... l - list delimited by ';' (special beha

Re: [U-Boot] [PATCH] Avoid use of divides in print_size.

2010-05-10 Thread Timur Tabi
Here's a more revealing test: unsigned int i; for (i = 0; i < 60; i++) { unsigned long long l = 45ULL << i; printf("%llu - ", l); print_size(l, "\n"); } prints: 45 - 45 Bytes

[U-Boot] [PATCH] AX88180: add missing init prototype

2010-05-10 Thread Mike Frysinger
Signed-off-by: Mike Frysinger --- include/netdev.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/netdev.h b/include/netdev.h index 882642a..99344ce 100644 --- a/include/netdev.h +++ b/include/netdev.h @@ -43,6 +43,7 @@ int cpu_eth_init(bd_t *bis); /* Driver ini

[U-Boot] [PATCH] AX88180: fix media typos

2010-05-10 Thread Mike Frysinger
From: Hoan Hoang Signed-off-by: Hoan Hoang Signed-off-by: Mike Frysinger --- drivers/net/ax88180.c | 20 ++-- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/drivers/net/ax88180.c b/drivers/net/ax88180.c index d843397..5d12fcf 100644 --- a/drivers/net/ax88180

[U-Boot] [PATCH] AX88180: improve phy searching

2010-05-10 Thread Mike Frysinger
Rather than hardcode specific phy addresses, search the possible phy address space to find the first available phy. Also respect the normal CONFIG_PHY_ADDR option for board porters to pick a specific address. Signed-off-by: Mike Frysinger --- drivers/net/ax88180.c | 89 +++

Re: [U-Boot] [PATCH v3 08/19] SPEAr : Network support configured for spear SoCs

2010-05-10 Thread Ben Warren
Hi Vipin, Sorry for weighing in so late on this... On 5/6/2010 4:18 AM, Vipin KUMAR wrote: > Signed-off-by: Vipin Kumar > --- > arch/arm/include/asm/arch-spear/hardware.h |1 + > board/spear/spear300/spear300.c| 10 ++ > board/spear/spear310/spear310.c|

Re: [U-Boot] Read-only env variables

2010-05-10 Thread Wolfgang Denk
Dear Joe Hershberger, In message you wrote: > On Mon, May 10, 2010 at 1:56 AM, Wolfgang Denk wrote: > > Well, we could go for a simple type scheme, something like > > > >d - decimal number > >i - IP address > >m - mac address > >s - string > >x - hex numb

[U-Boot] [PATCH] AX88180: switch to common mii.h header

2010-05-10 Thread Mike Frysinger
No compiled code change here, just drop the local PHY defines in favor of the common standard ones. Signed-off-by: Mike Frysinger --- drivers/net/ax88180.c | 31 --- drivers/net/ax88180.h | 48 ++-- 2 files changed, 18 i

[U-Boot] PLU405 build error

2010-05-10 Thread Wolfgang Denk
Dear Matthias, are you aware of this PLU405 build error in current mainline code: ppc_4xx-ld: u-boot: section .resetvec lma 0xfffc overlaps previous sections Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kir

[U-Boot] 83xx build errors

2010-05-10 Thread Wolfgang Denk
Hi Ron, Dave, are you aware of these MPC8315ERDB_NAND and SIMPC8313_LP build errors in current mainline code: NAND bootstrap too big Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 G

Re: [U-Boot] Building for da830 fails

2010-05-10 Thread Wolfgang Denk
Dear Timur Tabi, In message <4be42d45.9020...@freescale.com> you wrote: > > I don't know what __aeabi_unwind_cpp_pr0 is, but it doesn't look like it's > related to integers. __aeabi_unwind_cpp_pr0 is part of the stack unwinding support for ARM; we can probably just copy the Linux kernel's code w

[U-Boot] [PATCH] ARM: add __aeabi_unwind_cpp_pr0() function to avoid linker complaints

2010-05-10 Thread Wolfgang Denk
Signed-off-by: Wolfgang Denk --- arch/arm/lib/eabi_compat.c |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/arch/arm/lib/eabi_compat.c b/arch/arm/lib/eabi_compat.c index 86eacf1..eb3e26d 100644 --- a/arch/arm/lib/eabi_compat.c +++ b/arch/arm/lib/eabi_compat.c @@ -16,3

Re: [U-Boot] 83xx build errors

2010-05-10 Thread Ron Madrid
--- On Mon, 5/10/10, Wolfgang Denk wrote: > are you aware of these MPC8315ERDB_NAND and SIMPC8313_LP > build errors > in current mainline code: > > NAND bootstrap too big I was not aware of this as the last patch I submitted to mpc83xx built fine with both _LP_ and _SP_ configs. I'm not qui

Re: [U-Boot] 83xx build errors

2010-05-10 Thread Kim Phillips
On Mon, 10 May 2010 14:11:20 -0700 Ron Madrid wrote: > --- On Mon, 5/10/10, Wolfgang Denk wrote: > > are you aware of these MPC8315ERDB_NAND and SIMPC8313_LP > > build errors > > in current mainline code: > > > > NAND bootstrap too big > > I was not aware of this as the last patch I submit

Re: [U-Boot] Building for da830 fails

2010-05-10 Thread Wolfgang Denk
Dear Timur Tabi, In message <4be43218.2060...@freescale.com> you wrote: > > > /home/smcnutt/27xx/u-boot.git/lib/display_options.c:66: undefined > > reference to `__udivdi3' > > /home/smcnutt/27xx/u-boot.git/lib/display_options.c:69: undefined > > reference to `__umoddi3' > > /home/smcnutt/27xx/u

Re: [U-Boot] [PATCH] AX88180: add missing init prototype

2010-05-10 Thread Mike Frysinger
sorry Louis, forgot to cc you. ive posted some AX88180 patches for u-boot you might want to review. -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/lis

[U-Boot] [PATCH 2/3] libfdt: make fdt_increase_size() available to everyone

2010-05-10 Thread Timur Tabi
The function fdt_increase_size() increases the size of the device tree by the given amount. This is useful for any code that wants to add a node or large property, to avoid the possibility of running out of space. It's much smarter to have U-Boot increase the size of device tree when it knows it'

Re: [U-Boot] [PATCH 2/3] libfdt: make fdt_increase_size() available to everyone

2010-05-10 Thread Timur Tabi
On Mon, May 10, 2010 at 4:26 PM, Timur Tabi wrote: > The function fdt_increase_size() increases the size of the device tree by the > given amount.  This is useful for any code that wants to add a node or large > property, to avoid the possibility of running out of space.  It's much smarter > to ha

Re: [U-Boot] Read-only env variables

2010-05-10 Thread Joe Hershberger
On Mon, May 10, 2010 at 3:43 PM, Wolfgang Denk wrote: >>        l - list delimited by ';' (special behavior for setenv) > > Don't do this. ';' has a clear meaning. Using it for other purposes Fair enough... ',' then. >> That seems pretty reasonable.  I think I'd like to see the access >> control

[U-Boot] [PATCH][mpc83xx] Removal of checkboard from spl bootstrap build for SIMPC8313

2010-05-10 Thread Ron Madrid
This patch removes the checkboard function from the build of the 4k bootstrap section for the SIMPC8313 as it is not needed in the spl build. This will allow > 100 bytes of extra room for other uses. Signed-off-by: Ron Madrid --- board/sheldon/simpc8313/simpc8313.c |4 ++-- 1 files changed,

Re: [U-Boot] [PATCH][mpc83xx] Removal of checkboard from spl bootstrap build for SIMPC8313

2010-05-10 Thread Ron Madrid
--- On Mon, 5/10/10, Ron Madrid wrote: > From: Ron Madrid > Subject: [PATCH][mpc83xx] Removal of checkboard from spl bootstrap build for > SIMPC8313 > To: u-boot@lists.denx.de > Cc: "Ron Madrid" > Date: Monday, May 10, 2010, 3:02 PM > This patch removes the checkboard > function from the build

[U-Boot] [PATCH v2][mpc83xx] Removal of checkboard from spl bootstrap build for SIMPC8313

2010-05-10 Thread Ron Madrid
This patch removes the checkboard function from the build of the 4k bootstrap section for the SIMPC8313 as it is not needed in the spl build. This will allow > 100 bytes of extra room for other uses. Signed-off-by: Ron Madrid --- board/sheldon/simpc8313/simpc8313.c |2 +- 1 files changed, 1

Re: [U-Boot] [PATCH] Devkit8000: Fix compilation after changes in dm9000

2010-05-10 Thread Marek Vasut
Dne Pá 7. května 2010 18:58:34 Thomas Weber napsal(a): > On 07.05.2010 17:15, Wolfgang Denk wrote: > > Dear Thomas Weber, > > In message <1273242366-6552-1-git-send-email-we...@corscience.de> > <1273242366-6552-1-git-send-email-we...@corscience.de> you wrote: > > > In commit a45dde2293c816138

Re: [U-Boot] [PATCH] Devkit8000: Fix compilation after changes in dm9000

2010-05-10 Thread Marek Vasut
Dne Pá 7. května 2010 18:58:34 Thomas Weber napsal(a): > On 07.05.2010 17:15, Wolfgang Denk wrote: > > Dear Thomas Weber, > > In message <1273242366-6552-1-git-send-email-we...@corscience.de> > <1273242366-6552-1-git-send-email-we...@corscience.de> you wrote: > > > In commit a45dde2293c816138

Re: [U-Boot] [PATCH] ARM1136: Fix cache_flush() error and correct cpu_init_crit() comments

2010-05-10 Thread George G. Davis
Hello Dirk, On Mon, May 10, 2010 at 10:02 AM, Dirk Behme wrote: > > Hi George, > > On 05.05.2010 23:09, George G. Davis wrote: >> >> The ARM1136 cache_flush() function uses the "mcr p15, 0, rn, c7, c7, 0" >> instruction which means "Invalidate Both Caches > > ... Also flushes the branch target ca

Re: [U-Boot] [PATCH] Devkit8000: Fix compilation after changes in dm9000

2010-05-10 Thread Marek Vasut
Dne Út 11. května 2010 05:28:38 Marek Vasut napsal(a): > Dne Pá 7. května 2010 18:58:34 Thomas Weber napsal(a): > > On 07.05.2010 17:15, Wolfgang Denk wrote: > > Dear Thomas Weber, > > > > In message <1273242366-6552-1-git-send-email-we...@corscience.de> > > > > <1273242366-6552-1-git-send-email

Re: [U-Boot] [PATCH] Devkit8000: Fix compilation after changes in dm9000

2010-05-10 Thread Marek Vasut
Dne Út 11. května 2010 05:47:40 Marek Vasut napsal(a): > Dne Út 11. května 2010 05:28:38 Marek Vasut napsal(a): > > Dne Pá 7. května 2010 18:58:34 Thomas Weber napsal(a): > > > On 07.05.2010 17:15, Wolfgang Denk wrote: > > > Dear Thomas Weber, > > > > > > In message <1273242366-6552-1-git-send-em

Re: [U-Boot] [PATCH-V5] OMAP3EVM: Added NAND support

2010-05-10 Thread Hiremath, Vaibhav
> -Original Message- > From: Hiremath, Vaibhav > Sent: Thursday, May 06, 2010 10:49 PM > To: u-boot@lists.denx.de > Cc: w...@denx.de; t...@bumblecow.com; Paulraj, Sandeep; Hiremath, Vaibhav > Subject: [PATCH-V5] OMAP3EVM: Added NAND support > > From: Vaibhav Hiremath > > The EVMS have be

Re: [U-Boot] [PATCH-V3 1/2] omap3: Calculate CS1 size only when SDRC is initialized for CS1

2010-05-10 Thread Hiremath, Vaibhav
> -Original Message- > From: Hiremath, Vaibhav > Sent: Thursday, May 06, 2010 10:52 PM > To: u-boot@lists.denx.de > Cc: w...@denx.de; t...@bumblecow.com; Paulraj, Sandeep; Hiremath, Vaibhav; > Premi, Sanjeev > Subject: [PATCH-V3 1/2] omap3: Calculate CS1 size only when SDRC is > initialize

Re: [U-Boot] [PATCH-V3 1/2] AM35x: Add support for AM3517EVM

2010-05-10 Thread Hiremath, Vaibhav
> -Original Message- > From: Hiremath, Vaibhav > Sent: Thursday, May 06, 2010 10:53 PM > To: u-boot@lists.denx.de > Cc: w...@denx.de; t...@bumblecow.com; Paulraj, Sandeep; Hiremath, Vaibhav; > Premi, Sanjeev > Subject: [PATCH-V3 1/2] AM35x: Add support for AM3517EVM > > From: Vaibhav Hirema

Re: [U-Boot] [PATCH v3] Support for devices with FAT32 PBR

2010-05-10 Thread Igor Luri
Dear Sergei, I have readen git-format-patch commands manual and I don't find any option to create a single patch, by default creates a patch per commit change. How can I create a single patch? I would apreciate any help. Best regards. El lun, 10-05-2010 a las 19:22 +0400, Sergei Shtylyov esc

[U-Boot] [PATCH] AX88180: add support for the Marvell 88E1118 phy

2010-05-10 Thread Mike Frysinger
From: Hoan Hoang Some places in the current code equate the Marvell 88E PHY as the family when in reality it's a subpart of the Alaska family. So once we generalize that, add support for the 88E1118 PHY. Signed-off-by: Hoan Hoang Signed-off-by: Mike Frysinger --- drivers/net/ax88180.c |

[U-Boot] [PATCH] AX88180: make OUTW handle 32bit/16bit defines too

2010-05-10 Thread Mike Frysinger
From: Hoan Hoang The current OUTW function is always defined as a 16bit function, but this doesn't work correctly when using the 32bit access mode. So define it as a 32bit function when in 32bit mode so things work correctly on Blackfin 32bit LE systems. Signed-off-by: Hoan Hoang Signed-off-by

[U-Boot] [PATCH] AX88180: use standard I/O accessors

2010-05-10 Thread Mike Frysinger
The current dm9000x driver accesses its memory mapped registers directly instead of using the standard I/O accessors. This can cause problems on Blackfin systems as the accesses can get out of order. So convert the direct volatile dereferences to use the normal in/out macros. Signed-off-by: Mike

Re: [U-Boot] [PATCH] AX88180: add missing init prototype

2010-05-10 Thread Mike Frysinger
Ben: ive pushed all these AX88180 patches to here so you can pull them in order easier: git://git.denx.de/u-boot-blackfin.git for-net -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists

Re: [U-Boot] [PATCH] Devkit8000: Fix compilation after changes in dm9000

2010-05-10 Thread Thomas Weber
Hello Marek, On 05/11/10 04:25, Marek Vasut wrote: > Dne Út 11. května 2010 05:47:40 Marek Vasut napsal(a): >> Dne Út 11. května 2010 05:28:38 Marek Vasut napsal(a): >>> Dne Pá 7. května 2010 18:58:34 Thomas Weber napsal(a): On 07.05.2010 17:15, Wolfgang Denk wrote: Dear Thomas Weber, >

Re: [U-Boot] [PATCH] ARM: add __aeabi_unwind_cpp_pr0() function to avoid linker complaints

2010-05-10 Thread Thomas Weber
Hello Wolfgang, On 05/10/10 21:08, Wolfgang Denk wrote: > Signed-off-by: Wolfgang Denk > --- > arch/arm/lib/eabi_compat.c |5 + > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/arch/arm/lib/eabi_compat.c b/arch/arm/lib/eabi_compat.c > index 86eacf1..eb3e26d 100644 > --