Re: [U-Boot-Users] [PATCH] PPC4xx: Makalu Uses Data Cache for Initial Stack and Leverages Shared SDRAM Code

2008-05-18 Thread Stefan Roese
On Saturday 17 May 2008, Grant Erickson wrote: > board/amcc/makalu/init.S: > board/amcc/makalu/memory.c: > include/configs/makalu.h: > > Makalu now uses the data cache for its primordial stack and data > area and leverages the common, shared parameter-based SDRAM > initialization code. > > in

Re: [U-Boot-Users] [PATCH] PPC4xx: Add a non-EEPROM-driven SDRAM Initialization Function for the 405EX(r).

2008-05-18 Thread Stefan Roese
On Monday 19 May 2008, Grant Erickson wrote: > > And I'm wondering if this code really should go into this > > file "44x_spd_ddr2.c". Since now a 405 variant (405EX) can use this code > > too we should probably change the name to "4xx_spd_ddr2.c". And with this > > new fixed DDR2 init code it the S

Re: [U-Boot-Users] [PATCH] PPC4xx: Add a non-EEPROM-driven SDRAM Initialization Function for the 405EX(r).

2008-05-18 Thread Grant Erickson
On 5/18/08 11:19 PM, Stefan Roese wrote: >> #if defined(CONFIG_SPD_EEPROM) &&\ >> (defined(CONFIG_440SP) || defined(CONFIG_440SPE) || \ >> defined(CONFIG_460EX) || defined(CONFIG_460GT)) >> @@ -3064,9 +3071,116 @@ static void ppc440sp_sdram_register_dump(void) >> dcr_data = mfdcr(SDRAM_R3BAS);

Re: [U-Boot-Users] [PATCH] PPC4xx: Add a non-EEPROM-driven SDRAM Initialization Function for the 405EX(r).

2008-05-18 Thread Stefan Roese
On Saturday 17 May 2008, Grant Erickson wrote: > This patch adds a non-EEPROM-driven SDRAM initialization function > driven by compile-time CFG_SDRAM_* parameters usable by 405EX(r)-based > boards that have discrete SDRAM chips rather than DIMMs. > > This patch continues laying the ground work for

Re: [U-Boot-Users] [PATCH V2] PPC4xx: Unify ECC Initialization Routines

2008-05-18 Thread Stefan Roese
On Saturday 17 May 2008, Grant Erickson wrote: > This patch continues laying the ground work for moving out-of-assembly > and unifying the SDRAM initialization code for PowerPC 405EX[r]-based > boards. > > To do so, this deduces by one the number of nearly-identical DRAM ECC > initialization implem

[U-Boot-Users] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git

2008-05-18 Thread Stefan Roese
The following changes since commit a38dc3ea8614f8b0c41e432b445a9959b9711295: Wolfgang Denk (1): TQM8272: fix out-of-tree building are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git master Stefan Roese (1): ppc4xx: Canyonlands: Disable PCIe0/SATA in

[U-Boot-Users] [PATCH V3] ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection

2008-05-18 Thread Stefan Roese
When SATA is selected (via jumper J6) we need to disable the first PCIe node in the device tree, so that Linux doesn't initialize it. Otherwise the Linux SATA driver will fail to detect the devices. The same goes the other way around too. So if PCIe is selected we need to disable the SATA node in

Re: [U-Boot-Users] [PATCH 02/17] examples/eepro100_eeprom: Fix memcpy to return destination pointer

2008-05-18 Thread Jerry Van Baren
Jean-Christophe PLAGNIOL-VILLARD wrote: > On 01:03 Mon 19 May , Wolfgang Denk wrote: >> In message <[EMAIL PROTECTED]> you wrote: > static inline void *memcpy(void *dst, const void *src, unsigned int len) > { > char *ret = dst; > + > while (len-- > 0) { >

Re: [U-Boot-Users] u-boot dos not autostart commands

2008-05-18 Thread Alexei Babich
> You know "bootm" will do this for you? I know, but u-boot do _NOTHING_ after power on. Any command in 'bootcmd' is ignored. -- Regards, Alexei Babich, chematic engineer, OOO NPP "Rezonans", Chelyabinsk, Russia http://www.rez.ru Jabber ID: [EMAIL PROTECTED]

Re: [U-Boot-Users] U-Boot help request for OHCI driver with CPU cache on

2008-05-18 Thread Ryan CHEN
Yes, I have tried the first suggestion from Matthias Fuchs. But make it working with cache is very complex. So now I am trying the way that map one TLB entry to make USB hcca and data struct in uncached region. I think it's a easy way but not suitable for other platform. Best Regards, Ryan Ch

Re: [U-Boot-Users] [PATCH 02/17] examples/eepro100_eeprom: Fix memcpy to return destination pointer

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 01:03 Mon 19 May , Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]> you wrote: > > > > > > static inline void *memcpy(void *dst, const void *src, unsigned int > > > > len) > > > > { > > > > char *ret = dst; > > > > + > > > > while (len-- > 0) { > > > >

[U-Boot-Users] HIGH PRIORITY

2008-05-18 Thread International Bank Of Settlement
- Ce message a été créé et envoyé avec une version d'évaluation - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio

Re: [U-Boot-Users] [PATCH 08/17] marabun_pcmcia: Move compile condition to the Makefile

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > --- > drivers/pcmcia/Makefile |2 +- > drivers/pcmcia/marubun_pcmcia.c |7 +++ > 2 files changed, 4 insertions(+), 5 deletions(-) Note: this patch, as well as [

Re: [U-Boot-Users] [PATCH 02/17] examples/eepro100_eeprom: Fix memcpy to return destination pointer

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > > > static inline void *memcpy(void *dst, const void *src, unsigned int len) > > > { > > > char *ret = dst; > > > + > > > while (len-- > 0) { > > > *ret++ = *((char *)src); > > > src++; > > > } > > > - return (void *)ret; > >

Re: [U-Boot-Users] [PATCH 00/17] x86: Fix warning: type qualifiers ignored on function return type

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > I will change it, when I'll importer the compiler header from linux. Please do NOT import headers which we do not really, really need. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 M

Re: [U-Boot-Users] [PATCH 17/17] sc520_cdp: Fix multiple warnings

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > sc520_cdp.c: In function 'pci_sc520_cdp_fixup_irq': > sc520_cdp.c:134: warning: pointer targets in passing argument 4 of > 'pci_hose_read_config_byte' differ in signedness > sc520_cdp.c: In function 'spi_read': > sc520_cdp.c:598: warning: pointer targets

Re: [U-Boot-Users] [PATCH 16/17] i386: Fix multipple definition of __show_boot_progress

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > board/sc520_spunk/libsc520_spunk.a(sc520_spunk_asm.o): In function > '__show_boot_progress': > board/sc520_spunk/sc520_spunk_asm.S:78: multiple definition of > '__show_boot_progress' > common/libcommon.a(main.o):common/main.c:50: first defined here > >

Re: [U-Boot-Users] [PATCH 15/17] sc530_spunk: add missing SOBJS entry

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > --- > board/sc520_spunk/Makefile |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH,

Re: [U-Boot-Users] [PATCH 14/17] sc520_spunk: Fix flash

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > flash.c:593: warning: dereferencing type-punned pointer will break > strict-aliasing rules > flash.c:398: error: label at end of compound statement > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > --- > board/sc520_spunk/flash.

Re: [U-Boot-Users] [PATCH 13/17] sc520_spunk: Fix multiple warnings

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > sc520_spunk.c: In function 'pci_sc520_spunk_fixup_irq': > sc520_spunk.c:117: warning: pointer targets in passing argument 4 of > 'pci_hose_read_config_byte' differ in signedness > sc520_spunk.c: In function 'last_stage_init': > sc520_spunk.c:580: warning

Re: [U-Boot-Users] [PATCH 12/17] ti_pci1410a: Fix multiple warnings and errors

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > ti_pci1410a.c: In function 'voltage_set': > ti_pci1410a.c:421: error: label at end of compound statement > ti_pci1410a.c:435: error: label at end of compound statement > cc1: warnings being treated as errors > ti_pci1410a.c: At top level: > ti_pci1410a.c:

Re: [U-Boot-Users] [PATCH 11/17] Include pcmcia.h only when the drivers is used

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > to avoid the following errors : > > include/pcmcia.h:72:3: error: #error "PCMCIA Slot not configured" > include/pcmcia.h:79:2: error: #error Neither CONFIG_PCMCIA_SLOT_A nor > CONFIG_PCMCIA_SLOT_B configured > > Signed-off-by: Jean-Christophe PLAGNIOL-

Re: [U-Boot-Users] [PATCH 07/17] drivers/pcmcia: add missing i82365

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > --- > drivers/pcmcia/Makefile |1 + > drivers/pcmcia/i82365.c |4 > 2 files changed, 1 insertions(+), 4 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- D

Re: [U-Boot-Users] [PATCH 06/17] ds1722: Fix mutliple warnings and errors and active the ssi for SC520 boards

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > ds1722.c:6:17: error: ssi.h: No such file or directory > ds1722.c:6:17: error: ssi.h: No such file or directory > cc1: warnings being treated as errors > ds1722.c: In function 'ds1722_select': > ds1722.c:10: warning: implicit declaration of function 'ssi_

Re: [U-Boot-Users] [PATCH 02/17] examples/eepro100_eeprom: Fix memcpy to return destination pointer

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 00:28 Mon 19 May , Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]> you wrote: > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > > --- > > examples/eepro100_eeprom.c |5 - > > 1 files changed, 4 insertions(+), 1 deletions(-) > > > > diff --git a/example

Re: [U-Boot-Users] [PATCH 05/17] i386/bootm: remove unused var

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > --- > lib_i386/bootm.c |1 - > 1 files changed, 0 insertions(+), 1 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgan

Re: [U-Boot-Users] [PATCH 04/17] i386: Fix global_data declaration

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Fix a warning type in lib_i386/board.c Um... you not only fix a warning; you change the code pretty heavily. > --- a/lib_i386/board.c > +++ b/lib_i386/board.c > @@ -38,6 +38,9 @@ > #include > #include > > +gd_t gd_data; > +gd_t *gd; > + Please do

Re: [U-Boot-Users] [PATCH 03/17] example/gitignore: update with all generated examples

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > --- > examples/.gitignore |4 > 1 files changed, 4 insertions(+), 0 deletions(-) Applied. Thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: W

Re: [U-Boot-Users] [PATCH 00/17] x86: Fix warning: type qualifiers ignored on function return type

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 00:18 Mon 19 May , Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]> you wrote: > > by sync asm/byteorder.h with linux > ... > > +static __inline__ __attribute_const__ __u32 ___arch__swab32(__u32 x) > ... > > +static __inline__ __attribute_const__ __u64 ___arch__swab64(__u64 val) > > et

Re: [U-Boot-Users] [PATCH 02/17] examples/eepro100_eeprom: Fix memcpy to return destination pointer

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > --- > examples/eepro100_eeprom.c |5 - > 1 files changed, 4 insertions(+), 1 deletions(-) > > diff --git a/examples/eepro100_eeprom.c b/examples/eepro100_eeprom.c > index 2b15

Re: [U-Boot-Users] [PATCH 01/17] example/82559_eeprom: Fix multiple warnings and errors

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > include/image.h: In function 'image_set_name': > include/image.h:374: warning: implicit declaration of function 'strncpy' > 82559_eeprom.c: In function 'memcpy': > 82559_eeprom.c:57: error: lvalue required as increment operand > 82559_eeprom.c:57: error:

Re: [U-Boot-Users] [PATCH 00/17] x86: Fix warning: type qualifiers ignored on function return type

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > by sync asm/byteorder.h with linux ... > +static __inline__ __attribute_const__ __u32 ___arch__swab32(__u32 x) ... > +static __inline__ __attribute_const__ __u64 ___arch__swab64(__u64 val) etc. Current Linux uses "inline" instead of "__inline__" - why t

Re: [U-Boot-Users] [PATCH] PPC40x: Rework CFG_INIT_DCACHE_CS Block to Avoid Machine Checks

2008-05-18 Thread Grant Erickson
On 5/18/08 2:23 PM, Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]> you wrote: + * For boards that don't have OCM and can't use the data cache + * for their primordial stack, setup stack here directly after the + * SDRAM is initialized in ext_bus_cntlr_init. >>> >>> Was the

Re: [U-Boot-Users] NOKIA's BB5 boards

2008-05-18 Thread Nishanth Menon
Jean-Christophe PLAGNIOL-VILLARD said the following on 05/18/2008 12:19 PM: > On 14:20 Sun 18 May , Divel wrote: > > The omap 1710 is supported by TI > > If I'm not wrong they are based on U-Boot 1.1.1 > > You could find the H3 development platform(1710) source here: http://linux.omap.com

Re: [U-Boot-Users] [PATCH] PPC40x: Rework CFG_INIT_DCACHE_CS Block to Avoid Machine Checks

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > >> + * For boards that don't have OCM and can't use the data cache > >> + * for their primordial stack, setup stack here directly after the > >> + * SDRAM is initialized in ext_bus_cntlr_init. > > > > Was there ever a useful explanation given why th

Re: [U-Boot-Users] [PATCH V2] ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > + if (rc) > + printf("Unable to update property status in PCIe node, > err=%s\n", > +fdt_strerror(rc)); This "if" needs curly braces. Best regards, Wolfgang Denk -- DENX Software Engineer

Re: [U-Boot-Users] [PATCH] PPC40x: Rework CFG_INIT_DCACHE_CS Block to Avoid Machine Checks

2008-05-18 Thread Grant Erickson
On 5/18/08 1:38 PM, Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]> you > wrote: > ... >> cpu/ppc4xx/start.S: >> Reworked code to handle the primordial stack and data area initialization >> when CFG_INIT_DCACHE_CS is asserted. > ... >> - * Boards like the Kilauea (405EX) don't have OCM and

Re: [U-Boot-Users] [PATCH] 82550_eeprom: Fix error: lvalue required as increment operand

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]@transmode.se> you wrote: > > > + return (void *)ret; > > return dst; Right. Thanks for catching. Unapplied. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Gr

Re: [U-Boot-Users] [PATCH] 82550_eeprom: Fix error: lvalue required as increment operand

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > --- > examples/82559_eeprom.c | 11 --- > 1 files changed, 8 insertions(+), 3 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH

Re: [U-Boot-Users] u-boot dos not autostart commands

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > But after power on, I cannot see countdown & run bootcmd. Probably that was not selected in the board configuration? > If I 'run bootcmd' by hand - that works OK. But not automatically after power > on. > Can anybody tell me, how I can solve this ?

[U-Boot-Users] RapidIO on custom board (MPC8548 )

2008-05-18 Thread Adam Nowak
I have to configure the system (u-boot, kernel) and create the RIO driver. Could you advise me how to fix my current problem? a) Kernel log: ... Setting up RapidIO peer-to-peer network /[EMAIL PROTECTED]/rapidi0 RIO: Of-device full name /[EMAIL PROTECTED]/[EMAIL PROTECTED] RIO: LAW start 0x0

Re: [U-Boot-Users] [PATCH] PPC40x: Rework CFG_INIT_DCACHE_CS Block to Avoid Machine Checks

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > ... > cpu/ppc4xx/start.S: > Reworked code to handle the primordial stack and data area initialization > when CFG_INIT_DCACHE_CS is asserted. ... > - * Boards like the Kilauea (405EX) don't have OCM and can't use > - * DCache for init-ram. So

Re: [U-Boot-Users] [PATCH]

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > This patch continues laying the ground work for moving out-of-assembly > and unifying the SDRAM initialization code for PowerPC 405EX[r]-based > boards. > > To do so, this deduces by one the number of nearly-identical DRAM ECC > initialization implementa

Re: [U-Boot-Users] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > The following changes since commit a38dc3ea8614f8b0c41e432b445a9959b9711295: > Wolfgang Denk (1): > TQM8272: fix out-of-tree building > > are available in the git repository at: > > git://www.denx.de/git/u-boot-ppc4xx.git master > > Stefan

[U-Boot-Users] Duplicate implementations of testdram() deprecated

2008-05-18 Thread Wolfgang Denk
Hello, I just noticed that 84 boards contain some function "testdram()" which (and I guess few people are surprised) in 80+ cases is basicly a verbatim copy of the same code. Allt hese boards completely ignore that we already have several implamentations of memory test code both in

Re: [U-Boot-Users] [PATCH] ppc4xx: Canyonlands: Disable PCIe port 0 in dev-tree when SATA is selected

2008-05-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > + if (rc) > + printf("Unable to update property status in PCIe node, > err=%s\n", > +fdt_strerror(rc)); Multiline statements definitely need curly braces. Best regards, Wolfgang Denk -- D

Re: [U-Boot-Users] Posting non-wrapped patches

2008-05-18 Thread Grant Erickson
On 5/18/08 4:53 AM, David Saada wrote: > As you may have noticed, I've been trying to post some patches, but sending > most of them failed due to line wrapping problems. This is a problem with the > mailer we use here (outlook). Messing with the mailer didn't help, and so was > posting via the Nabb

Re: [U-Boot-Users] [RFC/PATCH 2/6] SPI API improvements

2008-05-18 Thread Haavard Skinnemoen
On Sat, 17 May 2008 12:56:00 +0200 Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> wrote: > You've forget ds1722 and AMD Elan cpu which use SPI too I don't think so. ds1722 uses some sort of home-grown API which I don't want anything to do with. Elan seems to be using a different API too...

Re: [U-Boot-Users] NOKIA's BB5 boards

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 14:20 Sun 18 May , Divel wrote: > Can anybody write initialisation for BB5 boards ? It based on OMAP 1710 > ARM processor and NOKIA's RAP 3G The omap 1710 is supported by TI If I'm not wrong they are based on U-Boot 1.1.1 Best Regards, J.

[U-Boot-Users] [PATCH 13/17] sc520_spunk: Fix multiple warnings

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
sc520_spunk.c: In function 'pci_sc520_spunk_fixup_irq': sc520_spunk.c:117: warning: pointer targets in passing argument 4 of 'pci_hose_read_config_byte' differ in signedness sc520_spunk.c: In function 'last_stage_init': sc520_spunk.c:580: warning: implicit declaration of function 'ds1722_probe' sc

[U-Boot-Users] [PATCH 12/17] ti_pci1410a: Fix multiple warnings and errors

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
ti_pci1410a.c: In function 'voltage_set': ti_pci1410a.c:421: error: label at end of compound statement ti_pci1410a.c:435: error: label at end of compound statement cc1: warnings being treated as errors ti_pci1410a.c: At top level: ti_pci1410a.c:609: warning: pointer targets in initialization differ

[U-Boot-Users] [PATCH 11/17] Include pcmcia.h only when the drivers is used

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
to avoid the following errors : include/pcmcia.h:72:3: error: #error "PCMCIA Slot not configured" include/pcmcia.h:79:2: error: #error Neither CONFIG_PCMCIA_SLOT_A nor CONFIG_PCMCIA_SLOT_B configured Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- drivers/pcmcia/mpc8xx_p

[U-Boot-Users] [PATCH 17/17] sc520_cdp: Fix multiple warnings

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
sc520_cdp.c: In function 'pci_sc520_cdp_fixup_irq': sc520_cdp.c:134: warning: pointer targets in passing argument 4 of 'pci_hose_read_config_byte' differ in signedness sc520_cdp.c: In function 'spi_read': sc520_cdp.c:598: warning: pointer targets in passing argument 3 of 'spi_eeprom_read' differ

[U-Boot-Users] [PATCH 15/17] sc530_spunk: add missing SOBJS entry

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- board/sc520_spunk/Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/sc520_spunk/Makefile b/board/sc520_spunk/Makefile index bfb77e8..226c756 100644 --- a/board/sc520_spunk/Makefile +++ b/

[U-Boot-Users] [PATCH 03/17] example/gitignore: update with all generated examples

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- examples/.gitignore |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/examples/.gitignore b/examples/.gitignore index 059b096..806425f 100644 --- a/examples/.gitignore +++ b/examples/.gitignore @@ -1,

[U-Boot-Users] [PATCH 05/17] i386/bootm: remove unused var

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- lib_i386/bootm.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/lib_i386/bootm.c b/lib_i386/bootm.c index 107ebaa..d959107 100644 --- a/lib_i386/bootm.c +++ b/lib_i386/bootm.c @@ -37,7 +37,6 @@ void d

[U-Boot-Users] [PATCH 00/17] x86: Fix warning: type qualifiers ignored on function return type

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
by sync asm/byteorder.h with linux Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- include/asm-i386/byteorder.h | 125 +++-- 1 files changed, 82 insertions(+), 43 deletions(-) rewrite include/asm-i386/byteorder.h (65%) diff --git a/in

[U-Boot-Users] [PATCH 10/17] pcmcia/ti_pci1410a: Move compile condition to the Makefile

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- drivers/pcmcia/Makefile |2 +- drivers/pcmcia/ti_pci1410a.c |4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/pcmcia/Makefile b/drivers/pcmcia/Makefile index 439f839..a5270f7 100644 -

[U-Boot-Users] [PATCH 06/17] ds1722: Fix mutliple warnings and errors and active the ssi for SC520 boards

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
ds1722.c:6:17: error: ssi.h: No such file or directory ds1722.c:6:17: error: ssi.h: No such file or directory cc1: warnings being treated as errors ds1722.c: In function 'ds1722_select': ds1722.c:10: warning: implicit declaration of function 'ssi_set_interface' ds1722.c:11: warning: implicit declar

[U-Boot-Users] [PATCH 07/17] drivers/pcmcia: add missing i82365

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- drivers/pcmcia/Makefile |1 + drivers/pcmcia/i82365.c |4 2 files changed, 1 insertions(+), 4 deletions(-) diff --git a/drivers/pcmcia/Makefile b/drivers/pcmcia/Makefile index bba1ab8..53a485d 100644 --- a/driver

[U-Boot-Users] [PATCH 14/17] sc520_spunk: Fix flash

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules flash.c:398: error: label at end of compound statement Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- board/sc520_spunk/flash.c | 30 ++ 1 files changed

[U-Boot-Users] [PATCH 08/17] marabun_pcmcia: Move compile condition to the Makefile

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- drivers/pcmcia/Makefile |2 +- drivers/pcmcia/marubun_pcmcia.c |7 +++ 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/drivers/pcmcia/Makefile b/drivers/pcmcia/Makefile index 53a485d..59be49c

[U-Boot-Users] [PATCH 02/17] examples/eepro100_eeprom: Fix memcpy to return destination pointer

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- examples/eepro100_eeprom.c |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/examples/eepro100_eeprom.c b/examples/eepro100_eeprom.c index 2b15d05..5f4eb78 100644 --- a/examples/eepro100_eeprom.c +++

[U-Boot-Users] [PATCH 16/17] i386: Fix multipple definition of __show_boot_progress

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
board/sc520_spunk/libsc520_spunk.a(sc520_spunk_asm.o): In function '__show_boot_progress': board/sc520_spunk/sc520_spunk_asm.S:78: multiple definition of '__show_boot_progress' common/libcommon.a(main.o):common/main.c:50: first defined here Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL

[U-Boot-Users] [PATCH 09/17] pxa_pcmcia: Move compile condition to the Makefile

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- drivers/pcmcia/Makefile |2 +- drivers/pcmcia/pxa_pcmcia.c |4 2 files changed, 1 insertions(+), 5 deletions(-) diff --git a/drivers/pcmcia/Makefile b/drivers/pcmcia/Makefile index 59be49c..439f839 100644 ---

[U-Boot-Users] [PATCH 04/17] i386: Fix global_data declaration

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
Fix a warning type in lib_i386/board.c Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> --- include/asm-i386/global_data.h |4 +--- lib_i386/board.c | 11 +-- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/include/asm-i386/global_data

[U-Boot-Users] [PATCH 01/17] example/82559_eeprom: Fix multiple warnings and errors

2008-05-18 Thread Jean-Christophe PLAGNIOL-VILLARD
include/image.h: In function 'image_set_name': include/image.h:374: warning: implicit declaration of function 'strncpy' 82559_eeprom.c: In function 'memcpy': 82559_eeprom.c:57: error: lvalue required as increment operand 82559_eeprom.c:57: error: lvalue required as increment operand 82559_eeprom.c:

Re: [U-Boot-Users] u-boot dos not autostart commands

2008-05-18 Thread Markus Klotzbücher
Alexei Babich <[EMAIL PROTECTED]> writes: >> > bootcmd=cp.b 01e0 a100 13216e >> What are you trying to do here? > Simple test autostart. If I run it manually, this copy linux uImage > from FLASH to RAM.. You know "bootm" will do this for you? Best regards Markus Klotzbuecher -- DENX So

[U-Boot-Users] Posting non-wrapped patches

2008-05-18 Thread David Saada
Hi, As you may have noticed, I've been trying to post some patches, but sending most of them failed due to line wrapping problems. This is a problem with the mailer we use here (outlook). Messing with the mailer didn't help, and so was posting via the Nabble forum or my gmail account in text mod

[U-Boot-Users] Studies have shown that herbal express work 90%

2008-05-18 Thread Manskukhani
Get the huge size that you deserve easily with herbal meds http://www.migrepea.com/ - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse012

Re: [U-Boot-Users] NOKIA's BB5 boards

2008-05-18 Thread Michal Simek
Hi Divel Why did you send your message twice? Michal Simek > Can anybody write initialisation for BB5 boards ? It based on OMAP 1710 > ARM processor and NOKIA's RAP 3G > > - > This SF.net email is sponsored by: Microsoft

Re: [U-Boot-Users] u-boot dos not autostart commands

2008-05-18 Thread Alexei Babich
> > bootcmd=cp.b 01e0 a100 13216e > What are you trying to do here? Simple test autostart. If I run it manually, this copy linux uImage from FLASH to RAM.. > It seems that support for bootdelay (CONFIG_BOOTDELAY) is not enabled in > your vendors version of U-Boot. So to get this feature y

Re: [U-Boot-Users] u-boot dos not autostart commands

2008-05-18 Thread Markus Klotzbücher
Alexei Babich <[EMAIL PROTECTED]> writes: > I have PXA270 board with embedded by vendor bootleader - "U-Boot 1.3.0". > I define that environment: > --- > $ printenv > baudrate=115200 > bootdelay=3 > bootargs=video=pxafb:mode:800x480-16,active,pixclock:37000,left:100,right:1,hsynclen:10,upper:20,lo

[U-Boot-Users] NOKIA's BB5 boards

2008-05-18 Thread Divel
Can anybody write initialisation for BB5 boards ? It based on OMAP 1710 ARM processor and NOKIA's RAP 3G - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt

[U-Boot-Users] BB5 boards support

2008-05-18 Thread Divel
Is it possible to use u-boot on NOKIA's BB5 boards (OMAP 1710 ARM processor)? - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse012070mr

Re: [U-Boot-Users] [PATCH] Fixed reset for syscon3

2008-05-18 Thread HarryCheng
I have a customized MPC8548 board with several hardware reset source (to HRESET AG17), and the trigger signal is a GPIO pin instead of the default HRESET_REQ (AG16). the patch simply replaces the HRESET_REQ by the certain pin of GUR registers on both cpu/mpc85xx/cpu.c of the u-boot and arch/powerp