[U-Boot-Users] [PATCH] OneNAND Initial Program Loader (IPL) support

2008-01-16 Thread Kyungmin Park
Hi, This patch enables the OneNAND boot within U-Boot. Before this work, we used another OneNAND IPL called X-Loader based on open source. With this work, we can build the oneboot.bin image without other program. The build sequence is simple. First, it compiles the u-boot.bin Second, it compiles

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

2008-01-16 Thread Stefan Roese
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 changed, 6 insertions(+), 6 deletion

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

2008-01-16 Thread Stefan Roese
On Wednesday 16 January 2008, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs <[EMAIL PROTECTED]> Comments below. > --- > MAINTAINERS |1 + > MAKEALL |1 + > Makefile|3 + > include/configs/DU440.h | 435 > ++

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

2008-01-16 Thread Stefan Roese
On Wednesday 16 January 2008, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs <[EMAIL PROTECTED]> Please find some comments below. > +++ b/board/esd/du440/du440.c > @@ -0,0 +1,1018 @@ > +/* > +/* > + * pci_pre_init > + * > + * This routine is called just prior to registering the hose and

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

2008-01-16 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

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

2008-01-16 Thread Matthias Fuchs
[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]> --- README|4 net/eth.c |9

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

2008-01-16 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 | 104 board/freescale/mpc8544ds/u-boot.lds |2 - includ

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

2008-01-16 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: Introduce new tlb API

2008-01-16 Thread Kumar Gala
Add a set of functions to manipulate TLB entries: * set_tlb() - write a tlb entry * invalidate_tlb() - invalidate a tlb array * disable_tlb() - disable a variable size tlb entry * init_tlbs() - setup initial tlbs based on static table Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- cpu/mpc8

[U-Boot-Users] [PATCH] Remove duplicate defines for ARRAY_SIZE

2008-01-16 Thread Kumar Gala
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- cpu/arm926ejs/cpuinfo.c |2 -- drivers/mtd/jedec_flash.c |4 drivers/net/rtl8169.c |2 -- include/common.h |2 ++ 4 files changed, 2 insertions(+), 8 deletions(-) diff --git a/cpu/arm926ejs/cpuinfo.c b/cpu/arm9

Re: [U-Boot-Users] u-boot on M5275EVB?

2008-01-16 Thread David van Geest
TsiChung, Thanks for your reply. I'll focus my efforts on 1.3.1, adjusting code from the M5271EVB. Through some rather sketchy adjustments, I actually have it compiling now. Here's what I did in addition to my previous efforts: 1. Changed the line in immap.h to #if defined(CONFIG_M5271) || defi

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

2008-01-16 Thread Ben Warren
This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board. This board has an ST M25P40 4Mbit EEPROM on its SPI bus Signed-off-by: Ben Warren <[EMAIL PROTECTED]> --- board/freescale/mpc8349emds/mpc8349emds.c | 29 + include/configs/MPC8349EMDS.h

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

2008-01-16 Thread Ben Warren
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. Signed-off-by: Ben Warren <[EMAIL PROTECTED]> --- Makefile |

[U-Boot-Users] [PATCH v2 0/2] Hard SPI driver for MPC8xxx

2008-01-16 Thread Ben Warren
Hello, I've tried to generalize this driver a bit. There's no specific urgency, so it's no big deal if it doesn't go into 1.3.2. regards, Ben - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R)

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

2008-01-16 Thread Ben Warren
Hi Tsi-Chung, Tsi-Chung Liew wrote: > + > +static int fec_send(struct eth_device *dev, volatile void *packet, int > length); > +static int fec_recv(struct eth_device *dev); > +static int fec_init(struct eth_device *dev, bd_t * bd); > +static void fec_halt(struct eth_device *dev); > You don't

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

2008-01-16 Thread Dave Liu
On Wed, 2008-01-16 at 00:38 -0600, Kim Phillips wrote: > System registers that are modified are the Arbiter Configuration > Register (ACR), the System Priority Control Register (SPCR), and the > System Clock Configuration Register (SCCR). > > Signed-off by: Michael F. Reiss <[EMAIL PROTECTED]> > S

[U-Boot-Users] [PATCH] ColdFire: Add MCF547x_8x FEC driver

2008-01-16 Thread Tsi-Chung Liew
From: TsiChungLiew <[EMAIL PROTECTED]> Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- drivers/net/Makefile |1 + drivers/net/fsl_mcdmafec.c | 583 net/eth.c |4 + 3 files changed, 588 insertions(+), 0 deletions(-)

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

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

Re: [U-Boot-Users] u-boot on M5275EVB?

2008-01-16 Thread Liew Tsi Chung
David, > Also, can anyone tell me the differences between U-boot 1.1.6 and > 1.3.1? There are many changes since 1.1.6. It is better start off the development from 1.3.1 than from 1.1.6. >Are you saying that I can use the exact same code for the M5275EVB > as the M5272C3? After comparing 5

Re: [U-Boot-Users] ColdFire patches

2008-01-16 Thread Liew Tsi Chung
Resend. Ignore the first patch. -Original Message- From: Ben Warren [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 16, 2008 4:17 PM To: Liew Tsi Chung Cc: [EMAIL PROTECTED]; U-Boot-Users; Rigby John Subject: Re: [U-Boot-Users] ColdFire patches Liew Tsi Chung wrote: > Ben, > >

[U-Boot-Users] [GIT PULL] MIPS updates

2008-01-16 Thread Shinya Kuribayashi
Dear Wolfgang, please pull MIPS updates. It's a interesting QEMU target. The following changes since commit 4c9e98ace78e7de972adf7da7135a46ec0a4ee7e: Wolfgang Denk (1): Merge branch 'master' of git://www.denx.de/git/u-boot-mpc86xx are available in the git repository at: git://www.de

Re: [U-Boot-Users] resend #5: [PATCH 2/5]: add AcTux-1 board support

2008-01-16 Thread Michael Schwingen
Jean-Christophe PLAGNIOL-VILLARD wrote: > Ack but when applying I will do this change > > -#if (CONFIG_COMMANDS & CFG_CMD_PCI) || defined(CONFIG_PCI) > +#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI) > It is OK for me if you do the change. cu Michael --

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

2008-01-16 Thread Shinya Kuribayashi
Vlad Lungu wrote: > With serial, NE2000, IDE support. Tested in big-endian mode. > Memory size hard-coded to 128M for now, so don't play with > the -m option. > > Signed-off-by: Vlad Lungu <[EMAIL PROTECTED]> > --- > MAINTAINERS |3 + > MAKEALL |1

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

2008-01-16 Thread Ben Warren
Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]> you wrote: > >>> Except that the length should be 128 to match the boot file name >>> length that BOOTP / DHCP can pass as per RFC. >>> >> Personnaly, I'll prefer 1K length because if you use as I use a lost of >> time a full path

Re: [U-Boot-Users] resend #5: [PATCH 2/5]: add AcTux-1 board support

2008-01-16 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:50 Wed 16 Jan , Michael Schwingen wrote: > Signed-off-by: Michael Schwingen <[EMAIL PROTECTED]> > > diff --git a/board/actux1/Makefile b/board/actux1/Makefile > new file mode 100644 > index 000..83611e7 > + > +#if (CONFIG_COMMANDS & CFG_CMD_PCI) || defined(CONFIG_PCI) > +extern stru

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

2008-01-16 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > > Except that the length should be 128 to match the boot file name > > length that BOOTP / DHCP can pass as per RFC. > > Personnaly, I'll prefer 1K length because if you use as I use a lost of > time a full path when downloading uImage or other so

Re: [U-Boot-Users] resend #5: [PATCH 3/5]: add AcTux-2 board support

2008-01-16 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:51 Wed 16 Jan , Michael Schwingen wrote: > Signed-off-by: Michael Schwingen <[EMAIL PROTECTED]> > > diff --git a/board/actux2/Makefile b/board/actux2/Makefile > new file mode 100644 Ack. Best Regards, J. - This SF.

Re: [U-Boot-Users] resend #5: [PATCH 4/5]: add AcTux-3 board support

2008-01-16 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:51 Wed 16 Jan , Michael Schwingen wrote: > Signed-off-by: Michael Schwingen <[EMAIL PROTECTED]> > > diff --git a/board/actux3/Makefile b/board/actux3/Makefile > new file mode 100644 > index 000..f6168c3 Ack. Best Regards, J.

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

2008-01-16 Thread John Rigby
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/ads5121.h |6 +++--- 2 files cha

Re: [U-Boot-Users] resend #5: [PATCH 5/5]: add AcTux-4 board support

2008-01-16 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:53 Wed 16 Jan , Michael Schwingen wrote: > Signed-off-by: Michael Schwingen <[EMAIL PROTECTED]> > > diff --git a/board/actux4/Makefile b/board/actux4/Makefile > new file mode 100644 > index 000..845af93 > --- /dev/null Ack. Best Regards. J.

Re: [U-Boot-Users] [PATCH] net: fix handling of 'ethrotate' environment variable

2008-01-16 Thread Ben Warren
Hi Matthias, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs <[EMAIL PROTECTED]> > --- > net/eth.c |9 + > net/net.c |9 + > 2 files changed, 10 insertions(+), 8 deletions(-) > > diff --git a/net/eth.c b/net/eth.c > index 5d9e9c1..d55fd7e 100644 > --- a/net/eth.c > +

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

2008-01-16 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:26 Wed 16 Jan , Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]> you wrote: > > > > #define MAX_LEN 80 > > static char tftp_filename[MAX_LEN]; > > > > strncpy(tftp_filename, str, MAX_LEN); > > tftp_filename[MAX_LEN-1] = 0; > > > > May be truncated, but never overruns. > > Acked-b

Re: [U-Boot-Users] ColdFire patches

2008-01-16 Thread Ben Warren
Liew Tsi Chung wrote: > Ben, > > Are you referring to fecdma_initialize() in > drivers/net/fsl_mcdmafec.c and net/eth.c? If it is, the changes had > applied. You and I agreed on last email that renamed to > mcdmafec_initialize(). > In the new file, drivers/net/fsl_mcdmafec.c, most of the f

Re: [U-Boot-Users] ColdFire patches

2008-01-16 Thread Liew Tsi Chung
Ben, Are you referring to fecdma_initialize() in drivers/net/fsl_mcdmafec.c and net/eth.c? If it is, the changes had applied. You and I agreed on last email that renamed to mcdmafec_initialize(). http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg00310. html Regards, TsiCh

[U-Boot-Users] resend #5: [PATCH 2/5]: add AcTux-1 board support

2008-01-16 Thread Michael Schwingen
Signed-off-by: Michael Schwingen <[EMAIL PROTECTED]> diff --git a/board/actux1/Makefile b/board/actux1/Makefile new file mode 100644 index 000..83611e7 --- /dev/null +++ b/board/actux1/Makefile @@ -0,0 +1,50 @@ +# +# (C) Copyright 2000-2006 +# Wolfgang Denk, DENX Software Engineering, [EMAIL P

[U-Boot-Users] resend #5: [PATCH 4/5]: add AcTux-3 board support

2008-01-16 Thread Michael Schwingen
Signed-off-by: Michael Schwingen <[EMAIL PROTECTED]> diff --git a/board/actux3/Makefile b/board/actux3/Makefile new file mode 100644 index 000..f6168c3 --- /dev/null +++ b/board/actux3/Makefile @@ -0,0 +1,50 @@ +# +# (C) Copyright 2000-2006 +# Wolfgang Denk, DENX Software Engineering, [EMAIL P

[U-Boot-Users] resend #5: [PATCH 3/5]: add AcTux-2 board support

2008-01-16 Thread Michael Schwingen
Signed-off-by: Michael Schwingen <[EMAIL PROTECTED]> diff --git a/board/actux2/Makefile b/board/actux2/Makefile new file mode 100644 index 000..37fd262 --- /dev/null +++ b/board/actux2/Makefile @@ -0,0 +1,50 @@ +# +# (C) Copyright 2000-2006 +# Wolfgang Denk, DENX Software Engineering, [EMAIL P

[U-Boot-Users] resend #5: [PATCH 5/5]: add AcTux-4 board support

2008-01-16 Thread Michael Schwingen
Signed-off-by: Michael Schwingen <[EMAIL PROTECTED]> diff --git a/board/actux4/Makefile b/board/actux4/Makefile new file mode 100644 index 000..845af93 --- /dev/null +++ b/board/actux4/Makefile @@ -0,0 +1,50 @@ +# +# (C) Copyright 2000-2006 +# Wolfgang Denk, DENX Software Engineering, [EMAIL P

[U-Boot-Users] resend #5: [PATCH 1/5]: add AcTux board support (common)

2008-01-16 Thread Michael Schwingen
Hi, here is the next update of the AcTux patch set - I found some comments that still referred to the wrong boards, and added comments to the ethernet switch init code. The patch adds 4 boards, called AcTux-1..AcTux-4. This patch contains the files that contain changes for multiple boards (MAINTA

Re: [U-Boot-Users] ColdFire patches

2008-01-16 Thread Ben Warren
Liew Tsi Chung wrote: > Wolfgang, > > Are all the ColdFire patches ok to commit? > > Thanks. > > Regards, > TsiChung > > > Waiting for you to make the functions in the ethernet driver static. regards, Ben > - >

[U-Boot-Users] [PATCH] 86xx: enable command-line editing

2008-01-16 Thread Timur Tabi
Enable command-line editing for all MPC86xx boards. Signed-off-by: Timur Tabi <[EMAIL PROTECTED]> --- include/configs/MPC8610HPCD.h |1 + include/configs/MPC8641HPCN.h |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/configs/MPC8610HPCD.h b/include/configs/MPC8

[U-Boot-Users] ColdFire patches

2008-01-16 Thread Liew Tsi Chung
Wolfgang, Are all the ColdFire patches ok to commit? Thanks. Regards, TsiChung - 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] TFTP: add host ip addr support

2008-01-16 Thread Ben Warren
Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]> you wrote: > >> #define MAX_LEN 80 >> static char tftp_filename[MAX_LEN + 1]; >> memset(tftp_filename[MAX_LEN], 0, 1); >> > > warning: passing argument 1 of 'memset' makes pointer from integer without a > cast > > 10-second response,

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

2008-01-16 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > #define MAX_LEN 80 > static char tftp_filename[MAX_LEN]; > > strncpy(tftp_filename, str, MAX_LEN); > tftp_filename[MAX_LEN-1] = 0; > > May be truncated, but never overruns. Acked-by: [EMAIL PROTECTED] :-) Except that the length should be 128 to m

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

2008-01-16 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > #define MAX_LEN 80 > static char tftp_filename[MAX_LEN + 1]; > memset(tftp_filename[MAX_LEN], 0, 1); warning: passing argument 1 of 'memset' makes pointer from integer without a cast > strncpy(tftp_filename, str, MAX_LEN); > > > Better? No, defini

Re: [U-Boot-Users] Pull Request for git://www.denx.de/git/u-boot-mpc86xx.git

2008-01-16 Thread Jon Loeliger
Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]> you wrote: >> Wolfgang, >> >> Please pull the u-boot-mpc86xx custodian repository! >> > Done! Thanks! > May I ask why you're adding such long (>115 chars) lines of spaces to > your pull requests? Interesting. It came from "git pull-request"

Re: [U-Boot-Users] Pull Request for git://www.denx.de/git/u-boot-mpc86xx.git

2008-01-16 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > Wolfgang, > > Please pull the u-boot-mpc86xx custodian repository! > > Thanks, > jdl > > > > The following changes since commit cd9d23053d435c08fc8695017b5cb9003fcda786: > Anton Vorontsov (1): > nand: FSL UPM NAND driver >

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

2008-01-16 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > WD, please pull support for two new boards (mpc8315erdb and > mpc837xerdb), and some fixes for some bugs that crept in recently: > > The following changes since commit cd9d23053d435c08fc8695017b5cb9003fcda786: > Anton Vorontsov (1): > nand: FSL

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

2008-01-16 Thread McMullan, Jason
This one gets my vote: #define MAX_LEN 80 static char tftp_filename[MAX_LEN]; strncpy(tftp_filename, str, MAX_LEN); tftp_filename[MAX_LEN-1] = 0; May be truncated, but never overruns. - Jason McMullan Network Appliance, Inc. signature.asc Description: This is a digitally signed message p

Re: [U-Boot-Users] Merge Window

2008-01-16 Thread Stefan Roese
Hi Darcy, On Wednesday 16 January 2008, Darcy Watkins wrote: > The merge window closes soon after the 17th right? Correct. Ups, that's tomorrow. I have to hurry then. :) > Will there be a release candidate soon after that? Sure. > When? No idea. Pretty soon I suppose. > I have an arch/power

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

2008-01-16 Thread Ben Warren
Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]> you wrote: > >>> But I diaagree about strncpy because you need to known the size of >>> the string and we know it only when we use the default_filename otherwise >>> we need to strlen and in this strcpy do every thing itself. >>> >>> >>>

[U-Boot-Users] resend#2 [PATCH 2/8] ColdFire: Add MCF547x_8x related header files

2008-01-16 Thread Tsi-Chung Liew
Signed-off-by: TsiChungLiew <[EMAIL PROTECTED]> --- include/asm-m68k/fec.h | 145 ++-- include/asm-m68k/fsl_mcdmafec.h | 167 + include/asm-m68k/immap.h | 93 +++ include/asm-m68k/immap_547x_8x.h | 297 ++ include/asm-m68k/m547x_8

Re: [U-Boot-Users] [PATCH v3] QE UEC: Extend number of supported UECs to 4

2008-01-16 Thread David Saada
> I was able to apply this with a little manual tweaking. I had to remove > the '>' from in front > of each "diff -purN", and change the following patterns: > > --- /file.orig > +++ /file > > becomes: > > --- a/file > +++ b/file > > I'll send a pull request tomorrow to pick this up. > > thank

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

2008-01-16 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > > But I diaagree about strncpy because you need to known the size of > > the string and we know it only when we use the default_filename otherwise > > we need to strlen and in this strcpy do every thing itself. > > > > > strncpy copies AT MOST 'n' by

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

2008-01-16 Thread Ben Warren
Jean-Christophe PLAGNIOL-VILLARD wrote: > On 10:49 Wed 16 Jan , Ben Warren wrote: > >> Jean-Christophe PLAGNIOL-VILLARD wrote: >> >>> On 22:19 Tue 15 Jan , Ben Warren wrote: >>> >>> Jean-Christophe PLAGNIOL-VILLARD wrote: > allow to use a d

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

2008-01-16 Thread Ben Warren
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. >> > > That's in the networking arena, so I sent that to Ben Warren. Since I >

[U-Boot-Users] [PATCH] Fix CONFIG_MMC usage in fat code

2008-01-16 Thread Andy Fleming
A #if statement in fat.c depended on CONFIG_MMC, instead of defined(CONFIG_MMC). This meant CONFIG_MMC needed to be defined as "1" rather than just defined. Now it's better. Signed-off-by: Andy Fleming <[EMAIL PROTECTED]> --- fs/fat/fat.c |2 +- 1 files changed, 1 insertions(+), 1 deletions

Re: [U-Boot-Users] CUSTODIANS: List of open issues / not applied patches

2008-01-16 Thread Wolfgang Denk
Dear Peter, in message <[EMAIL PROTECTED]> you wrote: > ACK > > Regards > > Peter Could you please explain how we should interpret this message? You see, the end of the merge window is coming close, and we haven't seen any pull request (nor any other feedback to the ARM related patches) fr

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

2008-01-16 Thread Kim Phillips
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. That's in the networking arena, so I sent that to Ben Warren. Since I haven't heard back from him, I assume he'

[U-Boot-Users] Pull Request for git://www.denx.de/git/u-boot-mpc86xx.git

2008-01-16 Thread Jon Loeliger
Wolfgang, Please pull the u-boot-mpc86xx custodian repository! Thanks, jdl The following changes since commit cd9d23053d435c08fc8695017b5cb9003fcda786: Anton Vorontsov (1): nand: FSL UPM NAND driver

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

2008-01-16 Thread Joakim Tjernlund
> -Ursprungligt meddelande- > Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > För Kim Phillips > Skickat: den 16 januari 2008 19:39 > Till: Wolfgang Denk > Kopia: u-boot-users@lists.sourceforge.net > Ämne: [U-Boot-Users] Please pull u-boot-mpc83xx.git > > WD, please pull support for tw

[U-Boot-Users] [PATCH v2] Remove #undef DEBUGx and #define DEBUG from all board header files

2008-01-16 Thread Timur Tabi
Remove the "#undef DEBUG" and other DEBUG_xxx lines from all board header files. Also remove the "#define DEBUG" and other DEBUG_xxx lines from all board header files. The inclusion of these line makes it impossible to control debug on a per-file basis. Signed-off-by: Timur Tabi <[EMAIL PROTECTE

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

2008-01-16 Thread Kim Phillips
WD, please pull support for two new boards (mpc8315erdb and mpc837xerdb), and some fixes for some bugs that crept in recently: The following changes since commit cd9d23053d435c08fc8695017b5cb9003fcda786: Anton Vorontsov (1): nand: FSL UPM NAND driver are available in the git repository

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

2008-01-16 Thread Kim Phillips
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/nand.c | 73 > ++ > include/configs/MPC83

[U-Boot-Users] [PATCH] FSL: Generalize PIXIS reset command parsing.

2008-01-16 Thread Jon Loeliger
From: James Yang <[EMAIL PROTECTED]> Before, the order of arguments to the pixis_reset command needed to be supplied in a hard-coded order. Generalize the command parsing to allow any order. Signed-off-by: James Yang <[EMAIL PROTECTED]> Acked-by: Jon Loeliger <[EMAIL PROTECTED]> --- board/freesc

Re: [U-Boot-Users] [PATCH] Remove #undef DEBUGx from all board header files

2008-01-16 Thread Timur Tabi
Kim Phillips wrote: > did I not just warn you about this? Yes, sorry! I didn't read your email thoroughly enough. New patch coming. -- Timur Tabi Linux kernel developer at Freescale - This SF.net email is sponsored by: M

Re: [U-Boot-Users] [PATCH] Remove #undef DEBUGx from all board header files

2008-01-16 Thread Kim Phillips
On Wed, 16 Jan 2008 11:27:21 -0600 Timur Tabi <[EMAIL PROTECTED]> wrote: > diff --git a/include/configs/ads5121.h b/include/configs/ads5121.h > index a4de552..681b81b 100644 > --- a/include/configs/ads5121.h > +++ b/include/configs/ads5121.h > @@ -28,7 +28,6 @@ > #define __CONFIG_H > > #define

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

2008-01-16 Thread Niklaus Giger
- 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 <[EMAIL PROTECTED]> --- board/netstal/hcu4/Makefile |4 +

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

2008-01-16 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] ppc_4xx resubmit: Netstal HCU5 board: added various fixes and POST

2008-01-16 Thread Niklaus Giger
- 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-off-by: Niklaus Giger <[EMAIL PROTECTED]> --- board/netstal/hcu5

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

2008-01-16 Thread Niklaus Giger
- 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]> --- board/netstal/hcu5/config.mk |2 +- board/netstal/hcu5/u-boot.lds |2 +- include/configs/hcu5.h| 136 +++

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

2008-01-16 Thread Niklaus Giger
- 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]> --- board/netstal/hcu4/config.mk |2 +- include/configs/hcu4.h | 115 - 2 files cha

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

2008-01-16 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:49 Wed 16 Jan , Ben Warren wrote: > Jean-Christophe PLAGNIOL-VILLARD wrote: > > On 22:19 Tue 15 Jan , Ben Warren wrote: > > > >> Jean-Christophe PLAGNIOL-VILLARD wrote: > >> > >>> allow to use a different server as set in serverip > >>> > >>> Signed-off-by: Jean-Christophe PLA

Re: [U-Boot-Users] resend #4: [PATCH 4/5]: add AcTux-3 board support

2008-01-16 Thread Michael Schwingen
On Wed, Jan 16, 2008 at 11:21:56AM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote: > > > > > > Could you specify cleary in each baord file on which do you work > > ??? > > > and > > > please be more explicit about his constants, rather than using magic > > > numbers. > > > > > The chip documen

[U-Boot-Users] [PATCH v2] MIPS:Target support for qemu -M mips

2008-01-16 Thread Vlad Lungu
With serial, NE2000, IDE support. Tested in big-endian mode. Memory size hard-coded to 128M for now, so don't play with the -m option. Signed-off-by: Vlad Lungu <[EMAIL PROTECTED]> --- MAINTAINERS |3 + MAKEALL |1 + Makefile

[U-Boot-Users] [PATCH] Remove #undef DEBUGx from all board header files

2008-01-16 Thread Timur Tabi
Remove the "#undef DEBUG" and other DEBUG_xxx lines from all 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 included. Signed-off-by: Timur Tabi <[EMAIL

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

2008-01-16 Thread Vlad Lungu
Shinya Kuribayashi wrote: > Dear Vlad, > > There are some coding style issues, but I'm fine with contents of the > patch itself. Please find comments below and resubmit. > > > My God, you are worse than ze germans! Sorry Wolfgang, I had to say it :-) [snip] > please update .lds to the latest bo

[U-Boot-Users] [PATCH v2] FSL: Convert board/freescale/common/Makefile to use CONFIG_

2008-01-16 Thread Jon Loeliger
Subject: [PATCH] FSL: Convert board/freescale/common/Makefile to use CONFIG_ Convert the board/freescale/common/Makefile to use CONFIG_* options to select which files to conditionally compile into the board/freescale/common library rather than conditionally compiling entire files. Now handles::

Re: [U-Boot-Users] [PATCH] TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus

2008-01-16 Thread Andy Fleming
On Jan 16, 2008 5:40 AM, <[EMAIL PROTECTED]> wrote: > The current TSEC driver limits MDIO access to the devices that have been > configured as attached > to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus > through the 'mii' commands. > > Signed-off-by: Michael Firth <[EMA

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

2008-01-16 Thread Andy Fleming
On Jan 16, 2008 3:00 AM, David Saada <[EMAIL PROTECTED]> wrote: > > So, would you like me to repost this patch, with the added argument in > all the relevant board tables? Yes, that would be great. > Another thing regarding this: I also have debug commands for > reading/writing parallel I/O pins

[U-Boot-Users] Merge Window

2008-01-16 Thread Darcy Watkins
Hello, The merge window closes soon after the 17th right? Will there be a release candidate soon after that? When? I have an arch/powerpc (not arch/ppc) 2.6.23 kernel for AMCC 405EP using a cuImage that launches from old style U-Boot (the version shipped with the Taihu and a 1.3.0-rc2 in our ow

Re: [U-Boot-Users] [PATCH] FSL: Convert board/freescale/common/Makefile to use CONFIG_

2008-01-16 Thread Jon Loeliger
On Tue, 2008-01-15 at 16:59, Grant Likely wrote: > Nit: Don't do it this way; do this instead (to match the style used in > other Makefiles): > > -SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) > +SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c) Double nit-nit: You actually have to cover OBJS as well as SRCS

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

2008-01-16 Thread Kim Phillips
On Wed, 16 Jan 2008 09:00:48 -0600 Timur Tabi <[EMAIL PROTECTED]> wrote: > I'm a Freescale employee (as are you), and so I'm not going to post a patch > that > makes an untested changed to someone else's boards. And since 83xx is > separate afaict, it's a trivial patch (minus the ads5121 whi

[U-Boot-Users] [PATCHv2] [ads5121] Set ips dividor to 1/3 of csb clock.

2008-01-16 Thread Grzegorz Bernacki
Previous setting cause ips clock to be out of spec. This bug was found by John Rigby from Freescale. Signed-off-by: Grzegorz Bernacki <[EMAIL PROTECTED]> diff --git a/include/mpc512x.h b/include/mpc512x.h index a06b5c6..b51cf78 100644 --- a/include/mpc512x.h +++ b/include/mpc512x.h @@ -185,7 +185

Re: [U-Boot-Users] [PATCH] FSL: Convert board/freescale/common/Makefile to use CONFIG_

2008-01-16 Thread Grant Likely
On 1/16/08, Jon Loeliger <[EMAIL PROTECTED]> wrote: > On Tue, 2008-01-15 at 16:59, Grant Likely wrote: > > > Nit: Don't do it this way; do this instead (to match the style used in > > other Makefiles): > > > > +COBJS-y:= pq-mds-pib.o > > +COBJS-${CONFIG_ID_EEPROM}+= sys_eeprom.o > > +CO

[U-Boot-Users] [PATCH] 85xx: Use proper defines for PCI addresses

2008-01-16 Thread Kumar Gala
We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE. While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only be used for configuring the PCI ATMU. Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/freescale/mpc8540ads/init.S |8 board/frees

Re: [U-Boot-Users] [PATCH] FSL: Convert board/freescale/common/Makefile to use CONFIG_

2008-01-16 Thread Jon Loeliger
On Tue, 2008-01-15 at 16:41, Kim Phillips wrote: > On Tue, 15 Jan 2008 15:21:09 -0600 > Jon Loeliger <[EMAIL PROTECTED]> wrote: > > > > -COBJS := sys_eeprom.o \ > > - pixis.o \ > > - pq-mds-pib.o \ > > - fsl_logo_bmp.o \ > > - fsl_diu_fb.o > > +COBJS := pq-mds-p

Re: [U-Boot-Users] [PATCH] FSL: Convert board/freescale/common/Makefile to use CONFIG_

2008-01-16 Thread Jon Loeliger
On Tue, 2008-01-15 at 16:59, Grant Likely wrote: > Nit: Don't do it this way; do this instead (to match the style used in > other Makefiles): > > +COBJS-y:= pq-mds-pib.o > +COBJS-${CONFIG_ID_EEPROM}+= sys_eeprom.o > +COBJS-${CONFIG_FSL_DIU_FB} += fsl_diu_fb.o fsl_logo_bmp.o > +COBJS

Re: [U-Boot-Users] [PATCH] [ads5121] Set ips dividor to 1/4 of csb clock.

2008-01-16 Thread John Rigby
Grzegorz, Sorry I got an update from the hw people today and the recommended freq for the ips is 66MHz so we need to change the divider to 0x3. I'm pretty sure this is final. John Grzegorz Bernacki wrote: > Previous setting cause ips clock to be out of spec. This bug was found by John > Rigby f

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

2008-01-16 Thread Ben Warren
Jean-Christophe PLAGNIOL-VILLARD wrote: > On 22:19 Tue 15 Jan , Ben Warren wrote: > >> Jean-Christophe PLAGNIOL-VILLARD wrote: >> >>> allow to use a different server as set in serverip >>> >>> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> >>> >>> diff --git a/commo

[U-Boot-Users] [PATCH 9/9] 85xx: Remove old style of LAW init

2008-01-16 Thread Kumar Gala
All boards are now using the new fsl_law code so we can drop the old version. Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- cpu/mpc85xx/spd_sdram.c | 10 -- cpu/mpc85xx/start.S | 18 -- 2 files changed, 0 insertions(+), 28 deletions(-) diff --git a/cpu/mpc85xx

[U-Boot-Users] [PATCH 8/9] 85xx: convert remaining 85xx boards over to use new LAW init code

2008-01-16 Thread Kumar Gala
Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over to use new LAW init code. Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/atum8548/Makefile |2 +- board/atum8548/init.S | 60 - board/atum8548/law.c

[U-Boot-Users] [PATCH 7/9] 85xx: convert STXGP3/STXSSA over to use new LAW init code

2008-01-16 Thread Kumar Gala
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/stxgp3/Makefile|3 +- board/stxgp3/init.S | 53 board/stxgp3/law.c | 58 board/stxssa/Makefile|2 +- board/stxssa/init.S

[U-Boot-Users] [PATCH 6/9] 85xx: convert PM854/PM856 over to use new LAW init code

2008-01-16 Thread Kumar Gala
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/pm854/Makefile|3 +- board/pm854/init.S | 53 -- board/pm854/law.c | 58 +++ board/pm856/Makefile|3 +- board/pm856/init.S

[U-Boot-Users] [PATCH 5/9] 85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code

2008-01-16 Thread Kumar Gala
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/sbc8548/Makefile|3 +- board/sbc8548/init.S | 48 board/sbc8548/law.c | 57 ++ board/sbc8560/Makefile|3 +- board/sbc8560/init.S

[U-Boot-Users] [PATCH 4/9] 85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code

2008-01-16 Thread Kumar Gala
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/freescale/mpc8541cds/Makefile |2 +- board/freescale/mpc8541cds/init.S | 51 board/freescale/mpc8541cds/law.c| 58 +++ board/freescale/mpc8548cds/Makefile |2 +- board/freesc

[U-Boot-Users] [PATCH 3/9] 85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code

2008-01-16 Thread Kumar Gala
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/freescale/mpc8540ads/Makefile |3 +- board/freescale/mpc8540ads/init.S | 53 board/freescale/mpc8540ads/law.c| 58 +++ board/freescale/mpc8560ads/Makefile |3

[U-Boot-Users] [PATCH 2/9] 85xx: convert MPC8544 DS over to use new LAW init code

2008-01-16 Thread Kumar Gala
Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- board/freescale/mpc8544ds/Makefile |2 +- board/freescale/mpc8544ds/init.S | 48 board/freescale/mpc8544ds/law.c| 42 +++ include/configs/MPC8544DS.h|2 + 4

[U-Boot-Users] [PATCH 1/9 v2] 85xx: Move LAW init code into C

2008-01-16 Thread Kumar Gala
Move the initialization of the LAWs into C code and provide an API to allow modification of LAWs after init. Board code is responsible to provide a law_table and num_law_entries. We should be able to use the same code on 86xx as well. Signed-off-by: Kumar Gala <[EMAIL PROTECTED]> --- This whole

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

2008-01-16 Thread Matthias Fuchs
Hi Stefan, my last posting was totally out of place and I didn't want to undermine your authority. You are are doing an excellent job as the maintainer of your U-Boot subsystems. Please keep on nagging on my (and others) patches! Sorry. Matthias ---

  1   2   >