[U-Boot] [PATCH v2 08/11] common/board_r: allocate bootparams

2015-01-29 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2: - provide as extra patch, remove from avr32 generic board support Changes in v1: None common/board_r.c | 15 +++ 1 file changed, 15 insertions(+) diff --git a/common/board_r.c b/common/board_r.c

[U-Boot] [PATCH v2 0/11] avr32: add generic board

2015-01-29 Thread Andreas Bießmann
This is the first attempt to add generic board support to avr32 architecture. It has at least one relevant part for other manual reloc architectures. This series is currently runtime tested on grasshhopper and atstk1002. Andreas Bießmann BEWARE: The 'common/board_f: factor out reserve_stacks

[U-Boot] [PATCH v2 02/11] avr32: rename cpu_init() - arch_cpu_init()

2015-01-29 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2: None Changes in v1: None arch/avr32/cpu/cpu.c|2 +- arch/avr32/include/asm/u-boot.h |2 ++ arch/avr32/lib/board.c |2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH v2 01/11] avr32: use dlmalloc for DMA buffers

2015-01-29 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2: None Changes in v1: None arch/avr32/include/asm/dma-mapping.h |7 - arch/avr32/lib/board.c | 51 -- include/configs/atngw100.h |1 - include

[U-Boot] [PATCH v2 03/11] avr32: factor out cpu_mmc_init()

2015-01-29 Thread Andreas Bießmann
cpu_mmc_init() is required by the init sequence to have a working MMC interface on avr32. This will not be included in the binary if we omit the avr32 board.c when building the generic board. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2: None Changes in v1

[U-Boot] [PATCH v2 04/11] avr32: rename mmu.h definitions

2015-01-29 Thread Andreas Bießmann
Prefix mmu.h PAGE_xxx definitions with MMU_ in order to prevent a naming conflict with other definitions. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2: None Changes in v1: - new since RFC arch/avr32/cpu/at32ap700x/mmu.c |8 arch/avr32

[U-Boot] [PATCH v2 05/11] avr32: convert to dram_init()

2015-01-29 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2: - new since v1 Changes in v1: None arch/avr32/include/asm/u-boot.h |1 + arch/avr32/lib/Makefile |1 + arch/avr32/lib/board.c | 20

[U-Boot] [PATCH v2 10/11] grasshopper: enable generic board

2015-01-29 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2: None Changes in v1: None include/configs/grasshopper.h |4 1 file changed, 4 insertions(+) diff --git a/include/configs/grasshopper.h b/include/configs/grasshopper.h index 83f0ed2..54eb977 100644

[U-Boot] [PATCH v2 11/11] atstk1002: enable generic board

2015-01-29 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2: None Changes in v1: - new since RFC include/configs/atstk1002.h |4 1 file changed, 4 insertions(+) diff --git a/include/configs/atstk1002.h b/include/configs/atstk1002.h index 9e58238..a9c064a 100644

[U-Boot] [PATCH v2 09/11] avr32: add generic board support

2015-01-29 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- This version still has the mmu_init_r() in common/board_r. Removing this now is not that easy ... I'd love to get it in as is and change it later to the board_init_f_r() sequence. Changes in v2: - remove bootparams allocation

Re: [U-Boot] [PATCH v1 6/8] avr32: add generic board support

2015-01-28 Thread Andreas Bießmann
Hi Simon, On 01/28/2015 04:09 AM, Simon Glass wrote: Hi, On 27 January 2015 at 17:16, Andreas Bießmann andreas.de...@googlemail.com wrote: Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v1: - add timer_init in board_r - remove extern declaration

[U-Boot] [PATCH v1 8/8] atstk1002: enable generic board

2015-01-27 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v1: - new since RFC include/configs/atstk1002.h |4 1 file changed, 4 insertions(+) diff --git a/include/configs/atstk1002.h b/include/configs/atstk1002.h index 9e58238..a9c064a 100644 --- a/include/configs

[U-Boot] [PATCH v1 7/8] grasshopper: enable generic board

2015-01-27 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v1: None include/configs/grasshopper.h |4 1 file changed, 4 insertions(+) diff --git a/include/configs/grasshopper.h b/include/configs/grasshopper.h index 83f0ed2..54eb977 100644 --- a/include/configs

[U-Boot] [PATCH v1 4/8] avr32: rename mmu.h definitions

2015-01-27 Thread Andreas Bießmann
Prefix mmu.h PAGE_xxx definitions with MMU_ in order to prevent a naming conflict with other definitions. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v1: - new since RFC arch/avr32/cpu/at32ap700x/mmu.c |8 arch/avr32/include/asm/arch

[U-Boot] [PATCH v1 5/8] common/board_r: manual relocation for cmd table

2015-01-27 Thread Andreas Bießmann
This is required for architectures still need manual relocation like avr32, m68k microblaze and maybe others. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Reviewed-by: Simon Glass s...@chromium.org Tested-by: Michal Simek michal.si...@xilinx.com --- Changes in v1: None common

[U-Boot] [PATCH v1 3/8] avr32: factor out cpu_mmc_init()

2015-01-27 Thread Andreas Bießmann
cpu_mmc_init() is required by the init sequence to have a working MMC interface on avr32. This will not be included in the binary if we omit the avr32 board.c when building the generic board. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v1: - new since RFC arch

[U-Boot] [PATCH v1 1/8] avr32: use dlmalloc for DMA buffers

2015-01-27 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v1: None arch/avr32/include/asm/dma-mapping.h |7 - arch/avr32/lib/board.c | 51 -- include/configs/atngw100.h |1 - include/configs/atngw100mkii.h

[U-Boot] [PATCH v1 2/8] avr32: rename cpu_init() - arch_cpu_init()

2015-01-27 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v1: None arch/avr32/cpu/cpu.c|2 +- arch/avr32/include/asm/u-boot.h |2 ++ arch/avr32/lib/board.c |2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/arch/avr32/cpu

[U-Boot] [PATCH v1 0/8] avr32: add generic board

2015-01-27 Thread Andreas Bießmann
This is the first attempt to add generic board support to avr32 architecture. It has at least one relevant part for other manual reloc architectures. This series is currently runtime tested on grasshhopper and atstk1002. Andreas Bießmann Changes in v1: - new since RFC - new since RFC - add

[U-Boot] [PATCH v1 6/8] avr32: add generic board support

2015-01-27 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v1: - add timer_init in board_r - remove extern declaration of mmu_init_r() arch/avr32/config.mk|3 +++ arch/avr32/cpu/u-boot.lds |2 ++ arch/avr32/include/asm/config.h |1 + arch/avr32

Re: [U-Boot] [RFC PATCH 03/21] ARM: at91: collect SoC sources into mach-at91

2015-01-26 Thread Andreas Bießmann
-at91/armv7/* arch/arm/cpu/at91-common/*- arch/arm/mach-at91/* Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Cc: Andreas Bießmann andreas.de...@googlemail.com Acked-by: Andreas Bießmann andreas.de...@googlemail.com I should have read this mail first ;) Best regards Andreas

Re: [U-Boot] [RFC PATCH 01/21] ARM: at91: move board select menu and common settings

2015-01-26 Thread Andreas Bießmann
with the following command: find board -name Kconfig | xargs sed -i -e ' /config SYS_SOC/ { N /default at91/ { N d } } ' Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Acked-by: Andreas Bießmann andreas.de

Re: [U-Boot] [RFC PATCH 14/21] ARM: at91: move SoC headers to mach-at91/include/mach

2015-01-26 Thread Andreas Bießmann
Dear Masahiro Yamada, On 01/25/2015 07:11 AM, Masahiro Yamada wrote: Move arch/arm/include/asm/arch-at91/* - arch/arm/mach-at91/include/mach/* Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Cc: Andreas Bießmann andreas.de...@googlemail.com Acked-by: Andreas Bießmann andreas.de

[U-Boot] [PULL] u-boot-atmel/master - u-boot/master

2015-01-26 Thread Andreas Bießmann
The following changes since commit ab77f24119e80257de4ab017b877f92f96980562: Merge branch 'master' of git://git.denx.de/u-boot-ti (2015-01-16 10:25:01 -0500) are available in the git repository at: git://git.denx.de/u-boot-atmel.git master for you to fetch changes up to

[U-Boot] [RFC PATCH 4/5] avr32: add generic board support

2015-01-20 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/avr32/config.mk|3 +++ arch/avr32/cpu/u-boot.lds |2 ++ arch/avr32/include/asm/config.h |1 + arch/avr32/include/asm/u-boot.h |7 +++ arch/avr32/lib/Makefile |2 ++ arch/avr32

Re: [U-Boot] [RFC PATCH 0/5] avr32: add generic board

2015-01-20 Thread Andreas Bießmann
On 01/20/2015 12:29 AM, Andreas Bießmann wrote: This is the first attempt to add generic board support to avr32 architecture. It has at least one relevant part for other manual reloc architectures. This series is currently runtime tested on grasshhopper only. I expect some changes

[U-Boot] [RFC PATCH 0/5] avr32: add generic board

2015-01-20 Thread Andreas Bießmann
. The DMA stuff is not tested yet but I expect no serios things here. The code is not run through checkpatch nor buildman at the time of writing. Comments welcome! Especially for the TLB stuff placed in board_init_r. Andreas Bießmann Andreas Bießmann (5): avr32: use dlmalloc for DMA buffers avr32

[U-Boot] [RFC PATCH 5/5] grasshopper: enable generic board

2015-01-19 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- include/configs/grasshopper.h |4 1 file changed, 4 insertions(+) diff --git a/include/configs/grasshopper.h b/include/configs/grasshopper.h index 83f0ed2..54eb977 100644 --- a/include/configs/grasshopper.h +++ b/include

[U-Boot] [RFC PATCH 3/5] common/board_r: manual relocation for cmd table

2015-01-19 Thread Andreas Bießmann
This is required for architectures still need manual relocation like avr32, mk68 and others. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- common/board_r.c | 12 1 file changed, 12 insertions(+) diff --git a/common/board_r.c b/common/board_r.c index a301cc2

[U-Boot] [RFC PATCH 1/5] avr32: use dlmalloc for DMA buffers

2015-01-19 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/avr32/include/asm/dma-mapping.h |7 - arch/avr32/lib/board.c | 51 -- include/configs/atngw100.h |1 - include/configs/atngw100mkii.h |1

[U-Boot] [RFC PATCH 2/5] avr32: rename cpu_init() - arch_cpu_init()

2015-01-19 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/avr32/cpu/cpu.c|2 +- arch/avr32/include/asm/u-boot.h |2 ++ arch/avr32/lib/board.c |2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/arch/avr32/cpu/cpu.c b/arch/avr32/cpu

Re: [U-Boot] [RFC PATCH 3/5] common/board_r: manual relocation for cmd table

2015-01-19 Thread Andreas Bießmann
Hi Simon, On 20.01.15 00:34, Simon Glass wrote: Hi Andreas, On 19 January 2015 at 16:29, Andreas Bießmann andreas.de...@googlemail.com wrote: This is required for architectures still need manual relocation like avr32, mk68 and others. Signed-off-by: Andreas Bießmann andreas.de

Re: [U-Boot] [U-Boot,4/6] ARM: atmel: sama5d4ek: enable usb ethernet gadget

2015-01-19 Thread Andreas Bießmann
Dear Bo Shen, Bo Shen voice.s...@atmel.com writes: Signed-off-by: Bo Shen voice.s...@atmel.com --- include/configs/sama5d4ek.h | 8 1 file changed, 8 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U

Re: [U-Boot] [U-Boot,2/6] ARM: atmel: sama5d4: add usb device initial code

2015-01-19 Thread Andreas Bießmann
Dear Bo Shen, Bo Shen voice.s...@atmel.com writes: Signed-off-by: Bo Shen voice.s...@atmel.com --- arch/arm/cpu/armv7/at91/sama5d4_devices.c | 16 1 file changed, 16 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann

Re: [U-Boot] [U-Boot, 5/6] ARM: atmel: sama5d4_xplained: add option for usb ethernet gadget

2015-01-19 Thread Andreas Bießmann
/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [U-Boot, 3/6] ARM: atmel: sama5d4ek: add option for usb ethernet gadget

2015-01-19 Thread Andreas Bießmann
! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [U-Boot,1/6] ARM: atmel: sama5d4: add usb platform data

2015-01-19 Thread Andreas Bießmann
, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [U-Boot, 6/6] ARM: atmel: sama5d4_xplained: enable usb ethernet gadget

2015-01-19 Thread Andreas Bießmann
Dear Bo Shen, Bo Shen voice.s...@atmel.com writes: Signed-off-by: Bo Shen voice.s...@atmel.com --- include/configs/sama5d4_xplained.h | 8 1 file changed, 8 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann

Re: [U-Boot] [U-Boot, 1/6] ARM: at91: sama5d3_xplained: spl: enable PMECC header generation

2015-01-19 Thread Andreas Bießmann
--- include/configs/sama5d3_xplained.h | 1 + 1 file changed, 1 insertion(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] arm: at91: snapper9260: Drop invalid CONFIG_SKIP_RELOCATE_UBOOT

2015-01-19 Thread Andreas Bießmann
Dear Simon Glass, Simon Glass s...@chromium.org writes: This config is not valid, so drop it. Signed-off-by: Simon Glass s...@chromium.org --- include/configs/snapper9260.h | 1 - 1 file changed, 1 deletion(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann

Re: [U-Boot] [U-Boot, v1, 3/3] taurus, spl: erase also spi flash if recovery button is pressed

2015-01-19 Thread Andreas Bießmann
+++- include/configs/taurus.h | 18 +- 2 files changed, 32 insertions(+), 10 deletions(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman

Re: [U-Boot] [U-Boot,1/2] arm, at91: corvus board updates

2015-01-19 Thread Andreas Bießmann
CONFIG_SYS_NAND_READY_PIN - correct the MACH_TYPE setting Signed-off-by: Heiko Schocher h...@denx.de --- board/siemens/corvus/board.c | 12 +++- include/configs/corvus.h | 4 ++-- 2 files changed, 9 insertions(+), 7 deletions(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas

Re: [U-Boot] [U-Boot,v1,1/3] arm, arm926ejs: make thumb mode compileable

2015-01-19 Thread Andreas Bießmann
++ arch/arm/lib/cache.c | 2 ++ 2 files changed, 4 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [U-Boot,2/2] arm, at91, axm: add SPL support for axm

2015-01-19 Thread Andreas Bießmann
Dear Heiko Schocher, Heiko Schocher h...@denx.de writes: add SPL support also for the axm board. Signed-off-by: Heiko Schocher h...@denx.de --- configs/axm_defconfig | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas

Re: [U-Boot] [U-Boot,v1,2/3] arm, at91: enable thumb mode for taurus board in SPL

2015-01-19 Thread Andreas Bießmann
Dear Heiko Schocher, Heiko Schocher h...@denx.de writes: Signed-off-by: Heiko Schocher h...@denx.de --- include/configs/taurus.h | 5 + 1 file changed, 5 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U

Re: [U-Boot] avr32 atmel ngw100 support question

2015-01-19 Thread Andreas Bießmann
Hi Waldemar, On 19.01.15 21:24, Waldemar Brodkorb wrote: Hi Andreas, Andreas Bießmann wrote, But unfortunately the device is dead after the erase command. Damn, this damn old code run completely from NOR. Current u-boot versions relocate itself to ram after the very first bootstrap. Sorry

Re: [U-Boot] [PATCH] mtd: atmel_nand: according to pmecc version to perform 0xff page correction

2015-01-16 Thread Andreas Bießmann
to this, add PMECC version check, if it's SAMA5D4 then we always let PMECC hardware to correct it. Signed-off-by: Josh Wu josh...@atmel.com except the nitpick. Acked-by: Bo Shen voice.s...@atmel.com Acked-by: Andreas Bießmann andreas.de...@googlemail.com Thanks for the quick review

Re: [U-Boot] [PATCH] ARM: atmel: cleanup: remove at91cap9 related code

2015-01-16 Thread Andreas Bießmann
-off-by: Bo Shen voice.s...@atmel.com Acked-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/arm/cpu/arm926ejs/at91/Makefile | 1 - arch/arm/cpu/arm926ejs/at91/at91cap9_devices.c | 189 --- arch/arm/include/asm/arch-at91/at91_pmc.h

Re: [U-Boot] [PATCH] ARM: atmel: at91sam9m10g45ek: enable SPL

2015-01-16 Thread Andreas Bießmann
setup pll, mux, memory + */ + bl s_init + pop {ip, pc} +ENDPROC(lowlevel_init) Rest of this patch will be reviewed later. Best regards Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman

Re: [U-Boot] [PATCH] ARM: atmel: at91sam9m10g45ek: enable SPL

2015-01-16 Thread Andreas Bießmann
Hi Bo, On 01/16/2015 10:30 AM, Bo Shen wrote: On 01/16/2015 05:10 PM, Andreas Bießmann wrote: On 01/16/2015 03:53 AM, Bo Shen wrote: --- a/arch/arm/cpu/arm926ejs/at91/Makefile +++ b/arch/arm/cpu/arm926ejs/at91/Makefile @@ -25,5 +25,9 @@ obj-y+= reset.o obj-y+= timer.o ifndef

Re: [U-Boot] avr32 atmel ngw100 support question

2015-01-13 Thread Andreas Bießmann
a change of flash partitioning in between. This means that your existing environment partition may not be read in the newer version. I recommend to save the environment as a text file on your host before doing the update. best regards Andreas Bießmann

Re: [U-Boot] avr32 atmel ngw100 support question

2015-01-13 Thread Andreas Bießmann
Hi Waldemar, On 13.01.15 23:59, Waldemar Brodkorb wrote: Hi Andreas, Andreas Bießmann wrote, Hi Waldemar, On 13.01.15 22:31, Waldemar Brodkorb wrote: Hi U-Boot Hackers, I have some problem regarding DHCP on my Atmel NGW100 board, when using dnsmasq on the server side. I want to use

Re: [U-Boot] avr32 atmel ngw100 support question

2015-01-13 Thread Andreas Bießmann
Hi Waldemar, On 14.01.15 00:23, Waldemar Brodkorb wrote: Hi Andreas, Andreas Bießmann wrote, Yes, fileaddr and filesize seemed to be set correctly. Uboot printenv baudrate=115200 ethaddr=00:04:25:1C:5A:AC eth1addr=00:04:25:1C:5A:AD bootcmd=fsload;bootm bootdelay=3 bootargs=console

Re: [U-Boot] [PATCH] tools/kwbimage.c: fix parser error handling

2015-01-11 Thread Andreas Bießmann
ping? It is http://patchwork.ozlabs.org/patch/403237/ On 13.11.14 22:42, Jeroen Hofstee wrote: Hello Andreas, On 27-10-14 13:06, Jeroen Hofstee wrote: Hello Andreas, On 24-10-14 23:25, andreas.de...@googlemail.com wrote: From: Andreas Bießmann andreas.de...@googlemail.com The two error

[U-Boot] [PULL] u-boot-atmel/master - u-boot/master

2015-01-10 Thread Andreas Bießmann
Hi Tom, these fixes are for upcoming 2015.01 release, please pull them from u-boot-atmel/master. The following changes since commit 93e9371f00f1efa9fc570f8e7e8889eae7639868: fix: tools: kwbimage.c: Initialize headersz to suppress warning (2015-01-10 14:09:55 -0500) are available in the git

Re: [U-Boot] [U-Boot,1/3] ARM: atmel: sama5d4 xplained: fix the LCD parameters

2015-01-10 Thread Andreas Bießmann
deletions(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [U-Boot,2/3] ARM: atmel: sama5d4xek: fix the LCD parameters

2015-01-10 Thread Andreas Bießmann
! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [U-Boot,3/3] ARM: atmel: sama5d3xek: fix the LCD parameters

2015-01-10 Thread Andreas Bießmann
! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Bug in buildman?

2014-12-31 Thread Andreas Bießmann
on v2015.01-rc4 and built in different locations. Best regards Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] ti, am3517: errata 430973 workaround

2014-12-09 Thread Andreas Bießmann
it seems the kernel is wrong here. Best regards Andreas Bießmann [1] http://lists.denx.de/pipermail/u-boot/2013-July/158377.html [2] http://lists.denx.de/pipermail/u-boot/2013-July/158404.html [3] http://lists.denx.de/pipermail/u-boot/2013-July/158386.html

Re: [U-Boot] ARM: at91 series: convert to generic board

2014-11-17 Thread Andreas Bießmann
Dear Bo Shen, Bo Shen voice.s...@atmel.com writes: Signed-off-by: Bo Shen voice.s...@atmel.com Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- include/configs/at91rm9200ek.h | 2 ++ include/configs/at91sam9260ek.h | 2 ++ include/configs/at91sam9261ek.h | 2 ++ 3 files changed

Re: [U-Boot] net: macb: write mac address when initialization

2014-11-17 Thread Andreas Bießmann
--- drivers/net/macb.c | 9 + 1 file changed, 9 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [U-Boot,2/2] ARM: atmel: spl: make css field configurable

2014-11-17 Thread Andreas Bießmann
-- 1 file changed, 4 insertions(+), 2 deletions(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [U-Boot,1/2] ARM: atmel: spl: make initialization more stable

2014-11-17 Thread Andreas Bießmann
-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] arm, at91: generate boot.bin file for all atmel SoC

2014-11-17 Thread Andreas Bießmann
Dear Heiko Schocher, Heiko Schocher h...@denx.de writes: generate the boot.bin file for all atmel SoC (arm920, arm926, armv7) Signed-off-by: Heiko Schocher h...@denx.de Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com Reviewed-by: Masahiro Yamada yamad...@jp.panasonic.com [fix subject

Re: [U-Boot] [U-Boot,v3,03/12] arm, at91, mpddrc: fix typo in ddr2_init()

2014-11-17 Thread Andreas Bießmann
Bießmann andreas.de...@googlemail.com --- Changes in v3: ignore 80 characters length as Bo Shen and Adreas Biessmann suggested Changes in v2: add Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com arch/arm/cpu/at91-common/mpddrc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion

Re: [U-Boot] [U-Boot, v3, 04/12] arm, at91: compile mpddrc ram init code also for AT91SAM9M10G45

2014-11-17 Thread Andreas Bießmann
Bießmann andreas.de...@googlemail.com Reviewed-by: Bo Shen voice.s...@atmel.com --- Changes in v3: add Reviewed-by from Bo Shen Changes in v2: add Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com arch/arm/cpu/at91-common/Makefile | 6 +- arch/arm/cpu/at91-common/mpddrc.c | 11

Re: [U-Boot] [U-Boot, v3, 02/12] arm, at91: add spi dataflash support for the taurus board

2014-11-17 Thread Andreas Bießmann
insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [U-Boot, v3, 01/12] spi, atmel: move CONFIG_SYS_SPI_WRITE_TOUT into common header

2014-11-17 Thread Andreas Bießmann
...@denx.de Reviewed-by: Jagannadha Sutradharudu Teki jagannadh.t...@gmail.com Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v3: rebased against 571bdf16a78e9e116a93d46f4809c4f8a3f2adb6 Changes in v2: rebased against d58a9451e7339ed4cf2b2627e534611f427fb791 new in v2 drivers

Re: [U-Boot] [U-Boot, v3, 05/12] arm, at91: add missing ddr2 cr register MPDDRC_CR_EBISHARE define

2014-11-17 Thread Andreas Bießmann
arch/arm/include/asm/arch-at91/atmel_mpddrc.h | 1 + 1 file changed, 1 insertion(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [U-Boot, v3, 11/12] arm, at91, spl: add spl support for the taurus board

2014-11-17 Thread Andreas Bießmann
(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [U-Boot, v3, 08/12] spl, nand, atmel_nand: add erase one block function

2014-11-17 Thread Andreas Bießmann
...@atmel.com Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v3: add Acked-by from Scott Wood add Reviewed-by from Bo Shen Changes in v2: add comment from scott wood: - move nand_erase_one into include/nand.h and rename it to spl_nand_erase_one drivers/mtd/nand/atmel_nand.c

Re: [U-Boot] [U-Boot,v3,07/12] mtd: atmel_nand: add missing include

2014-11-17 Thread Andreas Bießmann
Dear Heiko Schocher, Heiko Schocher h...@denx.de writes: using this driver in SPL code with CONFIG_SPL_NAND_ECC configured leads in an compileerror. Fix this. Signed-off-by: Heiko Schocher h...@denx.de Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com Reviewed-by: Bo Shen voice.s

Re: [U-Boot] [U-Boot, v3, 10/12] arm, spl, at91: add at91sam9260 and at91sam9g45 spl support

2014-11-17 Thread Andreas Bießmann
Dear Heiko Schocher, Heiko Schocher h...@denx.de writes: add support for using spl code on at91sam9260 and at91sam9g45 based boards. Signed-off-by: Heiko Schocher h...@denx.de Reviewed-by: Bo Shen voice.s...@atmel.com Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com [adopt Bo's change

Re: [U-Boot] [U-Boot, v3, 06/12] spl, nand: add option to boot raw u-boot.bin image only

2014-11-17 Thread Andreas Bießmann
Dear Heiko Schocher, Heiko Schocher h...@denx.de writes: enable to boot only a raw u-boot.bin image from nand with the CONFIG_SPL_NAND_RAW_ONLY define. This option saves space on boards where spl space is low. Signed-off-by: Heiko Schocher h...@denx.de Reviewed-by: Andreas Bießmann andreas.de

Re: [U-Boot] [U-Boot, v3, 09/12] spl, mtd, nand, atmel_nand: invert device ready pin logic

2014-11-17 Thread Andreas Bießmann
Dear Heiko Schocher, Heiko Schocher h...@denx.de writes: device ready pin is signalling that the device is ready on state 1 not on 0. Simmiliar as it is in drivers/mtd/nand/nand_spl_simple.c Signed-off-by: Heiko Schocher h...@denx.de Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com

Re: [U-Boot] [U-Boot,v4,3/3] ARM: atmel: add sama5d4ek board support

2014-11-17 Thread Andreas Bießmann
create mode 100644 include/configs/sama5d4ek.h applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [U-Boot, v3, 12/12] arm, spl, at91: add spl support for the corvus board

2014-11-17 Thread Andreas Bießmann
bootloader. Signed-off-by: Heiko Schocher h...@denx.de Reviewed-by: Bo Shen voice.s...@atmel.com Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v3: add Reviewed-by from Bo Shen Changes in v2: - rename function nand_erase_one to spl_nand_erase_one as Scott Wood suggested

Re: [U-Boot] [U-Boot,v4,1/3] mtd: atmel_nand: runtime to build gf table for pmecc

2014-11-17 Thread Andreas Bießmann
the gf table build function by Josh. drivers/mtd/nand/atmel_nand.c | 75 ++- drivers/mtd/nand/atmel_nand_ecc.h | 4 +++ 2 files changed, 78 insertions(+), 1 deletion(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann

Re: [U-Boot] [U-Boot,v2] ARM: atmel: add sama5d4 xplained ultra board support

2014-11-17 Thread Andreas Bießmann
applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [U-Boot,v4,2/3] net: macb: enable GMAC IP without GE feature support

2014-11-17 Thread Andreas Bießmann
voice.s...@atmel.com --- Changes in v4: None Changes in v2: None drivers/net/macb.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot

[U-Boot] [PULL] u-boot-atmel/master - u-boot/master

2014-11-17 Thread Andreas Bießmann
: add sama5d4 xplained ultra board support (2014-11-17 13:13:19 +0100) Anatolij Gustschin (1): arm: imx6: fix typos in CCM_ANALOG_PLL_VIDEO_DENOM register name Andreas Bießmann (4): Merge branch 'master' of git

Re: [U-Boot] [ANN] U-Boot v2015.01-rc1 released

2014-11-12 Thread Andreas Bießmann
4.00s system 338% cpu 22.986 total abiessmann@punisher % ---8--- Best regards Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [v3 PATCH 02/12] arm, at91: add spi dataflash support for the taurus board

2014-11-05 Thread Andreas Bießmann
side. Best regards Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [v3 PATCH 02/12] arm, at91: add spi dataflash support for the taurus board

2014-11-05 Thread Andreas Bießmann
of generic code. Unfortunately this change will blow up this series. I think we should consider this when rewriting the atmel spi driver for dm, which will be done soon (but I think not in this merge window). Jagan, is this Ok for you? Best regards Andreas Bießmann

Re: [U-Boot] [v3 PATCH 07/12] mtd: atmel_nand: add missign include

2014-11-05 Thread Andreas Bießmann
! No problem, I'll change it when applying. Best regards Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [v3 PATCH 08/12] spl, nand, atmel_nand: add erase one block function

2014-11-05 Thread Andreas Bießmann
Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v3: add Acked-by from Scott Wood add Reviewed-by from Bo Shen Changes in v2: add comment from scott wood: - move nand_erase_one into include/nand.h and rename it to spl_nand_erase_one drivers/mtd/nand

Re: [U-Boot] [v3 PATCH 10/12] arm, spl, at91: add at91sam9260 and at91sam9g45 spl support

2014-11-05 Thread Andreas Bießmann
On 31.10.14 08:31, Heiko Schocher wrote: add support for using spl code on at91sam9260 and at91sam9g45 based boards. Signed-off-by: Heiko Schocher h...@denx.de Reviewed-by: Bo Shen voice.s...@atmel.com Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v3

Re: [U-Boot] [v3 PATCH 12/12] arm, spl, at91: add spl support for the corvus board

2014-11-05 Thread Andreas Bießmann
. Signed-off-by: Heiko Schocher h...@denx.de Reviewed-by: Bo Shen voice.s...@atmel.com Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v3: add Reviewed-by from Bo Shen Changes in v2: - rename function nand_erase_one to spl_nand_erase_one as Scott Wood

Re: [U-Boot] [v3 PATCH 01/12] spi, atmel: move CONFIG_SYS_SPI_WRITE_TOUT into common header

2014-11-05 Thread Andreas Bießmann
Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v3: rebased against 571bdf16a78e9e116a93d46f4809c4f8a3f2adb6 Changes in v2: rebased against d58a9451e7339ed4cf2b2627e534611f427fb791 new in v2 drivers/spi/atmel_spi.h | 4 include/configs/afeb9260.h

Re: [U-Boot] [v3 PATCH 0/12] arm, at91, spl: add spl support for the taurus and corvus boards

2014-11-05 Thread Andreas Bießmann
CONFIG_SYS_SPI_WRITE_TOUT from board config file instead define a default in the spi driver - new patch for v2 - add Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com - add comment from Andreas Biessmann: rename MPDDRC_CR_EBISHARE to MPDDRC_CR_DQMS_SHARED - add comment

Re: [U-Boot] [PATCH] arm, at91: generate boot.bin file for all all atmel SoC

2014-11-05 Thread Andreas Bießmann
On 30.10.14 09:59, Heiko Schocher wrote: generate the boot.bin file for all atmel SoC (arm920, arm926, armv7) Signed-off-by: Heiko Schocher h...@denx.de Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/arm/cpu/armv7/at91/config.mk | 4 +--- scripts/Makefile.spl

Re: [U-Boot] [PATCH] ARM: at91 series: convert to generic board

2014-11-05 Thread Andreas Bießmann
On 22.10.14 12:01, Bo Shen wrote: Signed-off-by: Bo Shen voice.s...@atmel.com Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- include/configs/at91rm9200ek.h | 2 ++ include/configs/at91sam9260ek.h | 2 ++ include/configs/at91sam9261ek.h | 2 ++ 3 files changed, 6

[U-Boot] [RFC PATCH] tricorder: rewrite tricordereeprom command

2014-11-04 Thread Andreas Bießmann
This rewrite uses lately promoted eeprom_init(int) function to choose the right I2C bus when writing data to the EEPROM. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Marek Vasut ma...@denx.de --- Hi Marek, works this for you? I can't kill the i2c_read() cause eeprom_read

Re: [U-Boot] [PATCH 1/3] atmel_nand: if don't have gf table in rom code we will build it runtime

2014-10-28 Thread Andreas Bießmann
Hi Bo, On 28.10.14 10:27, Bo Shen wrote: Hi Andreas, On 10/28/2014 04:05 PM, Bo Shen wrote: Hi Andreas, On 10/25/2014 06:22 AM, Andreas Bießmann wrote: ATMEL_BASE_PMERRLOC; +#if defined(NO_GALOIS_TABLE_IN_ROM) +/* Set pmecc_rom_base as the begin of gf table

Re: [U-Boot] [PATCH v2 1/3] mtd: atmel_nand: runtime to build gf table for pmecc

2014-10-28 Thread Andreas Bießmann
Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH v2 3/3] ARM: atmel: add sama5d4ek board support

2014-10-28 Thread Andreas Bießmann
be applied soon. Best Regards Andreas Bießmann @@ -50,12 +51,26 @@ static inline u32 get_pllb_init(void) static inline unsigned long get_macb_pclk_rate(unsigned int dev_id) { +#ifdef CPU_HAS_H32MXDIV + if (H32MXDIV) + return get_mck_clk_rate() / 2; + else

Re: [U-Boot] [PATCH v2 3/3] ARM: atmel: add sama5d4ek board support

2014-10-28 Thread Andreas Bießmann
On 29.10.14 04:24, Andreas Bießmann wrote: Hi Bo, one single change please. On 29.10.14 03:32, Bo Shen wrote: static inline unsigned long get_cpu_clk_rate(void) Could we please rewrite this peace of code like this: ;) I mean to say piece/snippet

Re: [U-Boot] [PATCH 9/9] arm: Zap tricorder-eeprom

2014-10-26 Thread Andreas Bießmann
board support. I'll be back at work on 2014/11/03 and will rework this code based on your eeprom cleanup then. Is that Ok for you? Best regards Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 1/3] atmel_nand: if don't have gf table in rom code we will build it runtime

2014-10-26 Thread Andreas Bießmann
* sizeof(int16_t))); +#else host-pmecc_rom_base = (void __iomem *) ATMEL_BASE_ROM; +#endif /* ECC is calculated for the whole page (1 step) */ nand-ecc.size = mtd-writesize; Best regards Andreas Bießmann ___ U-Boot mailing list U

<    1   2   3   4   5   6   7   8   9   10   >