[U-Boot] [PATCH] ppc/85xx: add ld script file for boot from NAND

2009-09-22 Thread Mingkai Hu
The first stage 4K image uses a seperate ld script file to generate 4K image. This patch moves it to the cpu/mpc85xx/* to make it avaliable for 85xx platform. Signed-off-by: Mingkai Hu --- ChangeLog: - move from board specific directory to cpu/mpc85xx/*, make it avalible for 85xx platform.

[U-Boot] [PATCH] ppc/85xx: add cpu init config file for boot from NAND

2009-09-22 Thread Mingkai Hu
When boot from NAND, the NAND flash must be connected to br/or0. Also init RAM(L2 SRAM or DDR SDRAM) for load the second image to it. Signed-off-by: Mingkai Hu --- ChangeLog: - move the board specific config for br/or to board init file, i.e. nand_spl/board/freescale/mpc8536ds/nand_boot.c, w

[U-Boot] [PATCH] immap_85xx: add porpllsr's plat ratio definition

2009-09-22 Thread Mingkai Hu
Signed-off-by: Mingkai Hu --- include/asm-ppc/immap_85xx.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/asm-ppc/immap_85xx.h b/include/asm-ppc/immap_85xx.h index e7d412d..39fdb8e 100644 --- a/include/asm-ppc/immap_85xx.h +++ b/include/asm-ppc/immap_85xx.h @@ -

[U-Boot] [PATCH] This modification will make the binay of smdk6400 nand spl in correct size

2009-09-22 Thread sun peng
When I'm playing with u-boot I found that the size of smdk6400 nand spl binary image can't pad to 4K. So I make some minor change to the config.mk file to achieve the correct padding size. Signed-off-by: Sunpeng --- nand_spl/board/samsung/smdk6400/config.mk |2 +- 1 files changed, 1 insertio

[U-Boot] [PATCH] 85xx-fdt: Fixed l2-ctlr's compatible prop for QorIQ

2009-09-22 Thread Vivek Mahajan
This patch does the following:- * Fixes l2 cache controller's compatible string for QorIQ * Revamps its copyright Signed-off-by: Vivek Mahajan --- cpu/mpc85xx/fdt.c | 13 ++--- 1 files changed, 10 insertions(+), 3 deletions(-) diff --git a/cpu/mpc85xx/fdt.c b/cpu/mpc85xx/fdt.c index

[U-Boot] MPC83xx and uec

2009-09-22 Thread Joakim Tjernlund
I can't find a way to get at uec_info_t/STD_UEC_INFO from my board_eth_init() in current u-boot. Am I missing something? Also drivers/qe/uec.h:int uec_initialize(bd_t *bis, uec_info_t *uec_info); include/netdev.h:int uec_initialize(int index); different prototypes for the same function. __

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

2009-09-22 Thread Tuma
Hi, All! Help me please in writting new U-Boot commands. What should I do? I should write new file in "/common", something like cmd_, am I right? So where can I read about cmd_-file structure and how should new commands be added? And how can I add my new file to U-Boot binary? -- Softwar

Re: [U-Boot] Warning Bad CRC

2009-09-22 Thread Detlev Zundel
Hi Rahanesh, [...] > sflash.c is flash driver code . I showed you the print message of > savenev to note that it is erasing 0xad03 - 0xad03. That means > environment variables are placed in the mentioned sector(0xad03 > - 0xad03). Actual address of environment variabl

Re: [U-Boot] [PATCH 00/13] ppc: Fix relocation

2009-09-22 Thread Detlev Zundel
Hi, >> This series attempts to fix relocation to RAM for ppc boards. >> >> I split the patches up pretty liberally, let me know if you'd like >> them organized differently. >> >> I tried to be thorough during the changes (especially #1), let me >> know if I missed anything, there's lots of linker

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

2009-09-22 Thread Detlev Zundel
Hi Tuma, > Help me please in writting new U-Boot commands. > What should I do? I should write new file in "/common", something like > cmd_, am I right? This really depends if you want to implement a command which is useful for all boards, then it should be below common/ or if it is special t

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

2009-09-22 Thread Prafulla Wadaskar
> -Original Message- > From: Tom [mailto:tom@windriver.com] > Sent: Tuesday, September 22, 2009 12:46 AM > To: Prafulla Wadaskar > Cc: U-Boot > Subject: Re: [U-Boot] [U-boot] Marvell Pull Request > > Prafulla Wadaskar wrote: > > Hi Wolfgang > > > > Please pull > > Shouldn't this

Re: [U-Boot] Warning Bad CRC

2009-09-22 Thread Wolfgang Denk
Dear Rahanesh, In message <4ab86541.1090...@tataelxsi.co.in> you wrote: > > >> *** Warning - bad CRC, using default environment > > > > Ah! Here you can see that the CRC is incorrect in U-Boot already, so > > why do you expect to see a different result when using fw_printenv? > > > > WHen the CRC

Re: [U-Boot] MPC83xx and uec

2009-09-22 Thread Joakim Tjernlund
> > > I can't find a way to get at uec_info_t/STD_UEC_INFO from my board_eth_init() > in current u-boot. Am I missing something? > Also > drivers/qe/uec.h:int uec_initialize(bd_t *bis, uec_info_t *uec_info); > include/netdev.h:int uec_initialize(int index); > different prototypes for the same fun

[U-Boot] [PATCH] fsl_i2c: Do not generate STOP after read.

2009-09-22 Thread Joakim Tjernlund
__i2c_read always ends with a STOP condition thereby releasing the bus. It is cleaner to do the STOP magic in i2c_read(), like i2c_write() does. This may also help future multimaster systems which wants to hold on to the bus until all transactions are finished. Signed-off-by: Joakim Tjernlund ---

[U-Boot] [PATCH 1/4 v3] s5pc1xx: support Samsung s5pc1xx SoC

2009-09-22 Thread Minkyu Kang
This patch adds support for the Samsung s5pc100 and s5pc110 SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor. Signed-off-by: Minkyu Kang Signed-off-by: HeungJun, Kim --- Changes since v1: - make C struct instead of base+offset - use writel/readl function - use the strmhz function - fix some c

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

2009-09-22 Thread Minkyu Kang
This patch includes the onenand driver for s5pc100 Signed-off-by: Minkyu Kang Signed-off-by: Kyungmin Park --- Changes since v1: - move samsung_onenand.h to include/linux/mtd/ - make C struct instead of base+offset - Remove the "1 &&" in while loop Changes since v2: - drop blank lines - adds so

[U-Boot] [PATCH 3/4 v3] s5pc1xx: support serial driver

2009-09-22 Thread Minkyu Kang
This patch includes the serial driver for s5pc1xx Signed-off-by: Minkyu Kang --- Changes since v1: - use serial multi API - use writel/readl function - remove duplicate code Changes since v2: - use sizeof() instead of the constant common/serial.c | 18 +++ drivers/serial/Make

[U-Boot] [PATCH 4/4 v3] s5pc1xx: add support SMDKC100 board

2009-09-22 Thread Minkyu Kang
Adds new board SMDKC100 that uses s5pc100 SoC Signed-off-by: Minkyu Kang Signed-off-by: HeungJun, Kim --- Changes since v1: - arrange env values for more readable - make C struct instead of base+offset - use MACH_TYPE_SMDKC100 directly - fix the CONFIG_SYS_HZ to 1000 - enable LOADB, LOADS, BOOTD

Re: [U-Boot] Subject: [PATCH v3] mx27ads: add support for iMX27ADS board from Freescale

2009-09-22 Thread Alan Carvalho de Assis
Hi Fred, Thank you for your fast reply, please see my comments below: On 9/21/09, Fred Fan wrote: > Dear Alan Carvalho de Assis, > > 2009/9/16 Alan Carvalho de Assis > >> + /* >> +* DDR on CSD0 >> +*/ >> + write32 0xD8001010, 0x0008 >> + write32 0x10027828,

[U-Boot] how to apply at91 patch for the current u-boot-2009-06?

2009-09-22 Thread sunr2007
Hi all, i want to know how to apply at91 patch for current versions of u-boot like 2009-06? i saw in linux4sam.org website that patched are available only for u-boot-1.3.4 ? but after that no patches for the current versions?can anyone help me plz how to update u-boot-2009-06 with the latest at91

[U-Boot] [PATCH 0/3] New MIIPHYBB implementation with multi-bus support

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini This patch rewrites the miiphybb ( Bit-banged MII bus driver ) in order to support an arbitrary number of buses. This feature is useful when your board uses different mii buses for different phys and all (or a part) of these buses are implemented via bit-banging mo

[U-Boot] [PATCH 3/3] Update all board to support new bbmiiphy driver (with multibus support)

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini Signed-off-by: Luigi 'Comio' Mantellini --- include/configs/ISPAN.h |3 +++ include/configs/MPC8260ADS.h |2 ++ include/configs/MPC8266ADS.h |3 +++ include/configs/MPC8560ADS.h |3 +++ include/configs/Rattler.h|3 +++ include/configs/

[U-Boot] [PATCH 1/3] Bit-banged MII driver with multi-bus support.

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini Signed-off-by: Luigi 'Comio' Mantellini --- drivers/net/phy/miiphybb.c | 321 +++- include/miiphy.h | 22 +++ 2 files changed, 247 insertions(+), 96 deletions(-) diff --git a/drivers/net/phy/miiphybb.c b/driver

[U-Boot] [PATCH 2/3] Add bb_miiphy_init call before any ethernet bring-up code.

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini Signed-off-by: Luigi 'Comio' Mantellini --- lib_arm/board.c |3 +++ lib_avr32/board.c|3 +++ lib_blackfin/board.c |3 +++ lib_i386/board.c |3 +++ lib_m68k/board.c |3 +++ lib_mips/board.c |3 +++ lib_ppc/board.c |

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

2009-09-22 Thread Tom
Prafulla Wadaskar wrote: > > >> -Original Message- >> From: Tom [mailto:tom@windriver.com] >> Sent: Tuesday, September 22, 2009 12:46 AM >> To: Prafulla Wadaskar >> Cc: U-Boot >> Subject: Re: [U-Boot] [U-boot] Marvell Pull Request >> >> Prafulla Wadaskar wrote: >>> Hi Wolfgang >>> >

Re: [U-Boot] how to apply at91 patch for the current u-boot-2009-06?

2009-09-22 Thread Tom
sunr2007 wrote: > Hi all, > i want to know how to apply at91 patch for current versions of u-boot like > 2009-06? i saw in linux4sam.org website that patched are available only for > u-boot-1.3.4 ? but after that no patches for the current versions?can anyone > help me plz how to update u-boot-2009

Re: [U-Boot] MPC83xx and uec

2009-09-22 Thread Anton Vorontsov
On Tue, Sep 22, 2009 at 01:02:27PM +0200, Joakim Tjernlund wrote: > > > > > > I can't find a way to get at uec_info_t/STD_UEC_INFO from my > > board_eth_init() > > in current u-boot. Am I missing something? > > Also > > drivers/qe/uec.h:int uec_initialize(bd_t *bis, uec_info_t *uec_info); > > in

Re: [U-Boot] MPC83xx and uec

2009-09-22 Thread Joakim Tjernlund
Anton Vorontsov wrote on 22/09/2009 15:51:17: > From: > > Anton Vorontsov > > To: > > Joakim Tjernlund > > Cc: > > u-boot@lists.denx.de, kim.phill...@freescale.com > > Date: > > 22/09/2009 15:51 > > Subject: > > Re: [U-Boot] MPC83xx and uec > > On Tue, Sep 22, 2009 at 01:02:27PM +0200, Joakim

Re: [U-Boot] [PATCH 3/4 v3] s5pc1xx: support serial driver

2009-09-22 Thread Tom
Minkyu Kang wrote: > This patch includes the serial driver for s5pc1xx > > Signed-off-by: Minkyu Kang Nak. This looks like the zoom2 serial driver. In the case of zoom2, special handling is needed because the serial is supplied by a detachable debug board and a runtime check was needed. You ar

Re: [U-Boot] MPC83xx and uec

2009-09-22 Thread Anton Vorontsov
On Tue, Sep 22, 2009 at 04:03:16PM +0200, Joakim Tjernlund wrote: [...] > > > > Also > > > > drivers/qe/uec.h:int uec_initialize(bd_t *bis, uec_info_t *uec_info); > > > > include/netdev.h:int uec_initialize(int index); > > > > different prototypes for the same function. > > > > > > BTW, I am look

Re: [U-Boot] [PATCH 00/13] ppc: Fix relocation

2009-09-22 Thread Peter Tyser
Hi Detlev, > >> This series attempts to fix relocation to RAM for ppc boards. > >> > >> I split the patches up pretty liberally, let me know if you'd like > >> them organized differently. > >> > >> I tried to be thorough during the changes (especially #1), let me > >> know if I missed anything, th

[U-Boot] [PATCH/RFC] arm/microblaze/nios/nios2/sh: Remove relocation fixups

2009-09-22 Thread Peter Tyser
These architectures don't need relocation fixups, so reduce their codesize a bit by defining CONFIG_RELOC_FIXUP_WORKS. Also remove the reloc_off field from their global data structures as it is no longer needed. Note that the location of the standalone application jump table pointer in the global

Re: [U-Boot] [PATCH 1/4 v3] s5pc1xx: support Samsung s5pc1xx SoC

2009-09-22 Thread Tom
Minkyu Kang wrote: > This patch adds support for the Samsung s5pc100 and s5pc110 > SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor. > > Signed-off-by: Minkyu Kang > Signed-off-by: HeungJun, Kim Ack-ed Tom ___ U-Boot mailing list U-Boot@lists.denx.

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

2009-09-22 Thread Tom
Minkyu Kang wrote: > This patch includes the onenand driver for s5pc100 > > Signed-off-by: Minkyu Kang > Signed-off-by: Kyungmin Park > --- > Changes since v1: > - move samsung_onenand.h to include/linux/mtd/ > - make C struct instead of base+offset > - Remove the "1 &&" in while loop > > Chang

Re: [U-Boot] [PATCH 4/4 v3] s5pc1xx: add support SMDKC100 board

2009-09-22 Thread Tom
Minkyu Kang wrote: > Adds new board SMDKC100 that uses s5pc100 SoC > > Signed-off-by: Minkyu Kang > Signed-off-by: HeungJun, Kim > --- > Changes since v1: > - arrange env values for more readable > - make C struct instead of base+offset > - use MACH_TYPE_SMDKC100 directly > - fix the CONFIG_SYS_

[U-Boot] [PATCH 0/3 v2] New MIIPHYBB implementation with multi-bus support

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini This patch rewrites the miiphybb ( Bit-banged MII bus driver ) in order to support an arbitrary number of buses. This feature is useful when your board uses different mii buses for different phys and all (or a part) of these buses are implemented via bit-banging mod

[U-Boot] [PATCH 1/3 v2] Bit-banged MII driver with multi-bus support.

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini Signed-off-by: Luigi 'Comio' Mantellini --- drivers/net/phy/miiphybb.c | 322 +++- include/miiphy.h | 22 +++ 2 files changed, 248 insertions(+), 96 deletions(-) diff --git a/drivers/net/phy/miiphybb.c b/driver

[U-Boot] [PATCH 3/3 v2] Update all board to support new bbmiiphy driver (with multibus support)

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini Signed-off-by: Luigi 'Comio' Mantellini --- include/configs/ISPAN.h |3 +++ include/configs/MPC8260ADS.h |2 ++ include/configs/MPC8266ADS.h |3 +++ include/configs/MPC8560ADS.h |3 +++ include/configs/Rattler.h|3 +++ include/configs/

[U-Boot] [PATCH 2/3 v2] Add bb_miiphy_init call before any ethernet bring-up code.

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini Signed-off-by: Luigi 'Comio' Mantellini --- lib_arm/board.c |3 +++ lib_avr32/board.c|3 +++ lib_blackfin/board.c |3 +++ lib_i386/board.c |3 +++ lib_m68k/board.c |3 +++ lib_mips/board.c |3 +++ lib_ppc/board.c |

Re: [U-Boot] [PATCH 4/4 v3] s5pc1xx: add support SMDKC100 board

2009-09-22 Thread Peter Tyser
On Tue, 2009-09-22 at 10:03 -0500, Tom wrote: > Minkyu Kang wrote: > > Adds new board SMDKC100 that uses s5pc100 SoC > > > > Signed-off-by: Minkyu Kang > > Signed-off-by: HeungJun, Kim > > --- > > Changes since v1: > > - arrange env values for more readable > > - make C struct instead of base+of

Re: [U-Boot] Configuring BRGs and BRG input clock on an MPC875

2009-09-22 Thread Mikhail Zaturenskiy
> Hello, I thought I'd ask here before I go and make a mess of my code: > what's the easiest way to configure my board to have SMC1 use BRG1, > SCC4 use BRG2, and make my BRG1 and BRG2 use CLK2 as an input clock? > > I looked over the code and it looked like most of this is hard-coded > in the "ser

Re: [U-Boot] [PATCH 4/4 v3] s5pc1xx: add support SMDKC100 board

2009-09-22 Thread Tom
Peter Tyser wrote: > On Tue, 2009-09-22 at 10:03 -0500, Tom wrote: >> Minkyu Kang wrote: >>> Adds new board SMDKC100 that uses s5pc100 SoC >>> >>> Signed-off-by: Minkyu Kang >>> Signed-off-by: HeungJun, Kim >>> --- >>> Changes since v1: >>> - arrange env values for more readable >>> - make C stru

Re: [U-Boot] [PATCH] sbc85x0: tidy up Makefile to use new configuration script.

2009-09-22 Thread Kumar Gala
On Sep 21, 2009, at 2:19 PM, Paul Gortmaker wrote: > Commit 804d83a5 allows us to move all the configuration > variation tweaks out of the top level Makefile and down > into the boards config header. This takes advantage of > that for the sbc8540/sbc8560 boards. > > There were a couple of cheezy

Re: [U-Boot] [PATCH] mpc8610hpcd: Use common 86xx fdt fixup code

2009-09-22 Thread Kumar Gala
On Sep 21, 2009, at 9:09 PM, Peter Tyser wrote: > Using the common 86xx fdt fixups removes some board-specific code and > should make the mpc8610hpcd easier to maintain in the long run. > > Signed-off-by: Peter Tyser > --- > board/freescale/mpc8610hpcd/mpc8610hpcd.c | 14 +- > 2 fil

Re: [U-Boot] [PATCH] ppc/85xx: add ld script file for boot from NAND

2009-09-22 Thread Kumar Gala
On Sep 21, 2009, at 11:53 PM, Mingkai Hu wrote: > The first stage 4K image uses a seperate ld script file to > generate 4K image. This patch moves it to the cpu/mpc85xx/* > to make it avaliable for 85xx platform. > > Signed-off-by: Mingkai Hu > --- > > ChangeLog: > - move from board specific dir

Re: [U-Boot] [PATCH] immap_85xx: add porpllsr's plat ratio definition

2009-09-22 Thread Kumar Gala
On Sep 21, 2009, at 11:53 PM, Mingkai Hu wrote: > Signed-off-by: Mingkai Hu > --- > include/asm-ppc/immap_85xx.h |2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) applied to 85xx - k ___ U-Boot mailing list U-Boot@lists.denx.de http://list

Re: [U-Boot] [PATCH] ppc/85xx: add cpu init config file for boot from NAND

2009-09-22 Thread Kumar Gala
On Sep 21, 2009, at 11:53 PM, Mingkai Hu wrote: > When boot from NAND, the NAND flash must be connected to br/or0. > Also init RAM(L2 SRAM or DDR SDRAM) for load the second image to > it. > > Signed-off-by: Mingkai Hu > --- > > ChangeLog: > - move the board specific config for br/or to board ini

Re: [U-Boot] MPC83xx and uec

2009-09-22 Thread Ben Warren
Anton Vorontsov wrote: > On Tue, Sep 22, 2009 at 04:03:16PM +0200, Joakim Tjernlund wrote: > [...] > > Also > drivers/qe/uec.h:int uec_initialize(bd_t *bis, uec_info_t *uec_info); > include/netdev.h:int uec_initialize(int index); > different prototypes for the same function. >>

Re: [U-Boot] [PATCH 4/4 v3] s5pc1xx: add support SMDKC100 board

2009-09-22 Thread Peter Tyser
> >>> > >> Please include a brief readme doc/README.s5pc1xx similar to README.omap > > > > Hi Tom, > > Others may disagree, but I'm personally opposed to creating > > Slugfest over documentation! Nothing gets me more worked up than a documentation discussion:) > I can see you point. If you hav

Re: [U-Boot] [PATCH 0/3 v2] New MIIPHYBB implementation with multi-bus support

2009-09-22 Thread Ben Warren
Hi Luigi, I like what you're doing here. Thanks for working towards making the BB driver more universal. Luigi 'Comio' Mantellini wrote: > From: Luigi 'Comio' Mantellini > > This patch rewrites the miiphybb ( Bit-banged MII bus driver ) in order to > support an arbitrary number of buses. This

[U-Boot] Please pull u-boot-mpc85xx

2009-09-22 Thread Kumar Gala
The following changes since commit 3b6a9267f0de7b85d387fa4123d0b58379363447: Wolfgang Denk (1): board/flagadm/flash.c: fix compile warning are available in the git repository at: git://git.denx.de/u-boot-mpc85xx.git master Kumar Gala (15): ppc/85xx: Fix LCRR_CLKDIV defines

Re: [U-Boot] [PATCH] Add support for Eukrea CPU9260/CPU9G20 SBC

2009-09-22 Thread Wolfgang Denk
Dear Eric Benard, In message <1252167339-21415-1-git-send-email-e...@eukrea.com> you wrote: > these boards are built around Atmel's AT91SAM9260/9G20 and have > up to 64MB of NOR flash, up to 128MB of SDRAM, up to 2GB of NAND > and include a 10/100 Ethernet PHY in RMII mode. > > Signed-off-by: Eri

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

2009-09-22 Thread Wolfgang Denk
Dear Fred, In message <2f495dc80909170830j7acdd1b0j4e4d27e60af06...@mail.gmail.com> you wrote: > > I am u-boot maintainer of Freescale i.MX team. > I have two mail accounts: Thanks for volunteering to become the custodian for the i.MX support in U-Boot. Please send me your SSH privat

Re: [U-Boot] Subject: [PATCH v3] mx27ads: add support for iMX27ADS board from Freescale

2009-09-22 Thread Wolfgang Denk
Dear Alan Carvalho de Assis, In message <37367b3a0909151429h317066ax2efa504d83dbf...@mail.gmail.com> you wrote: > This patch adds support to iMX27ADS development board. This board has > 128MB RAM, 32MB NOR Flash and 128MB NAND Flash. Currently only > booting from NOR is supported. > > Signed-off

Re: [U-Boot] [PATCH MAKEALL coldfire] : Fix start.S:Error: Conversionof PC relative displacement to absolute

2009-09-22 Thread Liew Tsi Chung-R5AAHP
Philippe, The error that you encountered only happen when using linux cross compiler; however, if choosing uclinux cross compiler this will not be an issue. Anyway, is an acked for me so that both compiler can be used without causing the problem. Best Regards, TsiChung -Original Message---

Re: [U-Boot] [PATCH v2] document network driver framework

2009-09-22 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1252521682-5067-1-git-send-email-vap...@gentoo.org> you wrote: > Signed-off-by: Mike Frysinger > --- > v2 > - drop CONFIG naming section > - fix MII documentation > > doc/README.drivers.eth | 177 > >

Re: [U-Boot] [PATCH][v2] FDT: remove obsolete OF_CPU and OF_SOC macros.

2009-09-22 Thread Wolfgang Denk
Dear Marcel Ziswiler, In message <1252523921.3643.8.ca...@com-21> you wrote: > Signed-off-by: Marcel Ziswiler > --- > Changes since v1: > - CC all respective board maintainers > > README|6 -- > include/configs/IDS8247.h |2 -- > include/configs/MPC8260AD

Re: [U-Boot] [PATCH v2] ppc/85xx: PIO Support for FSL eSDHC Controller Driver

2009-09-22 Thread Wolfgang Denk
Dear Dipen Dudhat, In message <1252589856-4970-1-git-send-email-dipen.dud...@freescale.com> you wrote: > On some Freescale SoC Internal DMA of eSDHC controller has bug. > > So PIO Mode has introduced to do data transfer using CPU. > In PIO mode data transfer performance will be degraded by a lar

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

2009-09-22 Thread Wolfgang Denk
Dear Daniel Gorsulowski, In message <12525916852655-git-send-email-daniel.gorsulow...@esd.eu> you wrote: > This patch implements several updates: > -disable CONFIG_ENV_OVERWRITE > -add new hardware style variants and set the arch numbers appropriate > (autodet.) LIne too long. > -pass the seria

Re: [U-Boot] MPC83xx and uec

2009-09-22 Thread Joakim Tjernlund
Ben Warren wrote on 22/09/2009 18:55:22: > > Anton Vorontsov wrote: > > On Tue, Sep 22, 2009 at 04:03:16PM +0200, Joakim Tjernlund wrote: > > [...] > > > > Also > > drivers/qe/uec.h:int uec_initialize(bd_t *bis, uec_info_t *uec_info); > > include/netdev.h:int uec_initialize(int index

Re: [U-Boot] [PATCH v1 2/3] Add support for save environment variable to MMC/SD card

2009-09-22 Thread Wolfgang Denk
Dear Mingkai Hu, In message <1252640445-7890-3-git-send-email-mingkai...@freescale.com> you wrote: > Whether booting from MMC/SD card or not, the environment variables > can be saved on it, this patch add the operation support. > > Signed-off-by: Mingkai Hu ... > --- a/common/Makefile > +++ b/c

Re: [U-Boot] [PATCH v1 1/3] Make mmc init come before env_relocate

2009-09-22 Thread Wolfgang Denk
Dear Mingkai Hu, In message <1252640445-7890-2-git-send-email-mingkai...@freescale.com> you wrote: > If the environment variables are saved on the MMC/SD card, > env_relocat can't relocate env from MMC/SD card without mmc init. > > Signed-off-by: Mingkai Hu I'm biased. I understand that you do

Re: [U-Boot] [PATCH v1 3/3] mpc8536: Get the address of env on the SDCard

2009-09-22 Thread Wolfgang Denk
Dear Mingkai Hu, In message <1252640445-7890-4-git-send-email-mingkai...@freescale.com> you wrote: > Both the save env and load env operation will call this function > to get the address of env on the SDCard, so the user can control > where to put the env freely. > > Also enable the functionlity

Re: [U-Boot] [PATCH][Net] Convert SMC91111 Ethernet driver to CONFIG_NET_MULTI API

2009-09-22 Thread Wolfgang Denk
Dear Mike Frysinger, In message <200909110606.42732.vap...@gentoo.org> you wrote: > --===0077506097== > Content-Type: multipart/signed; > boundary="nextPart2279044.usXPOpWbKs"; > protocol="application/pgp-signature"; > micalg=pgp-sha1 > Content-Transfer-Encoding: 7bit > > --next

Re: [U-Boot] [PATCH v3 3/5] NAND boot: MPC8536DS support

2009-09-22 Thread Wolfgang Denk
Dear Mingkai Hu, In message <1252649951-28543-2-git-send-email-mingkai...@freescale.com> you wrote: > MPC8536E can support booting from NAND flash which uses the > image u-boot-nand.bin. This image contains two parts: a 4K > NAND loader and a main U-Boot image. The former is appended > to the lat

Re: [U-Boot] [PATCH] Support for Calao USB A9263 board based on AT91SAM9263 CPU

2009-09-22 Thread Wolfgang Denk
Dear Thomas Petazzoni, In message <1252668335-17986-1-git-send-email-thomas.petazz...@free-electrons.com> you wrote: > The Calao USB A9263 board is a board manufactured and sold by Calao > Systems . Its components are very > similar to the AT91SAM9263EK board, so it

Re: [U-Boot] [PATCH] Add support for the Calao QIL-A9G20 board

2009-09-22 Thread Wolfgang Denk
Dear Albin Tonnerre, In message <1252688802-29403-1-git-send-email-albin.tonne...@free-electrons.com> you wrote: > The Calao SBC35-A9G20 board is manufactured and sold by Calao Systems > . It is built around an AT91SAM9G20 ARM SoC > running at 400MHz. It features an

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

2009-09-22 Thread Wolfgang Denk
Dear Olof Johansson, In message <20090911204750.ga22...@lixom.net> you wrote: > Add setup for ethernet on Tobi, allowing kernel/ramdisk to be loaded > over tftp. > > Based on the omap3 evm code. I added a new highlevel define for Tobi > to avoid having it dependent on CMD_NET (which would seem ba

Re: [U-Boot] [PATCH-ARM 4/4] Clean-up of s3c24x0 nand driver

2009-09-22 Thread Wolfgang Denk
Dear Scott Wood, In message <20090911222349.ga26...@b07421-ec1.am.freescale.net> you wrote: > On Mon, Sep 07, 2009 at 12:15:22AM +0100, > kevin.morf...@fearnside-systems.co.uk wrote: > > This patch re-formats the arm920t s3c24x0 nand driver in preparation for > > changes > > to add support for t

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

2009-09-22 Thread Wolfgang Denk
Dear "Paulraj, Sandeep", In message <0554bef07d437848af01b9c9b5f0bc5d92708...@dlee01.ent.ti.com> you wrote: > > > Olof Johansson wrote: > > > Add setup for ethernet on Tobi, allowing kernel/ramdisk to be loaded > > > over tftp. > > > > > > Based on the omap3 evm code. I added a new highlevel def

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

2009-09-22 Thread Wolfgang Denk
Dear Olof Johansson, In message you wrote: > > Random question on u-boot development process: I see you didn't add > your signed-off on the commit. People don't do that when they check in > patches to the u-boot trees? No, we don't do this if we check in an unchanged patch. Linus does not

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

2009-09-22 Thread Wolfgang Denk
Dear Ben Warren, In message you wrote: > > > I always use 'git am -s', which adds the SOB. My understanding is that > maintainers should do this as an indication of approval and help in > traceability. Please feel free to do that, but I consider this just adding line-noise, unless you _really

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

2009-09-22 Thread Wolfgang Denk
Dear "Paulraj, Sandeep", In message <0554bef07d437848af01b9c9b5f0bc5d91e07...@dlee01.ent.ti.com> you wrote: > > > I always use 'git am -s', which adds the SOB. My understanding is that > > maintainers should do this as an indication of approval and help in > > traceability. > > OK Thanks. S

Re: [U-Boot] [PATCH] imx51:Add support basic boot code of freescale imx51 bbg board

2009-09-22 Thread Magnus Lilja
Hi 2009/9/22 Fred Fan : > Hi Magnus Liljia: >     Thanks for your comments. > Best Regards > Fred > > 2009/9/22, Magnus Lilja : >> >> Hi >> >> >> I've scanned the patch briefly and have some comments below. >> >> gareat...@gmail.com wrote: >> > diff --git a/MAKEALL b/MAKEALL >> > index edebae

Re: [U-Boot] [PATCH] TI: DaVinci: DM355 Leopard board support

2009-09-22 Thread Wolfgang Denk
Dear s-paul...@ti.com, In message <1252783335-13371-1-git-send-email-s-paul...@ti.com> you wrote: > From: Sandeep Paulraj > > This patch adds support for the leopard board which is > based on the DM355 SOC. > > Signed-off-by: Sandeep Paulraj > --- > Makefile |

Re: [U-Boot] [PATCH] imx51:Add support basic boot code of freescale imx51 bbg board

2009-09-22 Thread Magnus Lilja
Hmm, for some reason "Reply" in gmail cut part of the qouted message so here's the rest of the followup. Fred Fan skrev: > Hi Magnus Liljia: > Thanks for your comments. > Best Regards > Fred > > 2009/9/22, Magnus Lilja : > >> Hi >> >> >> I've scanned the patch briefly and have some co

Re: [U-Boot] [PATCH] TI: DaVinci: DM355 Leopard board support

2009-09-22 Thread Wolfgang Denk
Dear "Paulraj, Sandeep", In message <0554bef07d437848af01b9c9b5f0bc5d929e5...@dlee01.ent.ti.com> you wrote: > > > From: Sandeep Paulraj > > > > This patch adds support for the leopard board which is > > based on the DM355 SOC. > > > > Signed-off-by: Sandeep Paulraj > > --- > > Makefile

Re: [U-Boot] [PATCH] TI: DaVinci: Adding GIO addresses to header file

2009-09-22 Thread Wolfgang Denk
Dear s-paul...@ti.com, In message <1252783655-13545-1-git-send-email-s-paul...@ti.com> you wrote: > From: Sandeep Paulraj > > This patch adds GIO definitions to the hardware.h > header file > > Signed-off-by: Sandeep Paulraj NAK. Please do not add such address lists. Please use C structures t

Re: [U-Boot] [PATCH] TI: DaVinci: Adding GIO addresses to header file

2009-09-22 Thread Wolfgang Denk
Dear "Paulraj, Sandeep", In message <0554bef07d437848af01b9c9b5f0bc5d92854...@dlee01.ent.ti.com> you wrote: > > > > > From: Sandeep Paulraj > > > > This patch adds GIO definitions to the hardware.h > > header file > > > > Signed-off-by: Sandeep Paulraj > > --- > > include/asm-arm/arch-davi

Re: [U-Boot] [PATCH] OMAP3 Overo: Fix ethernet related warnings

2009-09-22 Thread Wolfgang Denk
Dear "Paulraj, Sandeep", In message <0554bef07d437848af01b9c9b5f0bc5d927da...@dlee01.ent.ti.com> you wrote: > > > > > > Fix warning > > > > 'setup_net_chip' declared 'static' but never defined > > > > with CONFIG_OMAP3_OVERO_TOBI disabled and > > > > implicit declaration of function 'smc911

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

2009-09-22 Thread Olof Johansson
On Sep 22, 2009, at 2:48 PM, Wolfgang Denk wrote: > Dear Olof Johansson, > > In message you wrote: >> >> Random question on u-boot development process: I see you didn't add >> your signed-off on the commit. People don't do that when they check >> in >> patches to the u-boot trees? > > No, we d

Re: [U-Boot] [help] is there anything wrong with my previously sent A320 patches?

2009-09-22 Thread Wolfgang Denk
Dear Po-Yu Chuang, In message you wrote: > > I sent the following patches two weeks ago and got no reply. > Maybe you did not receive the mails? > I wonder if there was something wrong with my mail server or if I > messed up something. > > [U-Boot] [PATCH v6 1/2 resend] arm: A320: driver for F

Re: [U-Boot] [PATCH v2] ppc/85xx: PIO Support for FSL eSDHC Controller Driver

2009-09-22 Thread Wolfgang Denk
Dear Dipen Dudhat, In message <1252904203-9129-1-git-send-email-dipen.dud...@freescale.com> you wrote: > On some Freescale SoC Internal DMA of eSDHC controller has bug. > > So PIO Mode has introduced to do data transfer using CPU. > In PIO mode data transfer performance will be degraded by a lar

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

2009-09-22 Thread Olof Johansson
On Tue, Sep 22, 2009 at 09:41:42PM +0200, Wolfgang Denk wrote: > Please use "git format-patch" / "git send-email" to create and submit > patches. For example, it is always nice to see a file statistics in > the patch. k. > > + MUX_VAL(CP(GPMC_CLK), (IDIS | PTU | EN | M0)) /*GPMC_CLK

Re: [U-Boot] [PATCH] TI: DaVinci DM365: Enabling net support on DM365

2009-09-22 Thread Wolfgang Denk
Dear s-paul...@ti.com, In message <1252955798-31840-1-git-send-email-s-paul...@ti.com> you wrote: > From: Sandeep Paulraj > > This patch enables EMAC on the DM365 EVM. > > Signed-off-by: Sandeep Paulraj > --- > board/davinci/dm365evm/dm365evm.c | 38 > +

Re: [U-Boot] [PATCH] TI: DaVinci DM365: Enabling net support on DM365

2009-09-22 Thread Wolfgang Denk
Dear "Paulraj, Sandeep", In message <0554bef07d437848af01b9c9b5f0bc5d929e5...@dlee01.ent.ti.com> you wrote: > > > > From: Sandeep Paulraj > > > > This patch enables EMAC on the DM365 EVM. > > > > Signed-off-by: Sandeep Paulraj > > --- > > board/davinci/dm365evm/dm365evm.c | 38 > > ++

Re: [U-Boot] [PATCH v2] board/linkstation/ide.c: Fix compile warning

2009-09-22 Thread Wolfgang Denk
Dear Guennadi Liakhovetski, In message you wrote: > > I have the hardware, yes, and I even have something, that should be a Jtag > cable for it... But I don't have near 100% certainty, that if I brick it I > will be able in reasonable time to recover it... But, hey, that's what I > have that

Re: [U-Boot] [PATCH] imx51:Add support basic boot code of freescale imx51 bbg board

2009-09-22 Thread Fred Fan
HI Magnus Lilja: Best Regards Fred 2009/9/23, Magnus Lilja : > > Hi > > 2009/9/22 Fred Fan : > > Hi Magnus Liljia: > > Thanks for your comments. > > Best Regards > > Fred > > > > 2009/9/22, Magnus Lilja : > >> > >> Hi > >> > >> > >> I've scanned the patch briefly and have some commen

Re: [U-Boot] [PATCH] imx51:Add support basic boot code of freescale imx51 bbg board

2009-09-22 Thread Fred Fan
HI Magnus Lilja: Best Regards Fred 2009/9/23, Magnus Lilja : > > > Hmm, for some reason "Reply" in gmail cut part of the qouted message so > here's the rest of the followup. > > Fred Fan skrev: > > Hi Magnus Liljia: > > Thanks for your comments. > > Best Regards > > Fred > > > > 2009/9/2

Re: [U-Boot] [PATCHv5 2/2] mucmc52, uc101: delete a...@3a00 node, if no CF card is detected

2009-09-22 Thread Wolfgang Denk
Dear Heiko Schocher, In message <4aaf1fe4.9050...@denx.de> you wrote: > U-Boot can detect if an IDE device is present or not. > If not, and this new config option is activated, U-Boot > removes the ATA node from the DTS before booting Linux, > so the Linux IDE driver does not probe the device and

Re: [U-Boot] [PATCH 2/2 v2] Blackfin: tweak embedded env config option

2009-09-22 Thread Wolfgang Denk
Dear Mike Frysinger, In message <200909151736.52720.vap...@gentoo.org> you wrote: > > > ... > > > $(obj)u-boot.ldr:$(obj)u-boot > > > - $(obj)tools/envcrc --binary > $(obj)env-ldr.o > > > + $(CREATE_LDR_ENV) > > > $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $< $(LDR_FLAGS

Re: [U-Boot] [PATCH v2] env: only build env_embedded and envcrc when needed

2009-09-22 Thread Wolfgang Denk
Dear Mike Frysinger, In message <200909151739.11704.vap...@gentoo.org> you wrote: > > > > i saw it as "custom embedding of the environment". the only thing it > > > does is enable the envcrc binary. i thought of using "CONFIG_ENVCRC", > > > but it seemed a little too short. > > > > CONFIG_ENABL

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

2009-09-22 Thread Wolfgang Denk
Dear Paul Gibson, In message <26b052040909151705r35cdb874gbbe5a184d20e4...@mail.gmail.com> you wrote: > Micron nand flash needs a reset before a read command is issued. > The current mpc5121_nfc driver ignores the reset command. > > --- > drivers/mtd/nand/mpc5121_nfc.c |1 + > 1 files chang

Re: [U-Boot] [PATCH] smc91111_eeprom: get working with net multi conversion

2009-09-22 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1253068647-29134-1-git-send-email-vap...@gentoo.org> you wrote: > This should be squashed into the pending: > Convert SMC9 Ethernet driver to CONFIG_NET_MULTI API > > The changes to the eeprom were incomplete, and the new version needs > slightly differe

Re: [U-Boot] [PATCH v2] board/linkstation/ide.c: Fix compile warning

2009-09-22 Thread Guennadi Liakhovetski
On Tue, 22 Sep 2009, Wolfgang Denk wrote: > Dear Guennadi Liakhovetski, > > In message you wrote: > > > > I have the hardware, yes, and I even have something, that should be a Jtag > > cable for it... But I don't have near 100% certainty, that if I brick it I > > will be able in reasonable ti

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

2009-09-22 Thread Wolfgang Denk
Dear Paul Gibson, In message <26b052040909152126q55945d47yad3bcf90334ac...@mail.gmail.com> you wrote: > Micron nand flash needs a reset before a read command is issued. > The current mpc5121_nfc driver ignores the reset command. > > Signed-off-by: Paul Gibson > > --- > drivers/mtd/nand/mpc512

Re: [U-Boot] [PATCH] SPARC standalone app fix

2009-09-22 Thread Wolfgang Denk
Dear Daniel Hellstrom, In message <4ab35893.4000...@gaisler.com> you wrote: > > Thank you for your work. I have updated the sparc repository with your > patch. And, yes, you are probably the first one to use the standalone > app feature :) Um... Please put this patch on hold. We need Sergey's

Re: [U-Boot] [PATCH] smc91111_eeprom: get working with net multi conversion

2009-09-22 Thread Ben Warren
Wolfgang Denk wrote: > Dear Mike Frysinger, > > In message <1253068647-29134-1-git-send-email-vap...@gentoo.org> you wrote: > >> This should be squashed into the pending: >> Convert SMC9 Ethernet driver to CONFIG_NET_MULTI API >> >> The changes to the eeprom were incomplete, and the new

Re: [U-Boot] [PATCH 1/3] fsl_i2c: Wait for STOP condition to propagate

2009-09-22 Thread Wolfgang Denk
Dear Joakim Tjernlund, In message <1253178437-32398-1-git-send-email-joakim.tjernl...@transmode.se> you wrote: > After issuing a STOP one must wait until the STOP has completed > on the bus before doing something new to the controller. > > Also add an extra read of SR as the manual mentions doin

Re: [U-Boot] [PATCH v2] Remove deprecated 'autoscr' command/variables

2009-09-22 Thread Wolfgang Denk
Dear Peter Tyser, In message <1253155091-6576-1-git-send-email-pty...@xes-inc.com> you wrote: > The more standard 'source' command provides identical functionality to > the autoscr command. > > Environment variable names/values on the MVBC_P, MVBML7, kmeter1, > mgcoge, and km8xx boards are update

  1   2   >