Re: [U-Boot] [PATCH v3 00/19] SPEAr : Network support for spear platforms and SPEAr1300

2010-06-10 Thread Vipin KUMAR
Dear Tom, Wolfgang, Can you please let me know the status of the remainging patches of this patch-set. I have not received any reply after sending v3 patch a long time back These are the Acks I have already received SPEAr : Configuring FSMC driver for NAND interface http://www.mail-archive.com/

Re: [U-Boot] Is it possible to use 1GB or DDR on MPC8360 with e300 core?

2010-06-10 Thread remya pillai
Hi Kim Thanks for the reply. I would like to make my situation more clear to you. CONFIG_SPD_EEPROM is defined in my board config file already. I could read the following spd eeprom info also. From this, its clear that we have enough hardware to provide 1GB memory. *DIMM type: JKCS38UKA 1

Re: [U-Boot] [PATCH 2/2] powerpc/85xx: Report workaround of errata SATA-A001

2010-06-10 Thread Timur Tabi
On Wed, Jun 9, 2010 at 11:18 PM, Kumar Gala wrote: >  static int do_errata(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) >  { > +       __maybe_unused u32 svr = get_svr(); > + > +#if defined(CONFIG_FSL_SATA_V2) && defined(CONFIG_FSL_SATA_ERRATUM_A001) > +       if (IS_SVR_REV(svr, 1, 0) && >

[U-Boot] How can I use yaffs2 in uboot

2010-06-10 Thread jackfriend
Change CONFIG_SYS_MALLOC_LEN ,Now I can write a yaffs2 file system image (59M) in nand flash (/flash/a ) but The Linux how to find the file system image?(the system support yaffs2) set bootargs noinitrd root=/dev/mtdblock3 rootfstype=yaffs2 rw console=ttySAC0,115200 init=/linuxrc mem=64M thi

Re: [U-Boot] medical profession listings

2010-06-10 Thread Bledsoe J Juan
Special Package for this week Certified Physicians in America 788,977 in total * 17,817 emails Featuring coverage for more than 30 specialties like Internal Medicine, Family Practice, Opthalmology, Anesthesiologists, Cardiologists and more 16 different sortable fields Listing of US Pharma C

Re: [U-Boot] [PATCH 00/11][U-BOOT][ZOOM3] Initial support.

2010-06-10 Thread Martinez, Aldo
Got it :) > -Original Message- > From: Wolfgang Denk [mailto:w...@denx.de] > Sent: Thursday, June 10, 2010 4:26 PM > To: Martinez, Aldo > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH 00/11][U-BOOT][ZOOM3] Initial support. > > Dear Aldo Cedillo, > > In message <1276200675-16489

[U-Boot] [PATCH 01/11] [U-BOOT][ZOOM3] Initial support - adding board files (zoom3.h)

2010-06-10 Thread Aldo Cedillo
From: Aldo Brett Cedillo Martinez Signed-off-by: Aldo Brett Cedillo Martinez --- board/logicpd/zoom3/zoom3.h | 163 +++ 1 files changed, 163 insertions(+), 0 deletions(-) create mode 100644 board/logicpd/zoom3/zoom3.h diff --git a/board/logicpd/zoom3/z

[U-Boot] [PATCH 11/11] [U-BOOT][ZOOM3] Initial support - add board to main Makefile, add the board to the list in MAKEALL file, and name to MAINTAINERS.

2010-06-10 Thread Aldo Cedillo
From: Aldo Brett Cedillo Martinez Signed-off-by: Aldo Brett Cedillo Martinez --- MAINTAINERS |4 MAKEALL |1 + Makefile|3 +++ 3 files changed, 8 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 7a13d28..384dda9 100644 --- a/MAINTAINERS +++ b/

Re: [U-Boot] MMC/SD Support for Open-RD Base/Ultimate

2010-06-10 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Fred Server > Sent: Thursday, June 10, 2010 8:48 PM > To: u-boot@lists.denx.de > Subject: [U-Boot] MMC/SD Support for Open-RD Base/Ultimate > > Hello All, > > Are there any p

Re: [U-Boot] Micrel Controller KSZ8841-16MBL

2010-06-10 Thread Ben Warren
On 6/10/2010 12:02 PM, Douglas Lopes Pereira wrote: > Hi all, > > I need some help here... > > I'm working on adding a driver for KSZ8841 ethernet controller which I found > at this forum: blackfin.uclinux.org. > > I was looking at the mail list archive and found a message from Prafulla > answering

Re: [U-Boot] [PATCH V7 3/3] Add support for the LaCie ED Mini V2 board

2010-06-10 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Albert Aribaud > Sent: Thursday, June 10, 2010 2:20 AM > To: u-boot@lists.denx.de > Subject: [U-Boot] [PATCH V7 3/3] Add support for the LaCie ED > Mini V2 board > > This pat

Re: [U-Boot] Bug in IP/UDP defragment?

2010-06-10 Thread Alessandro Rubini
Hello. Please forgive my delay. > 16:58:32.290407 IP 10.12.48.10.33088 > 10.12.48.32.3285: UDP, length 2959 > 16:58:32.290410 IP 10.12.48.10 > 10.12.48.32: udp > 16:58:32.290412 IP 10.12.48.10 > 10.12.48.32: udp The third fragment here is less than 8 bytes of payload, and this triggers the bug.

[U-Boot] [PATCH 1/2] cpuat91: unbreak ethernet

2010-06-10 Thread Eric Bénard
* the following problems are met : config was set to use the new driver as a default but - RMII was not enabled for the new driver - the new driver didn't compile with RMII enabled - the new driver initialize a PHY at address O when the PHY of this board is at 1 thus we get "AT91 EMAC RMII: No PHY

[U-Boot] [PATCH] display the entry point when compiling a stand-alone program

2010-06-10 Thread Timur Tabi
Contrary to popular belief, the entry point for a stand-alone program is not consistent. The only way to know for sure is to use the nm program and search for the entry point function. So we update the Makefile build rule to display this entry point after the ELF image is created. Signed-off-by:

[U-Boot] [PATCH 06/11] [U-BOOT][ZOOM3] Initial support - adding board files (debug_board.c)

2010-06-10 Thread Aldo Cedillo
From: Aldo Brett Cedillo Martinez Signed-off-by: Aldo Brett Cedillo Martinez --- board/logicpd/zoom3/debug_board.c | 66 + 1 files changed, 66 insertions(+), 0 deletions(-) create mode 100644 board/logicpd/zoom3/debug_board.c diff --git a/board/logicpd/zo

[U-Boot] [PATCH 02/11] [U-BOOT][ZOOM3] Initial support - adding board files (zoom3.c)

2010-06-10 Thread Aldo Cedillo
From: Aldo Brett Cedillo Martinez Signed-off-by: Aldo Brett Cedillo Martinez --- board/logicpd/zoom3/zoom3.c | 201 +++ 1 files changed, 201 insertions(+), 0 deletions(-) create mode 100644 board/logicpd/zoom3/zoom3.c diff --git a/board/logicpd/zoom3/z

[U-Boot] [PATCH 03/11] [U-BOOT][ZOOM3] Initial support - adding board files (zoom3_serial.h)

2010-06-10 Thread Aldo Cedillo
From: Aldo Brett Cedillo Martinez Signed-off-by: Aldo Brett Cedillo Martinez --- board/logicpd/zoom3/zoom3_serial.h | 76 1 files changed, 76 insertions(+), 0 deletions(-) create mode 100644 board/logicpd/zoom3/zoom3_serial.h diff --git a/board/logicpd/z

[U-Boot] Micrel Controller KSZ8841-16MBL

2010-06-10 Thread Douglas Lopes Pereira
Hi all, I need some help here... I'm working on adding a driver for KSZ8841 ethernet controller which I found at this forum: blackfin.uclinux.org. I was looking at the mail list archive and found a message from Prafulla answering Raphael Amorin. Mr. Prafulla suggested him to add the input code

[U-Boot] [PATCH 09/11] [U-BOOT][ZOOM3] Initial support - add config file (omap3_zoom3.h)

2010-06-10 Thread Aldo Cedillo
From: Aldo Brett Cedillo Martinez Signed-off-by: Aldo Brett Cedillo Martinez --- include/configs/omap3_zoom3.h | 271 + 1 files changed, 271 insertions(+), 0 deletions(-) create mode 100644 include/configs/omap3_zoom3.h diff --git a/include/configs/oma

[U-Boot] [PATCH 04/11] [U-BOOT][ZOOM3] Initial support - adding board files (zoom3_serial.c)

2010-06-10 Thread Aldo Cedillo
From: Aldo Brett Cedillo Martinez Signed-off-by: Aldo Brett Cedillo Martinez --- board/logicpd/zoom3/zoom3_serial.c | 132 1 files changed, 132 insertions(+), 0 deletions(-) create mode 100644 board/logicpd/zoom3/zoom3_serial.c diff --git a/board/logicpd/

[U-Boot] [PATCH 10/11] [U-BOOT][ZOOM3] Initial support - added OMAP3630 serial devices.

2010-06-10 Thread Aldo Cedillo
From: Aldo Brett Cedillo Martinez Signed-off-by: Aldo Brett Cedillo Martinez --- common/serial.c |2 ++ include/serial.h |7 +++ 2 files changed, 9 insertions(+), 0 deletions(-) diff --git a/common/serial.c b/common/serial.c index fceabfa..2a644ba 100644 --- a/common/serial.c +++

Re: [U-Boot] [PATCH 00/11][U-BOOT][ZOOM3] Initial support.

2010-06-10 Thread Wolfgang Denk
Dear Aldo Cedillo, In message <1276200675-16489-1-git-send-email-aldo.cedi...@ti.com> you wrote: > From: Aldo Brett Cedillo Martinez > > The following series of patches is intented to give basic functionality > to OMAP3630 Zoom3 board. All your reviews are welcome and appreciated. > > Aldo Bre

Re: [U-Boot] [PATCH V7 1/3] Initial support for Marvell Orion5x SoC

2010-06-10 Thread Albert ARIBAUD
Hi Prafulla, Le 10/06/2010 21:36, Prafulla Wadaskar a écrit : >> +/* Display device and revision IDs. >> + * This function must cover all known device/revision >> + * combinations, not only the one for which u-boot is >> + * compiled; this way, one can identify actual HW in >> + * case of a

[U-Boot] [PATCH 2/2] cpuat91: convert to new at91 soc architecture

2010-06-10 Thread Eric Bénard
convert the board to the new soc architecture update default config i2c upgrade taken from eb_cpux9k2.h & board/BuS/eb_cpux9k2/cpux9k2.c Signed-off-by: Eric Bénard --- Makefile |2 +- board/eukrea/cpuat91/cpuat91.c | 53 --- include

Re: [U-Boot] [PATCH V7 1/3] Initial support for Marvell Orion5x SoC

2010-06-10 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Albert Aribaud > Sent: Thursday, June 10, 2010 2:20 AM > To: u-boot@lists.denx.de > Subject: [U-Boot] [PATCH V7 1/3] Initial support for Marvell > Orion5x SoC > ...snip... >

[U-Boot] [PATCH 07/11] [U-BOOT][ZOOM3] Initial support - adding board files (config.mk)

2010-06-10 Thread Aldo Cedillo
From: Aldo Brett Cedillo Martinez Signed-off-by: Aldo Brett Cedillo Martinez --- board/logicpd/zoom3/config.mk | 33 + 1 files changed, 33 insertions(+), 0 deletions(-) create mode 100644 board/logicpd/zoom3/config.mk diff --git a/board/logicpd/zoom3/config.m

[U-Boot] [PATCH 08/11] [U-BOOT][ZOOM3] Initial support - adding board files (Makefile)

2010-06-10 Thread Aldo Cedillo
From: Aldo Brett Cedillo Martinez Signed-off-by: Aldo Brett Cedillo Martinez --- board/logicpd/zoom3/Makefile | 54 ++ 1 files changed, 54 insertions(+), 0 deletions(-) create mode 100644 board/logicpd/zoom3/Makefile diff --git a/board/logicpd/zoom3/M

[U-Boot] [PATCH 00/11][U-BOOT][ZOOM3] Initial support.

2010-06-10 Thread Aldo Cedillo
From: Aldo Brett Cedillo Martinez The following series of patches is intented to give basic functionality to OMAP3630 Zoom3 board. All your reviews are welcome and appreciated. Aldo Brett Cedillo Martinez (11): [U-BOOT][ZOOM3] Initial support - adding board files (zoom3.h) [U-BOOT][ZOOM3] I

[U-Boot] [PATCH 05/11] [U-BOOT][ZOOM3] Initial support - adding board files (led.c)

2010-06-10 Thread Aldo Cedillo
From: Aldo Brett Cedillo Martinez Signed-off-by: Aldo Brett Cedillo Martinez --- board/logicpd/zoom3/led.c | 133 + 1 files changed, 133 insertions(+), 0 deletions(-) create mode 100644 board/logicpd/zoom3/led.c diff --git a/board/logicpd/zoom3/led

Re: [U-Boot] Micrel Controller KSZ8841-16MBL

2010-06-10 Thread Douglas Lopes Pereira
Hi Ben, thanks for the quick reply. On Thu, Jun 10, 2010 at 4:18 PM, Ben Warren wrote: > On 6/10/2010 12:02 PM, Douglas Lopes Pereira wrote: > >> Hi all, >> >> I need some help here... >> >> I'm working on adding a driver for KSZ8841 ethernet controller which I >> found >> at this forum: blackfi

Re: [U-Boot] [PATCH V7 1/3] Initial support for Marvell Orion5x SoC

2010-06-10 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Albert Aribaud > Sent: Thursday, June 10, 2010 2:20 AM > To: u-boot@lists.denx.de > Subject: [U-Boot] [PATCH V7 1/3] Initial support for Marvell > Orion5x SoC > > This patch adds

[U-Boot] [PATCH v2] [U-BOOT] Zoom3: Add support for OMAP3630 Zoom3 board.

2010-06-10 Thread Aldo Cedillo
From: Aldo Brett Cedillo Martinez This patch gives basic funcionality to OMAP3630 Zoom3 board. Signed-off-by: Aldo Brett Cedillo Martinez --- MAINTAINERS|4 + MAKEALL|1 + Makefile |3 + board/logicpd/zoo

Re: [U-Boot] [PATCH] ARM: Kirkwood: Add support for OpenRD-Client & OpenRD-Ultimate

2010-06-10 Thread Prafulla Wadaskar
> -Original Message- > From: Simon Kagstrom [mailto:simon.kagst...@netinsight.net] > Sent: Thursday, June 10, 2010 3:56 PM > To: Tanmay Upadhyay > Cc: Prafulla Wadaskar; u-boot@lists.denx.de > Subject: Re: [PATCH] ARM: Kirkwood: Add support for > OpenRD-Client & OpenRD-Ultimate > > On

Re: [U-Boot] build u-boot 2010-03 for freescale 8349E

2010-06-10 Thread Wolfgang Denk
Dear Zied Fakhfakh, In message you wrote: > > > You need a toolchain. Try this one: > > > > http://www.denx.de/wiki/DULG/ELDK > > > > There's a mailing list and everything. Ask intelligent questions there. > > > [?] http://lists.denx.de/mailman/listinfo/eldk Best regards, Wolfgang Denk --

Re: [U-Boot] Problems booting PPC with RAM root fs

2010-06-10 Thread Wolfgang Denk
Dear Adam Moskowitz, In message <20100610173438.ga25...@cakewalk.menlo.com> you wrote: > > Here's my situation . . . We have a custom PPC-based board that > currently boots from a kernel in the on-board flash and the root fs > mounted via NFS. My project is to move the root fs into flash; to test

Re: [U-Boot] build u-boot 2010-03 for freescale 8349E

2010-06-10 Thread Zied Fakhfakh
On Thu, Jun 10, 2010 at 6:53 PM, Ben Warren wrote: > You need a toolchain. Try this one: > > http://www.denx.de/wiki/DULG/ELDK > > There's a mailing list and everything. Ask intelligent questions there. > [?] > > regards, > -- Zied FAKHFAKH Dot TN - CTO @: fz...@dottn.com t: +216 71 82 89

[U-Boot] Problems booting PPC with RAM root fs

2010-06-10 Thread Adam Moskowitz
Here's my situation . . . We have a custom PPC-based board that currently boots from a kernel in the on-board flash and the root fs mounted via NFS. My project is to move the root fs into flash; to test that -- mainly to save time and write cycles on the flash -- I'm trying to do my debugging by pu

Re: [U-Boot] build u-boot 2010-03 for freescale 8349E

2010-06-10 Thread Ben Warren
On 6/10/2010 10:51 AM, Zied Fakhfakh wrote: > it's definitly this one > > On Thu, Jun 10, 2010 at 6:40 PM, Zied Fakhfakh wrote: > > >> MPC8349ITX >> >> > http://www.linuxfordevices.com/files/misc/freescale_mpc8349e_mitx.jpg > > [r...@zitouna u-boot-2010.03]# make MPC8349ITX_config > make

Re: [U-Boot] build u-boot 2010-03 for freescale 8349E

2010-06-10 Thread Zied Fakhfakh
it's definitly this one On Thu, Jun 10, 2010 at 6:40 PM, Zied Fakhfakh wrote: > MPC8349ITX > http://www.linuxfordevices.com/files/misc/freescale_mpc8349e_mitx.jpg [r...@zitouna u-boot-2010.03]# make MPC8349ITX_config make: ppc_8xx-gcc: Command not found /bin/sh: ppc_8xx-gcc: command not found d

Re: [U-Boot] build u-boot 2010-03 for freescale 8349E

2010-06-10 Thread Stefano Babic
Zied Fakhfakh wrote: > > HI all, > > > > I'm new to u-boot. I trying to build u-boot 2010-03 for freescale 8349E > > > > make MPC8349E_config > > > > does not work ? Probably because there is not a board with this name... > > > > any suggestion ? There are some boards using this processor: MPC8

[U-Boot] build u-boot 2010-03 for freescale 8349E

2010-06-10 Thread Zied Fakhfakh
HI all, I'm new to u-boot. I trying to build u-boot 2010-03 for freescale 8349E make MPC8349E_config does not work ? any suggestion ? -- Zied FAKHFAKH Dot TN - CTO @: fz...@dottn.com t: +216 71 82 89 58 f: +216 71 82 89 58 w: http://www.dottn.com a: Centre Molka, Esc E, Bur 17 - Manar 2 - 20

[U-Boot] Please Pull u-boot-ti/master

2010-06-10 Thread s-paulraj
Tom, Please pull u-boot-ti/master. This set consists of a patch set from Sudhkar which earlier broke other DaVinci boards. I verified that all DaVinci boards built fine. Thanks, Sandeep The following changes since commit 23911740486c59851df57521c49bfd81ce1865ec: Delio Brignoli (1): DaV

Re: [U-Boot] [PATCH v4] TI: DaVinci: Add board specific code for da850 EVM

2010-06-10 Thread Paulraj, Sandeep
> > > > Signed-off-by: Sudhakar Rajashekhara > > Acked-by: Ben Gardiner > > Reviewed-by: Wolfgang Denk > > --- > > MAINTAINERS |4 + > > MAKEALL |1 + > > Makefile |3 +- > >

[U-Boot] MMC/SD Support for Open-RD Base/Ultimate

2010-06-10 Thread Fred Server
Hello All, Are there any plans to add MMC/SD support for the Open-RD Base/Ultimate platforms ? It was on a to be done list over 6 months ago, but there doesn't seem to have been any movement. I have tried a recent version of U-boot and like some of the new features, but because I need to boot fr

[U-Boot] [PATCH] serial: atmel_usart: insert watchdog petting during putc() and tstc()

2010-06-10 Thread Nicolas Ferre
Watchdog resets were experienced during autoboot delay. Petting the watchdog during putc() and tstc() functions solve the issue. Signed-off-by: Nicolas Ferre --- drivers/serial/atmel_usart.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/drivers/serial/atmel_usart.c

Re: [U-Boot] [PATCH] arm: add initilisation of watchdog in init_sequence

2010-06-10 Thread Nicolas Ferre
Le 30/05/2010 13:17, Tom Rix : > Nicolas Ferre wrote: >> For platforms that implement a hardware watchdog, call its initialization >> routine in init_sequence. >> This location has been chosen to be the closest to initialization of >> console as >> some watchdog drivers are writing status messages.

Re: [U-Boot] Regarding M96 GPU

2010-06-10 Thread Anatolij Gustschin
Hi Thirumalai, On Thu, 10 Jun 2010 15:26:11 +0530 "Thirumalai" wrote: > - Original Message - > From: "Stefan Roese" > To: "Thirumalai" > Sent: Thursday, June 10, 2010 3:16 PM > Subject: Re: Regarding M96 GPU > > > > Hi Thirumalai, > > > > On Thursday 10 June 2010 11:43:23 Thirumalai

Re: [U-Boot] [PATCH] ARM: Kirkwood: Add support for OpenRD-Client & OpenRD-Ultimate

2010-06-10 Thread Simon Kagstrom
On Thu, 10 Jun 2010 15:08:00 +0530 Tanmay Upadhyay wrote: > >> +#define MACH_TYPE_OPENRD_ULTIMATE 2884 > >> > > I don't think this file is supposed to be edited in patches, but rather > > synched from arm-linux by Wolfgang from time to time. > > Sorry, I didn't know about that. However

Re: [U-Boot] Regarding M96 GPU

2010-06-10 Thread Thirumalai
- Original Message - From: "Stefan Roese" To: "Thirumalai" Sent: Thursday, June 10, 2010 3:16 PM Subject: Re: Regarding M96 GPU > Hi Thirumalai, > > On Thursday 10 June 2010 11:43:23 Thirumalai wrote: >> I just want to know whether the u-boot will support M96 GPU. >> I >>

[U-Boot] Fw: Regarding M96 GPU

2010-06-10 Thread Thirumalai
Hi Stefen, I just want to know whether the u-boot will support M96 GPU. I having a graphics card which is based on the M96 and it working fine on linux environment. But it is not getting detected on u-boot. I am using u-boot 2010-03. What and all need to modify to support M96 o

Re: [U-Boot] [PATCH] ARM: Kirkwood: Add support for OpenRD-Client & OpenRD-Ultimate

2010-06-10 Thread Tanmay Upadhyay
On 06/10/2010 02:46 PM, Simon Kagstrom wrote: On Thu, 10 Jun 2010 14:42:24 +0530 Tanmay Upadhyay wrote: This patch modifies existing OpenRD-Base support to deal with all the three OpenRD boards (OpenRD-Base, OpenRD-Client& OpenRD-Ultimate). Yes, that's a good change! diff --

[U-Boot] [PATCH] ppc4xx: Add T3COPR board support (PPC460GT based)

2010-06-10 Thread Stefan Roese
This patch adds support for the T3CORP board, based on the AppliedMicro (AMCC) PPC460GT. Signed-off-by: Stefan Roese --- MAINTAINERS|1 + MAKEALL|1 + Makefile |3 + board/t3corp/Makefile | 53 + board/t3corp/chip_confi

[U-Boot] [PATCH] net: Add option to disable fibre on M88E1111 PHY for PPC4xx

2010-06-10 Thread Stefan Roese
By defining CONFIG_M88E_DISABLE_FIBRE boards can configure the M88E PYH to disable fibre. This is needed for an upcoming PPC460GT based board, which has fibre/copper auto-selection enabled by default. This doesn't seem to work. So we disable fibre in the PHY register. Signed-off-by: Stefan

[U-Boot] [PATCH] ppc4xx: Cleanup Boot/FLASH TLB reassignment for PPC440/460

2010-06-10 Thread Stefan Roese
Background Info: Some PPC440/460 boards have caches enabled in the Boot/FLASH TLB (via init.S) to speed up the boot process. In relocate_code (start.S) the cache inhibit attribute for this TLB is set to disable cache. This is needed for the CFI FLASH driver. This patch now cleans this code up: - C

[U-Boot] [PATCH] ppc4xx: Add DDR1/2 macros in ppc4xx-sdram.h for non-405EX as well

2010-06-10 Thread Stefan Roese
This patch adds some DDR(2) macros to all PPC4xx's equipped with this IBM DDR1/2 controller. Signed-off-by: Stefan Roese --- arch/powerpc/include/asm/ppc4xx-sdram.h |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/arch/powerpc/include/asm/ppc4xx-sdram.h b/arch/powerpc

[U-Boot] [PATCH] ppc4xx: DDR2: Complete RDSS configuration on non-SPD based boards

2010-06-10 Thread Stefan Roese
As described in item #10 of the SDRAM initialization (chapter 22.2.9 of the PPC460EX/EXr/GT users manual), RDSS may need to be adjusted. The code for this is now factored out and executed for non-SPD based boards as well. Signed-off-by: Stefan Roese --- arch/powerpc/cpu/ppc4xx/44x_spd_ddr2.c |

[U-Boot] [PATCH] ppc4xx: Enable overwriting of default scan window for IBM DDR2 controller

2010-06-10 Thread Stefan Roese
This patch makes it possible to overwrite the default auto-calibration scan window (SDRAM_WRDTR.[WDTR], SDRAM_CLKTR.[CKTR] values) with board specific values. The parameters of the weak default function are corrected as well. This way we don't need the casts any more. This feature will be used by

[U-Boot] [PATCH] ppc4xx: Enable PCIe support without PCI support on PPC440/460

2010-06-10 Thread Stefan Roese
By not defining CONFIG_SYS_PCI_MASTER_INIT and CONFIG_SYS_PCI_TARGET_INIT, PCI support (host and adapter) will not be enabled. But it's still possible to use the U-Boot PCI infrastructure for the PCIe ports. This configuration option is needed for a new 460GT board, which uses PCIe but has PCI dis

[U-Boot] [PATCH] ppc4xx: Enable booting with Option E on 460EX/EXr/GT

2010-06-10 Thread Stefan Roese
This patch enables booting with option E on the PPC460EX/EXr/GT. When booting with Option E, the PLL is in bypass, CPR0_PLLC[ENG]=0. The Software Boot Configuration Procedure is needed to engage the PLL and perform a chip reset. Signed-off-by: Stefan Roese --- arch/powerpc/cpu/ppc4xx/cpu_init.c

Re: [U-Boot] [PATCH] ARM: Kirkwood: Add support for OpenRD-Client & OpenRD-Ultimate

2010-06-10 Thread Simon Kagstrom
On Thu, 10 Jun 2010 14:42:24 +0530 Tanmay Upadhyay wrote: > This patch modifies existing OpenRD-Base support to deal with all > the three OpenRD boards (OpenRD-Base, OpenRD-Client & OpenRD-Ultimate). Yes, that's a good change! > diff --git a/arch/arm/include/asm/mach-types.h > b/arch/arm/inclu

[U-Boot] [PATCH] ARM: Kirkwood: Add support for OpenRD-Client & OpenRD-Ultimate

2010-06-10 Thread Tanmay Upadhyay
This patch modifies existing OpenRD-Base support to deal with all the three OpenRD boards (OpenRD-Base, OpenRD-Client & OpenRD-Ultimate). Signed-off-by: Tanmay Upadhyay --- Makefile|9 +- arch/arm/include/asm/mach-types.h | 13 ++ board/Marvell/openrd/

Re: [U-Boot] U-Boot and FTP server

2010-06-10 Thread Stefano Babic
Piotr Piwko wrote: > Hello, > Hi, > Is there any possibility to download a system image from external FTP > server? No, there is not, at least at the moment... > As I know, U-boot only supports the access to TFTP local > server, but time to time it would be very useful for me if I can > downlo

[U-Boot] U-Boot and FTP server

2010-06-10 Thread Piotr Piwko
Hello, Is there any possibility to download a system image from external FTP server? As I know, U-boot only supports the access to TFTP local server, but time to time it would be very useful for me if I can download the image through external FTP server. Thanks in advance for your engagement, --