[U-Boot] [PATCH v2 01/10] Fix dlmalloc compile warning

2009-11-24 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- board/eNET/config.mk |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/board/eNET/config.mk b/board/eNET/config.mk index a763841..058026d 100644 --- a/board/eNET/config.mk +++ b/board/eNET/config.mk @@ -22,3 +22,4 @@ #

[U-Boot] [PATCH v2 02/10] Fix i386 malloc initialisation

2009-11-24 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- common/dlmalloc.c |6 -- include/configs/eNET.h|2 +- include/configs/sc520_cdp.h |2 +- include/configs/sc520_spunk.h |2 +- lib_i386/board.c | 15 +++ 5 files changed, 10

[U-Boot] [PATCH v2 03/10] Fix link collisions resulting from gcc4.4.1 upgrade

2009-11-24 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- board/eNET/config.mk |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/board/eNET/config.mk b/board/eNET/config.mk index 058026d..c9703ea 100644 --- a/board/eNET/config.mk +++ b/board/eNET/config.mk @@ -23,3 +23,4 @@

[U-Boot] [PATCH v2 04/10] Reorder source objects in lib_i386 Makefile

2009-11-24 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- lib_i386/Makefile |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib_i386/Makefile b/lib_i386/Makefile index bb9b330..9838506 100644 --- a/lib_i386/Makefile +++ b/lib_i386/Makefile @@ -32,16 +32,16 @@ SOBJS-y

[U-Boot] [PATCH v2 06/10] Fix race condition when using SC520 timers

2009-11-24 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- cpu/i386/sc520/sc520_timer.c | 11 ++- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/cpu/i386/sc520/sc520_timer.c b/cpu/i386/sc520/sc520_timer.c index 23de14b..25c9a24 100644 --- a/cpu/i386/sc520/sc520_timer.c +++

[U-Boot] [PATCH v2 08/10] Remove inline asm symbols from .dynsym

2009-11-24 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- board/eNET/eNET_start16.S |2 + cpu/i386/cpu.c|2 + cpu/i386/interrupts.c |4 ++ lib_i386/bios.S | 70 + lib_i386/bios_pci.S |2 + 5 files changed,

[U-Boot] [PATCH v2 10/10] Final i386 Relocation

2009-11-24 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- board/eNET/config.mk |2 + board/eNET/eNET.c | 17 +++-- board/eNET/u-boot.lds | 34 +++-- cpu/i386/cpu.c | 12 ++- cpu/i386/interrupts.c |4 +- cpu/i386/start.S

[U-Boot] [PATCH v2 05/10] Fix global label in inline asm compile error

2009-11-24 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- include/configs/eNET.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/eNET.h b/include/configs/eNET.h index 54c34fa..0a86550 100644 --- a/include/configs/eNET.h +++ b/include/configs/eNET.h @@

[U-Boot] [PATCH v2 09/10] Move references to link script exports

2009-11-24 Thread Graeme Russ
Signed-off-by: Graeme Russ graeme.r...@gmail.com --- include/asm-i386/u-boot-i386.h |6 -- lib_i386/bios_setup.c |6 ++ lib_i386/board.c | 11 --- lib_i386/realmode.c|5 + 4 files changed, 11 insertions(+), 17 deletions(-)

[U-Boot] [PATCH v2 00/10] i386 Relocation

2009-11-24 Thread Graeme Russ
Version 2 of previously submitted patch set. The changes are minor (added missed hiding of irq_common_entry in patch 8 and added #define CONFIG_RELOC_FIXUP_WORKS and setting GD_FLG_RELOC in patch 10) This patch series implements full relocation support for the i386 port of U-Boot. The first 5

Re: [U-Boot] [PATCH] Make the generic unaligned access code safe for unaligned access

2009-11-24 Thread Remy Bohmer
Hi Stefan, 2009/11/24 Stefan Roese s...@denx.de: Hi Wolfgang, On Monday 23 November 2009 23:46:38 Wolfgang Denk wrote: Dear Remy Bohmer, In message 1256764421-27799-4-git-send-email-li...@bohmer.net you wrote: The current generic code for handling unaligned access assumes that the

[U-Boot] A question about driver/mmc/mmc.c

2009-11-24 Thread Lv Terry-R65388
Hi All, I use implement the esdhc driver and use driver/mmc/mmc.c and I think there might be a bug. I have a 4G mmc plus card in hand. The mmc_send_op_cond( ) function in mmc_init( ) will set mmc-high_capacity to 0. It's not a high capacity card. And in mmc_change_freq( ),

Re: [U-Boot] [PATCH] Generic udelay() with watchdog support

2009-11-24 Thread Ingo van Lil
According to the PPC reference implementation the udelay() function is responsible for resetting the watchdog timer as frequently as needed. Most other architectures do not meet that requirement, so long-running operations might result in a watchdog reset. This patch adds a generic udelay()

Re: [U-Boot] [PATCH] Generic udelay() with watchdog support

2009-11-24 Thread Ingo van Lil
On 11/22/2009 11:25 PM, Wolfgang Denk wrote: Could you please rebase it against the next branch and resubmit it? There you are. This time I compile-tested it (MAKEALL) for ppc and arm. Some boards did not build (several PPC builds died with Error: Unrecognized opcode: `mullhw', several ARM

Re: [U-Boot] Please pull u-boot-ti/master

2009-11-24 Thread Tom
Paulraj, Sandeep wrote: First sorry for top posting. Our entire center has lost internet connection and thus we have gone back to the middle ages and i can't get my Outlook setup from home properly. Regarding the DDR issues with Overo we have not received any closure. But we have to

[U-Boot] ARM pull request

2009-11-24 Thread Tom
Wolfgang, Please pull this patch from arm. It fixes a problem with overo. Tom The following changes since commit 3c014f1586d5bfe30dca7549396915c83f31cd30: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-net are available in the git repository at:

Re: [U-Boot] Please pull u-boot-ti/master

2009-11-24 Thread Paulraj, Sandeep
Paulraj, Sandeep wrote: First sorry for top posting. Our entire center has lost internet connection and thus we have gone back to the middle ages and i can't get my Outlook setup from home properly. Regarding the DDR issues with Overo we have not received any closure. But we have

[U-Boot] [PATCH v2] mpc83xx: Add NAND boot support for MPC8315E-RDB boards

2009-11-24 Thread Anton Vorontsov
The core support for NAND booting is there already, so this patch is pretty straightforward. There is one trick though: top level Makefile expects nand_spl to be in nand_spl/board/$(BOARDDIR), but we can fully reuse the code from mpc8313erdb boards, and so to not duplicate the code we just

[U-Boot] Enhanced sd host controller driver for the mxc platform

2009-11-24 Thread stephanie keeling
Hi, I am trying to create/develop a device driver for the enhanced sd host controller driver for the mxc platform, specifically the mx27/35 platforms. This would provide a glue to the upper layers of u-boot i.e the MMC infrstructure and the filesystem layers. Since this will be a polling only

Re: [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver

2009-11-24 Thread Dimitar Dimitrov
On Sunday 22 November 2009, Wolfgang Denk wrote: Dear Dimitar Dimitrov, In message 200907151856.24888.dinu...@gmail.com you wrote: This is my third try for Olimex SAM9-L9260/61 board support patches. Here follows the first patch. --- Boards utilizing the Atmel LCD driver can now

Re: [U-Boot] Problem with SDRAM on my board.

2009-11-24 Thread Wolfgang Denk
Dear Lasse Skov, please keep the list on Cc: In message 4f4169b21905494ebd47a304f02192c92772357...@xch-hq-01.kk.local you wrote: I had now fixed some settings on the DDR2 timing, found something with the ODT and other timing specific for the timing_cfg register. Will you *please* keep

Re: [U-Boot] [PATCH] Make the generic unaligned access code safe for unaligned access

2009-11-24 Thread Wolfgang Denk
Dear Stefan Roese, In message 200911240505.25360...@denx.de you wrote: This shouldn't have been applied. Remy did send a different version of this patch (according to my suggestion), which is already included: Argh... Thanks for pointing out. Fortunately no damage was done as I did not

Re: [U-Boot] [PATCH] memsize: get correct memory size

2009-11-24 Thread Wolfgang Denk
Dear Minkyu Kang, In message 1f3430fb0911232040k19ca1362r23664ec62ab8d...@mail.gmail.com you wrote: Well, could you please explain what some cases are, and how exactly the code is failing for you? And especially, what 80M has to do with it? If memory size is 80M, cnt is decrease

Re: [U-Boot] Pull request - i2c [for next]

2009-11-24 Thread Wolfgang Denk
Dear Heiko Schocher, In message 4b0a47da.2030...@denx.de you wrote: Hello Wolfgang, The following changes since commit 396fd17338b9bf1f84f494ec1860427e18868ede: Peter Tyser (1): Add 'true' and 'false' commands are available in the git repository at:

Re: [U-Boot] Please pull u-boot-ppc4xx/next

2009-11-24 Thread Wolfgang Denk
Dear Stefan Roese, In message 200911231628.42563...@denx.de you wrote: Hi Wolfgang, please pull some further 4xx patches for next. Thanks. The following changes since commit 396fd17338b9bf1f84f494ec1860427e18868ede: Peter Tyser (1): Add 'true' and 'false' commands are

[U-Boot] Pull request - net

2009-11-24 Thread Ben Warren
Wolfgang, The following changes since commit fcffb680e77fcb48598d4a9944dbe2d4503170e0: Mike Frysinger (1): sf: fix stmicro offset setup while erasing are available in the git repository at: git://git.denx.de/u-boot-net.git master Remy Bohmer (1): Repair the 'netretry=once'

Re: [U-Boot] ARM pull request

2009-11-24 Thread Wolfgang Denk
Dear Tom, In message 4b0bf975.7000...@windriver.com you wrote: Wolfgang, Please pull this patch from arm. It fixes a problem with overo. Tom The following changes since commit 3c014f1586d5bfe30dca7549396915c83f31cd30: Wolfgang Denk (1): Merge branch 'master' of

Re: [U-Boot] [PATCH] Generic udelay() with watchdog support

2009-11-24 Thread Wolfgang Denk
Dear Kim, In message 4b0bdd85.2090...@gmx.de Ingo van Lil wrote: On 11/22/2009 11:25 PM, Wolfgang Denk wrote: Could you please rebase it against the next branch and resubmit it? There you are. This time I compile-tested it (MAKEALL) for ppc and arm. Some boards did not build (several

Re: [U-Boot] Pull request - net

2009-11-24 Thread Wolfgang Denk
Dear Ben Warren, In message 4b0c5be5.7070...@gmail.com you wrote: Wolfgang, The following changes since commit fcffb680e77fcb48598d4a9944dbe2d4503170e0: Mike Frysinger (1): sf: fix stmicro offset setup while erasing are available in the git repository at:

Re: [U-Boot] [PATCH] POST: Remove duplicated post_hotkey_pressed() functions

2009-11-24 Thread Wolfgang Denk
Dear Stefan Roese, In message 1256906335-6477-1-git-send-email...@denx.de you wrote: This patch introduces a weak default function for post_hotkey_pressed(), returning 0, for boards without hotkey support. The long-running tests won't be started on those boards. This default function was

Re: [U-Boot] [PATCH v2] mkconfig: deny messed up ARCH definition

2009-11-24 Thread Wolfgang Denk
Dear Nishanth Menon, In message 1257176418-11624-1-git-send-email...@ti.com you wrote: Refuse to setup a platform if the command line ARCH= is not the same as the one required for the board. This prevents any user with prehistoric aliases from messing up their builds. Reported in thread:

Re: [U-Boot] [PATCH 1/1] bootm: mark local boot_os[] table static

2009-11-24 Thread Wolfgang Denk
Dear Mike Frysinger, In message 1257266186-13237-1-git-send-email-vap...@gentoo.org you wrote: Signed-off-by: Mike Frysinger vap...@gentoo.org --- common/cmd_bootm.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software

Re: [U-Boot] [PATCH] spi_flash.h: pull in linux/types.h for u## types

2009-11-24 Thread Wolfgang Denk
Dear Mike Frysinger, In message 1257266199-13346-1-git-send-email-vap...@gentoo.org you wrote: --- include/spi_flash.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev

Re: [U-Boot] [PATCH] ppc: Move conditional compilation of kgdb.c to Makefile

2009-11-24 Thread Wolfgang Denk
Dear Peter Tyser, In message 1257312667-22104-1-git-send-email-pty...@xes-inc.com you wrote: Signed-off-by: Peter Tyser pty...@xes-inc.com --- lib_ppc/Makefile |2 +- lib_ppc/kgdb.c |5 - 2 files changed, 1 insertions(+), 6 deletions(-) Applied, thanks. Best regards,

[U-Boot] [PATCH 2/3] tools/fit_image.c: Remove unused fit_set_header()

2009-11-24 Thread Peter Tyser
The FIT fit_set_header() function was copied from the standard uImage's image_set_header() function during mkimage reorganization. However, the fit_set_header() function is not used since FIT images use a standard device tree blob header. Signed-off-by: Peter Tyser pty...@xes-inc.com ---

[U-Boot] [PATCH 1/3] tools/mkimage: Assume FDT image type for FIT images

2009-11-24 Thread Peter Tyser
When building a Flattened Image Tree (FIT) the image type needs to be flat_dt. Commit 89a4d6b12fd6394898b8a454cbabeaf1cd59bae5 introduced a regression which caused the user to need to specify the -T flat_dt parameter on the command line when building a FIT image. The -T flat_dt parameter should

[U-Boot] [PATCH 3/3] tools/mkimage: Print FIT image contents after creation

2009-11-24 Thread Peter Tyser
Previously, there was no indication to the user that a FIT image was successfully created after executing mkimage. For example: $ mkimage -f uImage.its uImage.itb DTC: dts-dtb on file uImage.its Adding some additional output after creating a FIT image lets the user know exactly what is

Re: [U-Boot] [PATCH] tools: ignore *.exe binaries

2009-11-24 Thread Wolfgang Denk
Dear Mike Frysinger, In message 1257368605-2276-1-git-send-email-vap...@gentoo.org you wrote: Signed-off-by: Mike Frysinger vap...@gentoo.org --- tools/.gitignore |1 + 1 files changed, 1 insertions(+), 0 deletions(-) Applied (with slight change to Subject). Thanks. Best regards,

Re: [U-Boot] [PATCH] img2srec: use standard types

2009-11-24 Thread Wolfgang Denk
Dear Mike Frysinger, In message 1257369199-5765-1-git-send-email-vap...@gentoo.org you wrote: The img2srec code creates a lot of typedefs with common names. These easily clash with system headers that include these typedefs (like mingw). Signed-off-by: Mike Frysinger vap...@gentoo.org ---

Re: [U-Boot] [PATCH] Fix example FIT image source files

2009-11-24 Thread Wolfgang Denk
Dear Ira W. Snyder, In message 20091104213759.ga22...@ovro.caltech.edu you wrote: The example FIT image source files do not compile with the latest dtc and mkimage. The following error message is produced: DTC: dts-dtb on file kernel.its Error: kernel.its 7:0 - 1:0 syntax error FATAL

Re: [U-Boot] [PATCH V2 3/3] lcd: remove '#if 0' 32-bit scroll, now memcpy does it

2009-11-24 Thread Anatolij Gustschin
Dear Wolfgang, Wolfgang Denk w...@denx.de wrote: Dear Anatolij, In message 48a15e2db97a6bccf6cc0ebdfae45bc5f946a2f7.1255000877.git.rubini@ unipv.it Alessandro Rubini wrote: From: Alessandro Rubini rub...@unipv.it Signed-off-by: Alessandro Rubini rub...@unipv.it Acked-by: Andrea

[U-Boot] Pull request - Nios

2009-11-24 Thread Scott McNutt
The following changes since commit fcffb680e77fcb48598d4a9944dbe2d4503170e0: Mike Frysinger (1): sf: fix stmicro offset setup while erasing are available in the git repository at: git://git.denx.de/u-boot-nios.git master Renato Andreola (1): Nios2: do_boom_linux(): kernel

Re: [U-Boot] [PATCH] memsize: get correct memory size

2009-11-24 Thread Minkyu Kang
Dear Wolfgang, 2009/11/25 Wolfgang Denk w...@denx.de: Dear Minkyu Kang, In message 1f3430fb0911232040k19ca1362r23664ec62ab8d...@mail.gmail.com you wrote: Well, could you please explain what some cases are, and how exactly the code is failing for you? And especially, what 80M has to do