Re: [U-Boot] [PATCH] at91sam9x5ek: Pass serial and revision tags to Linux

2013-04-25 Thread Bo Shen
. + #define CONFIG_SKIP_LOWLEVEL_INIT #define CONFIG_BOARD_EARLY_INIT_F #define CONFIG_DISPLAY_CPUINFO -- 1.7.9.5 ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot Best Regards, Bo Shen

[U-Boot] [PATCH 1/2] mmc: atmel_mci: using IP version for different setting

2013-04-26 Thread Bo Shen
Using IP version for different setting - Higher version supports 8bit mode - Higher version bus width setting is different Signed-off-by: Bo Shen voice.s...@atmel.com --- drivers/mmc/gen_atmel_mci.c | 42 ++ include/atmel_mci.h |2 ++ 2

[U-Boot] [PATCH 2/2] mmc: atmel_mci: add mmc card support

2013-04-26 Thread Bo Shen
add mmc card support with atmel mci driver Signed-off-by: Bo Shen voice.s...@atmel.com --- drivers/mmc/gen_atmel_mci.c |5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/mmc/gen_atmel_mci.c b/drivers/mmc/gen_atmel_mci.c index fc0a181..77ebf17 100644 --- a/drivers

[U-Boot] Question: issues for usb keyboard work with OHCI HCD

2013-05-02 Thread Bo Shen
where should we free the allocated td to fix the issue? Thanks. Best Regards, Bo Shen ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Question: issues for usb keyboard work with OHCI HCD

2013-05-05 Thread Bo Shen
Hi Marek, On 5/3/2013 21:40, Marek Vasut wrote: Dear Bo Shen, Hi All, Now, I test usb host support with Atmel boards, for example, at91sam9x5ek board. When test OHCI USB host with usb keyboard. I meet the following issue. ---8--- U-Boot 2013.04-dirty (May 03 2013 - 11:00:34) CPU

Re: [U-Boot] usb keyboard

2013-05-06 Thread Bo Shen
name. you can use coninfo to get the name. BTW, I am digging USB keyboard issue now, for more detail, reference: http://patchwork.ozlabs.org/patch/241551/ Best Regards, Bo Shen ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de

Re: [U-Boot] [PATCH v2] at91sam9x5ek: Pass serial and revision tags to Linux

2013-05-08 Thread Bo Shen
*/ + system_serial_low = readl(gpbr-reg[2]); + system_rev = readl(gpbr-reg[3]); +} This is wrong which will cause u-boot hang up. It should be: system_serial_low = readl(gpbr-reg[2]); system_rev = readl(gpbr-reg[3]); Best Regards, Bo Shen

Re: [U-Boot] Loading Linux Image on AT91SAM9263-EK

2013-05-09 Thread Bo Shen
the one you prefer. Best Regards, Bo Shen ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v3] at91sam9x5ek: Pass serial and revision tags to Linux

2013-05-09 Thread Bo Shen
insertions(+), 1 deletion(-) Sorry for forgetting to mention check your patch before you send it. please use ./tools/checkpatch.pl under u-boot to check your patch. Best Regards, Bo Shen ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de

Re: [U-Boot] [PATCH v3] at91sam9x5ek: Pass serial and revision tags to Linux

2013-05-12 Thread Bo Shen
/at91bootstrap/blob/master/driver/ds24xx.c. This also have Atmel new SoC sama5d3 series support. Best Regards, Bo Shen ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] mmc: fix env in mmc with redundant compile error

2013-05-13 Thread Bo Shen
: 'env_t' has no member named 'flags' env_mmc.c:254: error: 'env_t' has no member named 'flags' env_mmc.c:267: error: 'env_t' has no member named 'flags' make[1]: *** [env_mmc.o] Error 1 ---8--- Add this patch to fix it Signed-off-by: Bo Shen voice.s...@atmel.com --- include/environment.h |6

Re: [U-Boot] [Patch v2 4/4] ARM: atmel: add sama5d3xek support

2013-05-13 Thread Bo Shen
Hi Andreas, On 5/12/2013 19:35, Andreas Bießmann wrote: Dear Bo Shen, On 12.03.2013 07:15, Bo Shen wrote: Add sama5d3xek support with following feature - boot from NAND flash, PMECC support, 4bit ECC @ 512 bytes sector - boot from SPI flash support - boot from SD card support

Re: [U-Boot] [Patch v2 1/4] USB: ohci-at91: support sama5d3x devices

2013-05-13 Thread Bo Shen
Hi Andreas, On 5/12/2013 19:28, Andreas Bießmann wrote: Dear Bo Shen, On 12.03.2013 07:15, Bo Shen wrote: Add OHCI support for sama5d3x devices can you please rebase this patch and send again? OK, I will do it at next version. Signed-off-by: Bo Shen voice.s...@atmel.com --- change

[U-Boot] [PATCH 0/3] ARM: atmel: add sama5d3xek board support

2013-05-13 Thread Bo Shen
readable in clock.c file - move LCD higher 8 bit to board file (This is board related) Bo Shen (3): ARM: at91: add Atmel sama5d3 SoC new pmc register USB: ohci-at91: support sama5d3x devices ARM: atmel: add sama5d3xek support MAINTAINERS |1 + arch/arm/cpu

[U-Boot] [PATCH 1/3] ARM: at91: add Atmel sama5d3 SoC new pmc register

2013-05-13 Thread Bo Shen
Add Atmel sama5d3 SoC new pmc register Signed-off-by: Bo Shen voice.s...@atmel.com --- Changes in v3: - New splitted patch file. Changes in v2: - No change arch/arm/include/asm/arch-at91/at91_pmc.h | 23 +++ 1 file changed, 23 insertions(+) diff --git a/arch/arm

[U-Boot] [PATCH 2/3] USB: ohci-at91: support sama5d3x devices

2013-05-13 Thread Bo Shen
Add OHCI support for sama5d3x devices Signed-off-by: Bo Shen voice.s...@atmel.com --- Changes in v3: - Rebase to u-boot-atmel master branch Changes in v2: - No Change drivers/usb/host/ohci-at91.c | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/drivers

[U-Boot] [PATCH 3/3] ARM: atmel: add sama5d3xek support

2013-05-13 Thread Bo Shen
Add sama5d3xek support with following feature - boot from NAND flash, PMECC support, 4bit ECC @ 512 bytes sector - boot from SPI flash support - boot from SD card support - LCD support - EMAC support - USB OHCI support Signed-off-by: Bo Shen voice.s...@atmel.com --- Changes in v3

Re: [U-Boot] Question: issues for usb keyboard work with OHCI HCD

2013-05-13 Thread Bo Shen
Hi All, On 5/6/2013 11:01, Bo Shen wrote: Hi Marek, On 5/3/2013 21:40, Marek Vasut wrote: Dear Bo Shen, Hi All, Now, I test usb host support with Atmel boards, for example, at91sam9x5ek board. When test OHCI USB host with usb keyboard. I meet the following issue. ---8--- U-Boot

[U-Boot] [PATCH 1/3] ARM: at91: fix and update README.at91 document

2013-05-13 Thread Bo Shen
This patch implement following things - The link no longer accessable - Remove the error configuration command - Update soldered data flash memory map - Update at91sam9m10g45ek memory size to 128MiB Signed-off-by: Bo Shen voice.s...@atmel.com --- doc/README.at91 | 23

[U-Boot] [PATCH 2/3] ARM: at91: add at91sam9x5 and sama5d3x information

2013-05-13 Thread Bo Shen
This patch add following EK information - at91sam9n12ek, at91sam9x5ek - sama5d3xek Signed-off-by: Bo Shen voice.s...@atmel.com --- doc/README.at91 | 42 ++ 1 file changed, 42 insertions(+) diff --git a/doc/README.at91 b/doc/README.at91 index b3d110b

[U-Boot] [PATCH 3/3] ARM: at91: add NAND partition table and index

2013-05-13 Thread Bo Shen
Add NAND partition table, EK board support boot up NAND flash using the same NAND partition table Add Index in this file Signed-off-by: Bo Shen voice.s...@atmel.com --- doc/README.at91 | 21 - 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/doc/README.at91 b

[U-Boot] [PATCH 0/3] ARM: at91: fix and update README.at91 file

2013-05-13 Thread Bo Shen
This patch series fix and update README.at91 file Bo Shen (3): ARM: at91: fix and update README.at91 document ARM: at91: add at91sam9x5 and sama5d3x information ARM: at91: add NAND partition table and index doc/README.at91 | 84 --- 1

Re: [U-Boot] Question: issues for usb keyboard work with OHCI HCD

2013-05-13 Thread Bo Shen
Hi Marek, On 5/13/2013 23:12, Marek Vasut wrote: Dear Bo Shen, Hi All, On 5/6/2013 11:01, Bo Shen wrote: Hi Marek, On 5/3/2013 21:40, Marek Vasut wrote: Dear Bo Shen, Hi All, Now, I test usb host support with Atmel boards, for example, at91sam9x5ek board. When test OHCI USB

Re: [U-Boot] [PATCH] mmc: fix env in mmc with redundant compile error

2013-05-14 Thread Bo Shen
--- Add this patch to fix it Signed-off-by: Bo Shen voice.s...@atmel.com --- include/environment.h |6 ++ 1 file changed, 6 insertions(+) diff --git a/include/environment.h b/include/environment.h index 4c6a37b..460ccb4 100644 --- a/include/environment.h +++ b/include/environment.h @@ -75,6

[U-Boot] [PATCH v2] mmc: fix env in mmc with redundant compile error

2013-05-14 Thread Bo Shen
: 'env_t' has no member named 'flags' env_mmc.c:254: error: 'env_t' has no member named 'flags' env_mmc.c:267: error: 'env_t' has no member named 'flags' make[1]: *** [env_mmc.o] Error 1 ---8--- Add this patch to fix it Signed-off-by: Bo Shen voice.s...@atmel.com Reviewed-by: Michael Heimpold m

Re: [U-Boot] u-boot USB question

2013-05-16 Thread Bo Shen
, then you have updated linux kernel uImage. BTW, the fw_printenv is used with Linux file system to access u-boot environment. Not sure where to go from here... Thanks, Lance Best Regards, Bo Shen ___ U-Boot mailing list U-Boot@lists.denx.de http

Re: [U-Boot] u-boot USB question

2013-05-16 Thread Bo Shen
; \ fi; \ fi; \ else run nandboot; fi ---8--- Best Regards, Bo Shen ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [Patch v2 2/4] NET: macb: support sama5d3x devices

2013-05-22 Thread Bo Shen
Hi Andreas, On 5/14/2013 05:31, Joe Hershberger wrote: On Sun, May 12, 2013 at 6:33 AM, Andreas Bießmann andreas.de...@googlemail.com wrote: Dear Bo Shen, On 12.03.2013 07:15, Bo Shen wrote: Add macb support for sama5d3x devices Signed-off-by: Bo Shen voice.s...@atmel.com --- change in v2

Re: [U-Boot] [Patch v2 2/4] NET: macb: support sama5d3x devices

2013-05-23 Thread Bo Shen
Hi Andreas, On 5/23/2013 14:51, Andreas Bießmann wrote: Hi Bo, On 22.05.13 10:45, Bo Shen wrote: Hi Andreas, On 5/14/2013 05:31, Joe Hershberger wrote: On Sun, May 12, 2013 at 6:33 AM, Andreas Bießmann andreas.de...@googlemail.com wrote: Dear Bo Shen, On 12.03.2013 07:15, Bo Shen wrote

Re: [U-Boot] Conflict resolution for u-boot-arm/master and u-boot/master merge

2013-05-30 Thread Bo Shen
Bo Shen voice.s...@gmail.com on behalf of Bo Shen voice.s...@atmel.com Hi Albert, On 05/30/2013 08:55 PM, Albert ARIBAUD wrote: Hello Tom and Bo, While preparing for my ARM PR, I have encountered two merge conflicts. Their resolution can be found in branch 'merge_from_mainline' of ARM repo

Re: [U-Boot] [Patch v2 2/4] NET: macb: support sama5d3x devices

2013-06-16 Thread Bo Shen
Hi Joe, On 5/24/2013 05:58, Joe Hershberger wrote: Hi, On Thu, May 23, 2013 at 1:51 AM, Andreas Bießmann andreas.de...@googlemail.com wrote: Hi Bo, On 22.05.13 10:45, Bo Shen wrote: Hi Andreas, On 5/14/2013 05:31, Joe Hershberger wrote: On Sun, May 12, 2013 at 6:33 AM, Andreas Bießmann

Re: [U-Boot] [PATCH] ARM: atmel: add at91sam9g20ek_2mmc nand boot support

2013-02-17 Thread Bo Shen
Hi Andreas, On 01/30/2013 09:43 AM, Bo Shen wrote: Add at91sam9g20_2mmc nand boot support. on this board, there is no dataflash, so disable it change one commet for at91sam9g20ek board Signed-off-by: Bo Shenvoice.s...@atmel.com --- board/atmel/at91sam9260ek/at91sam9260ek.c |7

Re: [U-Boot] timing issue - uboot freeze after pringing header

2013-02-17 Thread Bo Shen
). Best Regards, Bo Shen I am trying both nandflash and dataflash versions, using include/configs/at91sam9260ek.h Messing with settings I have got it back to a state of not printing anything. ___ U-Boot mailing list U-Boot@lists.denx.de http

[U-Boot] [PATCH 0/3] add libfdt bootz support and change nand partition table

2013-02-20 Thread Bo Shen
This patch series implement following feature: - Add libfdt support - Add bootz support - Change nand partition table Bo Shen (1): ARM: at91: change nand flash table Nicolas Ferre (2): arm: at91/configs: add libfdt to configuration arm: at91/configs: add bootz to configuration

[U-Boot] [PATCH 1/3] arm: at91/configs: add libfdt to configuration

2013-02-20 Thread Bo Shen
From: Nicolas Ferre nicolas.fe...@atmel.com support to boot device tree Linux kernel Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com [Add libftd for at91rm9200, at91sam9263, at91sam9rl] Signed-off-by: Bo Shen voice.s...@atmel.com --- include/configs/at91rm9200ek.h |2 ++ include

[U-Boot] [PATCH 3/3] ARM: at91: change nand flash table

2013-02-20 Thread Bo Shen
Change nand flash partition tablke according to www.at91.com/linux4sam more information: http://www.at91.com/linux4sam/bin/view/Linux4SAM/GettingStarted#Linux4SAM_NandFlash_demo_Memory Signed-off-by: Bo Shen voice.s...@atmel.com --- include/configs/at91sam9260ek.h| 18

[U-Boot] [PATCH 2/3] arm: at91/configs: add bootz to configuration

2013-02-20 Thread Bo Shen
From: Nicolas Ferre nicolas.fe...@atmel.com Support to boot zImage Signed-off-by: Nicolas Ferre nicolas.fe...@atmel.com [Add bootz for at91rm9200, at91sam9263, at91sam9rl] Signed-off-by: Bo Shen voice.s...@atmel.com --- include/configs/at91rm9200ek.h |1 + include/configs

Re: [U-Boot] [PATCH 3/3] ARM: at91: change nand flash table

2013-02-20 Thread Bo Shen
Hi Tom, On 2/21/2013 10:05, Tom Rini wrote: On Wed, Feb 20, 2013 at 06:16:25PM +0800, Bo Shen wrote: Change nand flash partition tablke according to www.at91.com/linux4sam more information: http://www.at91.com/linux4sam/bin/view/Linux4SAM/GettingStarted#Linux4SAM_NandFlash_demo_Memory

[U-Boot] [PATCH 0/4] ARM: atmel: add sama5d3xek board support

2013-02-27 Thread Bo Shen
support Bo Shen (4): USB: ohci-at91: support sama5d3x devices NET: macb: support sama5d3x devices SPI: atmel_spi: support sama5d3x devices ARM: atmel: add sama5d3ek support MAINTAINERS |1 + arch/arm/cpu/armv7/at91/Makefile | 49 + arch

[U-Boot] [PATCH 2/4] NET: macb: support sama5d3x devices

2013-02-27 Thread Bo Shen
Add macb support for sama5d3x devices Signed-off-by: Bo Shen voice.s...@atmel.com --- drivers/net/macb.c |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 8bacbda..9e7fbc6 100644 --- a/drivers/net/macb.c +++ b/drivers/net

[U-Boot] [PATCH 3/4] SPI: atmel_spi: support sama5d3x devices

2013-02-27 Thread Bo Shen
Add WDRBT bit support for sama5d3x devices Signed-off-by: Bo Shen voice.s...@atmel.com --- drivers/spi/atmel_spi.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/spi/atmel_spi.c b/drivers/spi/atmel_spi.c index ce7d460..5e97225 100644 --- a/drivers/spi

[U-Boot] [PATCH 1/4] USB: ohci-at91: support sama5d3x devices

2013-02-27 Thread Bo Shen
Add OHCI support for sama5d3x devices Signed-off-by: Bo Shen voice.s...@atmel.com --- drivers/usb/host/ohci-at91.c | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-at91.c index efd711d..35a282e 100644

[U-Boot] [PATCH 4/4] ARM: atmel: add sama5d3xek support

2013-02-27 Thread Bo Shen
Add sama5d3xek support with following feature - boot from NAND flash, PMECC support, 4bit ECC @ 512 bytes sector - boot from SPI flash support - boot from SD card support - LCD support - EMAC support - USB support Signed-off-by: Bo Shen voice.s...@atmel.com --- MAINTAINERS

[U-Boot] [PATCH] ARM: sam9x5: fix ethernet pins in MII mode

2013-02-28 Thread Bo Shen
From: Jesse Gilles jgil...@multitech.com Fix pin setting in MII mode Signed-off-by: Jesse Gilles jgil...@multitech.com --- arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git

Re: [U-Boot] [Drivers PATCH 14/19] net/macb: workaround for transmission hang issue

2013-02-28 Thread Bo Shen
| 38 ++ 1 file changed, 34 insertions(+), 4 deletions(-) Tested on Atmel EK board. It works. Tested-by: Bo Shen voice.s...@atmel.com BTW, would this be implemented as a workaround only for SPEAr320S? Best Regards, Bo Shen diff --git a/drivers/net/macb.c b

Re: [U-Boot] [Drivers PATCH 14/19] net/macb: workaround for transmission hang issue

2013-02-28 Thread Bo Shen
Hi Vipin, On 3/1/2013 11:40, Vipin Kumar wrote: [Snip] Signed-off-by: Shiraz Hashimshiraz.has...@st.com --- drivers/net/macb.c | 38 ++ 1 file changed, 34 insertions(+), 4 deletions(-) Tested on Atmel EK board. It works. Tested-by: Bo Shen voice.s

Re: [U-Boot] Remounting UBI image leads to ECC errors

2013-03-03 Thread Bo Shen
trimffs. The command looks like nand write.trimffs 8200 20 81f000 If not has trimffs sub command, please add CONFIG_CMD_NAND_TRIMFFS into board configuration file. Best Regards, Bo Shen ___ U-Boot mailing list U-Boot@lists.denx.de http

Re: [U-Boot] [PATCH 4/4] ARM: atmel: add sama5d3xek support

2013-03-04 Thread Bo Shen
Hi Tom, On 3/4/2013 23:14, Tom Rini wrote: On Thu, Feb 28, 2013 at 03:00:47PM +0800, Bo Shen wrote: Add sama5d3xek support with following feature - boot from NAND flash, PMECC support, 4bit ECC @ 512 bytes sector - boot from SPI flash support - boot from SD card support - LCD

Re: [U-Boot] [PATCH 4/4] ARM: atmel: add sama5d3xek support

2013-03-04 Thread Bo Shen
Hi Tom, Thanks. On 3/5/2013 10:20, Tom Rini wrote: On Tue, Mar 05, 2013 at 10:03:57AM +0800, Bo Shen wrote: Hi Tom, On 3/4/2013 23:14, Tom Rini wrote: On Thu, Feb 28, 2013 at 03:00:47PM +0800, Bo Shen wrote: [snip] @@ -0,0 +1,268 @@ +/* + * Configuation settings for the SAMA5D3xEK board

Re: [U-Boot] [PATCH 1/4] USB: ohci-at91: support sama5d3x devices

2013-03-07 Thread Bo Shen
On 3/7/2013 17:12, Andreas Bießmann wrote: Dear Bo Shen, On 28.02.13 08:00, Bo Shen wrote: Add OHCI support for sama5d3x devices Signed-off-by: Bo Shen voice.s...@atmel.com --- drivers/usb/host/ohci-at91.c | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH] ARM: at91sam9x5: Using CPU string directly

2013-03-07 Thread Bo Shen
As the CPU name is not configurable, using CPU string directly Signed-off-by: Bo Shen voice.s...@atmel.com --- arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c | 14 +++--- arch/arm/include/asm/arch-at91/at91sam9x5.h |6 -- 2 files changed, 7 insertions(+), 13 deletions

Re: [U-Boot] [PATCH 4/4] ARM: atmel: add sama5d3xek support

2013-03-08 Thread Bo Shen
(AT91_PIO_PORTE, 28, 0);/* LCDD23 */ + +/* Enable clock */ +at91_periph_clk_enable(ATMEL_ID_LCDC); +} +#endif Best Regards, Bo Shen ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [Patch v2 0/4] ARM: atmel: add sama5d3xek board support

2013-03-12 Thread Bo Shen
support Bo Shen (4): USB: ohci-at91: support sama5d3x devices NET: macb: support sama5d3x devices SPI: atmel_spi: support sama5d3x devices ARM: atmel: add sama5d3xek support MAINTAINERS |1 + arch/arm/cpu/armv7/at91/Makefile | 52

[U-Boot] [Patch v2 1/4] USB: ohci-at91: support sama5d3x devices

2013-03-12 Thread Bo Shen
Add OHCI support for sama5d3x devices Signed-off-by: Bo Shen voice.s...@atmel.com --- change in v2: - change #if defined to #ifdef for sama5d3 --- drivers/usb/host/ohci-at91.c | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/drivers/usb/host/ohci-at91.c b

[U-Boot] [Patch v2 2/4] NET: macb: support sama5d3x devices

2013-03-12 Thread Bo Shen
Add macb support for sama5d3x devices Signed-off-by: Bo Shen voice.s...@atmel.com --- change in v2: No change --- drivers/net/macb.c |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 8bacbda..9e7fbc6 100644 --- a/drivers

[U-Boot] [Patch v2 3/4] SPI: atmel_spi: support sama5d3x devices

2013-03-12 Thread Bo Shen
Add WDRBT bit support for sama5d3x devices Signed-off-by: Bo Shen voice.s...@atmel.com --- Change in v2: no change --- drivers/spi/atmel_spi.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/spi/atmel_spi.c b/drivers/spi/atmel_spi.c index ce7d460..5e97225

[U-Boot] [Patch v2 4/4] ARM: atmel: add sama5d3xek support

2013-03-12 Thread Bo Shen
Add sama5d3xek support with following feature - boot from NAND flash, PMECC support, 4bit ECC @ 512 bytes sector - boot from SPI flash support - boot from SD card support - LCD support - EMAC support - USB support (OHCI) Signed-off-by: Bo Shen voice.s...@atmel.com --- Change in v2

[U-Boot] [RFC] net: macb: using AT91FAMILY replace #defined

2013-03-13 Thread Bo Shen
Using CONFIG_AT91FAMILY replace many #defined for atmel SoC Signed-off-by: Bo Shen voice.s...@atmel.com --- drivers/net/macb.c | 10 ++ 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/drivers/net/macb.c b/drivers/net/macb.c index 8bacbda..753fb96 100644 --- a/drivers/net

Re: [U-Boot] AT91SAM9M10 Custom Board U-boot reboot after Wrong Image Format

2013-03-13 Thread Bo Shen
says that printk is missing. Please remove LCD related #defined in board configuration header, while not remove the code. What the detail message for printk is missing. BTW, Which version u-boot do you use? Best Regards, Bo Shen ___ U-Boot mailing

Re: [U-Boot] [PATCH] at91sam9260ek: move board id setup to config header

2013-03-13 Thread Bo Shen
On 3/11/2013 0:16, Andreas Bießmann wrote: Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Bo Shen voice.s...@atmel.com Acked-by: Bo Shen voice.s...@atmel.com --- board/atmel/at91sam9260ek/at91sam9260ek.c | 12 include/configs/at91sam9260ek.h

Re: [U-Boot] [PATCH] at91sam9260ek: move board id setup to config header

2013-03-14 Thread Bo Shen
Hi Andreas, On 3/14/2013 16:44, Andreas Bießmann wrote: Hi Bo, On 03/14/2013 02:46 AM, Bo Shen wrote: On 3/11/2013 0:16, Andreas Bießmann wrote: Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Bo Shen voice.s...@atmel.com Acked-by: Bo Shen voice.s...@atmel.com

Re: [U-Boot] AT91SAM9M10 Custom Board U-boot reboot after Wrong Image Format

2013-03-14 Thread Bo Shen
Hi Marcio, On 3/14/2013 20:23, mar...@netopen.com.br wrote: Hi Bo Shen I have used a SAMBA old version and I managed to write the Linux Kernel that can be recognized by U-boot but now it sends a message Veritying Checksum : Bad Data CRC. It seems that U-Boot is only reading the first

[U-Boot] [PATCH] ARM : at91sam9x5 : Remove CONFIG_ARCH_CPU_INIT

2012-08-14 Thread Bo Shen
Remove CONFIG_ARCH_CPU_INIT, no need it anymore Signed-off-by: Bo Shen voice.s...@atmel.com --- include/configs/at91sam9x5ek.h |2 -- 1 file changed, 2 deletions(-) diff --git a/include/configs/at91sam9x5ek.h b/include/configs/at91sam9x5ek.h index f8bd870..82f6b48 100644 --- a/include

[U-Boot] [PATCH 0/3] Enable at91sam9x5 boot from serial flash

2012-08-15 Thread Bo Shen
This series patches enable at91sam9x5 boot from serial flash Bo Shen (3): spi: add atmel at25db321 serial flash support arm : at91sam9x5 : enable serial flash boot arm : at91sam9x5 : make nand available when not boot from nand arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c |4

[U-Boot] [PATCH 1/3] spi: add atmel at25df321 serial flash support

2012-08-15 Thread Bo Shen
Add atmel at25df321 serial flash support Signed-off-by: Bo Shen voice.s...@atmel.com --- drivers/mtd/spi/atmel.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/drivers/mtd/spi/atmel.c b/drivers/mtd/spi/atmel.c index 1ecece0..89ebe9d 100644 --- a/drivers/mtd/spi/atmel.c +++ b

[U-Boot] [PATCH 2/3] arm : at91sam9x5 : enable serial flash boot

2012-08-15 Thread Bo Shen
enable at91sam9x5 boot from serial flash Use at91sam9x5_dataflash to configure the u-boot Signed-off-by: Bo Shen voice.s...@atmel.com --- arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c |4 ++-- boards.cfg |1 + include/configs/at91sam9x5ek.h

[U-Boot] [PATCH 3/3] arm : at91sam9x5 : fix a small bug for NAND

2012-08-15 Thread Bo Shen
fix a bug: when not boot from NAND, the NAND flash can not be detected. Using this to fix it Signed-off-by: Bo Shen voice.s...@atmel.com --- board/atmel/at91sam9x5ek/at91sam9x5ek.c |2 ++ 1 file changed, 2 insertions(+) diff --git a/board/atmel/at91sam9x5ek/at91sam9x5ek.c b/board/atmel

Re: [U-Boot] [PATCH 0/3] Enable at91sam9x5 boot from serial flash

2012-08-16 Thread Bo Shen
Hi Andreas, On 8/16/2012 12:44, Bo Shen wrote: This series patches enable at91sam9x5 boot from serial flash Bo Shen (3): spi: add atmel at25db321 serial flash support arm : at91sam9x5 : enable serial flash boot arm : at91sam9x5 : make nand available when not boot from nand Please

Re: [U-Boot] [PATCH 1/3] spi: add atmel at25df321 serial flash support

2012-08-16 Thread Bo Shen
Hi Mike, On 8/17/2012 12:18, Mike Frysinger wrote: On Thursday 16 August 2012 00:44:25 Bo Shen wrote: Add atmel at25df321 serial flash support After reading the spi framework. I found there are common interface for serial flash. So, I plan to use the common interface

[U-Boot] [PATCH 2/4] spi: atmel: add WDRBT bit to avoid receive overrun

2012-08-20 Thread Bo Shen
The atmel at91sam9x5 series spi has feature to avoid receive overren Using the patch to enable it Signed-off-by: Bo Shen voice.s...@atmel.com --- drivers/spi/atmel_spi.c |3 +++ drivers/spi/atmel_spi.h |1 + 2 files changed, 4 insertions(+) diff --git a/drivers/spi/atmel_spi.c b

[U-Boot] [PATCH 3/4] atmel: at91sam9x5: fix name error for spi

2012-08-20 Thread Bo Shen
Fix the name error Signed-off-by: Bo Shen voice.s...@atmel.com --- arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c b/arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c

[U-Boot] [PATCH 4/4] atmel: at91sam9x5: add spi flash boot support

2012-08-20 Thread Bo Shen
Add at91sam9x5 series spi flash boot support Using at91sam9x5ek_spiflash to configure, then it can boot from at25df321 serial flash SPI mater work in 30Mhz speed, while not 1Mhz speed. This will base on atmel_spi patch, or else, it will occur receive overrun Signed-off-by: Bo Shen voice.s

[U-Boot] [PATCH 1/4] spiflash: at25: using common spi flash operation

2012-08-20 Thread Bo Shen
Using common spi flash operation function to replace private operation funtion This patch is based on http://patchwork.ozlabs.org/patch/177896/ which has been merged by Mike frysinger Signed-off-by: Bo Shen voice.s...@atmel.com --- drivers/mtd/spi/atmel.c | 11 --- 1 file changed, 8

[U-Boot] [PATCH] Take over the maintainer for sam9g10 and sam9m10g45

2012-08-20 Thread Bo Shen
As the maintainer for at91sam9g10ek and at91sam9m10g45ek can not reach any more. So I wish to take over the maintainer for sam9g10 and sam9m10g45 Signed-off-by: Bo Shen voice.s...@atmel.com --- MAINTAINERS |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b

Re: [U-Boot] [PATCH] arm:at91-boards: remove console_init_f where unnecessary

2012-08-20 Thread Bo Shen
On 8/17/2012 0:01, Andreas Bießmann wrote: A lot of at91 boards have the console_init_f in board_init. This is useless cause it was called before by generic code in lib/board.c. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com cc: Jens Scharsig e...@bus-elektronik.de cc: Stelian Pop

Re: [U-Boot] [PATCH 1/4] spiflash: at25: using common spi flash operation

2012-08-21 Thread Bo Shen
Hi Andreas, On 8/21/2012 19:26, Andreas Bießmann wrote: Dear Bo Shen, On 20.08.2012 08:32, Bo Shen wrote: Using common spi flash operation function to replace private operation funtion This patch is based on http://patchwork.ozlabs.org/patch/177896/ which has been merged by Mike frysinger

Re: [U-Boot] [PATCH] arm:at91-boards: remove console_init_f where unnecessary

2012-08-21 Thread Bo Shen
Hi Andreas, On 8/17/2012 0:01, Andreas Bießmann wrote: A lot of at91 boards have the console_init_f in board_init. This is useless cause it was called before by generic code in lib/board.c. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com cc: Jens Scharsig e...@bus-elektronik.de

[U-Boot] [PATCH] atmel: sam9g10: correct the text base and move into config.mk

2012-08-23 Thread Bo Shen
This patch correct the text base for at91sam9g10ek board Move the text base define to config.mk Signed-off-by: Bo Shen voice.s...@atmel.com --- board/atmel/at91sam9261ek/config.mk |1 + include/configs/at91sam9261ek.h |1 - 2 files changed, 1 insertion(+), 1 deletion(-) create mode

Re: [U-Boot] [PATCH] atmel: sam9g10: correct the text base and move into config.mk

2012-08-23 Thread Bo Shen
Hi Andreas, On 8/23/2012 18:36, Andreas Bießmann wrote: Dear Bo Shen, On 23.08.2012 11:34, Bo Shen wrote: This patch correct the text base for at91sam9g10ek board Move the text base define to config.mk Signed-off-by: Bo Shen voice.s...@atmel.com --- board/atmel/at91sam9261ek/config.mk

Re: [U-Boot] [PATCH 2/4] spi: atmel: add WDRBT bit to avoid receive overrun

2012-08-24 Thread Bo Shen
Hi Andreas, On 8/22/2012 2:56, Mike Frysinger wrote: On Tuesday 21 August 2012 07:11:18 Andreas Bießmann wrote: On 20.08.2012 08:32, Bo Shen wrote: The atmel at91sam9x5 series spi has feature to avoid receive overren Using the patch to enable it Signed-off-by: Bo Shen voice.s...@atmel.com

Re: [U-Boot] [PATCH 1/4] spiflash: at25: using common spi flash operation

2012-08-24 Thread Bo Shen
Hi Mike, On 8/22/2012 2:55, Mike Frysinger wrote: On Tuesday 21 August 2012 07:26:27 Andreas Bießmann wrote: On 20.08.2012 08:32, Bo Shen wrote: Using common spi flash operation function to replace private operation funtion This patch is based on http://patchwork.ozlabs.org/patch/177896

Re: [U-Boot] [PATCH v3 4/5] at91: 9x5: change SMC config timing that both works for PMECC non-PMECC.

2012-08-27 Thread Bo Shen
Hi Josh, On 8/23/2012 18:05, Josh Wu wrote: Signed-off-by: Josh Wu josh...@atmel.com --- board/atmel/at91sam9x5ek/at91sam9x5ek.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/board/atmel/at91sam9x5ek/at91sam9x5ek.c

[U-Boot] [PATCH] arm: sam9g10/sam9m10g45: remove CONFIG_ARCH_CPU_INIT

2012-08-27 Thread Bo Shen
Remove CONFIG_ARCH_CPU_INIT for at91sam9g10ek and at91sam9m10g45ek Signed-off-by: Bo Shen voice.s...@atmel.com --- include/configs/at91sam9261ek.h|1 - include/configs/at91sam9m10g45ek.h |1 - 2 files changed, 2 deletions(-) diff --git a/include/configs/at91sam9261ek.h b/include

Re: [U-Boot] Pull request u-boot-blackfin.git (sf branch)

2012-09-04 Thread Bo Shen
Hi Mike Frysinger, On 9/1/2012 21:17, Andreas Bießmann wrote: Dear Mike Frysinger, On 14.08.2012 17:47, Mike Frysinger wrote: The following changes since commit 4d3c95f5ea7c737a21cd6b9c59435ee693b3f127: zfs: Add ZFS filesystem support (2012-08-09 23:42:20 +0200) are available in the git

[U-Boot] [PATCH] Atmel: sam9g10/9m10/9x5: Add support to boot DT kernel

2012-09-05 Thread Bo Shen
The mainline linux kernel is moving to flatten device tree support Add the CONFIG_OF_LIBFDT option to support booting DT linux kernel Signed-off-by: Bo Shen voice.s...@atmel.com --- include/configs/at91sam9261ek.h|2 ++ include/configs/at91sam9m10g45ek.h |2 ++ include/configs

Re: [U-Boot] Pull request u-boot-blackfin.git (sf branch)

2012-09-10 Thread Bo Shen
Hi Mike Frysinger, On 9/5/2012 9:54, Bo Shen wrote: Hi Mike Frysinger, On 9/1/2012 21:17, Andreas Bießmann wrote: Dear Mike Frysinger, On 14.08.2012 17:47, Mike Frysinger wrote: The following changes since commit 4d3c95f5ea7c737a21cd6b9c59435ee693b3f127: zfs: Add ZFS filesystem support

Re: [U-Boot] [PATCH 2/2] ARM: at91sam9x5: enable MCI0 support for 9x5ek board.

2012-09-10 Thread Bo Shen
Hi Josh, On 9/7/2012 18:39, Josh Wu wrote: Signed-off-by: Josh Wu josh...@atmel.com --- arch/arm/cpu/arm926ejs/at91/at91sam9x5_devices.c | 13 + board/atmel/at91sam9x5ek/at91sam9x5ek.c | 16 include/configs/at91sam9x5ek.h |8

Re: [U-Boot] [PATCH] Atmel: sam9g10/9m10/9x5: Add support to boot DT kernel

2012-09-13 Thread Bo Shen
Hi Andreas, On 9/5/2012 17:22, Bo Shen wrote: The mainline linux kernel is moving to flatten device tree support Add the CONFIG_OF_LIBFDT option to support booting DT linux kernel Signed-off-by: Bo Shen voice.s...@atmel.com --- include/configs/at91sam9261ek.h|2 ++ include/configs

Re: [U-Boot] Help with Glomation GESBC-9G20

2013-06-24 Thread Bo Shen
/smf/index.php/topic,1389.0.html.) I checked this post, you issue have been solved. Am I right? Best Regards, Bo Shen ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Help with Glomation GESBC-9G20

2013-06-24 Thread Bo Shen
keep the update bootstrap work with mainline u-boot properly. Best Regards, Bo Shen ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Help with Glomation GESBC-9G20

2013-06-24 Thread Bo Shen
--- 2. if you just want use ubifs as rootfs. just one thing for u-boot, it is bootcmd, please also reference include/configs/at91sam9x5ek.h. Best Regards, Bo Shen ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Help with Glomation GESBC-9G20

2013-06-25 Thread Bo Shen
Hi Larry Baker, On 06/26/2013 02:02 AM, Larry Baker wrote: On 24 Jun 2013, at 1:22 AM, Bo Shen wrote: Hi Larry Baker, On 6/24/2013 16:02, Larry Baker wrote: I have found why the latest U-Boot does not work on my Glomation GESBC-9G20 board. Two causes: a bad code text segment address

[U-Boot] [PATCH] arm: atmel: add gmac support for sama5d3xek board

2013-06-25 Thread Bo Shen
add gmac support for sama5d3xek board, the gmac embedded in: - sama5d33, sama5d34, sama5d35 Signed-off-by: Bo Shen voice.s...@atmel.com --- arch/arm/cpu/armv7/at91/sama5d3_devices.c| 24 arch/arm/include/asm/arch-at91/at91_common.h |1 + board/atmel

[U-Boot] [PATCH] arm: atmel: add nand trimffs subcommand for at91sam9n12 and at91sam9x5

2013-06-25 Thread Bo Shen
as the at91sam9n12 and at91sam9x5 soc support PMECC, when use u-boot to flash the rootfs, in order to avoid flash one sector with all 0xff into NAND, so use nand trimffs subcommand to avoid it Signed-off-by: Bo Shen voice.s...@atmel.com --- include/configs/at91sam9n12ek.h |3 +++ include

[U-Boot] u-boot can boot Linux in zImage format while not in uImage format

2013-06-26 Thread Bo Shen
possible reason will cause this issue? Best Regards, Bo Shen ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] u-boot can boot Linux in zImage format while not in uImage format

2013-06-26 Thread Bo Shen
Hi Fabio, On 06/27/2013 11:19 AM, Fabio Estevam wrote: On Wed, Jun 26, 2013 at 11:47 PM, Bo Shen voice.s...@atmel.com wrote: Hi All, I am meeting a strange issue. The u-boot can boot device tree supported Linux in zImage format and can not boot in uImage format. The detail information

Re: [U-Boot] u-boot can boot Linux in zImage format while not in uImage format

2013-06-26 Thread Bo Shen
Hi Wolfgang Denk, On 06/27/2013 01:39 PM, Wolfgang Denk wrote: Dear Bo Shen, In message 51cbb1c0.2090...@atmel.com you wrote: ## Booting kernel from Legacy Image at 2200 ... Image Name: Linux-3.10.0-rc7+ Image Type: ARM Linux Kernel Image (uncompressed) Data Size

[U-Boot] Build error of u-boot mater branch

2013-06-27 Thread Bo Shen
for mcf5441x) And lib/rsa/rsa-sign.c commit id is: 19c402afa2e1190f596f35a84ac049b10d814f1f (image: Add RSA support for image signing) Best Regards, Bo Shen ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Build error of u-boot mater branch

2013-06-27 Thread Bo Shen
Hi Enric, 于 6/27/2013 10:55 PM, Enric Balletbo Serra 写道: Hi Bo, 2013/6/27 Bo Shen voice.s...@gmail.com: Hi All, When build u-boot master branch, I meet the following of error. ---8--- lib/rsa/rsa-sign.c:26:25: fatal error: openssl/rsa.h: No such file or directory ---8--- The master git

[U-Boot] [RFC PATCH] arm: arm926ejs: flush cache before disable it

2013-07-02 Thread Bo Shen
flush cache before disable it Signed-off-by: Bo Shen voice.s...@gmail.com --- arch/arm/cpu/arm926ejs/cpu.c |5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/arch/arm/cpu/arm926ejs/cpu.c b/arch/arm/cpu/arm926ejs/cpu.c index 626384c..10aa165 100644 --- a/arch/arm/cpu

  1   2   3   4   5   6   >