[U-Boot] [PATCH v2] ppc4xx: Merge PPC4xx DDR and DDR2 ECC handling

2009-09-28 Thread Stefan Roese
This patch merges the ECC handling (ECC parity byte writing) into one file (ecc.c) for all PPC4xx SDRAM controllers except for PPC440EPx/GRx. This exception is because only those PPC's use the completely different Denali SDRAM controller core. Previously we had two routines to generate/write the E

Re: [U-Boot] [PATCH] ppc4xx: Merge PPC4xx DDR and DDR2 ECC handling

2009-09-28 Thread Stefan Roese
Hi Felix, On Tuesday 29 September 2009 08:24:47 Felix Radensky wrote: > >> After fixing the problem manually I was able to successfully test > >> your patch on 405EXr and 460EX boards with ECC. > > > > OK, thanks. > > Now that sdram_memsize() is in common DDR2 code I think we can > get rid of CON

Re: [U-Boot] [PATCH] ppc4xx: Merge PPC4xx DDR and DDR2 ECC handling

2009-09-28 Thread Felix Radensky
Hi, Stefan Stefan Roese wrote: >> After fixing the problem manually I was able to successfully test >> your patch on 405EXr and 460EX boards with ECC. >> > > OK, thanks. > Now that sdram_memsize() is in common DDR2 code I think we can get rid of CONFIG_SYS_MBYTES_SDRAM. What do you think

Re: [U-Boot] [PATCH 1/1] TI OMAP3 Use arm init sequence to initialize i2c

2009-09-28 Thread Dirk Behme
Tom, Tom Rix wrote: > This changes fixes an early i2c error. Do you like to update this against recent u-boot-ti? It applies fine using quilt -- cut -- > quilt push Applying patch patches/i2c_fix.txt patching file include/configs/devkit8000.h patching file include/configs/omap3_beagle.h patchi

Re: [U-Boot] [PATCH v4] at91: Update MEESC board support

2009-09-28 Thread Daniel Gorsulowski
Hello Tom, Tom wrote: > Daniel Gorsulowski wrote: >> This patch implements several updates: >> -disable CONFIG_ENV_OVERWRITE >> -add new hardware style variants and set the arch numbers appropriate >> -pass the serial# and hardware revision to the kernel >> -removed unused macros from include/conf

[U-Boot] [PATCH v5] at91: Update MEESC board support

2009-09-28 Thread Daniel Gorsulowski
This patch implements several updates: -disable CONFIG_ENV_OVERWRITE -add new hardware style variants and set the arch numbers appropriate -pass the serial# and hardware revision to the kernel -removed unused macros from include/configs/meesc.h -fixed multiline comment style Signed-off-by: Daniel

[U-Boot] [PATCH] Nomadik: fix reset_timer()

2009-09-28 Thread Alessandro Rubini
From: Alessandro Rubini The timer decrements and READ_TIMER() negates the value read. Writing 0 in reset_timer() is this wrong, as a readback before 400us will read back 0 and will report 1780 seconds, so nand operations did timeout. This patch writes ~0 in reset_timer to prevent this. Signed-o

Re: [U-Boot] [PATCH] ppc4xx: Merge PPC4xx DDR and DDR2 ECC handling

2009-09-28 Thread Stefan Roese
Hi Felix, On Tuesday 29 September 2009 00:17:07 Felix Radensky wrote: > > Pieter, the p3p440 is currently the only PPC4xx DDR based board (non > > DDR2) with ECC enabled. Could you please test this patch on the p3p440, > > and let me know if you see any problems? > > > > And Felix & Grant, it woul

Re: [U-Boot] [PATCH] arm:kirkwood: Add hardware watchdog support for Marvell Kirkwood boards

2009-09-28 Thread Prafulla Wadaskar
> -Original Message- > From: u-boot-boun...@lists.denx.de > [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Simon Kagstrom > Sent: Monday, September 28, 2009 12:36 PM > To: u-boot@lists.denx.de > Subject: [U-Boot] [PATCH] arm:kirkwood: Add hardware watchdog > support for Marvell Kir

[U-Boot] [PATCH v2] TI: DaVinci DM365: Enabling network Support on DM365 EVM

2009-09-28 Thread s-paulraj
From: Sandeep Paulraj This patch enables EMAC on the DM365 EVM. Signed-off-by: Sandeep Paulraj --- Changes since v1 include using a memory map to manipulate GPIO registers. This was suggested by Wolfgang. When compiling with this patch DM365 will still give compilation issues as i have to send

[U-Boot] [PATCH] TI: DaVinci: GPIO header file and definitions

2009-09-28 Thread s-paulraj
From: Sandeep Paulraj Some DaVinci SOC's use GPIOs to enable EMAC and DM9000. This patch adds some definitions for GPIO registers and also adds structures for GPIO. A separate header file is being added so that in future we can have a DaVinci GPIO driver similer to OMAP. Signed-off-by: Sandeep P

Re: [U-Boot] [U-boot] Marvell Pull Request

2009-09-28 Thread Prafulla Wadaskar
> -Original Message- > From: Tom [mailto:tom@windriver.com] > Sent: Monday, September 28, 2009 5:21 AM > To: Prafulla Wadaskar > Cc: U-Boot > Subject: Re: [U-Boot] [U-boot] Marvell Pull Request > > Prafulla Wadaskar wrote: > > > > > >> -Original Message- > >> From: Tom [

[U-Boot] [PATCH] TI: DaVinci DM355: Fix Compilation warning

2009-09-28 Thread s-paulraj
From: Sandeep Paulraj This patch fixes a compilation warning while building DM355 Signed-off-by: Sandeep Paulraj --- board/davinci/dm355evm/dm355evm.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/board/davinci/dm355evm/dm355evm.c b/board/davinci/dm355evm/dm3

Re: [U-Boot] mips board with no output from console

2009-09-28 Thread Jerry Van Baren
myub...@fastmail.fm wrote: > I am trying to upgrade my u-boot from 2008.10 to 2009.06. So I used the > buildroot 2009.06 to build the tool chain for my mips32 board as well as > u-boot. I also copied the previous u-boot initialization code to > initialze timer, serial port, ram and etc from u-boot

[U-Boot] mips board with no output from console

2009-09-28 Thread myuboot
I am trying to upgrade my u-boot from 2008.10 to 2009.06. So I used the buildroot 2009.06 to build the tool chain for my mips32 board as well as u-boot. I also copied the previous u-boot initialization code to initialze timer, serial port, ram and etc from u-boot 2008.10 to 2009.06. My previous ver

Re: [U-Boot] [PATCH] ppc4xx: Merge PPC4xx DDR and DDR2 ECC handling

2009-09-28 Thread Felix Radensky
Hi, Stefan Stefan Roese wrote: > This patch merges the ECC handling (ECC parity byte writing) into one > file (ecc.c) for all PPC4xx SDRAM controllers except for PPC440EPx/GRx. > This exception is because only those PPC's use the completely different > Denali SDRAM controller core. > > Previously

[U-Boot] [PATCH] NAND: davinci: Fix warnings when 4-bit ECC not used

2009-09-28 Thread Scott Wood
I accidentally left v2 of "NAND: DaVinci:Adding 4 BIT ECC support" applied when I pushed the tree last merge window, and missed these fixes which were in v3 of that patch. Signed-off-by: Sandeep Paulraj Signed-off-by: Scott Wood --- Applied to u-boot-nand-flash drivers/mtd/nand/davinci_nand.c

Re: [U-Boot] [PATCH 1/3] [OneNAND] Flex-OneNAND driver support

2009-09-28 Thread Scott Wood
On Thu, Sep 24, 2009 at 11:43:47AM +0530, Amul Kumar Saha wrote: > +static loff_t flexonenand_addr(struct onenand_chip *this, int block) > +{ > + loff_t ofs = 0; > + int die = 0, boundary; > + > + if (ONENAND_IS_DDP(this) && block >= this->density_mask) { > + block -= this->

Re: [U-Boot] [PATCH v3] TI: OMAP3: Overo Tobi ethernet support

2009-09-28 Thread Paulraj, Sandeep
> > Olof Johansson wrote: > > Add setup for ethernet on Tobi, allowing kernel/ramdisk to be loaded > > over tftp. > > > > This also refactors the smc911x driver to allow for detecting when the > > chip is missing. I.e. the detect_chip() function is called earlier and > > will abort gracefully whe

Re: [U-Boot] [PATCH 0/3] [OneNAND] Flex-OneNAND driver support

2009-09-28 Thread Scott Wood
On Thu, Sep 24, 2009 at 11:43:20AM +0530, Amul Kumar Saha wrote: > Hi Scott, > > Resending the Flex-OneNAND driver support. > It is now a part of the mainline Linux Kernel. You seem to have stripped a copyright notice that was added in the Linux version of patch 1/3. -Scott _

Re: [U-Boot] [PATCH] [OneNAND IPL] Refactor OneNAND IPL code

2009-09-28 Thread Scott Wood
On Tue, Sep 22, 2009 at 09:05:00AM +0900, Kyungmin Park wrote: > Refactoring the OneNAND IPL code > > and some minor fixed: > - Remove unnecessary header file > - Fix wrong access at read interrupt > - The recent OneNAND has 4KiB pagesize > > Also Board can override OneNAND IPL image > > Signed-

Re: [U-Boot] [PATCH v3] TI: OMAP3: Overo Tobi ethernet support

2009-09-28 Thread Ben Warren
Olof Johansson wrote: > Add setup for ethernet on Tobi, allowing kernel/ramdisk to be loaded > over tftp. > > This also refactors the smc911x driver to allow for detecting when the > chip is missing. I.e. the detect_chip() function is called earlier and > will abort gracefully when the Chip ID read

Re: [U-Boot] [PATCH v5 1/7] ppc/p4080: Add p4080 platform immap definitions

2009-09-28 Thread Scott Wood
On Wed, Sep 23, 2009 at 01:46:04PM -0500, Kumar Gala wrote: > +typedef struct ccsr_clk { > +u32 clkc0csr; /* 0xe1000 - Core 0 Clock control/status > register */ > +u8 res1[0x1c]; > +u32 clkc1csr; /* 0xe1020 - Core 1 Clock control/status > register

Re: [U-Boot] [PATCH] mpc512x. Micron nand flash needs a reset before a read command is issued.

2009-09-28 Thread Scott Wood
On Tue, Sep 22, 2009 at 10:45:39PM +0200, Wolfgang Denk wrote: > Dear Paul Gibson, > > In message <26b052040909151705r35cdb874gbbe5a184d20e4...@mail.gmail.com> you > wrote: > > Micron nand flash needs a reset before a read command is issued. > > The current mpc5121_nfc driver ignores the reset co

Re: [U-Boot] [PATCH 2/4 v3] s5pc1xx: support onenand driver

2009-09-28 Thread Scott Wood
On Thu, Sep 24, 2009 at 03:27:29PM +0200, Wolfgang Denk wrote: > Dear Tom, Kyungmin & Minkyu, > > In message <4ab8e3ca.6060...@windriver.com> Tom Rix wrote: > > > ... > > > + * This program is free software; you can redistribute it and/or modify > > > + * it under the terms of the GNU General Publ

Re: [U-Boot] Applying u-boot-ti patches

2009-09-28 Thread Paulraj, Sandeep
> in > > this case). > > > > Signed-off-by: Olof Johansson > Ack-ed > > Sandeep, > Can you push this to the ti branch? > > Tom > > >>> Yes after I rebase the branch. > >>> I have to get rid of some commits NAK'ed by Wolfgang. > >> Seems this is done

Re: [U-Boot] Applying u-boot-ti patches

2009-09-28 Thread Dirk Behme
Paulraj, Sandeep wrote: >> Paulraj, Sandeep wrote: Olof Johansson wrote: > Add setup for ethernet on Tobi, allowing kernel/ramdisk to be loaded > over tftp. > > Based on the omap3 evm code. I added a new highlevel define for Tobi > to avoid having it dependent on CMD_NET (w

[U-Boot] [PATCH] ppc4xx: Merge PPC4xx DDR and DDR2 ECC handling

2009-09-28 Thread Stefan Roese
This patch merges the ECC handling (ECC parity byte writing) into one file (ecc.c) for all PPC4xx SDRAM controllers except for PPC440EPx/GRx. This exception is because only those PPC's use the completely different Denali SDRAM controller core. Previously we had two routines to generate/write the E

Re: [U-Boot] [PATCH] ppc4xx: Reorganize DDR2 ECC handling

2009-09-28 Thread Stefan Roese
Hi Felix, On Sunday 27 September 2009 23:56:12 Felix Radensky wrote: > Reorganize DDR2 ECC handling to use common code for > SPD DIMMs and soldered SDRAM. Also, use common code > to display SDRAM info (ECC, CAS latency) for SPD and > soldered SDRAM variants. Thanks. This is a first step into cons

[U-Boot] [PATCH 8/8] OMAP3 zoom2 Use usbtty if the debug board is not connected.

2009-09-28 Thread Tom Rix
The preferred serial output comes from the debug board. When the debug board is disconnected, fall back on using usbtty from the usb connector on the Zoom2 board. This shows up as /dev/ttyACM0 in a linux host. Signed-off-by: Tom Rix --- board/logicpd/zoom2/zoom2_serial.c | 12 in

[U-Boot] [PATCH 7/8] USBTTY make some function declarations easier to use.

2009-09-28 Thread Tom Rix
Zoom2 needs to use these declarations and the include directory is a better place from them than in the middle of the driver directory. It did not make sense to create a new file for just a couple of lines so they were appended to the serial.h Signed-off-by: Tom Rix --- include/serial.h |6 +

[U-Boot] [PATCH 6/8] OMAP3 beagle Add usbtty configuration

2009-09-28 Thread Tom Rix
The primary console of beagle is the serial header. A secondary console is to use the usbtty. The user can set this manually by doing setenv stdout usbtty; setenv stdin usbtty; setenv stderr usbtty saveenv usbtty will be usable by accessing the /dev/ttyACM0 on a linux host. Signed-off-by: Tom

[U-Boot] [PATCH 5/8] OMAP3 zoom1 Add usbtty configuration

2009-09-28 Thread Tom Rix
The primary console of zoom1 is the serial out from the jumpers accessed by removing the back panel. A secondary console is to use the usbtty. The user can set this manually by doing setenv stdout usbtty; setenv stdin usbtty; setenv stderr usbtty saveenv usbtty will be usable by accessing the /

[U-Boot] [PATCH 4/8] OMAP3 Add usb device support

2009-09-28 Thread Tom Rix
This change adds the usb device support for musb. Omap3 platform support added at the same level as davinci. The interface for usbtty to use the musb device support was added. Verified on omap3 beagle, zoom1 and zoom2. Signed-off-by: Tom Rix --- drivers/serial/usbtty.h |2 + drivers

[U-Boot] [PATCH 3/8] TWL4030 Add usb PHY support

2009-09-28 Thread Tom Rix
The twl4030 provides a PHY device for connecting a link device, like musb, to physical connection. This change adds the twl4030 usb registers and functions for initializing the PHY as required by omap3. Signed-off-by: Tom Rix --- Makefile |1 + drivers/usb/phy/Makefile |

[U-Boot] [PATCH 1/8] USB Consolidate descriptor definitions

2009-09-28 Thread Tom Rix
The header files usb.h and usbdescriptors.h have the same or similarly named structure definitions for usb_device_descriptor usb_string_descriptor usb_endpoint_descriptor usb_config_descriptor vs usb_configuration_descriptor usb_interface_descriptor There should only be one definition of these st

[U-Boot] [PATCH 2/8] USB add macros for debugging usb device setup.

2009-09-28 Thread Tom Rix
When developing usb device features, it is useful to print out common usb structures. Signed-off-by: Tom Rix --- include/usbdescriptors.h | 26 include/usbdevice.h | 103 ++ 2 files changed, 129 insertions(+), 0 deletions(-) diff

[U-Boot] V2 of OMAP3 USB device Support

2009-09-28 Thread Tom Rix
The technical change is better handling of address setting on the usb handshaking setup phase. Other changes from Jean's comments 2/8 USB add macros for debugging usb device setup. static inline function replacing debug macros 3/8 TWL4030 Add usb PHY support add empty lines between variables

[U-Boot] y meeee ?

2009-09-28 Thread Tom
Sorry, git send-mail flubbery.. Tom ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 4/8] OMAP3 Add usb device support

2009-09-28 Thread y
From: Tom Rix This change adds the usb device support for musb. Omap3 platform support added at the same level as davinci. The interface for usbtty to use the musb device support was added. Verified on omap3 beagle, zoom1 and zoom2. Signed-off-by: Tom Rix --- drivers/serial/usbtty.h |

[U-Boot] [PATCH 8/8] OMAP3 zoom2 Use usbtty if the debug board is not connected.

2009-09-28 Thread y
From: Tom Rix The preferred serial output comes from the debug board. When the debug board is disconnected, fall back on using usbtty from the usb connector on the Zoom2 board. This shows up as /dev/ttyACM0 in a linux host. Signed-off-by: Tom Rix --- board/logicpd/zoom2/zoom2_serial.c | 12

[U-Boot] [PATCH 7/8] USBTTY make some function declarations easier to use.

2009-09-28 Thread y
From: Tom Rix Zoom2 needs to use these declarations and the include directory is a better place from them than in the middle of the driver directory. It did not make sense to create a new file for just a couple of lines so they were appended to the serial.h Signed-off-by: Tom Rix --- include/s

[U-Boot] [PATCH 6/8] OMAP3 beagle Add usbtty configuration

2009-09-28 Thread y
From: Tom Rix The primary console of beagle is the serial header. A secondary console is to use the usbtty. The user can set this manually by doing setenv stdout usbtty; setenv stdin usbtty; setenv stderr usbtty saveenv usbtty will be usable by accessing the /dev/ttyACM0 on a linux host. Sig

[U-Boot] [PATCH 5/8] OMAP3 zoom1 Add usbtty configuration

2009-09-28 Thread y
From: Tom Rix The primary console of zoom1 is the serial out from the jumpers accessed by removing the back panel. A secondary console is to use the usbtty. The user can set this manually by doing setenv stdout usbtty; setenv stdin usbtty; setenv stderr usbtty saveenv usbtty will be usable by

[U-Boot] [PATCH 3/8] TWL4030 Add usb PHY support

2009-09-28 Thread y
From: Tom Rix The twl4030 provides a PHY device for connecting a link device, like musb, to physical connection. This change adds the twl4030 usb registers and functions for initializing the PHY as required by omap3. Signed-off-by: Tom Rix --- Makefile |1 + drivers/usb/p

[U-Boot] [PATCH 1/8] USB Consolidate descriptor definitions

2009-09-28 Thread y
From: Tom Rix The header files usb.h and usbdescriptors.h have the same or similarly named structure definitions for usb_device_descriptor usb_string_descriptor usb_endpoint_descriptor usb_config_descriptor vs usb_configuration_descriptor usb_interface_descriptor There should only be one defini

[U-Boot] [PATCH 2/8] USB add macros for debugging usb device setup.

2009-09-28 Thread y
From: Tom Rix When developing usb device features, it is useful to print out common usb structures. Signed-off-by: Tom Rix --- include/usbdescriptors.h | 26 include/usbdevice.h | 103 ++ 2 files changed, 129 insertions(+), 0 del

[U-Boot] V2 of OMAP3 USB device Support

2009-09-28 Thread y
The technical change is better handling of address setting on the usb handshaking setup phase. Other changes from Jean's comments 2/8 USB add macros for debugging usb device setup. static inline function replacing debug macros 3/8 TWL4030 Add usb PHY support add empty lines between variables

Re: [U-Boot] I am maintainer of Freescale i.MX

2009-09-28 Thread Alan Carvalho de Assis
Hi Fred, On 9/28/09, Fan YeFeng-R01011 wrote: > Dear Wolfgang Denk, > I prefer to use "fanyef...@gmail.com". What is my ssh key? > Does it ssh key related with my computer system? Please, take a look on this page: http://www.sshkeychain.org/mirrors/SSH-with-Keys-HOWTO/ Best Regards, Alan >

Re: [U-Boot] [PATCH] relocation: Do not relocate NULL pointers.

2009-09-28 Thread Joakim Tjernlund
> > Peter Tyser wrote on 28/09/2009 17:08:58: > > > > > > Peter, I just discovered that my gcc 3.4.6 allows me to use -mrelocatable > > > with -fpie > > > -fpie is about the same as -fpic and -fPIE is similar to -fPIC > > > -fpie generates smaller code so one could consider using -fpie and > > >

Re: [U-Boot] [PATCH] relocation: Do not relocate NULL pointers.

2009-09-28 Thread Joakim Tjernlund
Peter Tyser wrote on 28/09/2009 17:08:58: > > > > Peter, I just discovered that my gcc 3.4.6 allows me to use -mrelocatable > > with -fpie > > -fpie is about the same as -fpic and -fPIE is similar to -fPIC > > -fpie generates smaller code so one could consider using -fpie and > > -mrelocatable >

[U-Boot] RFC USB composite devices

2009-09-28 Thread Tom
Soon you will see a v2 of my OMAP3 USB device support. After which I will be working on adding a 'fastboot' device. Ref : https://gforge.ti.com/gf/project/omapzoom/wiki/?pagename=FAQ-8%3A+Zoom-II+Android%C2%A0fastboot I would like to add this as composite device with the other device being usbt

Re: [U-Boot] [PATCH] relocation: Do not relocate NULL pointers.

2009-09-28 Thread Peter Tyser
On Mon, 2009-09-28 at 16:41 +0200, Joakim Tjernlund wrote: > Peter Tyser wrote on 28/09/2009 14:45:46: > > > > On Mon, 2009-09-28 at 09:34 +0200, Joakim Tjernlund wrote: > > > Peter Tyser wrote on 28/09/2009 06:31:28: > > > > > > > > On Sun, 2009-09-27 at 15:15 +0200, Joakim Tjernlund wrote: > >

[U-Boot] Please pull u-boot-ubi/master

2009-09-28 Thread Stefan Roese
The following changes since commit 984f10baac8ef6032df52f135943d6b0bc96f724: Wolfgang Denk (1): mpc5121ads: fix breakage introduced when reordering elpida_mddrc_config[] are available in the git repository at: git://www.denx.de/git/u-boot-ubi.git master Simon Kagstrom (1): ubi

Re: [U-Boot] [PATCH] ubifs: Correct dereferencing of files-after-symlinks

2009-09-28 Thread Stefan Roese
On Friday 25 September 2009 14:05:57 Simon Kagstrom wrote: > Files in directories which are symlinked to were not dereferenced > correctly in last commit. E.g., with a symlink > >/boot/lnk -> /boot/real_dir > > loading > >/boot/lnk/uImage > > will fail. This patch fixes that by simply s

Re: [U-Boot] [PATCH] relocation: Do not relocate NULL pointers.

2009-09-28 Thread Joakim Tjernlund
Peter Tyser wrote on 28/09/2009 16:29:15: > > > > > > > > > > > > Anyhow, I have also been thinking/working on making U-boot > > > > > > fully PIC and reached a important conclusion. The GOT holds absolute > > > > > > ptr values and there is not much one can do about it sans modifying > > > > > >

Re: [U-Boot] [PATCH] relocation: Do not relocate NULL pointers.

2009-09-28 Thread Joakim Tjernlund
Peter Tyser wrote on 28/09/2009 14:45:46: > > On Mon, 2009-09-28 at 09:34 +0200, Joakim Tjernlund wrote: > > Peter Tyser wrote on 28/09/2009 06:31:28: > > > > > > On Sun, 2009-09-27 at 15:15 +0200, Joakim Tjernlund wrote: > > > > Wolfgang Denk wrote on 23/09/2009 20:23:14: > > > > > > > > > > De

[U-Boot] EHCI driver problem

2009-09-28 Thread Jussi Eronen
Hi, I am working on a propietary board, which has MPC8270 cpu (big endian mode) and NEC uPD720101 USB controller, with devices connected to ports 1-4. OHCI and EHCI work fine with Linux kernel and OHCI works also in u-boot. I recall from some discussion that u-boot can only use one OHCI control

Re: [U-Boot] [PATCH] relocation: Do not relocate NULL pointers.

2009-09-28 Thread Peter Tyser
> > > > > > > > > Anyhow, I have also been thinking/working on making U-boot > > > > > fully PIC and reached a important conclusion. The GOT holds absolute > > > > > ptr values and there is not much one can do about it sans modifying > > > > > gcc. > > > > > So before u-boot is relocated to RAM

Re: [U-Boot] [PATCH] arm:kirkwood: Add hardware watchdog support for Marvell Kirkwood boards

2009-09-28 Thread Tom
Simon Kagstrom wrote: > On Mon, 28 Sep 2009 07:36:32 -0500 > Tom wrote: > >>> +void hw_watchdog_reset(void) >>> +{ >>> + unsigned long time = CONFIG_SYS_TCLK * watchdog_timeout; >>> diff --git a/include/asm-arm/arch-kirkwood/cpu.h >>> b/include/asm-arm/arch-kirkwood/cpu.h >>> index b3022a3..df

Re: [U-Boot] [PATCH v4] at91: Update MEESC board support

2009-09-28 Thread Tom
Daniel Gorsulowski wrote: > This patch implements several updates: > -disable CONFIG_ENV_OVERWRITE > -add new hardware style variants and set the arch numbers appropriate > -pass the serial# and hardware revision to the kernel > -removed unused macros from include/configs/meesc.h > -fixed multiline

Re: [U-Boot] [PATCH] arm:kirkwood: Add hardware watchdog support for Marvell Kirkwood boards

2009-09-28 Thread Simon Kagstrom
On Mon, 28 Sep 2009 07:36:32 -0500 Tom wrote: > > +void hw_watchdog_reset(void) > > +{ > > + unsigned long time = CONFIG_SYS_TCLK * watchdog_timeout; > > > diff --git a/include/asm-arm/arch-kirkwood/cpu.h > > b/include/asm-arm/arch-kirkwood/cpu.h > > index b3022a3..df49c3f 100644 > > --- a/inc

Re: [U-Boot] [PATCH] relocation: Do not relocate NULL pointers.

2009-09-28 Thread Joakim Tjernlund
Peter Tyser wrote on 28/09/2009 14:45:46: > > On Mon, 2009-09-28 at 09:34 +0200, Joakim Tjernlund wrote: > > Peter Tyser wrote on 28/09/2009 06:31:28: > > > > > > On Sun, 2009-09-27 at 15:15 +0200, Joakim Tjernlund wrote: > > > > Wolfgang Denk wrote on 23/09/2009 20:23:14: > > > > > > > > > > De

Re: [U-Boot] [PATCH] relocation: Do not relocate NULL pointers.

2009-09-28 Thread Peter Tyser
On Mon, 2009-09-28 at 09:34 +0200, Joakim Tjernlund wrote: > Peter Tyser wrote on 28/09/2009 06:31:28: > > > > On Sun, 2009-09-27 at 15:15 +0200, Joakim Tjernlund wrote: > > > Wolfgang Denk wrote on 23/09/2009 20:23:14: > > > > > > > > Dear Peter Tyser, > > > > > > > > In message <1253710639.3968

[U-Boot] [PATCH] [RFC]mpc83xx: Remove need for -ffixed-r14

2009-09-28 Thread Joakim Tjernlund
Seems to me that the only need for -ffixed-r14 is to find transfer_to_handler from whithin an IRQ. Add transfer_to_handler to the trap relocation so the need for a GOT access in IRQ context goes away. NOTE: This will break other PPC archs until their start.S is updated accordingly. Comments? --- c

Re: [U-Boot] [PATCH] arm:kirkwood: Add hardware watchdog support for Marvell Kirkwood boards

2009-09-28 Thread Tom
Simon Kagstrom wrote: > Initialize by calling kw_watchdog_init() with the number of seconds for > the watchdog to timeout. > > Signed-off-by: Simon Kagstrom > --- > cpu/arm926ejs/kirkwood/timer.c | 29 + > include/asm-arm/arch-kirkwood/cpu.h |2 ++ > 2 file

[U-Boot] [PATCH v4] at91: Update MEESC board support

2009-09-28 Thread Daniel Gorsulowski
This patch implements several updates: -disable CONFIG_ENV_OVERWRITE -add new hardware style variants and set the arch numbers appropriate -pass the serial# and hardware revision to the kernel -removed unused macros from include/configs/meesc.h -fixed multiline comment style Signed-off-by: Daniel

Re: [U-Boot] Applying u-boot-ti patches (was: [PATCH v2] TI: OMAP3: Overo Tobi ethernet support)

2009-09-28 Thread Paulraj, Sandeep
> > Paulraj, Sandeep wrote: > > > >> Olof Johansson wrote: > >>> Add setup for ethernet on Tobi, allowing kernel/ramdisk to be loaded > >>> over tftp. > >>> > >>> Based on the omap3 evm code. I added a new highlevel define for Tobi > >>> to avoid having it dependent on CMD_NET (which would seem b

[U-Boot] [PATCH] part_dos: check status flags of partitions

2009-09-28 Thread Daniel Mack
The current fatload code has a problem together with the way the DOS partition parser is implemented. This hit me when I tried to load a file from a USB stick which had no partition table but a FAT16 directly written to the first sector. With such an environment, get_partition_info_extended() sti

[U-Boot] Please pull u-boot-ppc4xx/master

2009-09-28 Thread Stefan Roese
The following changes since commit 984f10baac8ef6032df52f135943d6b0bc96f724: Wolfgang Denk (1): mpc5121ads: fix breakage introduced when reordering elpida_mddrc_config[] are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git master Stefan Roese (3): pp

Re: [U-Boot] [PATCH] ppc4xx: Remove mtsdram0() marcos and use common mtsdram() instead

2009-09-28 Thread Stefan Roese
On Thursday 24 September 2009 14:15:32 Stefan Roese wrote: > Additionally some whitespace coding style fixes. Applied to u-boot-ppc4xx/master. Thanks. Cheers, Stefan -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groeb

Re: [U-Boot] [PATCH] ppc4xx: Convert PPC4xx SDRAM defines from lower case to upper case

2009-09-28 Thread Stefan Roese
On Thursday 24 September 2009 14:14:57 Stefan Roese wrote: > The latest PPC4xx register cleanup patch missed some SDRAM defines. > This patch now changes lower case UIC defines to upper case. Also > some names are changed to match the naming in the IBM/AMCC users > manuals (e.g. mem_mcopt1 -> SDRAM

Re: [U-Boot] ppc4xx: Convert PPC4xx UIC defines from lower case to upper case

2009-09-28 Thread Stefan Roese
On Thursday 24 September 2009 10:17:55 Stefan Roese wrote: > The latest PPC4xx register cleanup patch missed the UIC defines. > This patch now changes lower case UIC defines to upper case. Applied to u-boot-ppc4xx/master. Thanks. Cheers, Stefan -- DENX Software Engineering GmbH, MD: Wolfgan

Re: [U-Boot] Adding new U-Boot Command.

2009-09-28 Thread Tuma
On Wednesday 23 September 2009 16:44:50 you wrote: > Dear Tuma, > > In message <200909231144.25176.chernigovs...@spb.gs.ru> you wrote: > > Yes, I've studied the structure of cmv_-file, and here is my code: > > > > > > > > /* > > * (C) Copyright 20

Re: [U-Boot] [PATCH] relocation: Do not relocate NULL pointers.

2009-09-28 Thread Joakim Tjernlund
Peter Tyser wrote on 28/09/2009 06:31:28: > > On Sun, 2009-09-27 at 15:15 +0200, Joakim Tjernlund wrote: > > Wolfgang Denk wrote on 23/09/2009 20:23:14: > > > > > > Dear Peter Tyser, > > > > > > In message <1253710639.3968.19.ca...@ptyser-laptop> you wrote: > > > > > > > > My "fix" to the linker

Re: [U-Boot] I am maintainer of Freescale i.MX

2009-09-28 Thread Fan YeFeng-R01011
Dear Wolfgang Denk, I prefer to use "fanyef...@gmail.com". What is my ssh key? Does it ssh key related with my computer system? Best Regards. Fred -Original Message- From: Wolfgang Denk [mailto:w...@denx.de] Sent: Wednesday, September 23, 2009 2:10 AM To: Fred Fan Cc: Tom; u-boot@l

Re: [U-Boot] [PATCH] relocation: Do not relocate NULL pointers.

2009-09-28 Thread Joakim Tjernlund
Graeme Russ wrote on 28/09/2009 01:23:36: > > On Mon, Sep 28, 2009 at 2:18 AM, Joakim Tjernlund > wrote: > > Graeme Russ wrote on 27/09/2009 15:52:38: > >> > >> On Sun, Sep 27, 2009 at 11:15 PM, Joakim Tjernlund > >> wrote: > >> > Wolfgang Denk wrote on 23/09/2009 20:23:14: > >> >> > >> >> Dea

[U-Boot] [PATCH] arm:kirkwood: Add hardware watchdog support for Marvell Kirkwood boards

2009-09-28 Thread Simon Kagstrom
Initialize by calling kw_watchdog_init() with the number of seconds for the watchdog to timeout. Signed-off-by: Simon Kagstrom --- cpu/arm926ejs/kirkwood/timer.c | 29 + include/asm-arm/arch-kirkwood/cpu.h |2 ++ 2 files changed, 31 insertions(+), 0 deletio