Re: [U-Boot-Users] u-boot patch submission process

2008-02-11 Thread Haavard Skinnemoen
On Mon, 11 Feb 2008 05:43:18 +0100 Dirk Behme <[EMAIL PROTECTED]> wrote: > [U-Boot-Users] [PATCH] [DRIVERS] is onlyavailable > for ppc boards. > > I'm assuming this will eventually be properly patched in the main tree > - meanwhile anyone building ARM code can apply this patch > -- cut -- > > T

Re: [U-Boot-Users] Initially loading uboot into flash on MPC5200

2008-02-11 Thread Andreas Schweigstill
Hello! Wolfgang Denk schrieb: > Don't try tricks; go and buy a BDI3000. In the long run, it will trun > out to be the cheapest solution. I just heard from a customer that he bought a BDI2000 clone which is manufactured by an Austrian company and costs a fraction of the original one from Abatron.

[U-Boot-Users] [PATCH] ide arm support

2008-02-11 Thread michael
Add ide support to the arm cpu. Tested on arm little endian machine. Include #define __io in config board file. Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]> --- diff --git a/common/cmd_ide.c b/common/cmd_ide.c index c38be4f..e507c15 100644 --- a/common/cmd_ide.c +++ b/common/cmd_ide.c @@

Re: [U-Boot-Users] [PATCH v2] MPC85xx, MPC83xx: Add/Fix UPM configuration support

2008-02-11 Thread Kim Phillips
On Sun, 10 Feb 2008 15:14:45 +0200 David Saada <[EMAIL PROTECTED]> wrote: > > ack on the 83xx change, but the 85xx code looks identical to the 83xx > > version, and 86xx bits should be identical, too, so we would be better > > off refraining from triplicating code again and find a more common > >

Re: [U-Boot-Users] [PATCH] 83xx: Add Vitesse VSC7385 firmware uploading

2008-02-11 Thread Timur Tabi
Ben Warren wrote: > The problem is that you're artificially making this a PowerPC-only > part. If you used 8-bit accessors endianness wouldn't matter and > other architectures could use this without changes (notwithstanding > the #includes...) Ok, I will try to figure out how to make 8-bit acces

[U-Boot-Users] Broken (ARM) build, was: u-boot patch submission process

2008-02-11 Thread Dirk Behme
Haavard Skinnemoen wrote: > On Mon, 11 Feb 2008 05:43:18 +0100 > Dirk Behme <[EMAIL PROTECTED]> wrote: > > >>[U-Boot-Users] [PATCH] [DRIVERS] is onlyavailable >>for ppc boards. >> >>I'm assuming this will eventually be properly patched in the main tree >>- meanwhile anyone building ARM code can

Re: [U-Boot-Users] [ARM] AT91CAP9 support

2008-02-11 Thread Peter Pearse
> -Original Message- > From: Stelian Pop [mailto:[EMAIL PROTECTED] > Sent: 11 February 2008 10:50 > To: Peter Pearse > Cc: u-boot-users@lists.sourceforge.net > Subject: Re: [ARM] AT91CAP9 support > > > Le vendredi 08 février 2008 à 14:31 +, Peter Pearse a écrit : > > Stelian > >

Re: [U-Boot-Users] [PATCH] ide arm support

2008-02-11 Thread michael
Jean-Christophe PLAGNIOL-VILLARD wrote: > On 21:40 Mon 11 Feb , michael wrote: > >> Add ide support to the arm cpu. Tested on arm little endian >> machine. Include #define __io in config board file. >> >> Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]> >> --- >> >> diff --git a/common/c

Re: [U-Boot-Users] [PATCH] ide arm support

2008-02-11 Thread michael
Hi > On Mon, Feb 11, 2008 at 10:30:08PM +0100, Jean-Christophe PLAGNIOL-VILLARD > wrote: > >> On 21:40 Mon 11 Feb , michael wrote: >> >>> --- a/common/cmd_ide.c >>> +++ b/common/cmd_ide.c >>> @@ -934,7 +934,14 @@ output_data(int dev, ulong *sect_buf, int words) >>> static void >>> ou

Re: [U-Boot-Users] [PATCH] ide arm support

2008-02-11 Thread Ladislav Michl
On Mon, Feb 11, 2008 at 10:30:08PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 21:40 Mon 11 Feb , michael wrote: > > --- a/common/cmd_ide.c > > +++ b/common/cmd_ide.c > > @@ -934,7 +934,14 @@ output_data(int dev, ulong *sect_buf, int words) > > static void > > output_data(int dev, ul

Re: [U-Boot-Users] [PATCH] ide arm support

2008-02-11 Thread Jean-Christophe PLAGNIOL-VILLARD
On 21:40 Mon 11 Feb , michael wrote: > Add ide support to the arm cpu. Tested on arm little endian > machine. Include #define __io in config board file. > > Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]> > --- > > diff --git a/common/cmd_ide.c b/common/cmd_ide.c > index c38be4f..e507c15

Re: [U-Boot-Users] 440EPX is not booting from 1Gb/128MB NAND flash

2008-02-11 Thread Stefan Roese
On Tuesday 12 February 2008, Wolfgang Denk wrote: > > #if (CFG_NAND_PAGE_SIZE > 512) > > Please use an explicit test instead, i. e. for example > > #if (CFG_NAND_PAGE_SIZE == 2048) > > unless you are absolutley sure that all future devices (say, with 8k > or 8k page sizes) will behave identic

Re: [U-Boot-Users] 440EPX is not booting from 1Gb/128MB NAND flash

2008-02-11 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > This is set to 512 for small page devices and set to 2k for large page > devices. So the code can be "selected" via this #if statement: > > #if (CFG_NAND_PAGE_SIZE > 512) Please use an explicit test instead, i. e. for example #if (CFG_NAND_P

Re: [U-Boot-Users] Taishan or ppc440gx pci reset

2008-02-11 Thread Stefan Roese
On Tuesday 12 February 2008, k b wrote: > I'm using the amcc taishan board and have a pci-x device connected to it. > 1) how do I take the pci device out of reset at boot up ? This will be done automatically upon bootup/reset. > 2) and how do i reset the pci device ? I don't think that you can f

[U-Boot-Users] [PATCH] Extend ATI Radeon driver to support more video modes

2008-02-11 Thread Anatolij Gustschin
Adds ATI Radeon 9200 support for 1280x1024, 1024x768, 800x600, 640x480 at 24, 16 and 8 bpp. Hope this patch won't screw up X300 and X700 support. Signed-off-by: Anatolij Gustschin <[EMAIL PROTECTED]> --- drivers/video/ati_radeon_fb.c | 401 +++-- 1 files chang

[U-Boot-Users] [PATCH 2/3] fdt: Fixup compile error and add a new OF manipulation option

2008-02-11 Thread Bryan O'Donoghue
Greetings. This patch fixes up a compile error that crept with with debug switched on. Introduces CONFIG_OF_CHOSEN_UPDATE - which is useful if you have a /chosen entry in the dts - which doesn't contain a bootargs entry - in which case you'd want u-boot's version of this. Signed-off-by: Bryan O'D

[U-Boot-Users] [PATCH 1/3] 8xx: Add FDT support to 8xx

2008-02-11 Thread Bryan O'Donoghue
Minimal - just a bare bones copy of code already done by others. Adds the get_brgclk - for the purposes of enumerating a brg clock-frequency entry in a of tree. Adds fdt.c so that 8xx will have a ft_cpu_setup function. Signed-off-by: Bryan O'Donoghue <[EMAIL PROTECTED]> --- diff --git a/cpu/mpc8

[U-Boot-Users] how to Relocate arm startup code

2008-02-11 Thread Hebbar
Hi, I am working on a customized arm926ejs versatile board. My board has SDRAM at reset vector i.e., @ 0x00 and FLASH is located at a different higher lcoation. At Boot up, SDRAm is mapped to Flash. I have to enable few register and enable sdram chip. @ reset the arm uboot startup code has b re

[U-Boot-Users] Taishan or ppc440gx pci reset

2008-02-11 Thread k b
Hi, I'm using the amcc taishan board and have a pci-x device connected to it. 1) how do I take the pci device out of reset at boot up ? 2) and how do i reset the pci device ? thanks Kunal _ Climb to the top of the charts! Play the

Re: [U-Boot-Users] Please pull u-boot-83xx.git

2008-02-11 Thread Wolfgang Denk
Dear Kim, in message <[EMAIL PROTECTED]> you wrote: > > We're up to three versions of patches from different people to fix > non-powerpc build breakage (due to the new SPI driver), so I decided to > make this easy for you :) > > I've chosen and applied Ben Warren's version of the fix (which decl

Re: [U-Boot-Users] Initially loading uboot into flash on MPC5200

2008-02-11 Thread Jon Smirl
On 2/11/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi, > > On 11 Feb 2008 at 11:29, Andreas Schweigstill wrote: > > > Hello! > > > > Wolfgang Denk schrieb: > > > Don't try tricks; go and buy a BDI3000. In the long run, it will trun > > > out to be the cheapest solution. > > > > I just heard

Re: [U-Boot-Users] [PATCH v2] Remove #undef DEBUG from MPC83xx board header files

2008-02-11 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Remove the "#undef DEBUG" line from all Freescale 83xx board header files. > The inclusion of this line makes it impossible to enable debug code in > other source files, because "#define DEBUG" typically needs to be defined > before any header files are i

Re: [U-Boot-Users] [PATCH] QE: Move FDT support into a common file

2008-02-11 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Move the flat device tree setup for QE related devices into > a common file shared between 83xx & 85xx platforms that have QE's. > > Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineer

Re: [U-Boot-Users] [PATCH] [resent #3] ARM: Move duplicated exception handling code into lib_arm

2008-02-11 Thread Peter Pearse
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Andreas Engel > Sent: 08 February 2008 12:15 > To: u-boot-users@lists.sourceforge.net > Subject: [U-Boot-Users] [PATCH] [resent #3] ARM: Move > duplicated exception handling code into lib_arm >

Re: [U-Boot-Users] Intel KIXRP435 platform

2008-02-11 Thread Antonello Lombardinilo
> Where your toolchain/compiler come from? > Which version is it? Hi all, ciao Marco I tried with gcc version 4.2.0 (MontaVista 4.2.0-4.0.13.0704681 2007-12-22) and also with gcc version 3.4.3 (MontaVista 3.4.3-25.0.139.0703832 2007-08-22). Both toolchains are from Montavista Pro 5.0 and 4.0.

[U-Boot-Users] [PATCH] ide arm support rev 1

2008-02-11 Thread michael
Add ide support to the arm cpu. Tested on little endian machine. Include #define __io in config board file. Signed-off-by: Michael Trimarchi <[EMAIL PROTECTED]> --- diff --git a/common/cmd_ide.c b/common/cmd_ide.c index c38be4f..e507c15 100644 --- a/common/cmd_ide.c +++ b/common/cmd_ide.c @@ -934

[U-Boot-Users] [PATCH 3/3] 8xx: Add OF support to adder87x board

2008-02-11 Thread Bryan O'Donoghue
Fits in with recent work done in Linux. Adds u-boot support in conjunction with two previous patches to boot a Linux uImage in conjunction with a .dtb generated from the in-tree adder875-uboot.dts in recent PowerPC Linux kernel patches. Works too ! Signed-off-by: Bryan O'Donoghue <[EMAIL PROTECT

Re: [U-Boot-Users] [PATCH] 83xx: Add Vitesse VSC7385 firmware uploading

2008-02-11 Thread Ben Warren
Timur Tabi wrote: > Ben Warren wrote: > >> The problem is that you're artificially making this a PowerPC-only >> part. If you used 8-bit accessors endianness wouldn't matter and >> other architectures could use this without changes (notwithstanding >> the #includes...) > > Ok, I will try to figure

Re: [U-Boot-Users] ColdFire patches

2008-02-11 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > Are all the ColdFire patches ok to commit? I haven't seen any complaints / change requests lately (and don't have time for a thorough review myself at the moment), so please ask John Rigby to check into the ColdFire custodian repo and send

Re: [U-Boot-Users] 440EPX is not booting from 1Gb/128MB NAND flash

2008-02-11 Thread Stefan Roese
Hi Nikhil, On Tuesday 12 February 2008, Nikhil Gautam wrote: > After looking at nand_command_lp( ), I added following piece of code > everytime I send address to NAND flash. > > #ifdef CFG_NAND_4_ADDR_CYCLE > /* Begin command latch cycle */ > this->hwcontrol(mtd, NAND_CTL_SETCLE); > /*

Re: [U-Boot-Users] u-boot patch submission process

2008-02-11 Thread Wolfgang Denk
Dear Haavard, in message <[EMAIL PROTECTED]> you wrote: > > But if Wolfgang doesn't wake up and apply a fix pretty soon, I guess > that might be exactly what's going to happen. Please believe me, I'm not sleeping. I wish I was - and if it was only for 5 hours per night > I'm starting to

Re: [U-Boot-Users] [ARM] AT91CAP9 support

2008-02-11 Thread Stelian Pop
Le vendredi 08 février 2008 à 14:31 +, Peter Pearse a écrit : > Stelian > > Until the next merge window your patches "AT91CAP9 support" are > available from > > git://linux-arm.org/u-boot-armdev.git#080116_at91cap9 Ok, I double checked that tree and it compiles and works fine h

Re: [U-Boot-Users] 440EPX is not booting from 1Gb/128MB NAND flash

2008-02-11 Thread Stefan Roese
Hi Nikhil, On Monday 11 February 2008, Nikhil Gautam wrote: > I bypassed the function nand_is_bad_block( ) and also my image is now > padded correctly. But still the problem is that SPL doesn't copy the > U-boot image correctly onto the RAM. It copies the first page of first > block from NAND flas

Re: [U-Boot-Users] u-boot patch submission process

2008-02-11 Thread Peter Pearse
> -Original Message- > From: Dirk Behme [mailto:[EMAIL PROTECTED] > Sent: 11 February 2008 04:43 > To: [EMAIL PROTECTED] > Cc: u-boot-users; Peter Pearse > Subject: Re: [U-Boot-Users] u-boot patch submission process > > Todd Fischer wrote: > > I am working on a patch to add DM355 SoC s

Re: [U-Boot-Users] Initially loading uboot into flash on MPC5200

2008-02-11 Thread w . wegner
Hi, On 11 Feb 2008 at 11:29, Andreas Schweigstill wrote: > Hello! > > Wolfgang Denk schrieb: > > Don't try tricks; go and buy a BDI3000. In the long run, it will trun > > out to be the cheapest solution. > > I just heard from a customer that he bought a BDI2000 clone which is > manufactured by

Re: [U-Boot-Users] Pull request: u-boot-freebsd

2008-02-11 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > The following are two fixes which are needed in this release. Without these > the build breaks when CONFIG_API is enabled. > > kind regards, > Rafal > > > The following changes since commit 98b742489c09780be6a832eeaa4e5eff824792bb: > Wolfgang Denk

Re: [U-Boot-Users] 440EPX is not booting from 1Gb/128MB NAND flash

2008-02-11 Thread Nikhil Gautam
Hi Stefan, I bypassed the function nand_is_bad_block( ) and also my image is now padded correctly. But still the problem is that SPL doesn't copy the U-boot image correctly onto the RAM. It copies the first page of first block from NAND flash again and again. This must be because of some configur

Re: [U-Boot-Users] 440EPX is not booting from 1Gb/128MB NAND flash

2008-02-11 Thread Nikhil Gautam
Hi Stefan, After looking at nand_command_lp( ), I added following piece of code everytime I send address to NAND flash. #ifdef CFG_NAND_4_ADDR_CYCLE /* Begin command latch cycle */ this->hwcontrol(mtd, NAND_CTL_SETCLE); /* Write out the start read command */ this->write_byte(mtd,