Re: [U-Boot] [PATCH] Added support for the Guntermann Drunck PowerPC 440 EP/GR ETX module.

2008-11-28 Thread Eibach, Dirk
Hello Wolfgang, Thanks for the review. I'm busys cleaning up the code, but at one point I need some help: +/ +* + * initdram -- doesn't use serial presence detect. + * + * Assumes:256 MB, ECC,

Re: [U-Boot] [PATCH] Added support for the Guntermann Drunck PowerPC 440 EP/GR ETX module.

2008-11-28 Thread Wolfgang Denk
Dear Dirk, In message [EMAIL PROTECTED] you wrote: Thanks for the review. I'm busys cleaning up the code, but at one point I need some help: ... You are right, there is no RAM test necessary here. I want to use auto-sizing with memsize(), but I did not find any refererences to that in

[U-Boot] [RFC PATCH V2 0/3] USB ehci

2008-11-28 Thread Michael Trimarchi
This is a series of patches based on the work of Tor Krill and other people. I have done a cleanup of the code. The original code was tested, but not this clean up version. I'm waiting for an avalaible board to test the patch set. The patch set contains: - usb patch for prepare the usb layer to

[U-Boot] [RFC PATCH V2 2/3] USB ehci core support

2008-11-28 Thread Michael Trimarchi
Add USB ehci core support Signed-off-by: Michael Trimarchi [EMAIL PROTECTED] --- drivers/usb/Makefile|1 + drivers/usb/usb_ehci.h | 121 drivers/usb/usb_ehci_core.c | 634 +++ drivers/usb/usb_ehci_core.h | 29 ++ 4 files

[U-Boot] [RFC PATCH V2 3/3] USB ehci freescale support

2008-11-28 Thread Michael Trimarchi
Add USB ehci freescale support Signed-off-by: Michael Trimarchi [EMAIL PROTECTED] --- drivers/usb/Makefile |1 + drivers/usb/usb_ehci_fsl.c | 99 drivers/usb/usb_ehci_fsl.h | 86 ++ 3 files changed,

[U-Boot] [PATCH v2] nand: Fix cache and memory inconsistent issue

2008-11-28 Thread Dave Liu
we load the secondary stage u-boot image from NAND to system memory by nand_load, we have not flush data cache to memory, not invalidate instruction cache before we jump to RAM. when the system is cache enable and the TLB/page attribute of system memory is cacheable, it will cause issue. - 83xx

[U-Boot] [PATCH] 85xx: fix the wrong DDR settings for MPC8572DS

2008-11-28 Thread Dave Liu
The default DDR freq is 400MHz or 800M data rate, the old settings is pure wrong for the default case. Signed-off-by: Dave Liu [EMAIL PROTECTED] --- include/configs/MPC8572DS.h | 26 +- 1 files changed, 13 insertions(+), 13 deletions(-) diff --git

[U-Boot] ppc4xx: u-boot sees PCIe endpoint, linux does not.

2008-11-28 Thread Leon Woestenberg
Hello, AMCC PPC460EX canyonlands board with an FPGA PCIe end point: u-boot sees the end point, but Linux does not: U-Boot 1.3.3-00249-ga524e11 (Jun 30 2008 - 16:05:51) CPU: AMCC PowerPC 460EX Rev. A at 800 MHz (PLB=200, OPB=100, EBC=100 MHz) ... Board: Canyonlands - AMCC PPC460EX Evaluation

Re: [U-Boot] [patch 2/2] Cleanup patch Fat on non standard sector sizedevices

2008-11-28 Thread Igor Luri
Dear Remy, I have checked patches and I think there are OK. Also, I have aplied [patch 1/2] and [patch 2/2] on git u-boot version. Then I have copied patched files (fat.h and fat.c) on our customized u-boot-1.1.6 version. Finally I have built and installed u-boot on our custom board. I have

[U-Boot] [RFC PATCH V2 1/3] Prepare USB layer for ehci

2008-11-28 Thread Michael Trimarchi
Prepare USB layer for ehci support Signed-off-by: Michael Trimarchi [EMAIL PROTECTED] --- common/cmd_usb.c |2 +- common/usb.c |2 +- include/usb.h | 19 +++ include/usb_defs.h | 10 ++ 4 files changed, 23 insertions(+), 10 deletions(-) diff

[U-Boot] [PATCH] net/net.c: correct timeout function

2008-11-28 Thread Daniel Mack
Hi, the net/net.c implemenation of timeouts assumes that get_timer() returns values in milliseconds. As this is true for most platforms, it does not apply to PXA3x where the OSCR register increments with more than 3MHz. The following patch fixes the problem by calculation with the CONFIG_SYS_HZ

[U-Boot] [PATCH] ne2000: take MAC address from config if available

2008-11-28 Thread Daniel Mack
Hi, the board I'm currently working on has an ASIX AX88796 NE2000 clone but no EEPROM attached to it. Hence, the get_prom() routine returns zeros only so the system won't work. This patch takes the MAC address given by CONFIG_ETHADDR and translates it to numeric values. This could probably go to

[U-Boot] [PATCH] fix lib_arm/bootm.c

2008-11-28 Thread Daniel Mack
Hi, while digging thru the sources to find out why U-Boot won't start my Linux kernel, I stumbled over lib_arm/bootm.c and its check for the falg variable. I wonder how this ever worked as the condition is really heavy to match unless BOOTM_STATE_OS_GO is 0 which it isn't. So I guess the patch

[U-Boot] gd_t/bd_t on ARM

2008-11-28 Thread Daniel Mack
Hi, I'm hunting weird behaviours with the gd_t global data pointer on my PXA300 board board. The pointer gets set up fine in lib_arm/boot.c and gd-bd is filled in my board specific code. However, after the tftp download is finished, the content of these structures have been destroyed and

Re: [U-Boot] [PATCH] fix lib_arm/bootm.c

2008-11-28 Thread Jean-Christophe PLAGNIOL-VILLARD
On 20:36 Fri 28 Nov , Daniel Mack wrote: Hi, while digging thru the sources to find out why U-Boot won't start my Linux kernel, I stumbled over lib_arm/bootm.c and its check for the falg variable. I wonder how this ever worked as the condition is really heavy to match unless

Re: [U-Boot] [PATCH] fix lib_arm/bootm.c

2008-11-28 Thread Jerry Van Baren
Daniel Mack wrote: Hi, while digging thru the sources to find out why U-Boot won't start my Linux kernel, I stumbled over lib_arm/bootm.c and its check for the falg variable. I wonder how this ever worked as the condition is really heavy to match unless BOOTM_STATE_OS_GO is 0 which it

Re: [U-Boot] gd_t/bd_t on ARM

2008-11-28 Thread Remy Bohmer
Hello Daniel, I'm hunting weird behaviours with the gd_t global data pointer on my PXA300 board board. The pointer gets set up fine in lib_arm/boot.c and gd-bd is filled in my board specific code. However, after the tftp download is finished, the content of these structures have been

Re: [U-Boot] [PATCH] fix lib_arm/bootm.c

2008-11-28 Thread Jean-Christophe PLAGNIOL-VILLARD
On 16:37 Fri 28 Nov , Jerry Van Baren wrote: Daniel Mack wrote: Hi, while digging thru the sources to find out why U-Boot won't start my Linux kernel, I stumbled over lib_arm/bootm.c and its check for the falg variable. I wonder how this ever worked as the condition is really heavy

[U-Boot] [PATCH] PXA3xx: fix CKEN[AB]

2008-11-28 Thread Daniel Mack
Hi, there are some bits in PXA3xx' CKENA/CKENB registers which need to be set always, according to the documentation. They are actually different for the three families, but as there is no way to keep track of them yet in U-Boot, I'd rather apply this patch and enable some clocks on some

Re: [U-Boot] gd_t/bd_t on ARM

2008-11-28 Thread Daniel Mack
Hi Remy, On Fri, Nov 28, 2008 at 10:39:49PM +0100, Remy Bohmer wrote: I'm hunting weird behaviours with the gd_t global data pointer on my PXA300 board board. The pointer gets set up fine in lib_arm/boot.c and gd-bd is filled in my board specific code. However, after the tftp download is

Re: [U-Boot] [PATCH] Add AT2440 (S3C2440) board support

2008-11-28 Thread sdandella
Is this patch for any u-boot version? Thanks! -- View this message in context: http://www.nabble.com/-PATCH--Add-AT2440-%28S3C2440%29-board-support-tp15283893p20743672.html Sent from the Uboot - Users mailing list archive at Nabble.com. ___ U-Boot

Re: [U-Boot] [PATCH] ne2000: take MAC address from config if available

2008-11-28 Thread Ben Warren
Hi Daniel, On Fri, Nov 28, 2008 at 8:16 AM, Daniel Mack [EMAIL PROTECTED] wrote: Hi, the board I'm currently working on has an ASIX AX88796 NE2000 clone but no EEPROM attached to it. Hence, the get_prom() routine returns zeros only so the system won't work. This patch takes the MAC