Re: [U-Boot] [U-BOOT] [PATCH] env: reduce the stack footprint for the env buf

2011-02-05 Thread Wolfgang Denk
Dear Lei Wen, In message you wrote: > > > In which way do you think this will save any memory? > > This patch is not intend to save memory... Then I don't understand at all what the benefit of that patch would be. > One of our project need to confine the ddr usage of uboot in the smallest >

Re: [U-Boot] [U-BOOT] [PATCH] env: reduce the stack footprint for the env buf

2011-02-05 Thread Graeme Russ
On 05/02/11 19:30, Wolfgang Denk wrote: > Dear Lei Wen, > > In message you > wrote: >> >>> In which way do you think this will save any memory? >> >> This patch is not intend to save memory... > > Then I don't understand at all what the benefit of that patch would > be. > >> One of our project

Re: [U-Boot] [PATCH] Fix gunzip to work for any gziped uImage size

2011-02-05 Thread Albert ARIBAUD
Le 04/02/2011 13:35, Catalin Radu a écrit : > > Signed-off-by: Catalin Radu This is a V2 patch, right? So it should be marked as such and patch history should be added, see Amicalement, -- Albert.

Re: [U-Boot] [PATCH V2] EfikaMX: switch to MACH_TYPE_MX51_EFIKAMX

2011-02-05 Thread Albert ARIBAUD
Hi Stefano, Le 04/02/2011 16:30, Stefano Babic a écrit : > On 02/03/2011 03:19 PM, Loïc Minier wrote: >> Upstream linux moved from MACH_TYPE_MX51_LANGE51 to >> MACH_TYPE_MX51_EFIKAMX. >> >> Signed-off-by: Loïc Minier >> --- >> Changes for V2: >> * Add Signed-off-by > > Applied to u-boot-imx, as

Re: [U-Boot] [PATCH V2] EfikaMX: switch to MACH_TYPE_MX51_EFIKAMX

2011-02-05 Thread Stefano Babic
On 02/05/2011 10:48 AM, Albert ARIBAUD wrote: Hi Albert, > Do you intend to send out a new pull request for -rc2? -- not hurrying > you, just asking. Yes. At the moment, I have only this patch on my list, so I am waiting a couple of days more to check if I had to merge some other patches. Then I

Re: [U-Boot] [PATCH 2/3] MIPS: Purple: Fix multiple definition error on final linking of u-boot binary

2011-02-05 Thread Shinya Kuribayashi
On 02/03/2011 08:59 PM, daniel.schwierz...@googlemail.com wrote: > The linker of recent toolchains complains about multiple definitions > on final linking of u-boot binary. This patch removes all redundant > object files from u-boot.lds those are already added to .text section > by the linker. Con

[U-Boot] [PATCH 1/2 V3] at91sam9261ek: make operational again

2011-02-05 Thread Remy Bohmer
Since U-boot v2010.12 the support for the at91sam9261ek board is broken. This patch solves this issue. This change has been tested on this board. Note: It requires that the 1st stage bootloader (like Atmel at91-bootstrap) to load U-boot at a different address compared to previous releases of U-boo

[U-Boot] [PATCH 2/2 V1] Make at91sam9261ek and at91sam9g10ek work again

2011-02-05 Thread Remy Bohmer
Also removes CONFIG_AT91_LEGACY related stuff. Signed-off-by: Remy Bohmer --- V1: This patch contains everything to make the boards work again on the current changes in the u-boot-atmel.git tree. It requires the mainstream fixes to be applied first ([PATCH 1/2 V3] at91sam9261

Re: [U-Boot] [PATCH 2/2] at91sam9261ek: make operational again

2011-02-05 Thread Remy Bohmer
Hi, 2011/2/1 Reinhard Meyer : > Dear all, >>> /home/toolchain/bin/gcc-4.1.2-glibc-2.5-nptl-3/arm-none-linux-gnueabi/bin/arm-none-linux-gnueabi-ld >>>  -pie -r -o libat91.o  lowlevel_init.o clock.o cpu.o reset.o timer.o >>> /home/toolchain/bin/gcc-4.1.2-glibc-2.5-nptl-3/arm-none-linux-gnueabi/bin/

[U-Boot] Pull request: u-boot-usb

2011-02-05 Thread Remy Bohmer
The following changes since commit f69b980d108b5f15ca7dd3f4284d5a66488c3625: Merge branch 'master' of git://git.denx.de/u-boot-nand-flash (2011-02-04 21:44:46 +0100) are available in the git repository at: git://git.denx.de/u-boot-usb.git master Alexander Holler (2): USB: Fix device s

[U-Boot] BeagleBoard-xM: Ethernet over USB supported ?

2011-02-05 Thread Olivier Martin
Hi, I am trying to enable boot from tftp for a BeagleBoard-xM. The BeagleBoard-xM has an integrated Ethernet port over USB. I have tried to enable it by adding these following lines in include/configs/omap3_beagle.h: #define CONFIG_USB_ETHER 1 #define CONFIG_CMD_NET /* bootp,

Re: [U-Boot] [PATCH v2 0/3] MIPS: Fix failed run of MAKEALL mips script

2011-02-05 Thread Shinya Kuribayashi
On 02/03/2011 10:17 PM, daniel.schwierz...@googlemail.com wrote: > Currently MAKEALL mips covers 21 boards and 15 of them have compile > errors with gcc-4.3.3. This patch series fixes these boards. > > Changes for v2: > - make brace style consistent in vct.h > - delete unused board/dbau1x00/flash.

Re: [U-Boot] BeagleBoard-xM: Ethernet over USB supported ?

2011-02-05 Thread Alexander Holler
Hello, Am 05.02.2011 14:18, schrieb Olivier Martin: > I am trying to enable boot from tftp for a BeagleBoard-xM. > The BeagleBoard-xM has an integrated Ethernet port over USB. Currently there is no support for omap-ehci in u-boot. That means only the MUSB (OTG) USB port is usable. Regards, Ale

[U-Boot] Move MIPS boards to boards.cfg

2011-02-05 Thread Shinya Kuribayashi
Along with applying Daniel's patches, I prepared these misc patches, trying to move all MIPS boards left in the top Makefile to boards.cfg. Compile tested using GCC4.4-based toolchain. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mai

[U-Boot] [PATCH 1/5] cmd_ide: Fix an unused CONFIG_AU1X00 symbol to work as intended

2011-02-05 Thread Shinya Kuribayashi
commit 8bde63eb3f79d68f693201528dafc8ae7aa087de ([MIPS] Rename Alchemy processor configs into CONFIG_SOC_*) forgot to pick up this one. Signed-off-by: Shinya Kuribayashi --- common/cmd_ide.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/common/cmd_ide.c b/common/cmd_

Re: [U-Boot] [U-BOOT] [PATCH] env: reduce the stack footprint for the env buf

2011-02-05 Thread Wolfgang Denk
Dear Graeme Russ, In message <4d4d1987.5010...@gmail.com> you wrote: > > Sounds like you have allocated too small a region for your stack - try > increasing CONFIG_SYS_STACK_SIZE and decreasing CONFIG_SYS_MALLOC_LEN Most systems don't have anything like CONFIG_SYS_STACK_SIZE; the stack grows down

[U-Boot] [PATCH 2/5] MIPS: Move Alchemy Au1x00 based boards to boards.cfg

2011-02-05 Thread Shinya Kuribayashi
CONFIG_GTH2 is already provided by , so we don't generate it using the options fields in boards.cfg. Signed-off-by: Shinya Kuribayashi --- Makefile | 39 --- boards.cfg |7 +++ 2 files changed, 7 insertions(+), 39 deletions(-) diff --git a/Makefil

[U-Boot] [PATCH 3/5] MIPS: Move Qemu MIPS target to boards.cfg

2011-02-05 Thread Shinya Kuribayashi
CONFIG_QEMU_MIPS is already provided by , so we don't generate it using the options fields in boards.cfg. Signed-off-by: Shinya Kuribayashi --- Makefile |5 - boards.cfg |1 + 2 files changed, 1 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index e1f3b7f..9e6cf25

[U-Boot] [PATCH 4/5] MIPS: Move Inca-IP targets to boards.cfg

2011-02-05 Thread Shinya Kuribayashi
At the same time, fix up CPU_CLOCK_RATE to have the CONFIG_ prefix to work with boards.cfg. Signed-off-by: Shinya Kuribayashi --- Makefile | 13 - board/incaip/lowlevel_init.S |2 +- boards.cfg |4 include/configs/incaip.h |

[U-Boot] [PATCH 5/5] MIPS: Move VCT boards to boards.cfg

2011-02-05 Thread Shinya Kuribayashi
Signed-off-by: Shinya Kuribayashi --- Makefile | 32 boards.cfg | 12 2 files changed, 12 insertions(+), 32 deletions(-) diff --git a/Makefile b/Makefile index 3fe0596..6133160 100644 --- a/Makefile +++ b/Makefile @@ -1092,38 +1092,6 @@ smdk640

Re: [U-Boot] [PATCH 2/3] MIPS: Purple: Fix multiple definition error on final linking of u-boot binary

2011-02-05 Thread Wolfgang Denk
Dear Shinya Kuribayashi, In message <4d4d3e6b.2040...@pobox.com> you wrote: > > > --- a/board/purple/u-boot.lds > > +++ b/board/purple/u-boot.lds > > @@ -36,11 +36,6 @@ SECTIONS > > { > > arch/mips/cpu/start.o (.text) > > board/purple/lowlevel_init.o (.text) > > - arch

Re: [U-Boot] [PATCH 07/14] tsec: use IO accessories to access the register

2011-02-05 Thread Kumar Gala
On Jan 26, 2011, at 10:52 PM, Mingkai Hu wrote: > Signed-off-by: Mingkai Hu > --- > drivers/net/tsec.c | 232 ++- > include/tsec.h |6 +- > 2 files changed, 121 insertions(+), 117 deletions(-) applied to 85xx next - k _

Re: [U-Boot] [PATCH 08/14] tsec: arrange the code to avoid useless function declaration

2011-02-05 Thread Kumar Gala
On Jan 26, 2011, at 10:52 PM, Mingkai Hu wrote: > Signed-off-by: Mingkai Hu > --- > drivers/net/tsec.c | 857 +--- > 1 files changed, 416 insertions(+), 441 deletions(-) applied to 85xx next - k ___ U-B

[U-Boot] {Spam?} u-boot-usb DFU working but need some ideas

2011-02-05 Thread Marcel
Hi, I finally got things working well with my SAM9G45 USB devcie controller and continued to implement DFU for it. I implemented it using the new gadget layer and should be compatible with the at91_udc driver. I have managed to get DFU working in such way that it transfers the file to RAM. T

[U-Boot] [GIT PULL] u-boot-mpc83xx - couple of minor fixes

2011-02-05 Thread Kim Phillips
Wolfgang Denk, Please pull a couple of minor fixes for 83xx: The following changes since commit f69b980d108b5f15ca7dd3f4284d5a66488c3625: Merge branch 'master' of git://git.denx.de/u-boot-nand-flash (2011-02-04 21:44:46 +0100) are available in the git repository at: git://git.denx.de/u-bo

Re: [U-Boot] [PATCH V4] mpc83xx:fix pcie configuration space read/write

2011-02-05 Thread Kim Phillips
On Wed, 19 Jan 2011 19:50:47 +0800 Leo Liu wrote: > This patch fix a problem for the pcie enumeration when the mpc83xx pcie > controller is > connected with switch or we use both of the two pcie controller. > > Signed-off-by: Leo Liu > --- applied after fixing some comment format, and moving:

Re: [U-Boot] [PATCH] mpc83xx: Use correct register to calculate clocks.

2011-02-05 Thread Kim Phillips
On Thu, 27 Jan 2011 16:30:54 +0100 Joakim Tjernlund wrote: > Use SPMR instead of HRCWL when calculating clocks as HCRWL > may be changed and the CPU will not pick up all changes > until there is a POR. u-boot will think SPMF has changed and get > the clocks wrong. > > Signed-off-by: Joakim Tjern