Re: [U-Boot] [PATCH 13/13] ompa3: remove duplicate interrupts code

2009-03-27 Thread Dirk Behme
Dear Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD As this patch has no patch description in body (except subject) it seems that you think that the code you like to remove here is already available somewhere else. Where? Please corr

[U-Boot] [PATCH] omap3: mmc: mmc2 support

2009-03-27 Thread Minkyu Kang
There are 3 MMC/SD/SDIO host controllers inside the device. This patch will support mmc2 and mmc3(mmc3 have not tested) Signed-off-by: Minkyu Kang --- drivers/mmc/omap3_mmc.c | 74 - include/asm-arm/arch-omap3/mmc_host_def.h | 10 +++- include/as

[U-Boot] [PATCH] cmd_mmc: add support device command for selecting mmc device

2009-03-27 Thread Minkyu Kang
This patch improves device command for selecting mmc device Signed-off-by: Minkyu Kang --- common/cmd_mmc.c | 69 ++ 1 files changed, 64 insertions(+), 5 deletions(-) diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c index 16c919b..2557892 10

[U-Boot] core ticks/timer code

2009-03-27 Thread Mike Frysinger
the Blackfin core tick/timer code has been around since the start of the original port, but i'm not sure it's entirely correct. some common code that uses timers seems to be misbehaving in that the timeout is pretty much immediate. makes me think that we've spent time on making udelay() work,

[U-Boot] [PATCH] sf: stmicro: drop redundant id read

2009-03-27 Thread Mike Frysinger
The common SPI flash code reads the idcode and passes it down to the SPI flash driver, so there is no need to read it again ourselves. Signed-off-by: Mike Frysinger CC: Haavard Skinnemoen CC: Jason McMullan CC: TsiChung Liew --- drivers/mtd/spi/stmicro.c |8 +--- 1 files changed, 1 in

[U-Boot] [PATCH] sf: add driver for SST flashes

2009-03-27 Thread Mike Frysinger
Signed-off-by: Mike Frysinger CC: Haavard Skinnemoen --- drivers/mtd/spi/Makefile |1 + drivers/mtd/spi/spi_flash.c |5 + drivers/mtd/spi/spi_flash_internal.h |1 + drivers/mtd/spi/sst.c| 350 ++ 4 files changed, 3

Re: [U-Boot] [PATCH 1/2] at91: Improved Atmel AT45DB081 dataflash support

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:24 Fri 27 Mar , Daniel Gorsulowski wrote: > This patch improves Atmel AT45DB081 dataflash support. > > Signed-off-by: Daniel Gorsulowski > --- > drivers/mtd/dataflash.c |7 --- >1 1 files changed, 4 insertions(+), 3 deletions(-) NACK As precedently announce this driver is now

[U-Boot] [PATCH 12/13] at91: add hardware i2c drivers

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm926ejs/at91/Makefile|6 + .../arm926ejs/at91/at91cap9_i2c.c | 31 ++-- .../arm926ejs/at91/at91sam9260_i2c.c | 31 ++-- .../arm926ejs/at91/at91sam9261_i2c.c | 3

[U-Boot] [PATCH 13/13] at91sam9263ek: active hush and auto compelete support

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- include/configs/at91sam9263ek.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/at91sam9263ek.h b/include/configs/at91sam9263ek.h index dd0d552..fc87241 100644 --- a/include/configs/at91sam9263ek.h +++

[U-Boot] [PATCH 11/13] at91: move dataflash spi driver to drivers/spi

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm926ejs/at91/Makefile|1 - drivers/spi/Makefile |1 + .../spi.c => drivers/spi/atmel_dataflash_spi.c |0 include/configs/afeb9260.h |1 + inc

[U-Boot] [PATCH 10/13] at91: move usb driver to drivers/usb

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm926ejs/at91/Makefile|1 - drivers/usb/Makefile |1 + .../at91/usb.c => drivers/usb/atmel_usb.c |0 include/configs/afeb9260.h |1 + inc

[U-Boot] [PATCH 08/13] at91rm9200: move serial shutdown code to serial drivers

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
introduce serial_exit for this purpose. Use it only when the rm9200 serial driver is active Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm920t/at91rm9200/interrupts.c | 13 +++-- drivers/serial/at91rm9200_usart.c |5 + include/common.h|1 +

[U-Boot] [PATCH 06/13] Add support for the AT91RM9200EK Board.

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
From: Ulf Samuelsson The AT91RM9200-EK Evaluation Board supports the AT91RM9200 ARM9-based 32-bit RISC microcontroller and enables real-time code development and evaluation. Here is the chip page on Atmel website: http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507 with - NOR

[U-Boot] [PATCH 07/13] at91rm9200: move serial driver to drivers/serial

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
add CONFIG_AT91RM9200_USART to activate the driver Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm920t/at91rm9200/Makefile|2 +- drivers/serial/Makefile|1 + .../serial.c => drivers/serial/at91rm9200_usart.c |0 include/con

[U-Boot] [PATCH 09/13] at91rm9200: Reset update

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Update the rm9200 reset sequence to try executing a board-specific reset function and move specific board reset to board. Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- board/atmel/at91rm9200dk/at91rm9200dk.c | 10 ++ cpu/arm920t/at91rm9200/interrupts.c | 14 --

[U-Boot] [PATCH 05/13] add dataflash mmc mux missing support

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- common/Makefile|1 + common/cmd_dataflash_mmc_mux.c | 65 2 files changed, 66 insertions(+), 0 deletions(-) create mode 100644 common/cmd_dataflash_mmc_mux.c diff --git a/common/Ma

[U-Boot] [PATCH 04/13] at91rm9200dk: Move conditional compilation to Makefile

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- board/atmel/at91rm9200dk/Makefile | 14 ++ board/atmel/at91rm9200dk/mux.c| 12 ++-- 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/board/atmel/at91rm9200dk/Makefile b/board/atmel/at91rm9200dk/Makefi

[U-Boot] [PATCH 02/13 V2] at91sam9: add watchdog support

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Nicolas Ferre Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- update the readme Best Regards, J. Makefile |1 + doc/README.at91 | 11 + drivers/serial/atmel_usart.c |4 +- drivers/watchdog/Makefile

[U-Boot] [PATCH 03/13] at91: rename DATAFLASH_MMC_SELECT to CONFIG_DATAFLASH_MMC_SELECT

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- board/atmel/at91rm9200dk/mux.c | 74 cpu/arm926ejs/at91/.gitignore |5 +++ include/at45.h |2 +- 3 files changed, 43 insertions(+), 38 deletions(-) rewrite board/atmel/at91rm92

[U-Boot] [PATCH 01/13 V2] at91sam9/at91cap: spi init add hardware chip select support

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- Fix typo in the commit message Best Regards, J. cpu/arm926ejs/at91/at91cap9_spi.c| 37 - cpu/arm926ejs/at91/at91sam9260_spi.c | 36 +++- cpu/arm926ejs/at91/at91sam9261_spi.c |

[U-Boot] [PATCH 08/13] imx31: move serial driver to drivers/serial

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm1136/mx31/Makefile |2 +- drivers/serial/Makefile|1 + .../mx31/serial.c => drivers/serial/serial_mx31.c |6 -- 3 files changed, 2 insertions(+), 7 deletions(-) rename

[U-Boot] [PATCH 12/13] arm720t/clps7111: move serial driver to drivers/serial

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
add CONFIG_CLPS7111_SERIAL to activate the driver Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm720t/Makefile |2 +- drivers/serial/Makefile|1 + .../serial.c => drivers/serial/serial_clps7111.c |4 include

[U-Boot] [PATCH 13/13] ompa3: remove duplicate interrupts code

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm_cortexa8/omap3/interrupts.c | 128 --- 1 files changed, 0 insertions(+), 128 deletions(-) diff --git a/cpu/arm_cortexa8/omap3/interrupts.c b/cpu/arm_cortexa8/omap3/interrupts.c index 9e9817d..384ffdc 10

[U-Boot] [PATCH 11/13] lpc2292: move serial driver to drivers/serial

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
add CONFIG_LPC2292_SERIAL to activate the driver Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm720t/serial.c| 77 drivers/serial/Makefile |1 + drivers/serial/serial_lpc2292.c | 105 +++ incl

[U-Boot] [PATCH 10/13] ks8695: move serial driver to drivers/serial

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
add CONFIG_KS8695_SERIAL to activate the driver Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm920t/ks8695/Makefile|2 +- drivers/serial/Makefile|1 + .../serial.c => drivers/serial/serial_ks8695.c |0 include/config

[U-Boot] [PATCH 09/13] s3c64xx: move usb driver to drivers/usb

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
add CONFIG_USB_S3C64XX to activate the driver Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm1176/s3c64xx/Makefile |1 - drivers/usb/Makefile |1 + .../s3c64xx/usb.c => drivers/usb/s3c64xx_usb.c |0 include/configs/s

[U-Boot] [PATCH 06/13] sa1100: move serial driver to drivers/serial

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
add CONFIG_SA1100_SERIAL to activate the driver Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/sa1100/Makefile|2 +- drivers/serial/Makefile|1 + .../serial.c => drivers/serial/serial_sa1100.c |0 include/config

[U-Boot] [PATCH 07/13] netarm: move serial driver to drivers/serial

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
add CONFIG_NETARM_SERIAL to activate the driver Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm720t/Makefile|2 +- drivers/serial/Makefile |1 + {cpu/arm720t => drivers/serial}/serial_netarm.c |5 - include/configs/m

[U-Boot] [PATCH 03/13] s3c44b0: move rtc driver to drivers/rtc

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/s3c44b0/cpu.c | 77 -- drivers/rtc/Makefile |1 + drivers/rtc/s3c44b0_rtc.c | 102 + include/configs/B2.h |1 + 4 files changed, 104 ins

[U-Boot] [PATCH 02/13] s3c44b0: move i2c driver to drivers/i2c

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/s3c44b0/cpu.c | 735 +++- drivers/i2c/Makefile |1 + cpu/s3c44b0/cpu.c => drivers/i2c/s3c44b0_i2c.c | 198 --- include/configs/B2.h

[U-Boot] [PATCH 05/13] s3c44b0: extract cache from cpu.c

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/s3c44b0/Makefile |2 +- cpu/s3c44b0/{cpu.c => cache.c} | 56 +--- cpu/s3c44b0/cpu.c | 62 3 files changed, 2 insertions(+), 118 deletions

[U-Boot] [PATCH 01/13] s3c4510b: move specific code to soc directory

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- Makefile |2 +- cpu/arm720t/cpu.c | 67 --- cpu/arm720t/s3c4510b/Makefile | 46 +++ cpu/arm720t/s3c4510b/cache.c

[U-Boot] [PATCH 04/13] s3c44b0: move serial driver to drivers/serial

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/s3c44b0/Makefile |2 +- drivers/serial/Makefile|1 + .../serial.c => drivers/serial/serial_s3c44b0.c|0 include/configs/B2.h |1 + 4

[U-Boot] [PATCH v2 3/3] MPC85xx: Add MPC8569MDS board support

2009-03-27 Thread Haiying Wang
This patch adds MPC8569MDS board support. The UART, QE UEC1 and UEC2, BRD EEPROM on I2C2 bus, PCI express and DDR3 SPD are supported in this patch. Signed-off-by: Haiying Wang Signed-off-by: Hillel Avni --- MAKEALL |1 + Makefile

[U-Boot] [PATCH v2 1/3] MPC85xx: Add MPC8569 CPU support

2009-03-27 Thread Haiying Wang
There is a workaround for MPC8569 CPU Errata, which needs to set Bit 13 of LBCR in 4K bootpage. We setup a temp TLB for eLBC controller in bootpage, then invalidate it after LBCR bit 13 is set. Signed-off-by: Haiying Wang --- cpu/mpc85xx/Makefile |1 + cpu/mpc85xx/cpu.c|

Re: [U-Boot] [PATCH 1/2] at91: Improved Atmel AT45DB081 dataflash support

2009-03-27 Thread Wolfgang Denk
Dear Daniel Gorsulowski, In message <12381458531295-git-send-email-daniel.gorsulow...@esd.eu> you wrote: > This patch improves Atmel AT45DB081 dataflash support. > > Signed-off-by: Daniel Gorsulowski > --- > drivers/mtd/dataflash.c |7 --- > 1 files changed, 4 insertions(+), 3 deletions

Re: [U-Boot] [PATCH v4] board support patch for phyCORE-MPC5200B-tiny

2009-03-27 Thread Jon Smirl
On Fri, Mar 27, 2009 at 4:12 PM, Wolfgang Denk wrote: >> >  create mode 100644 board/phytec/pcm030/Makefile >> >  create mode 100644 board/phytec/pcm030/config.mk >> >  create mode 100644 board/phytec/pcm030/mt46v32m16-75.h >> >  create mode 100644 board/phytec/pcm030/pcm030.c >> >  create mode 10

Re: [U-Boot] [PATCH v4] board support patch for phyCORE-MPC5200B-tiny

2009-03-27 Thread Wolfgang Denk
Dear Jon Smirl, In message <9e4733910903251214y1058215l6f4b78ab0b287...@mail.gmail.com> you wrote: > Is this one ok now? > > On Tue, Mar 24, 2009 at 11:56 AM, Jon Smirl wrote: > > Add support for the Phytec phyCORE-MPC5200B-tiny. This code is from Pengu= > tronix.de but they > > didn't sign the

Re: [U-Boot] [PATCH v2 3/7] drivers/twserial: Add protocol driver for "three wire serial" interface.

2009-03-27 Thread Wolfgang Denk
Dear Detlev, In message you wrote: > > If no further feedback on the patch series arrive, I'll repost the whole > stack tomorrow again. I applied some of the patches that were OK, so please make sure to rebase against master first. Best regards, Wolfgang Denk -- DENX Software Engineering Gm

Re: [U-Boot] [PATCH v2 1/7] command.c: Expose the core of do_help as _do_help to the rest of u-boot.

2009-03-27 Thread Wolfgang Denk
Dear Detlev Zundel, In message <1237998478-18452-2-git-send-email-...@denx.de> you wrote: > Other commands implementing subcommands can reuse this code nicely. > > Signed-off-by: Detlev Zundel > Signed-off-by: Andreas Pfefferle > --- > common/command.c | 20 +--- > include/c

Re: [U-Boot] [PATCH] mpc5xxx: Add structure definition for several more register blocks.

2009-03-27 Thread Wolfgang Denk
Dear Detlev Zundel, In message <1237914158-15693-3-git-send-email-...@denx.de> you wrote: > Signed-off-by: Detlev Zundel > --- > include/mpc5xxx.h | 124 > + > 1 files changed, 124 insertions(+), 0 deletions(-) Applied, thanks. Best regards

Re: [U-Boot] U-boot NAND boot on IMX31 3stack(ARM)

2009-03-27 Thread Magnus Lilja
2009/3/27 alfred steele : > Thanks Magnus, > How difficult or rather much an effort would it need to add NAND boot > support and make it work on MX35 or MX31 3stack board. > Are there any existing guidelines for accelerating the development or > is the generic uboot porting guidelines . For i.MX3

Re: [U-Boot] [PATCH 2/2] at91: Add support for esd MEESC board

2009-03-27 Thread Wolfgang Denk
Dear Daniel Gorsulowski, In message <1238145854513-git-send-email-daniel.gorsulow...@esd.eu> you wrote: > --===0533980373== > > This patch adds support for MEESC board from esd gmbh. > The MEESC is based on an Atmel AT91SAM9263 SoC. > > Signed-off-by: Daniel Gorsulowski ... > diff -

Re: [U-Boot] [PATCH] MAINTAINERS: Add entry for 'inka4x0' board.

2009-03-27 Thread Wolfgang Denk
Dear Detlev Zundel, In message <1238162635-12320-2-git-send-email-...@denx.de> you wrote: > Signed-off-by: Detlev Zundel > --- > MAINTAINERS |4 > 1 files changed, 4 insertions(+), 0 deletions(-) Applied, thanks. But please number patch series if they depend on a specific order. Best

Re: [U-Boot] [PATCH] MAINTAINERS: Keep list sorted.

2009-03-27 Thread Wolfgang Denk
Dear Detlev Zundel, In message <1238162635-12320-1-git-send-email-...@denx.de> you wrote: > Signed-off-by: Detlev Zundel > --- > MAINTAINERS | 13 +++-- > 1 files changed, 7 insertions(+), 6 deletions(-) Applied, thanks. Best regards, Wolfgang Denk -- DENX Software Engineering Gmb

Re: [U-Boot] [PATCH] karef/metrobox/xpedite1k: fix eth_setenv_enetaddr typos

2009-03-27 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1238080661-18728-1-git-send-email-vap...@gentoo.org> you wrote: > The function is called "eth_setenv_enetaddr", not "eth_putenv_enetaddr". > > Signed-off-by: Mike Frysinger > CC: Ben Warren > --- > board/sandburst/karef/karef.c |8 > board/sa

Re: [U-Boot] [PATCH v2] ppc: cleanup compilererrors/warnings

2009-03-27 Thread Wolfgang Denk
Dear Heiko Schocher, In message <49cb21d7.9070...@denx.de> you wrote: > actual u-boot top of tree builds with warnings/errors for > the following boards: > > ads5121 cpci5200 mecp5200 v38b IAD210 MBX MBX860T NX823 > RPXClassic debris PN62 > > following patch solves this. > > Signed-off-by: Heik

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

2009-03-27 Thread Wolfgang Denk
Dear Andy Fleming, In message <1238108026-16107-1-git-send-email-aflem...@freescale.com> you wrote: > are available in the git repository at: > > git://www.denx.de/git/u-boot-mpc85xx.git master > > Dave Liu (2): > fsl-ddr: Fix two bugs in the ddr infrastructure > fsl-ddr: add the D

Re: [U-Boot] [PATCH 1/3] MPC85xx: Add MPC8569 CPU support

2009-03-27 Thread Wolfgang Denk
Dear Haiying Wang, In message <12381013102804-git-send-email-haiying.w...@freescale.com> you wrote: > There is a workaround for MPC8569 CPU Errata, which needs to set Bit 13 of > LBCR > in 4K bootpage. We setup a temp TLB for eLBC controller in bootpage, then > invalidate it after LBCR bit 13 is

Re: [U-Boot] [PATCH 3/3] MPC85xx: Add MPC8569MDS board support

2009-03-27 Thread Wolfgang Denk
Dear Haiying Wang, > diff --git a/board/freescale/mpc8569mds/ddr.c > b/board/freescale/mpc8569mds/ddr.c > new file mode 100644 > index 000..c4e63fb > --- /dev/null > +++ b/board/freescale/mpc8569mds/ddr.c > @@ -0,0 +1,86 @@ > +/* > + * Copyright 2009 Freescale Semiconductor, Inc. > + * > + *

Re: [U-Boot] U-boot NAND boot on IMX31 3stack(ARM)

2009-03-27 Thread alfred steele
Thanks Magnus, How difficult or rather much an effort would it need to add NAND boot support and make it work on MX35 or MX31 3stack board. Are there any existing guidelines for accelerating the development or is the generic uboot porting guidelines . Regards, Alfred On Fri, Mar 27, 2009 at 1:5

Re: [U-Boot] [PATCH] omap3: mmc: mmc2 support

2009-03-27 Thread Wolfgang Denk
Dear Dirk, In message <49cc0cc9.7060...@googlemail.com> you wrote: > Minkyu Kang wrote: > > There are 3 MMC/SD/SDIO host controllers inside the device. > > This patch will support mmc2 and mmc3. > > By this patch, the MMC controller actually used is configured by > CONFIG_MMC_INDEX at compile ti

Re: [U-Boot] U-boot NAND boot on IMX31 3stack(ARM)

2009-03-27 Thread Magnus Lilja
Hi 2009/3/27 alfred steele : > Hi All; > > Is there an available port for  IMX31 3stack with NAND boot. > I am looking for a U-boot port  for IMX31 stack( which supports NAND boot. > > The closest matches i know of as of now are as follows: > > MX-31 ADS > MX-31 Phycore > Openmoko U-boot (Samsung

Re: [U-Boot] MPC8572E I2C bus speed after emulator reset

2009-03-27 Thread Timur Tabi
Scott Coulter wrote: > Hi Timur, > >> What is the value of CONFIG_SYS_I2C_SPEED in your board header file? > > #define CONFIG_SYS_I2C_SPEED 40 So far, so good. >> What values does function set_i2c_bus_speed() in fsl_i2c.c program >> into the FDR and DFSR registers? > > According

Re: [U-Boot] MPC8572E I2C bus speed after emulator reset

2009-03-27 Thread Scott Coulter
Hi Timur, > What is the value of CONFIG_SYS_I2C_SPEED in your board header file? #define CONFIG_SYS_I2C_SPEED40 > What values does function set_i2c_bus_speed() in fsl_i2c.c program > into the FDR and DFSR registers? According to my printfs and the emulator readback of the valu

Re: [U-Boot] MPC8572E I2C bus speed after emulator reset

2009-03-27 Thread Timur Tabi
On Fri, Mar 27, 2009 at 11:52 AM, Scott Coulter wrote: > I have an older version of U-boot for the board which is based of the > initial port that Kumar did (no MP support, etc.).  With this version of > U-boot in flash, the "inn" "go" sequence works fine.  The only thing > that I can think of is

[U-Boot] MPC8572E I2C bus speed after emulator reset

2009-03-27 Thread Scott Coulter
Hi everyone, I am seeing a strange issue that someone may have bumped into before. I am running a modified version of Freescale's v2008.10 U-boot release from the December 2008 LTIB package on our 8572E based board. Under normal reset conditions (power up or reset switch), the board boots and r

Re: [U-Boot] [PATCH 2/3] MPC85xx: Load and enable QE microcode patch in IRAM

2009-03-27 Thread Timur Tabi
On Thu, Mar 26, 2009 at 4:01 PM, Haiying Wang wrote: > For the silicon which doesn't have ROM support in QE, it always needs to load > a pre-built ucode binary to IRAM so that QE can work. > > Signed-off-by: Haiying Wang > Signed-off-by: Hillel Avni Just for the record: Acked-by: Timur Tabi

Re: [U-Boot] [PATCH] Canyonlands SATA harddisk driver

2009-03-27 Thread Wolfgang Denk
Dear Kazuaki Ichinohe, In message <49cb5f77.1060...@fsi.co.jp> you wrote: ... > >Why do you add this 460EX SATA support to cmd_scsi.c? Wouldn't cmd_sata.c > be a > >better place? Or did I miss something here? > > The cmd_scsi.c which define CONFIG_CMD_SCSI are modified > because I want to use

[U-Boot] U-boot NAND boot on IMX31 3stack(ARM)

2009-03-27 Thread alfred steele
Hi All; Is there an available port for IMX31 3stack with NAND boot. I am looking for a U-boot port for IMX31 stack( which supports NAND boot. The closest matches i know of as of now are as follows: MX-31 ADS MX-31 Phycore Openmoko U-boot (Samsung processor though ARM) - This is the only one on

Re: [U-Boot] [PATCH] Canyonlands SATA harddisk driver

2009-03-27 Thread Stefan Roese
On Thursday 26 March 2009, Kazuaki Ichinohe wrote: > Thank you for the reply. > My answer is described in the beginning. OK, I just tried to apply your patch for basic testing. Didn't work though. Here the error log: [ste...@kubuntu u-boot (master)]$ patch -p1 < patches_sata/\[U-Boot\]\ \[PATCH

[U-Boot] ARM based port for uboot with NAND boot support.

2009-03-27 Thread alfred steele
Hi All; Is there an available port for IMX31 3stack with NAND boot. I am looking for a U-boot port for IMX31 stack( which supports NAND boot. The closest matches i know of as of now are as follows: MX-31 ADS MX-31 Phycore Openmoko U-boot (Samsung processor though ARM) - This is the only one on

Re: [U-Boot] [PATCH v2 4/7] rtc: add support for 4543 RTC (manufactured by e.g. EPSON)

2009-03-27 Thread Scott Wood
On Fri, Mar 27, 2009 at 08:53:28AM -0400, Jerry Van Baren wrote: > Anatolij Gustschin wrote: > > Detlev Zundel wrote: > > [snip] > > >> So I really ask you to reconsider your critique. > > > > Ok, your and Wolfgang's arguments show me, that being consistent with > > something is often brain-dama

Re: [U-Boot] Size of external u-boot commands

2009-03-27 Thread Mike Frysinger
On Friday 27 March 2009 08:47:40 Jon Smirl wrote: > On Fri, Mar 27, 2009 at 7:17 AM, Detlev Zundel wrote: > > Hi Wolfgang, > > > >> In message you wrote: > >>> > By providing a sample linker script to make the example programs > >>> > smaller, you could avoid discussions like this in the future.

Re: [U-Boot] [PATCH] omap3: mmc: mmc2 support

2009-03-27 Thread Minkyu Kang
> By this patch, the MMC controller actually used is configured by > CONFIG_MMC_INDEX at compile time? I.e. setting CONFIG_MMC_INDEX to 1 > will use mmc1, 2 will switch to mmc2 and CONFIG_MMC_INDEX 3 will > switch to mmc3? > > If I got this right, do you think we can do this at runtime? E.g. > impl

[U-Boot] [PATCH] MAINTAINERS: Keep list sorted.

2009-03-27 Thread Detlev Zundel
Signed-off-by: Detlev Zundel --- MAINTAINERS | 13 +++-- 1 files changed, 7 insertions(+), 6 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index ce25c1b..6f3e836 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -219,6 +219,10 @@ Larry Johnson korat PPC440EPx +

[U-Boot] [PATCH] MAINTAINERS: Add entry for 'inka4x0' board.

2009-03-27 Thread Detlev Zundel
Signed-off-by: Detlev Zundel --- MAINTAINERS |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 6f3e836..25b28d6 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -452,6 +452,10 @@ John Zhan svm_sc8xx MPC8xx +Detlev Zundel +

Re: [U-Boot] minicom garbled

2009-03-27 Thread SlinceArm
>Do you know the u-boot you loaded is configured for your board? Another >way for garbling is if your board's baud rate generator (clocking) is >not what the u-boot that you loaded is configured for, causing it to >generate an oddball baud rate. Hi , Jerry Van Baren-7 Thanks for your reply

Re: [U-Boot] u-boot-2009.03 Hangs

2009-03-27 Thread Wolfgang Denk
Dear renjith kumar, In message you wrote: > > Tried the latest u-boot in a Sequoia board , withnand-Configuration, but it > hangs in between. This has been fixed in the meantime, see commit 3edf68c47fdd52f19c1e840771c19ba90cf5ced1 Author: Stefan Roese Date: Thu Mar 26 16:14:13 2009 +0100

[U-Boot] u-boot-2009.03 Hangs

2009-03-27 Thread renjith kumar
Hi , Tried the latest u-boot in a Sequoia board , withnand-Configuration, but it hangs in between. Neither getting the shell Nor Boot count. But the board , work fine with old u-boot 1.3.1 (eldk 4.2) with same nand option. Checked size of the images in nand boot and got as follows. Size:

[U-Boot] [PATCH] at91sam9/at91cap: spi init wadd hardware chip select support

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm926ejs/at91/at91cap9_spi.c| 37 - cpu/arm926ejs/at91/at91sam9260_spi.c | 36 +++- cpu/arm926ejs/at91/at91sam9261_spi.c | 36 +++- cpu/arm926

Re: [U-Boot] [PATCH v2 4/7] rtc: add support for 4543 RTC (manufactured by e.g. EPSON)

2009-03-27 Thread Detlev Zundel
Hi Jerry, > A foolish consistency is the hobgoblin of little minds. > > -- Ralph Waldo Emerson > > I change my mind periodically just because of that quote. :-D Thanks Jerry. I was about to write a few sentences but I am sure I could not have driven the point home any better ;) I also found

Re: [U-Boot] [PATCH v2 4/7] rtc: add support for 4543 RTC (manufactured by e.g. EPSON)

2009-03-27 Thread Jerry Van Baren
Anatolij Gustschin wrote: > Detlev Zundel wrote: [snip] >> So I really ask you to reconsider your critique. > > Ok, your and Wolfgang's arguments show me, that being consistent with > something is often brain-damaged. Sorry for the noise. A foolish consistency is the hobgoblin of little minds.

Re: [U-Boot] Size of external u-boot commands

2009-03-27 Thread Jon Smirl
On Fri, Mar 27, 2009 at 7:17 AM, Detlev Zundel wrote: > Hi Wolfgang, > >> In message you wrote: >>> >>> > By providing a sample linker script to make the example programs >>> > smaller, you could avoid discussions like this in the future. >>> >>> But as long as we do not understand what we change

Re: [U-Boot] [PATCH v2 4/7] rtc: add support for 4543 RTC (manufactured by e.g. EPSON)

2009-03-27 Thread Anatolij Gustschin
Detlev Zundel wrote: >>> + * This program is distributed in the hope that it will be useful, >>> + * but WITHOUT ANY WARRANTY; without even the implied warranty of >>> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >> --^ >

[U-Boot] U-Boot makefiles question

2009-03-27 Thread Steven Zedeck
Hi, I have a general question about the U-Boot Makefiles. When I want to add a file to one of the sub-Makefiles (such as in drivers/net/Makefile or board/atmel/at91/Makefile), it seems I need to go through several steps in order for the new file to get compiled. I must be doing something wrong

Re: [U-Boot] [Patch] soft_i2c.c compiler/linker error

2009-03-27 Thread Jens Scharsig
Jean-Christophe PLAGNIOL-VILLARD schrieb: > On 11:31 Fri 27 Mar , Jens Scharsig wrote: >> This patch fix the compiler/linker errors >> >> common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed' >> common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed' >> >> if board use CON

Re: [U-Boot] Size of external u-boot commands

2009-03-27 Thread Detlev Zundel
Hi Wolfgang, > In message you wrote: >> >> > By providing a sample linker script to make the example programs >> > smaller, you could avoid discussions like this in the future. >> >> But as long as we do not understand what we change or what this does, we >> may well get a lot of bug threads in

Re: [U-Boot] [PATCH v2 4/7] rtc: add support for 4543 RTC (manufactured by e.g. EPSON)

2009-03-27 Thread Detlev Zundel
Hi Anatolij, > some more small style issues, see comments below. > > Detlev Zundel wrote: > >> diff --git a/drivers/rtc/rtc4543.c b/drivers/rtc/rtc4543.c >> new file mode 100644 >> index 000..242d9bc >> --- /dev/null >> +++ b/drivers/rtc/rtc4543.c >> @@ -0,0 +1,118 @@ > ... >> + * This program

Re: [U-Boot] [Patch] soft_i2c.c compiler/linker error

2009-03-27 Thread Jean-Christophe PLAGNIOL-VILLARD
On 11:31 Fri 27 Mar , Jens Scharsig wrote: > This patch fix the compiler/linker errors > > common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed' > common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed' > > if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not

Re: [U-Boot] Size of external u-boot commands

2009-03-27 Thread Wolfgang Denk
Dear Detlev, In message you wrote: > > > By providing a sample linker script to make the example programs > > smaller, you could avoid discussions like this in the future. > > But as long as we do not understand what we change or what this does, we > may well get a lot of bug threads in return.

Re: [U-Boot] [PATCH v2 4/7] rtc: add support for 4543 RTC (manufactured by e.g. EPSON)

2009-03-27 Thread Wolfgang Denk
Dear Anatolij, In message <49ccab93.6030...@denx.de> you wrote: > > > + * This program is distributed in the hope that it will be useful, > > + * but WITHOUT ANY WARRANTY; without even the implied warranty of > > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >

Re: [U-Boot] Size of external u-boot commands

2009-03-27 Thread Detlev Zundel
Hi Jon, > On Thu, Mar 26, 2009 at 7:26 PM, Wolfgang Denk wrote: >> Dear Jon Smirl, >> >> In message <9e4733910903261435x598055f8m74c5ac03ad16b...@mail.gmail.com> you >> wrote: >>> >>> The *.bin format is not smart enough to encode gaps. It just puts in >>> 60KB of zeros. >> >> Yes, of course. A

Re: [U-Boot] [PATCH v2 4/7] rtc: add support for 4543 RTC (manufactured by e.g. EPSON)

2009-03-27 Thread Anatolij Gustschin
Hi Detlev, some more small style issues, see comments below. Detlev Zundel wrote: > diff --git a/drivers/rtc/rtc4543.c b/drivers/rtc/rtc4543.c > new file mode 100644 > index 000..242d9bc > --- /dev/null > +++ b/drivers/rtc/rtc4543.c > @@ -0,0 +1,118 @@ ... > + * This program is distributed i

Re: [U-Boot] [PATCH v2 3/7] drivers/twserial: Add protocol driver for "three wire serial" interface.

2009-03-27 Thread Detlev Zundel
Hi Anatolij, > Hi Detlev, > > Detlev Zundel wrote: > >> diff --git a/drivers/twserial/soft_tws.c b/drivers/twserial/soft_tws.c >> new file mode 100644 >> index 000..f63fc3f >> --- /dev/null >> +++ b/drivers/twserial/soft_tws.c > > > >> +/*--

[U-Boot] [Patch] soft_i2c.c compiler/linker error

2009-03-27 Thread Jens Scharsig
This patch fix the compiler/linker errors common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed' common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed' if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not uesd/undef Signed-off-by: Jens Scharsig --- diff --git

Re: [U-Boot] [PATCH v2 3/7] drivers/twserial: Add protocol driver for "three wire serial" interface.

2009-03-27 Thread Anatolij Gustschin
Hi Detlev, Detlev Zundel wrote: > diff --git a/drivers/twserial/soft_tws.c b/drivers/twserial/soft_tws.c > new file mode 100644 > index 000..f63fc3f > --- /dev/null > +++ b/drivers/twserial/soft_tws.c > +/*--- > + * Write

[U-Boot] [PATCH 2/2] at91: Add support for esd MEESC board

2009-03-27 Thread Daniel Gorsulowski
This patch adds support for MEESC board from esd gmbh. The MEESC is based on an Atmel AT91SAM9263 SoC. Signed-off-by: Daniel Gorsulowski --- MAINTAINERS |4 + MAKEALL |1 + Makefile |3 + board/esd/meesc/Makefile | 54 ++ board/

[U-Boot] [PATCH 1/2] at91: Improved Atmel AT45DB081 dataflash support

2009-03-27 Thread Daniel Gorsulowski
This patch improves Atmel AT45DB081 dataflash support. Signed-off-by: Daniel Gorsulowski --- drivers/mtd/dataflash.c |7 --- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/mtd/dataflash.c b/drivers/mtd/dataflash.c index 96cd395..4b768e7 100644 --- a/drivers/mtd/da

[U-Boot] [PATCH] UBIFS: add R/O compatibility

2009-03-27 Thread Stefan Roese
From: Artem Bityutskiy From: Artem Bityutskiy Now UBIFS is supported by u-boot. If we ever decide to change the media format, then people will have to upgrade their u-boots to mount new format images. However, very often it is possible to preserve R/O forward-compatibility, even though the writ

Re: [U-Boot] [PATCH 1/2] Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN

2009-03-27 Thread apgmoorthy
Currently OneNAND initial program loader (ipl) reads only block 0 ie 128KB. However, u-boot image for apollon board is 195KB making the board unbootable with OneNAND. Fix ipl to read CONFIG_SYS_MONITOR_LEN. CONFIG_SYS_MONITOR_LEN macro holds the U-Boot image size. Signed-off-by: Rohit Hagargundg

[U-Boot] [PATCH] NetLoop initialization bug

2009-03-27 Thread Michael Zaidman
Hi Heiko, The patch "netloop: speed up NetLoop" you delivered into the u-boot-2009.03 introduced bug I have described below a few days ago. Could you please take a look at the proposed fix? Thanks, Michael -- Forwarded message -- From: Michael Zaidman Date: Sun, Mar 22, 2009 at