Re: [U-Boot-Users] [PATCH] ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5

2008-01-17 Thread Stefan Roese
Hi Niklaus, On Thursday 17 January 2008, Niklaus Giger wrote: > Thanks for fixing the compile warnings. I fixed my compilation script to > look for warnings in order to fix these kind of problems before submitting > to the u-boot list. Good. And please keep me on CC on such mails/patches. Makes i

[U-Boot-Users] ygreoyg

2008-01-17 Thread bouzera Ingrao
Push it in harder cried Jenny when I showed her my new long schlong http://www.juuyesot.com/ - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/g

Re: [U-Boot-Users] [PATCH] mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h

2008-01-17 Thread Ben Warren
Dave Liu wrote: > The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb > cause the 83xx immap broken, so the DMA and PCI will > be failed. > > The patch fix the struct spi8xxx. > > Signed-off-by: Dave Liu <[EMAIL PROTECTED]> > --- > include/asm-ppc/immap_83xx.h |4 ++-- > include/asm-ppc/mpc8x

Re: [U-Boot-Users] [PATCH v2 1/2] Add support for a Freescale non-CPMSPI controller

2008-01-17 Thread Liu Dave
> +#if defined(CONFIG_MPC834X) || \ > + defined(CONFIG_MPC8313) || \ > + defined(CONFIG_MPC8315) || \ > + defined(CONFIG_MPC837X) > + > +typedef struct spi8xxx > +{ > + u8 res0[0x20]; /* 0x0-0x01f reserved */ > + u32 mode; /* mode register */ > + u32 event; /*

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

2008-01-17 Thread Dave Liu
On Fri, 2008-01-18 at 04:13 +0800, Phillips Kim wrote: > Wolfgang D., > > Ben submitted a hard SPI driver, and Dave fixed a critical bug for the > mpc8315e-rdb. Please pull: > > The following changes since commit > f188896c2f1594fe749fdb99bbc8c54023cfab3a: > Wolfgang Denk (1): > Merge

[U-Boot-Users] [PATCH] mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h

2008-01-17 Thread Dave Liu
The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb cause the 83xx immap broken, so the DMA and PCI will be failed. The patch fix the struct spi8xxx. Signed-off-by: Dave Liu <[EMAIL PROTECTED]> --- include/asm-ppc/immap_83xx.h |4 ++-- include/asm-ppc/mpc8xxx_spi.h |2 +- 2 files change

Re: [U-Boot-Users] [PATCH v2 1/2] Add support for a Freescale non-CPMSPI controller

2008-01-17 Thread Ben Warren
Liu Dave wrote: >> +#if defined(CONFIG_MPC834X) || \ >> +defined(CONFIG_MPC8313) || \ >> +defined(CONFIG_MPC8315) || \ >> +defined(CONFIG_MPC837X) >> + >> +typedef struct spi8xxx >> +{ >> +u8 res0[0x20]; /* 0x0-0x01f reserved */ >> +u32 mode; /* mode register */ >> +

[U-Boot-Users] [PATCH] mpc86xx: Convert to using new law setup code

2008-01-17 Thread Becky Bruce
This patch converts 86xx to the new law setup in C that Kumar posted recently. Signed-off-by: Becky Bruce <[EMAIL PROTECTED]> --- board/freescale/mpc8641hpcn/Makefile |2 +- board/freescale/mpc8641hpcn/law.c| 64 ++ cpu/mpc86xx/cpu_init.c

[U-Boot-Users] [PATCH] mpc86xx: Rearrange start.S to allow use of new law code

2008-01-17 Thread Becky Bruce
Rearrange start.S as follows: * split the BAT initialization so that only 2 BATs (for the boot page and stack) are programmed very early on. The rest are initialized later. * Move other BAT setup, ccsrbar setup, and law setup later in the code after translation has been enabled. These changes w

Re: [U-Boot-Users] [PATCH 0/1] TFTP: add host ip addr support

2008-01-17 Thread Jean-Christophe PLAGNIOL-VILLARD
On 11:42 Fri 18 Jan , Andre Renaud wrote: > Couldn't this be done as follows instead? This way there is no need to > allocate any more > memory on the stack, and no need for a new configuration option. > > Andre > > Signed-off-by: Andre Renaud <[EMAIL PROTECTED]> > Andren, At leas

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

2008-01-17 Thread Jean-Christophe PLAGNIOL-VILLARD
The following changes since commit f188896c2f1594fe749fdb99bbc8c54023cfab3a: Wolfgang Denk (1): Merge branch 'master' of git+ssh://10.10.0.7/home/wd/git/u-boot/master are available in the git repository at: git://www.denx.de/git/u-boot-ixp.git master Jean-Christophe PLAGNIOL-VILLARD

Re: [U-Boot-Users] [PATCH] TFTP: add host ip addr support

2008-01-17 Thread Ben Warren
Wolfgang, Jean-Christophe PLAGNIOL-VILLARD wrote: > allow to use a different server as set in serverip > add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length > if not defined the max length will be at 128 > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > A

Re: [U-Boot-Users] [PATCH 0/1] TFTP: add host ip addr support

2008-01-17 Thread Ben Warren
Andre Renaud wrote: > Couldn't this be done as follows instead? This way there is no need to > allocate any more > memory on the stack, and no need for a new configuration option. > > This is nice, because it works in-place and doesn't need the second buffer. One concern, though (see below) >

[U-Boot-Users] [PATCH] TFTP: add host ip addr support

2008-01-17 Thread Jean-Christophe PLAGNIOL-VILLARD
allow to use a different server as set in serverip add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length if not defined the max length will be at 128 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> diff --git a/common/cmd_net.c b/common/cmd_net.c index 21682c0..b

[U-Boot-Users] [PATCH] TFTP: add host ip addr support

2008-01-17 Thread Jean-Christophe PLAGNIOL-VILLARD
allow to use a different server as set in serverip add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length if not defined the max length will be at 128 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> diff --git a/common/cmd_net.c b/common/cmd_net.c index 21682c0..b

[U-Boot-Users] Job Position Bank Courrier! 1-2 Hours a Day Only!

2008-01-17 Thread job
Greetings! This is very Rare Job opportunity Offer! Please read. Do You want to make 900-1000 AUD a week, doing 10% comission? Very easy and fun way to make money, few main facts: 1. 900-1000 AUD a week! 2. 18+ y/o ONLY, you have to be able to check your e-mail 3-4 times a day 3. 1-2 hours of fre

Re: [U-Boot-Users] [PATCH] ColdFire: Add MCF5275 cpu and M5275EVB support.

2008-01-17 Thread Liew Tsi Chung
Matthew Do you test FEC, Timer and Flash work on this patch? Regards, TsiChung - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse01200

Re: [U-Boot-Users] [PATCH 0/1] TFTP: add host ip addr support

2008-01-17 Thread Andre Renaud
Couldn't this be done as follows instead? This way there is no need to allocate any more memory on the stack, and no need for a new configuration option. Andre Signed-off-by: Andre Renaud <[EMAIL PROTECTED]> diff --git a/common/cmd_net.c b/common/cmd_net.c index 21682c0..b86ca86 100644 --- a/c

Re: [U-Boot-Users] [PATCH 0/1] TFTP: add host ip addr support

2008-01-17 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > allow to use a different server as set in serverip > add CONFIG_LONG_TFTP_FILE_NAME to allow long file name default as 1024 > can be reconfigured whit CONFIG_LONG_TFTP_FILE_NAME_MAX_LEN > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTE

Re: [U-Boot-Users] [PATCH 1/1] Fix nfs command help to reflect that the serverip is optional

2008-01-17 Thread Ben Warren
Jean-Christophe PLAGNIOL-VILLARD wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> > > diff --git a/common/cmd_net.c b/common/cmd_net.c > index b86ca86..dbf6b86 100644 > --- a/common/cmd_net.c > +++ b/common/cmd_net.c > @@ -87,7 +87,7 @@ int do_nfs (cmd_tbl_t *cmdtp, int

[U-Boot-Users] Please pull u-boot-mpc85xx.git

2008-01-17 Thread Andy Fleming
are found in the git repository at: git://www.denx.de/git/u-boot-mpc85xx.git Andy Fleming (1): Merge branch 'kumar' Kumar Gala (23): 85xx: Move LAW init code into C 85xx: convert MPC8544 DS over to use new LAW init code 85xx: convert MPC8540/MPC8560 ADS over to use new

[U-Boot-Users] [PATCH 1/1] Fix nfs command help to reflect that the serverip is optional

2008-01-17 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> diff --git a/common/cmd_net.c b/common/cmd_net.c index b86ca86..dbf6b86 100644 --- a/common/cmd_net.c +++ b/common/cmd_net.c @@ -87,7 +87,7 @@ int do_nfs (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) U_BOOT_CMD( n

[U-Boot-Users] [PATCH 0/1] TFTP: add host ip addr support

2008-01-17 Thread Jean-Christophe PLAGNIOL-VILLARD
allow to use a different server as set in serverip add CONFIG_LONG_TFTP_FILE_NAME to allow long file name default as 1024 can be reconfigured whit CONFIG_LONG_TFTP_FILE_NAME_MAX_LEN Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> diff --git a/common/cmd_net.c b/common/cmd_net.

[U-Boot-Users] [U-boot-Users][GIT PULL] Please pull coldfire tree

2008-01-17 Thread John Rigby
Wolfgang, The following changes since commit f188896c2f1594fe749fdb99bbc8c54023cfab3a: Wolfgang Denk (1): Merge branch 'master' of git+ssh://10.10.0.7/home/wd/git/u-boot/master are available in the git repository at: git://www.denx.de/git/u-boot-coldfire.git master TsiChungLiew (19

[U-Boot-Users] resend#5 [PATCH 6/8] ColdFire: Add MCF547x_8x FEC driver

2008-01-17 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- drivers/net/Makefile |1 + drivers/net/fsl_mcdmafec.c | 571 net/eth.c |4 + 3 files changed, 576 insertions(+), 0 deletions(-) create mode 100644 drivers/net/fsl_mcdma

[U-Boot-Users] Please pull u-boot-mpc83xx.git

2008-01-17 Thread Kim Phillips
Wolfgang D., Ben submitted a hard SPI driver, and Dave fixed a critical bug for the mpc8315e-rdb. Please pull: The following changes since commit f188896c2f1594fe749fdb99bbc8c54023cfab3a: Wolfgang Denk (1): Merge branch 'master' of git+ssh://10.10.0.7/home/wd/git/u-boot/master are ava

Re: [U-Boot-Users] [PATCH] mpc83xx: Fix the fatal conflict of merge

2008-01-17 Thread Kim Phillips
On Thu, 17 Jan 2008 18:35:52 +0800 Dave Liu <[EMAIL PROTECTED]> wrote: > > The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7 > > will cause the mpc8315erdb board can't boot up. > > Hi Wolfgang, > > I don't know when the merge window will close today, > Because the patch fix the fatal conflict,

Re: [U-Boot-Users] [PATCH] ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5

2008-01-17 Thread Niklaus Giger
Hi Stefan Thanks for fixing the compile warnings. I fixed my compilation script to look for warnings in order to fix these kind of problems before submitting to the u-boot list. [..] > diff --git a/board/netstal/hcu4/Makefile b/board/netstal/hcu4/Makefile > index c0d719f..b13d9d4 100644 > -

Re: [U-Boot-Users] RFC: new bootm syntax v2

2008-01-17 Thread Bartlomiej Sieka
Bartlomiej Sieka wrote: > [...] >> As part of adding support for the new uImage format, bootm command will >> be reworked quite a bit. Below is a note that summarizes bootm usage >> scenarios (present and planned), and defines extensions to bootm >> arguments' syntax. The note, or its portions, can

[U-Boot-Users] RFC: new bootm syntax v2

2008-01-17 Thread Bartlomiej Sieka
Bartlomiej Sieka wrote: [...] > As part of adding support for the new uImage format, bootm command will > be reworked quite a bit. Below is a note that summarizes bootm usage > scenarios (present and planned), and defines extensions to bootm > arguments' syntax. The note, or its portions, can be la

Re: [U-Boot-Users] [PATCH v2 2/2] Implement hard SPI driver on MPC8349EMDS

2008-01-17 Thread Ben Warren
Kim Phillips wrote: > On Thu, 17 Jan 2008 14:06:57 -0500 > Ben Warren <[EMAIL PROTECTED]> wrote: > > >> I was just about to respond to your other message to ask if you'd have >> time to fit it in. Do you want me to resend patches or can you apply >> yourself (since you already have the handy d

Re: [U-Boot-Users] [PATCH v2 2/2] Implement hard SPI driver on MPC8349EMDS

2008-01-17 Thread Kim Phillips
On Thu, 17 Jan 2008 14:06:57 -0500 Ben Warren <[EMAIL PROTECTED]> wrote: > I was just about to respond to your other message to ask if you'd have > time to fit it in. Do you want me to resend patches or can you apply > yourself (since you already have the handy diff). Either way's fine by me. I

Re: [U-Boot-Users] FW: resend#4 [PATCH 6/8] ColdFire: Add MCF547x_8x FEC driver

2008-01-17 Thread Ben Warren
Liew Tsi Chung wrote: > Ben, > > >> I haven't seen the patch that removes the prototypes, but it's >> quite possible I looked past it. In a previous e-mail I added a >> 'signed-off-by' that John Rigby can add to the patch commit. I >> consider this to be a Coldfire patch because it's dependent

[U-Boot-Users] FW: resend#4 [PATCH 6/8] ColdFire: Add MCF547x_8x FEC driver

2008-01-17 Thread Liew Tsi Chung
Ben, > I haven't seen the patch that removes the prototypes, but it's > quite possible I looked past it. In a previous e-mail I added a > 'signed-off-by' that John Rigby can add to the patch commit. I > consider this to be a Coldfire patch because it's dependent on > other patches in the series

Re: [U-Boot-Users] [PATCH v2 2/2] Implement hard SPI driver on MPC8349EMDS

2008-01-17 Thread Ben Warren
Kim Phillips wrote: > On Wed, 16 Jan 2008 22:37:42 -0500 > Ben Warren <[EMAIL PROTECTED]> wrote: > > >> +void spi_eeprom_chipsel(int cs) >> +{ >> +volatile gpio83xx_t *iopd = &((immap_t *)CFG_IMMR)->gpio[0]; >> + >> +if(cs) >> > > s/if(/if (/ > > unless no-one else has any objection

Re: [U-Boot-Users] [PATCH v2 2/2] Implement hard SPI driver on MPC8349EMDS

2008-01-17 Thread Kim Phillips
On Wed, 16 Jan 2008 22:37:42 -0500 Ben Warren <[EMAIL PROTECTED]> wrote: > +void spi_eeprom_chipsel(int cs) > +{ > + volatile gpio83xx_t *iopd = &((immap_t *)CFG_IMMR)->gpio[0]; > + > + if(cs) s/if(/if (/ unless no-one else has any objections, this should probably go in before the window

Re: [U-Boot-Users] [PATCH v2 1/2] Add support for a Freescale non-CPM SPI controller

2008-01-17 Thread Kim Phillips
On Wed, 16 Jan 2008 22:37:35 -0500 Ben Warren <[EMAIL PROTECTED]> wrote: > This patch adds support for the SPI controller found on Freescale PowerPC > processors such as the MCP834x family. Additionally, a new config option, > CONFIG_HARD_SPI, is added for general purpose SPI controller use. > >

[U-Boot-Users] Please pull mpc86xx repository

2008-01-17 Thread Jon Loeliger
Wolfgang, Sorry to be a bother. I thought I was done pulling 86xx stuff yesterday, but two late arrivals came in. One is definitely a bug fix (EEPROM stuff) and the others are just nice features. If you would, please pick them up! Thanks, jdl The following changes since commit f188896c2f1594

Re: [U-Boot-Users] resend#3 [PATCH 6/8] ColdFire: Add MCF547x_8x FEC driver

2008-01-17 Thread Ben Warren
Liew Tsi Chung wrote: > Ben, > > >> Right, so there's no need to mention them in C code. Less is >> more, as they say. >> > Agree. > > So, everything ok now? > > I haven't seen the patch that removes the prototypes, but it's quite possible I looked past it. In a previous e-mail I added

Re: [U-Boot-Users] resend#3 [PATCH 6/8] ColdFire: Add MCF547x_8x FEC driver

2008-01-17 Thread Liew Tsi Chung
Ben, > Right, so there's no need to mention them in C code. Less is > more, as they say. Agree. So, everything ok now? Regards, TsiChung -Original Message- From: Ben Warren [mailto:[EMAIL PROTECTED] Sent: Thursday, January 17, 2008 12:27 PM To: Liew Tsi Chung Cc: U-Boot-Users; Wolfgan

Re: [U-Boot-Users] resend#3 [PATCH 6/8] ColdFire: Add MCF547x_8x FEC driver

2008-01-17 Thread Ben Warren
Liew Tsi Chung wrote: > Ben, > > The prototypes have place in include/asm-m68k/fsl_mcdmafec.h. > > Regards, > TsiChung > > Right, so there's no need to mention them in C code. Less is more, as they say. regards, Ben --

[U-Boot-Users] [PATCH v2] FSL: Fix common EEPROM_data structure definition

2008-01-17 Thread Jon Loeliger
From: Haiying Wang <[EMAIL PROTECTED]> - Fix EEPROM_data structure definition according to System EEPROM Data Format. - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to bd->bi_ethaddr. Signed-off-by: Haiying Wang <[EMAIL PROTECTED]> --- This patch was only tested on MPC8641

Re: [U-Boot-Users] resend#3 [PATCH 6/8] ColdFire: Add MCF547x_8x FEC driver

2008-01-17 Thread Liew Tsi Chung
Ben, The prototypes have place in include/asm-m68k/fsl_mcdmafec.h. Regards, TsiChung -Original Message- From: Ben Warren [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 16, 2008 8:33 PM To: Liew Tsi Chung Cc: U-Boot-Users; Wolfgang Denx; Rigby John Subject: Re: [U-Boot-Users

Re: [U-Boot-Users] Pull request - net

2008-01-17 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:54 Thu 17 Jan , Ben Warren wrote: > Net code submitters: > > It's very possible that I missed somebody's patch(es). If you think > something's missing, > please let me know ASAP! The only outstanding patch that I'm aware of is J-C > Plagniol-Villard's > update for TFTP file name. >

Re: [U-Boot-Users] [PATCH v2] QE IO: Add initial data to pin configuration + read/write functions

2008-01-17 Thread Timur Tabi
David Saada wrote: > @@ -38,6 +38,16 @@ void qe_config_iopin(u8 port, u8 pin, in > volatile par_io_t *par_io = (volatile par_io_t *) > &(gur->qe_par_io); > > + /* Calculate pin location for 1bit mask */ > + pin_1bit_mask = (u32)(1

Re: [U-Boot-Users] [PATCH v2] QE IO: Add initial data to pin configuration + read/write functions

2008-01-17 Thread Timur Tabi
David Saada wrote: > On the MPC83xx & MPC85xx architectures that have QE, add initial data to > the pin configuration table (qe_iop_conf_tab). QE initialization tables > in all relevant boards were also replaced. > In addition, add IO pin read & write functions. > > Signed-off-by: David Saada <[EM

Re: [U-Boot-Users] RM9200 and at49bv642d

2008-01-17 Thread Peter Pearse
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Dumaresq Sent: 17 January 2008 15:29 To: u-boot-users@lists.sourceforge.net Subject: [U-Boot-Users] RM9200 and at49bv642d Hi all,

Re: [U-Boot-Users] [PATCH] Update 5121 fdt support to match latest kernel work.

2008-01-17 Thread John Rigby
address should be removed local-mac-address will be added to the device tree when I submit an ethernet patch so it should be left in u-boot. Grzegorz Bernacki wrote: > John Rigby wrote: > >> Based on reviews on the linuxppc-dev mailing list >> some changes have been made to the device tree.

[U-Boot-Users] Pull request - net

2008-01-17 Thread Ben Warren
Net code submitters: It's very possible that I missed somebody's patch(es). If you think something's missing, please let me know ASAP! The only outstanding patch that I'm aware of is J-C Plagniol-Villard's update for TFTP file name.

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

2008-01-17 Thread Timur Tabi
Kumar Gala 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]> Acked-by: Timur Tabi <[EMAIL PROTECTED]> FYI, this patch supersedes my previous patch, "83xx: add

[U-Boot-Users] RM9200 and at49bv642d

2008-01-17 Thread Jonathan Dumaresq
Hi all, I'm new to u-boot and I want to use it on my new custom design RM9200 board. This is the first time we design a board based to an arm9 cpu. I would like to know if this setup is already done or I should start customizing u-boot to get this work ? My configuration is: 2 x SD

Re: [U-Boot-Users] [PATCH] ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files

2008-01-17 Thread Stefan Roese
On Thursday 17 January 2008, Jon Loeliger wrote: > Jon Loeliger wrote: > > Acked-by: Jon Loelier <[EMAIL PROTECTED]> > > I can spell my own name. Really. I can! Heh! ;) Viele Grüße, Stefan = DENX Software Engineering GmbH,

Re: [U-Boot-Users] [PATCH] ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files

2008-01-17 Thread Jon Loeliger
Jon Loeliger wrote: > Acked-by: Jon Loelier <[EMAIL PROTECTED]> I can spell my own name. Really. I can! jdl - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.

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

2008-01-17 Thread Stefan Roese
The following changes since commit 8d99cd0691b7094ea1e2bf5309b0877047a9f375: Stefan Roese (1): Merge branch 'master' of /home/stefan/git/u-boot/u-boot are available in the git repository at: git://www.denx.de/git/u-boot-ppc4xx.git master Larry Johnson (2): ppc4xx: Refactor ECC

Re: [U-Boot-Users] [PATCH] pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver

2008-01-17 Thread Ben Warren
Jon Loeliger wrote: > Sorry. It means "I _totally_ agree with this patch." > The religious word "Amen" means "Let it be" or "So be it". > By adding "Brother" to it, it makes it familiar, and > connotes charismatic religious fervor. We should _all_ > violently agree with this patch. :-) > > No

Re: [U-Boot-Users] [PATCH] ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files

2008-01-17 Thread Jon Loeliger
Stefan Roese wrote: > Signed-off-by: Stefan Roese <[EMAIL PROTECTED]> > --- > board/amcc/kilauea/cmd_pll.c |2 +- > board/amcc/makalu/cmd_pll.c |2 +- > include/configs/PMC440.h |4 ++-- > include/configs/kilauea.h|2 +- > include/configs/makalu.h |2 +- > 5 files

Re: [U-Boot-Users] [PATCH] Merge Sequoia beautification into Korat code

2008-01-17 Thread Stefan Roese
On Thursday 17 January 2008, Larry Johnson wrote: > Signed-off-by: Larry Johnson <[EMAIL PROTECTED]> Applied, thanks. Best regards, Stefan = DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich

Re: [U-Boot-Users] [PATCH] pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver

2008-01-17 Thread Jon Loeliger
Nobuhiro Iwamatsu wrote: > 2008/1/16, Jon Loeliger <[EMAIL PROTECTED]>: >> On Tue, 2008-01-15 at 11:46, Nobuhiro Iwamatsu wrote: >>> Signed-off-by: Nobuhiro Iwamatsu <[EMAIL PROTECTED]> >>> --- >>> drivers/pcmcia/marubun_pcmcia.c |6 -- >>> 1 files changed, 4 insertions(+), 2 deletions(-)

Re: [U-Boot-Users] [PATCH V2] net: add 'ethrotate' environment variable

2008-01-17 Thread Ben Warren
Matthias Fuchs wrote: > [PATCH] net: add 'ethrotate' environment variable > > This patch replaces the buildtime configuration option > CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime > configuration veriable. See README. > > Signed-off-by: Matthias Fuchs <[EMAIL PROTECTED]> > --- > R

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

2008-01-17 Thread Ben Warren
Liu Dave wrote: > Ben, > > Please take > 1) RTL8211B PHY patch for 8315ERDB board > 2) Extend UEC to 4 patch. > > Into your tree. > > I hope we can merge them into main tree. > > Thanks, > Dave > > >> -Original Message- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED] On Behalf

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

2008-01-17 Thread Ben Warren
Joakim Tjernlund wrote: > On Wed, 2008-01-16 at 15:16 -0500, Ben Warren wrote: > >> Kim Phillips wrote: >> >>> On Wed, 16 Jan 2008 19:44:30 +0100 >>> "Joakim Tjernlund" <[EMAIL PROTECTED]> wrote: >>> >>> >>> hmm, no "[PATCH] net: reduce boot latency on QE UEC based boards"? >

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

2008-01-17 Thread Kumar Gala
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]> --- common/fdt_support.c | 48 -- cpu/mpc83xx/fdt.c| 13 ++- cpu/mpc85xx/fdt.c|8

[U-Boot-Users] [PATCH v2] QE IO: Add initial data to pin configuration + read/write functions

2008-01-17 Thread David Saada
On the MPC83xx & MPC85xx architectures that have QE, add initial data to the pin configuration table (qe_iop_conf_tab). QE initialization tables in all relevant boards were also replaced. In addition, add IO pin read & write functions. Signed-off-by: David Saada <[EMAIL PROTECTED]> diff -purN a/

[U-Boot-Users] [PATCH] Merge Sequoia beautification into Korat code

2008-01-17 Thread Larry Johnson
Signed-off-by: Larry Johnson <[EMAIL PROTECTED]> --- board/korat/korat.c | 311 +++ 1 files changed, 141 insertions(+), 170 deletions(-) diff --git a/board/korat/korat.c b/board/korat/korat.c index 199c1ff..90fd0a7 100644 --- a/board/korat/korat.c

Re: [U-Boot-Users] [PATCH] ppc_4xx: Netstal HCU4 board: added various fixes and POST

2008-01-17 Thread Stefan Roese
On Wednesday 16 January 2008, Niklaus Giger wrote: > - Moved some common code to netstal/common/nm_bsp.c. > - sdram initialisation goes go netstal/common/fixed_sdram.c. > - Added support for POST. > - Stylistic cleanups (multi-line comments/ enforce 80 colomn width) > > Signed-off-by: Niklaus Giger

Re: [U-Boot-Users] [PATCH] ppc_4xx resubmit: netstal/common define routines used by all boards

2008-01-17 Thread Stefan Roese
On Wednesday 16 January 2008, Niklaus Giger wrote: > Added some routines used by all Netstal boards: > - nm_bsp.c: - nm_show_print and > - common_misc_init_r > - set_params_for_sw_install. Bery specific code to handle our SW > installation procedure > - fixed_sdram.c: Com

Re: [U-Boot-Users] [PATCH] ppc_4xx resubmit: Netstal HCU5 board. Added POST. Various fixes

2008-01-17 Thread Stefan Roese
On Wednesday 16 January 2008, Niklaus Giger wrote: > - Various fixes > - Reduced rom_size from 384 to 320 kB > - Environment is now in flash > - Added POST > - Support for OF > > Signed-off-by: Niklaus Giger <[EMAIL PROTECTED]> Applied, thanks. Best regards, Stefan ==

Re: [U-Boot-Users] [PATCH] ppc_4xx resubmit: Netstal HCU4 board. Added POST. Various fixes

2008-01-17 Thread Stefan Roese
On Wednesday 16 January 2008, Niklaus Giger wrote: > - Various fixes > - Reduced rom_size from 384 to 320 kB > - Environment is now in flash > - Added POST > - Support for OF > > Signed-off-by: Niklaus Giger <[EMAIL PROTECTED]> Applied, thanks. Niklaus, please move the "resubmit" (or something li

Re: [U-Boot-Users] [PATCH] ppc_4xx resubmit: Netstal HCU5 board: added various fixes and POST

2008-01-17 Thread Stefan Roese
On Wednesday 16 January 2008, Niklaus Giger wrote: > - Moved some common code to nestal/common/nm_bsp.c. > - Added support for the vxWorks EDR. > - Enable trace for Lauterbach, if present. > - Added support for POST. > - Stylistic cleanups (multi-line comments/ enforce 80 colomn width) > > Signed-o

[U-Boot-Users] [PATCH] ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5

2008-01-17 Thread Stefan Roese
Signed-off-by: Stefan Roese <[EMAIL PROTECTED]> --- board/netstal/hcu4/Makefile |4 ++-- board/netstal/hcu4/hcu4.c |1 + board/netstal/hcu5/Makefile |4 ++-- board/netstal/hcu5/hcu5.c |3 --- board/netstal/hcu5/sdram.c | 23 +++ 5 files changed, 16 insert

[U-Boot-Users] [GIT PULL v2][SH] Please pull git://www.denx.de/git/u-boot-sh.git/

2008-01-17 Thread Nobuhiro Iwamatsu
The following changes since commit 5dd372a23d12003276dddf7f9604154fd522ae73: Wolfgang Denk (1): Merge branch 'master' of git://www.denx.de/git/u-boot-ppc4xx are available in the git repository at: git://www.denx.de/git/u-boot-sh.git/ master Nobuhiro Iwamatsu (8): sh: Add MS7720

Re: [U-Boot-Users] [PATCH 4/5] mpc83xx: MPC8360E-RDK: add support for NAND

2008-01-17 Thread Anton Vorontsov
On Wed, Jan 16, 2008 at 12:31:02PM -0600, Kim Phillips wrote: > On Wed, 9 Jan 2008 20:57:58 +0300 > Anton Vorontsov <[EMAIL PROTECTED]> wrote: > > > > > Signed-off-by: Anton Vorontsov <[EMAIL PROTECTED]> > > --- > > board/freescale/mpc8360erdk/Makefile |2 +- > > board/freescale/mpc8360erdk/

[U-Boot-Users] [PATCH] ppc_4xx resubmit: netstal/common define routines used by all boards

2008-01-17 Thread Niklaus Giger
Added some routines used by all Netstal boards: - nm_bsp.c: - nm_show_print and - common_misc_init_r - set_params_for_sw_install. Very specific code to handle our SW installation procedure - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards to handle s

Re: [U-Boot-Users] Target support for qemu -M mips

2008-01-17 Thread Vlad Lungu
Shinya Kuribayashi wrote: [snip] >> Any opinions on using a single ldscript per platform, eventually >> preprocessed with gcc -E to allow >> for board-specific differences? At least for MIPS, all scripts are >> essentally the same. >> > > Looking at cpu/mpc5xxx/u-boot.lds, it seems good. Or

Re: [U-Boot-Users] [PATCH V4] ppc4xx: Complete DU440 board support

2008-01-17 Thread Stefan Roese
On Thursday 17 January 2008, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs <[EMAIL PROTECTED]> Applied, thanks. Best regards, Stefan = DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Muni

Re: [U-Boot-Users] [PATCH V4] ppc4xx: Add DU440 board support

2008-01-17 Thread Stefan Roese
On Thursday 17 January 2008, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs <[EMAIL PROTECTED]> Applied, thanks. Best regards, Stefan = DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Muni

Re: [U-Boot-Users] [PATCH] mpc83xx: Fix the fatal conflict of merge

2008-01-17 Thread Dave Liu
> The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7 > will cause the mpc8315erdb board can't boot up. Hi Wolfgang, I don't know when the merge window will close today, Because the patch fix the fatal conflict, I wish it can be merged to main tree in this window. If Kim can not take the patch t

[U-Boot-Users] [PATCH] mpc83xx: Fix the fatal conflict of merge

2008-01-17 Thread Dave Liu
The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7 will cause the mpc8315erdb board can't boot up. The patch fix that bug, and remove the duplicated #ifdef CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for MPC8313E processor. Signed-off-by: Dave Liu <[EMAIL PROTECTED]> --- cpu/mpc83xx/cpu_init.

[U-Boot-Users] [PATCH V4] ppc4xx: Add DU440 board support

2008-01-17 Thread Matthias Fuchs
Signed-off-by: Matthias Fuchs <[EMAIL PROTECTED]> --- board/esd/du440/Makefile | 51 +++ board/esd/du440/config.mk | 37 ++ board/esd/du440/du440.c| 1018 board/esd/du440/du440.h| 42 ++ board/esd/du440/init.S | 81 board/esd

[U-Boot-Users] [PATCH V4] ppc4xx: Complete DU440 board support

2008-01-17 Thread Matthias Fuchs
Signed-off-by: Matthias Fuchs <[EMAIL PROTECTED]> --- MAINTAINERS |1 + MAKEALL |1 + Makefile|3 + include/configs/DU440.h | 438 +++ 4 files changed, 443 insertions(+), 0 deletions(-) create mod

Re: [U-Boot-Users] [PATCH] pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver

2008-01-17 Thread Nobuhiro Iwamatsu
2008/1/16, Jon Loeliger <[EMAIL PROTECTED]>: > On Tue, 2008-01-15 at 11:46, Nobuhiro Iwamatsu wrote: > > Signed-off-by: Nobuhiro Iwamatsu <[EMAIL PROTECTED]> > > --- > > drivers/pcmcia/marubun_pcmcia.c |6 -- > > 1 files changed, 4 insertions(+), 2 deletions(-) > > > > diff --git a/drivers

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

2008-01-17 Thread Liu Dave
Ben, Please take 1) RTL8211B PHY patch for 8315ERDB board 2) Extend UEC to 4 patch. Into your tree. I hope we can merge them into main tree. Thanks, Dave > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf > Of Joakim Tjernlund > Sent: 2008?1?17? 5:2

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

2008-01-17 Thread Joakim Tjernlund
On Wed, 2008-01-16 at 15:16 -0500, Ben Warren wrote: > Kim Phillips wrote: > > On Wed, 16 Jan 2008 19:44:30 +0100 > > "Joakim Tjernlund" <[EMAIL PROTECTED]> wrote: > > > > > >> hmm, no "[PATCH] net: reduce boot latency on QE UEC based boards"? > >> Please don't forget this one. > >> > > >

[U-Boot-Users] PowerPC SDRAM size wrong

2008-01-17 Thread 楊 斌斌
Hello everyone! I used PowerPC MPC8245 CPU & u-boot1.3.1 to support my board. ■Q1 I had a problem when I ported u-boot. My SDRAM is 256M,but in my initdram() function, When I called get_ram_size(),the return value is 16K,the same as D-cache? Why? Can anyone help me. ■Q2 When disabled the MMU ,

Re: [U-Boot-Users] [PATCH 1/2] mpc83xx: add support for more system clock performance controls

2008-01-17 Thread Liu Dave
Kim, The patch also cause the MPC8315ERDB broken, the 8315ERDB can not boot up. The root cause is that the SATA clock is not correct. I will send one patch to fix it. Please merge it. Thanks, Dave > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf

[U-Boot-Users] [PATCH] sh: Remove CONFIG_COMMANDS from MS7720SE config file

2008-01-17 Thread Nobuhiro Iwamatsu
Signed-off-by: Nobuhiro Iwamatsu <[EMAIL PROTECTED]> --- include/configs/ms7720se.h |7 --- 1 files changed, 0 insertions(+), 7 deletions(-) diff --git a/include/configs/ms7720se.h b/include/configs/ms7720se.h index 8a94c28..7035002 100644 --- a/include/configs/ms7720se.h +++ b/include/c

Re: [U-Boot-Users] [PATCH] ppc_4xx resubmit: netstal/common define routines used by all boards

2008-01-17 Thread Stefan Roese
On Thursday 17 January 2008, Niklaus Giger wrote: > Added some routines used by all Netstal boards: > - nm_bsp.c: - nm_show_print and > - common_misc_init_r > - set_params_for_sw_install. Bery specific code to handle our SW > installation procedure > - fixed_sdram.c: Comm

Re: [U-Boot-Users] Target support for qemu -M mips

2008-01-17 Thread Shinya Kuribayashi
>> please update .lds to the latest board/dbau1x00/u-boot.lds, etc. >> I'd like to see >> . = .; >> > What does this do ? >> _gp = ALIGN(16) + 0x7ff0; It employs the output of `(CROSS_COMPILE)ld --verbose. It's a normal link script, so I just follow it. > Any opinions on using a sing

Re: [U-Boot-Users] [PATCH] Update 5121 fdt support to match latest kernel work.

2008-01-17 Thread Grzegorz Bernacki
John Rigby wrote: > Based on reviews on the linuxppc-dev mailing list > some changes have been made to the device tree. > This patch updates u-boot to be in sync with those > changes. > > Signed-off-by: John Rigby <[EMAIL PROTECTED]> > --- > cpu/mpc512x/cpu.c |2 -- > include/configs/

[U-Boot-Users] [PATCH] sh: Update SuperH SCIF driver

2008-01-17 Thread Nobuhiro Iwamatsu
This patch fixed wrong SH7720 CPU macro and changed macro that calculated value of SCBRR register. Signed-off-by: Nobuhiro Iwamatsu <[EMAIL PROTECTED]> --- drivers/serial/serial_sh.c | 32 ++-- 1 files changed, 14 insertions(+), 18 deletions(-) diff --git a/drivers/

[U-Boot-Users] [PATCH] ppc_4xx resubmit: netstal/common define routines used by all boards

2008-01-17 Thread Niklaus Giger
Added some routines used by all Netstal boards: - nm_bsp.c: - nm_show_print and - common_misc_init_r - set_params_for_sw_install. Bery specific code to handle our SW installation procedure - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards to handle s

[U-Boot-Users] [PATCH] 85xx: Convert MPC8568 MDS to new TLB setup

2008-01-17 Thread Kumar Gala
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/freescale/mpc8568mds/Makefile |4 +- board/freescale/mpc8568mds/init.S | 178 - board/freescale/mpc8568mds/tlb.c | 100 ++ board/freescale/mpc8568mds/u-boot.lds |2 - includ

[U-Boot-Users] [PATCH] 85xx: Convert ATUM8548 to new TLB setup

2008-01-17 Thread Kumar Gala
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/atum8548/Makefile|4 +- board/atum8548/init.S | 175 board/atum8548/tlb.c | 90 ++ board/atum8548/u-boot.lds |2 - include/configs/ATUM8548.h |1 +

[U-Boot-Users] [PATCH v2] 85xx: Reworked initial processor init

2008-01-17 Thread Kumar Gala
Reworked the initial processor initialzation sequence: * introduced cpu_early_init_f that is run in address space 1 (AS=1) * Moved TLB/LAW and CCSR init into cpu_early_init_f() * Reworked initial asm code to do most of the core init before TLBs The main reasons for these changes are to allow handl

[U-Boot-Users] [PATCH] 85xx: Convert MPC8540/MPC8560 ADS to new TLB setup

2008-01-17 Thread Kumar Gala
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/freescale/mpc8540ads/Makefile |3 +- board/freescale/mpc8540ads/init.S | 212 board/freescale/mpc8540ads/tlb.c | 130 board/freescale/mpc8540ads/u-boot.lds |2 - board

[U-Boot-Users] [PATCH v2] 85xx: Convert MPC8544 DS to new TLB setup

2008-01-17 Thread Kumar Gala
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/freescale/mpc8544ds/Makefile |4 +- board/freescale/mpc8544ds/init.S | 174 -- board/freescale/mpc8544ds/tlb.c | 99 +++ board/freescale/mpc8544ds/u-boot.lds |2 - include/

[U-Boot-Users] [PATCH] 85xx: Get ride of old TLB setup code

2008-01-17 Thread Kumar Gala
Now that all boards have been converted, remove old config code and the config option for the new style. Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- cpu/mpc85xx/cpu_init.c| 20 cpu/mpc85xx/tlb.c |2 -- include/configs/ATUM8548.h|1 - in

[U-Boot-Users] [PATCH] 85xx: Convert TQM85xx to new TLB setup

2008-01-17 Thread Kumar Gala
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/tqm85xx/Makefile|3 +- board/tqm85xx/init.S | 178 - board/tqm85xx/tlb.c | 114 + board/tqm85xx/u-boot.lds |2 - include/configs/TQM85xx.h |

[U-Boot-Users] [PATCH] 85xx: Convert STXGP3 & STXSSA to new TLB setup

2008-01-17 Thread Kumar Gala
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/stxgp3/Makefile|3 +- board/stxgp3/init.S | 219 -- board/stxgp3/tlb.c | 130 +++ board/stxgp3/u-boot.lds |2 - board/stxssa/Makefile|3 +-

[U-Boot-Users] [PATCH] 85xx: Convert MPC8540EVAL to new TLB setup

2008-01-17 Thread Kumar Gala
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/mpc8540eval/Makefile|3 +- board/mpc8540eval/init.S | 137 - board/mpc8540eval/tlb.c | 78 +++ board/mpc8540eval/u-boot.lds |2 - include/configs/MPC8540EV

  1   2   >