Re: [U-Boot] [PATCH 3/7] eSPI: add eSPI controller support

2009-03-15 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:52 Mon 16 Mar , Mingkai Hu wrote: > Add eSPI controller support under the SPI framework. > > Signed-off-by: Mingkai Hu > --- > drivers/mtd/spi/spi_flash.c | 94 +- > drivers/spi/Makefile|1 + > drivers/spi/fsl_espi.c | 232 >

Re: [U-Boot] [PATCH 2/7] mtd: SPI Flash: Support the Spansion Flash

2009-03-15 Thread Hu Mingkai-B21284
> -Original Message- > From: Mike Frysinger [mailto:vap...@gentoo.org] > Sent: Monday, March 16, 2009 12:38 PM > To: u-boot@lists.denx.de > Cc: Hu Mingkai-B21284; Fleming Andy-AFLEMING > Subject: Re: [U-Boot] [PATCH 2/7] mtd: SPI Flash: Support the > Spansion Flash > > On Sunday 15 Ma

[U-Boot] ethernet issue in MPC8313ER board

2009-03-15 Thread rudresh
Hi All, I'm using MPC8313ERD customize board. its having 4 Ethernet port. out of which 2 are using as TSEC0 & TSEC1. the Ethernet PHY is LAN870 & its PHY id's are 0x11(TSEC0) & 0x19(TSEC1) . i'm facing problem in tftp . when i do the TFTP 1st time it will hung or restart the board. the restart st

Re: [U-Boot] [PATCH 2/7] mtd: SPI Flash: Support the Spansion Flash

2009-03-15 Thread Mike Frysinger
On Sunday 15 March 2009 22:52:18 Mingkai Hu wrote: > Add MTD SPI Flash support for S25FL008A, S25FL016A, > S25FL032A, S25FL064A, S25FL128P. this doesnt really need to be part of this patch series and can be added all by itself > --- a/drivers/mtd/spi/Makefile > +++ b/drivers/mtd/spi/Makefile > @

Re: [U-Boot] [PATCH] PowerPC MPC85xx: don't hang on read exception

2009-03-15 Thread Liu Dave-R63238
Furthermore, Your patch didn't set the RFXE bit correctly. It should be lis r0,hid1_r...@h ori r0,r0,(HID1_ASTME|HID1_ABE)@l /* Addr streaming & broadcast */ mtspr HID1,r0 Thanks, Dave ___ U-Boot mailing list U-Boot@li

[U-Boot] [PATCH 6/7] Add support for save the env to SDcard

2009-03-15 Thread Mingkai Hu
When after booting from SDcard, the environment variables can to be saved on it, this patch add the operation support. Signed-off-by: Jason Jin Signed-off-by: Mingkai Hu --- common/Makefile |1 + common/cmd_nvedit.c |3 +- common/env_common.c |3 +- common/env_sdcard.c | 129 ++

[U-Boot] [PATCH 7/7] Save the env variables to SDcard and SPI flash for MPC8536DS

2009-03-15 Thread Mingkai Hu
MPC8536DS offer booting from SDcard or SPI flash. When after booting from SD card/SPI flash, the environment variables can to be saved on it, so this patch should be used together with the MMC driver and eSPI controller/SPI flash driver in u-boot. Signed-off-by: Mingkai Hu --- include/configs/MP

[U-Boot] [PATCH 5/7] Make a special uboot used for booting from SDcard or SPI flash

2009-03-15 Thread Mingkai Hu
This patch is used to generate a special version u-boot, together with the data structure on the SDcard/SPI flash, can be used to booting from SDcard/SPI flash on 8536DS board. The boot ROM in CPU and the data structure on SD card will initialize the DDR, set a large tlb0 for DDR and CCSR, set law

[U-Boot] [PATCH 3/7] eSPI: add eSPI controller support

2009-03-15 Thread Mingkai Hu
Add eSPI controller support under the SPI framework. Signed-off-by: Mingkai Hu --- drivers/mtd/spi/spi_flash.c | 94 +- drivers/spi/Makefile|1 + drivers/spi/fsl_espi.c | 232 +++ include/spi.h | 30 +

[U-Boot] [PATCH 2/7] mtd: SPI Flash: Support the Spansion Flash

2009-03-15 Thread Mingkai Hu
Add MTD SPI Flash support for S25FL008A, S25FL016A, S25FL032A, S25FL064A, S25FL128P. Signed-off-by: Mingkai Hu --- drivers/mtd/spi/Makefile |1 + drivers/mtd/spi/spansion.c | 356 2 files changed, 357 insertions(+), 0 deletions(-) create mode

[U-Boot] [PATCH 1/7] eSPI: add the eSPI register support

2009-03-15 Thread Mingkai Hu
Signed-off-by: Mingkai Hu --- include/asm-ppc/immap_85xx.h | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/include/asm-ppc/immap_85xx.h b/include/asm-ppc/immap_85xx.h index 094fb9c..f3ab750 100644 --- a/include/asm-ppc/immap_85xx.h +++ b/include/asm-ppc/i

[U-Boot] [PATCH 4/7] eSPI: make the chip selsec enable

2009-03-15 Thread Mingkai Hu
On the MPC8536 processor, the eSPI chip selects and the eSDHC data interface have four pin-muxed pins shared between them, so if the eSDHC data interface is expanded to 8-bits, no eSPI chip selects are routed. Signed-off-by: Mingkai Hu --- board/freescale/mpc8536ds/mpc8536ds.c |3 +-- 1 file

Re: [U-Boot] [PATCH] Make nboot skip bad blocks

2009-03-15 Thread Mike Frysinger
On Friday 13 March 2009 09:38:19 Ladislav Michl wrote: > nboot command currently does not skip bad blocks and gives read error when > loading image stored over bad block. With patch applied, nboot works as > expected: iirc, some people proposed a new command or an option to nboot to get skip beha

Re: [U-Boot] [PATCH V2] example/standalone: introduce STANDALONE_LOAD_ADDR

2009-03-15 Thread Wolfgang Denk
Dear Mike Frysinger, In message <200903151747.23995.vap...@gentoo.org> you wrote: > > > Don't try to be clever when this cannot work. > > i dont really see the value in moving the load addr from the u-boot build env > to the board env automatically, but moving the definitions from > examples/Ma

Re: [U-Boot] [PATCH V2] example/standalone: introduce STANDALONE_LOAD_ADDR

2009-03-15 Thread Mike Frysinger
On Sunday 15 March 2009 14:29:59 Wolfgang Denk wrote: > In message Jean-Christophe PLAGNIOL-VILLARD you wrote: > > > > as example generate via the config.h a env var name > > > > standalone_load_addr automaticly so the end user will just have to > > > > built it, load it and run it > > > > > > This

Re: [U-Boot] Pull request: u-boot-sh

2009-03-15 Thread Wolfgang Denk
Dear Nobuhiro Iwamatsu, In message <20090315155237.406c7f6c.iwama...@nigauri.org> you wrote: > Dear Wolfgang, > > Please pull u-boot-sh master branch. > > Best regards, > Nobuhiro > > The following changes since commit 3c92217732edfc0016c3cbdc828471d013d23a36: > Wolfgang Denk (1): >

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

2009-03-15 Thread Wolfgang Denk
Dear Kim Phillips, In message <20090314180439.70dc92f1.kim.phill...@freescale.com> you wrote: > > Please pull a couple of fixes for mpc83xx: > > The following changes since commit 3c92217732edfc0016c3cbdc828471d013d23a36: > Wolfgang Denk (1): > Merge branch 'master' of git://git.denx.d

Re: [U-Boot] ARM Pull Request

2009-03-15 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090313222021.gg31...@game.jcrosoft.org> you wrote: > Hi Wolfgang, > > Please pull The following changes since commit > 3c92217732edfc0016c3cbdc828471d013d23a36: > Wolfgang Denk (1): > Merge branch 'master' of git://git.denx.de/u-boot

Re: [U-Boot] PXA Pull request

2009-03-15 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090313220203.gf31...@game.jcrosoft.org> you wrote: > Hi Wolfgang, > > please pull The following changes since commit > 014c595f12d4f7e14cb10188f856465b2d41718f: > Wolfgang Denk (1): > Merge branch 'master' of git://git.denx.de/u-boot

Re: [U-Boot] [GIT PULL] Please pull mpc5xxx tree

2009-03-15 Thread Wolfgang Denk
Dear John Rigby, In message <49ba89ad.9040...@freescale.com> you wrote: > The following changes since commit 3c92217732edfc0016c3cbdc828471d013d23a36: >Wolfgang Denk (1): > Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx > > are available in the git repository at: > >g

Re: [U-Boot] [PATCH V2] example/standalone: introduce STANDALONE_LOAD_ADDR

2009-03-15 Thread Jean-Christophe PLAGNIOL-VILLARD
On 19:29 Sun 15 Mar , Wolfgang Denk wrote: > Dear Jean-Christophe PLAGNIOL-VILLARD, > > In message <20090315105132.gc23...@game.jcrosoft.org> you wrote: > > > > > > as example generate via the config.h a env var name standalone_load_addr > > > > automaticly so the end user will just have to bu

Re: [U-Boot] [PATCH V2] example/standalone: introduce STANDALONE_LOAD_ADDR

2009-03-15 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090315105132.gc23...@game.jcrosoft.org> you wrote: > > > > as example generate via the config.h a env var name standalone_load_addr > > > automaticly so the end user will just have to built it, load it and run it > > > > This is error prone. N

Re: [U-Boot] [PATCH V2] example/standalone: introduce STANDALONE_LOAD_ADDR

2009-03-15 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:31 Sat 14 Mar , Wolfgang Denk wrote: > Dear Jean-Christophe PLAGNIOL-VILLARD, > > In message <20090314124556.ga23...@game.jcrosoft.org> you wrote: > > > > > > the value could be exported to the environment to reduce the user > > > > mistake > > > > when they try to use example's standal