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

2014-10-26 Thread Andreas Bießmann
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 v1 01/10] arm, at91, mpddrc: fix typo in ddr2_init()

2014-10-26 Thread Andreas Bießmann
Bießmann andreas.de...@googlemail.com Cc: Bo Shen voice.s...@atmel.com Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/arm/cpu/at91-common/mpddrc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/cpu/at91-common/mpddrc.c b/arch/arm/cpu/at91

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

2014-10-26 Thread Andreas Bießmann
CONFIG_CMDLINE_EDITING +#define CONFIG_AUTO_COMPLETE +#define CONFIG_SYS_HUSH_PARSER + +/* Size of malloc() pool */ +#define CONFIG_SYS_MALLOC_LEN(4 * 1024 * 1024) + +#endif Best Regards Andreas Bießmann ___ U-Boot mailing list U-Boot

Re: [U-Boot] [PATCH v1 02/10] arm, at91: compile mpddrc ram init code also for AT91SAM9M10G45

2014-10-26 Thread Andreas Bießmann
Dear Heiko, On 01.10.14 07:54, Heiko Schocher wrote: - compile mpddrc ram init code also for AT91SAM9M10G45 based boards. - in CONFIG_SAMA5D3 case, look for the ATMEL_MPDDRC_CR_DECOD_INTERLEAVED in the cr configuration Signed-off-by: Heiko Schocher h...@denx.de Cc: Andreas Bießmann

Re: [U-Boot] [PATCH v1 00/10] arm, at91, spl: add spl support for the taurus and corvus boards

2014-10-26 Thread Andreas Bießmann
for the taurus and corvus board http://patchwork.ozlabs.org/patch/395398/ Patchwork [U-Boot] arm, at91: add spi dataflash support for the taurus board http://patchwork.ozlabs.org/patch/395400/ This one has changes requested, is a v2 available? Best regards Andreas Bießmann

Re: [U-Boot] [PATCH v1 03/10] arm, at91: add missing ddr2 cr register MPDDRC_CR_EBISHARE define

2014-10-26 Thread Andreas Bießmann
Dear Heiko, On 01.10.14 07:54, Heiko Schocher wrote: Signed-off-by: Heiko Schocher h...@denx.de Cc: Andreas Bießmann andreas.de...@googlemail.com Cc: Bo Shen voice.s...@atmel.com --- arch/arm/include/asm/arch-at91/atmel_mpddrc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch

Re: [U-Boot] [PATCH v1 04/10] spl, nand: add option to boot raw u-boot.bin image only

2014-10-26 Thread Andreas Bießmann
Dear Heiko, On 01.10.14 07:54, Heiko Schocher wrote: 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 Cc: Andreas Bießmann andreas.de

Re: [U-Boot] [PATCH v1 05/10] mtd: atmel_nand: add missign include

2014-10-26 Thread Andreas Bießmann
On 01.10.14 07:54, Heiko Schocher wrote: using this driver in SPL code with CONFIG_SPL_NAND_ECC configured leads in a compileerror. Fix this. Signed-off-by: Heiko Schocher h...@denx.de Cc: Andreas Bießmann andreas.de...@googlemail.com Cc: Bo Shen voice.s...@atmel.com Cc: Scott Wood

Re: [U-Boot] [PATCH v1 07/10] spl, mtd, nand, atmel_nand: invert device ready pin logic

2014-10-26 Thread Andreas Bießmann
Dear Heiko, On 01.10.14 07:54, Heiko Schocher wrote: 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 Ouch .. Signed-off-by: Heiko Schocher h...@denx.de Cc: Andreas Bießmann andreas.de...@googlemail.com

Re: [U-Boot] [PATCH 3/7] dm: at91: Add driver model support for atmel GPIO driver

2014-10-23 Thread Andreas Bießmann
, + .probe = at91_gpio_probe, + .priv_auto_alloc_size = sizeof(struct at91_port_priv), +}; +#endif 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 4/7] dm: at91: Add platform data for GPIO on at91sam9260-based boards

2014-10-23 Thread Andreas Bießmann
3 /* these SoCs have 3 PIO */ -#define ATMEL_PMC_UHPAT91SAM926x_PMC_UHP #define ATMEL_BASE_PIO ATMEL_BASE_PIOA +#endif +#define ATMEL_PMC_UHPAT91SAM926x_PMC_UHP /* * SoC specific defines Best regards Andreas Bießmann

Re: [U-Boot] [PATCH 5/7] dm: at91: Refactor serial driver slightly for driver model

2014-10-23 Thread Andreas Bießmann
On 06.10.14 20:14, Simon Glass wrote: Before adding driver model support, split out a few of the functions so that they can be used by the driver model code. Signed-off-by: Simon Glass s...@chromium.org Acked-by: Andreas Bießmann andreas.de...@googlemail.com --- drivers/serial

Re: [U-Boot] [PATCH 6/7] dm: at91: Add driver model support for the serial driver

2014-10-23 Thread Andreas Bießmann
), +}; +#endif The patch looks good to me, but I wonder if changing the baudrate is working as expected. Did you test this? 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 7/7] dm: at91: Convert snapper9260 to use driver model

2014-10-23 Thread Andreas Bießmann
On 06.10.14 20:14, Simon Glass wrote: Convert this at91sam9260-based board to use driver model. This should serve as an example for other similar boards. Serial and GPIO are supported so far. Signed-off-by: Simon Glass s...@chromium.org Acked-by: Andreas Bießmann andreas.de

Re: [U-Boot] [PATCH 0/7] dm: Introduce driver model for Atmel at91

2014-10-23 Thread Andreas Bießmann
the old behaviour is retained, so driver model becomes option, not mandatory. This series is available at u-boot-dm/atmel-working. Are there any comments on this series please? done ;) Regards Andreas Bießmann ___ U-Boot mailing list U-Boot

Re: [U-Boot] [PATCH 1/7] dm: at91: Correct text base for snapper9260

2014-10-22 Thread Andreas Bießmann
of RAM, this means just 1MiB of space for relocated u-boot, malloc arena, ... This was exactly the reason for other at91 boards to switch to 0x21f0 as base address. Best regards Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http

Re: [U-Boot] [PATCH 1/7] dm: at91: Correct text base for snapper9260

2014-10-22 Thread Andreas Bießmann
It also seems the maintainer of snapper9260 is not reachable. Simon, do you own such a board? Best regards Andreas Bießmann On 23.10.14 07:07, Andreas Bießmann wrote: Dear Simon, On 06.10.14 20:14, Simon Glass wrote: The value should be 0x23f0. Fix it. Signed-off-by: Simon Glass s

Re: [U-Boot] [PATCH 1/7] dm: at91: Correct text base for snapper9260

2014-10-22 Thread Andreas Bießmann
Hi, On 23.10.14 07:12, Simon Glass wrote: Hi, On Oct 22, 2014 11:10 PM, Andreas Bießmann andreas.de...@googlemail.com mailto:andreas.de...@googlemail.com wrote: It also seems the maintainer of snapper9260 is not reachable. Simon, do you own such a board? Yes I have one. so would you

Re: [U-Boot] [U-Boot,1/2] macb: simplify gmac initialisation

2014-10-10 Thread Andreas Bießmann
Dear Andreas Devel, Andreas Devel andreas.de...@googlemail.com writes: Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Bo Shen voice.s...@atmel.com --- drivers/net/macb.c | 25 - 1 file changed, 8

Re: [U-Boot] ARM: atmel: switch at91sam9263ek to generic board

2014-10-10 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/at91sam9263ek.h | 2 ++ 1 file changed, 2 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U

Re: [U-Boot] [U-Boot,2/2] sama5d3xek: run PHY's config

2014-10-10 Thread Andreas Bießmann
Dear Andreas Devel, Andreas Devel andreas.de...@googlemail.com writes: Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Bo Shen voice.s...@atmel.com --- board/atmel/sama5d3xek/sama5d3xek.c | 29 - 1 file changed, 20 insertions(+), 9 deletions

Re: [U-Boot] arm, at91: add generic board support for the taurus and corvus board

2014-10-10 Thread Andreas Bießmann
Dear Heiko Schocher, Heiko Schocher h...@denx.de writes: Signed-off-by: Heiko Schocher h...@denx.de Cc: Andreas Bießmann andreas.de...@googlemail.com Cc: Bo Shen voice.s...@atmel.com --- include/configs/corvus.h | 2 ++ include/configs/taurus.h | 2 ++ 2 files changed, 4 insertions(+) applied

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

2014-10-10 Thread Andreas Bießmann
:19 +0200) Andreas Bießmann (2): macb: simplify gmac initialisation sama5d3xek: run PHY's config Bo Shen (1): ARM: atmel: switch at91sam9263ek to generic board Heiko Schocher (1): arm, at91: add generic board

Re: [U-Boot] [U-Boot,v2,1/2] ARM: atmel: sama5d3xek: add nor flash init function

2014-09-19 Thread Andreas Bießmann
Dear Bo Shen, Bo Shen voice.s...@atmel.com writes: Add NOR flash hardware init function, including SMC and PIO configuration. Signed-off-by: Bo Shen voice.s...@atmel.com Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2: None board/atmel/sama5d3xek/sama5d3xek.c | 58

Re: [U-Boot] mtd: atmel-nand: use pmecc_readl(b)/pmecc_writel to access the pmecc register

2014-09-19 Thread Andreas Bießmann
Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- drivers/mtd/nand/atmel_nand.c | 21 +++-- drivers/mtd/nand/atmel_nand_ecc.h |3 +++ 2 files changed, 14 insertions(+), 10 deletions(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann

Re: [U-Boot] [U-Boot,v2,2/2] ARM: atmel: sama5d3xek: enable NOR flash support

2014-09-19 Thread Andreas Bießmann
-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,4/4] USB: ehci-atmel: use pcr to enable or disable clock

2014-09-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, 1/4] ARM: atmel: use pcr to enable or disable peripheral clock

2014-09-19 Thread Andreas Bießmann
-at91/at91_pmc.h | 4 arch/arm/include/asm/arch-at91/clk.h | 1 + 3 files changed, 25 insertions(+), 4 deletions(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http

Re: [U-Boot] ARM: atmel: sama5d3: add timings register

2014-09-19 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 --- arch/arm/include/asm/arch-at91/sama5d3_smc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) applied to u-boot-atmel/master

Re: [U-Boot] [U-Boot,3/4] USB: ohci-at91: use pcr to enable or disable clock

2014-09-19 Thread Andreas Bießmann
-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/4] ARM: atmel: add pcr related definition

2014-09-19 Thread Andreas Bießmann
changed, 2 insertions(+), 1 deletion(-) 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] mtd: atmel_nand: Disable subpage NAND write when using Atmel PMECC

2014-09-19 Thread Andreas Bießmann
/atmel_nand.c | 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: at91sam9rlek: convert to generic board support

2014-09-19 Thread Andreas Bießmann
Dear Josh Wu, Josh Wu josh...@atmel.com writes: Signed-off-by: Josh Wu josh...@atmel.com --- include/configs/at91sam9rlek.h | 2 ++ 1 file changed, 2 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot

Re: [U-Boot] ARM: at91sam9n12ek: convert to generic board support

2014-09-19 Thread Andreas Bießmann
Dear Josh Wu, Josh Wu josh...@atmel.com writes: Signed-off-by: Josh Wu josh...@atmel.com --- include/configs/at91sam9n12ek.h | 1 + 1 file changed, 1 insertion(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot

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

2014-09-19 Thread Andreas Bießmann
Dear Albert Aribaud, please pull the following changes into u-boot-arm/master. The following changes since commit 9170818a4e004af7893fa0113f6e5b4afafded55: kconfiglib: change SPDX-License-Identifier to ISC (2014-09-17 21:03:18 -0400) are available in the git repository at:

[U-Boot] [PATCH 0/2] sama5d3xek: get GMAC working

2014-09-18 Thread Andreas Bießmann
I had a strange behaviour for my sama5d34ek board which could sometimes not get up GMAC in U-Boot. It turned out, that we missed to initialize the PHY correctly. Bo, could you please verify correct behaviour on 100MiB devices like sama5d31ek? Andreas Bießmann (2): macb: simplify gmac

[U-Boot] [PATCH 1/2] macb: simplify gmac initialisation

2014-09-18 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Joe Hershberger joe.hershber...@gmail.com Cc: Bo Shen voice.s...@atmel.com --- drivers/net/macb.c | 25 - 1 file changed, 8 insertions(+), 17 deletions(-) diff --git a/drivers/net/macb.c b/drivers/net

[U-Boot] [PATCH 2/2] sama5d3xek: run PHY's config

2014-09-18 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Bo Shen voice.s...@atmel.com --- board/atmel/sama5d3xek/sama5d3xek.c | 29 - 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/board/atmel/sama5d3xek/sama5d3xek.c b/board/atmel

Re: [U-Boot] [PATCH] ARM: atmel: sama5d3: add timings register

2014-08-28 Thread Andreas Bießmann
On 08/01/2014 10:37 AM, Bo Shen wrote: Signed-off-by: Bo Shen voice.s...@atmel.com Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/arm/include/asm/arch-at91/sama5d3_smc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/include/asm/arch

Re: [U-Boot] [PATCH] mtd: atmel-nand: use pmecc_readl(b)/pmecc_writel to access the pmecc register

2014-08-28 Thread Andreas Bießmann
-by: Andreas Bießmann andreas.de...@googlemail.com --- drivers/mtd/nand/atmel_nand.c | 21 +++-- drivers/mtd/nand/atmel_nand_ecc.h |3 +++ 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c

Re: [U-Boot] [PATCH v2 1/2] ARM: atmel: sama5d3xek: add nor flash init function

2014-08-28 Thread Andreas Bießmann
On 07/18/2014 10:43 AM, Bo Shen wrote: Add NOR flash hardware init function, including SMC and PIO configuration. Signed-off-by: Bo Shen voice.s...@atmel.com Reviewed-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2: None board/atmel/sama5d3xek/sama5d3xek.c | 58

Re: [U-Boot] Recommended AVR32 toolchain

2014-08-20 Thread Andreas Bießmann
gcc version unfortunately. You cold use the pre-compiled avr32 toolchain provided by kernel.org [2]. I personally have never run this toolchain but others said it works. Best regards Andreas Bießmann [1] http://distribute.atmel.no/tools/opensource/ [2] https://www.kernel.org/pub/tools/crosstool

Re: [U-Boot] Pull request: u-boot-mmc 1/08/2014

2014-08-04 Thread Andreas Bießmann
this architecture. I just had no time to run the tests from 31.07.2014 8:39 AM to 01.08.2014 6:59 PM. I'm just back to office and will run the tests now. Best regards Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de

Re: [U-Boot] A way to change the status of the whole series on Patchwork ?

2014-07-24 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] A way to change the status of the whole series on Patchwork ?

2014-07-24 Thread Andreas Bießmann
Dear Ian Campell, On 07/24/2014 10:24 AM, Ian Campbell wrote: On Thu, 2014-07-24 at 09:23 +0200, Andreas Bießmann wrote: Dear Ian Campell, On 07/23/2014 10:10 AM, Ian Campbell wrote: On Tue, 2014-07-22 at 12:45 -0700, Brian Norris wrote: Then some sort of grepping/regex/etc. can get you

Re: [U-Boot] Antw: [PATCH v11 3/4] mtd: nand: omap: add CONFIG_NAND_OMAP_ECCSCHEME for selection of ecc-scheme

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

[U-Boot] [PATCH] tricorder: convert to generic board

2014-07-09 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Thomas Weber thomas.we...@corscience.de --- include/configs/tricorder.h |2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/tricorder.h b/include/configs/tricorder.h index 80985a2..847e099 100644 --- a/include

Re: [U-Boot] [PATCH] avr32: migrate cache functions

2014-06-14 Thread Andreas Bießmann
Dear Andreas Bießmann, On 12.06.2014 22:07, Andreas Bießmann wrote: Unfortunately the avr32 cache implementation has another API than the one described in common.h. Migrate the flush/invalidate dcache functions to the common API to be usable in device drivers. Signed-off-by: Andreas Bießmann

Re: [U-Boot] [U-Boot,RESEND,v2,1/3] net: macb: enable dcache in macb

2014-06-14 Thread Andreas Bießmann
file changed, 57 insertions(+), 4 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] macb: make checkpatch clean

2014-06-14 Thread Andreas Bießmann
Dear Andreas Devel, Andreas Devel andreas.de...@googlemail.com writes: This also renames the CONFIG_SYS_MACB_xx defines. They are used just local and therefore don't need the CONFIG_SYS_ prefix. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Reviewed-by: Josh Wu josh...@atmel.com

Re: [U-Boot] avr32: migrate cache functions

2014-06-14 Thread Andreas Bießmann
Dear Andreas Devel, Andreas Devel andreas.de...@googlemail.com writes: Unfortunately the avr32 cache implementation has another API than the one described in common.h. Migrate the flush/invalidate dcache functions to the common API to be usable in device drivers. Signed-off-by: Andreas Bießmann

Re: [U-Boot] [U-Boot,v2,3/3] ARMv7: at91: enable ICache and DCache.

2014-06-14 Thread Andreas Bießmann
: remove the redundant #ifndef(s). arch/arm/cpu/armv7/at91/cpu.c |2 ++ 1 file changed, 2 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

Re: [U-Boot] [U-Boot,v2,2/3] video: atmel_hlcdfb: enable dcache support

2014-06-14 Thread Andreas Bießmann
josh...@atmel.com Acked-by: Anatolij Gustschin ag...@denx.de --- drivers/video/atmel_hlcdfb.c |6 ++ 1 file changed, 6 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de

Re: [U-Boot] arm: ethernut5: convert to generic board

2014-06-14 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

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

2014-06-14 Thread Andreas Bießmann
: arm: ethernut5: convert to generic board (2014-06-14 18:13:15 +0200) Andreas Bießmann (2): avr32: migrate cache functions macb: make checkpatch clean Tim Schendekehl (1): arm: ethernut5: convert to generic board

Re: [U-Boot] [PATCH] macb: make checkpatch clean

2014-06-12 Thread Andreas Bießmann
Hi Tom, On 06/11/2014 05:26 PM, Tom Rini wrote: On Tue, May 27, 2014 at 04:07:30PM +0800, Josh Wu wrote: Hi, Dear Andreas On 5/27/2014 4:55 AM, Andreas Bießmann wrote: This also renames the CONFIG_SYS_MACB_xx defines. They are used just local and therefore don't need the CONFIG_SYS_

Re: [U-Boot] Refactoring of U-Boot directory structure

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

[U-Boot] [PATCH] avr32: migrate cache functions

2014-06-12 Thread Andreas Bießmann
Unfortunately the avr32 cache implementation has another API than the one described in common.h. Migrate the flush/invalidate dcache functions to the common API to be usable in device drivers. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com CC: Josh Wu josh...@atmel.com

Re: [U-Boot] Howto u-boot an evk1100 ?

2014-05-28 Thread Andreas Bießmann
README.avr32-uc3 or something like this than a pure board centric file. 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] Howto u-boot an evk1100 ?

2014-05-27 Thread Andreas Bießmann
? Which docs do you mean? UC3 spec is @atmel.com ;) 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] atngw100mkii: add missing CONFIG_SYS_TEXT_BASE

2014-05-26 Thread Andreas Bießmann
Dear Andreas Bießmann, Andreas Bießmann andreas.de...@googlemail.com writes: Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Masahiro Yamada yamad...@jp.panasonic.com --- include/configs/atngw100mkii.h |1 + 1 file changed, 1 insertion(+) applied to u-boot-avr32/master

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

2014-05-26 Thread Andreas Bießmann
at: git://git.denx.de/u-boot-avr32.git master for you to fetch changes up to 024cd74174a7ee11e71a430395d9f8ae334fec43: atngw100mkii: add missing CONFIG_SYS_TEXT_BASE (2014-05-26 21:23:54 +0200) Andreas Bießmann (1

[U-Boot] [PATCH] macb: make checkpatch clean

2014-05-26 Thread Andreas Bießmann
This also renames the CONFIG_SYS_MACB_xx defines. They are used just local and therefore don't need the CONFIG_SYS_ prefix. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- drivers/net/macb.c | 56 +++- 1 file changed, 29

Re: [U-Boot] [PATCH v2 1/3] net: macb: enable dcache in macb

2014-05-26 Thread Andreas Bießmann
MACB_RX_RING_BYTE_SIZE or something like this to prevent writing always the multiply by sizeof(macb_dma_desc). If you could a new version of this patch it could go in as the first version was in merge window phase AFAIR. The other two patches in this series are ok. Best regards Andreas Bießmann [1] http

Re: [U-Boot] [U-Boot,1/2] ARM: atmel: switch to main crystal osc for SPL boot

2014-05-26 Thread Andreas Bießmann
/spl.c| 39 +++ arch/arm/include/asm/arch-at91/at91_pmc.h | 4 2 files changed, 43 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot

Re: [U-Boot] [U-Boot,2/2] ARM: atmel: enable SPL on sama5d3_xplained board

2014-05-26 Thread Andreas Bießmann
files changed, 137 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,1/4] ARM: atmel: sama5d3xek: convert to generic board

2014-05-26 Thread Andreas Bießmann
or be removed. Signed-off-by: Bo Shen voice.s...@atmel.com Tested-by: Josh Wu josh...@atmel.com --- include/configs/sama5d3xek.h | 2 ++ 1 file changed, 2 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing

Re: [U-Boot] [U-Boot,2/4] ARM: atmel: sama5d3_xplained: convert to generic board

2014-05-26 Thread Andreas Bießmann
or be removed. Signed-off-by: Bo Shen voice.s...@atmel.com --- include/configs/sama5d3_xplained.h | 2 ++ 1 file changed, 2 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http

Re: [U-Boot] [U-Boot,4/4] ARM: atmel: at91sam9x5ek: convert to generic board

2014-05-26 Thread Andreas Bießmann
or be removed. Signed-off-by: Bo Shen voice.s...@atmel.com Tested-by: Josh Wu josh...@atmel.com --- include/configs/at91sam9x5ek.h | 2 ++ 1 file changed, 2 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing

Re: [U-Boot] gpio: at91: add sanity check for the NULL pointer

2014-05-26 Thread Andreas Bießmann
++- 1 file changed, 2 insertions(+), 1 deletion(-) 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,3/4] ARM: atmel: at91sam9m10g45ek: convert to generic board

2014-05-26 Thread Andreas Bießmann
or be removed. Signed-off-by: Bo Shen voice.s...@atmel.com Tested-by: Josh Wu josh...@atmel.com --- include/configs/at91sam9m10g45ek.h | 2 ++ 1 file changed, 2 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot

Re: [U-Boot] mmc: atmel_mci: fix print incorrect buffer content for debug

2014-05-26 Thread Andreas Bießmann
Dear Josh Wu, Josh Wu josh...@atmel.com writes: Signed-off-by: Josh Wu josh...@atmel.com [fix checkpatch line length warning] Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- drivers/mmc/gen_atmel_mci.c |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) applied to u

Re: [U-Boot] corvus: remove unneeded CONFIG_AT91_LEGACY

2014-05-26 Thread Andreas Bießmann
Dear Andreas Devel, Andreas Devel andreas.de...@googlemail.com writes: Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Heiko Schocher h...@denx.de --- include/configs/corvus.h |1 - 1 file changed, 1 deletion(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas

Re: [U-Boot] [U-Boot,v3,3/3] sama5d3xek: enable PMECC header generation

2014-05-26 Thread Andreas Bießmann
Dear Andreas Bießmann, Andreas Bießmann andreas.de...@googlemail.com writes: Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Bo Shen voice.s...@atmel.com Tested-by: Bo Shen voice.s...@atmel.com --- Changes in v3: * use CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER Changes in v2: None

Re: [U-Boot] [U-Boot, v2, 1/3] ARM: at91sam9x5: define the AT91FAMILY and ARM926EJS in SoC header

2014-05-26 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,v3,1/3] mkimage: add atmelimage

2014-05-26 Thread Andreas Bießmann
Dear Andreas Bießmann, Andreas Bießmann andreas.de...@googlemail.com writes: The new atmelimage converts a machine code BLOB to bootable ROM image. Atmel ROM has no sophisticated image format, it only checks the first 7 ARM vectors. The vectors can contain valid B or LDR opcodes, the 6'th vector

Re: [U-Boot] [U-Boot,v3,2/3] arm:at91: enable ROM loadable atmel image

2014-05-26 Thread Andreas Bießmann
Dear Andreas Bießmann, Andreas Bießmann andreas.de...@googlemail.com writes: For sama5d3xek we need to modify the SPL image for correct detection by ROM code. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Tested-by: Bo Shen voice.s...@atmel.com --- Changes in v3: * add

Re: [U-Boot] [U-Boot, v2, 2/3] at91: remove redundant AT91FAMILY definition in board config file

2014-05-26 Thread Andreas Bießmann
/cpu9260.h |1 - include/configs/ethernut5.h|1 - include/configs/sama5d3_xplained.h |1 - include/configs/sama5d3xek.h |1 - include/configs/vl_ma2sc.h |1 - 9 files changed, 10 deletions(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas

Re: [U-Boot] ARM: at91: remove AT91X40 macro since it is not use any more

2014-05-26 Thread Andreas Bießmann
Dear Josh Wu, Josh Wu josh...@atmel.com writes: The at91x40.h is not exist. So we remove it. Signed-off-by: Josh Wu josh...@atmel.com --- arch/arm/include/asm/arch-at91/hardware.h |2 -- 1 file changed, 2 deletions(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann

Re: [U-Boot] [U-Boot,v2,1/2] ARM: at91sam9m10g45ek: enable mci0 support

2014-05-26 Thread Andreas Bießmann
++ include/configs/at91sam9m10g45ek.h | 15 ++- 3 files changed, 41 insertions(+), 1 deletion(-) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http

Re: [U-Boot] [U-Boot, v2, 3/3] ARM: at91: remove redundant ARM926EJS definition in board config files

2014-05-26 Thread Andreas Bießmann
- include/configs/vl_ma2sc.h |1 - 3 files changed, 4 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, v2, 2/2] ARM: at91sam9m10g45ek: add mmc environment configuration support

2014-05-26 Thread Andreas Bießmann
. boards.cfg |1 + include/configs/at91sam9m10g45ek.h | 19 +++ 2 files changed, 20 insertions(+) applied to u-boot-atmel/master, thanks! Best regards, Andreas Bießmann ___ U-Boot mailing list U-Boot@lists.denx.de http

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

2014-05-26 Thread Andreas Bießmann
) Andreas Bießmann (4): corvus: remove unneeded CONFIG_AT91_LEGACY mkimage: add atmelimage arm:at91: enable ROM loadable atmel image sama5d3xek: enable PMECC header generation Bo Shen (6): ARM: atmel: switch to main crystal osc for SPL boot ARM: atmel

Re: [U-Boot] [PATCH v2 2/3] arm:at91: enable ROM loadable atmel image

2014-05-19 Thread Andreas Bießmann
Hi Bo, On 05/19/2014 05:13 AM, Bo Shen wrote: On 05/16/2014 05:59 PM, Andreas Bießmann wrote: For sama5d3xek we need to modify the SPL image for correct detection by ROM code. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2: * add -n switch to mkimage

Re: [U-Boot] [PATCH v2 2/3] arm:at91: enable ROM loadable atmel image

2014-05-19 Thread Andreas Bießmann
On 05/19/2014 10:09 AM, Bo Shen wrote: On 05/19/2014 03:48 PM, Andreas Bießmann wrote: On 05/19/2014 05:13 AM, Bo Shen wrote: On 05/16/2014 05:59 PM, Andreas Bießmann wrote: snip +#define CONFIG_SPL_AT91_HEADER_USE_PMECC1 +#define CONFIG_SPL_AT91_HEADER_SECTOR_PER_PAGE4 +#define

[U-Boot] [PATCH v3 0/3] Add atmel ROM code image

2014-05-19 Thread Andreas Bießmann
vector * add -n switch to mkimage for PMECC type NAND and CONFIG_SYS_NANDFLASH Andreas Bießmann (3): mkimage: add atmelimage arm:at91: enable ROM loadable atmel image sama5d3xek: enable PMECC header generation arch/arm/cpu/armv7/at91/config.mk | 10 ++ common/image.c

[U-Boot] [PATCH v3 3/3] sama5d3xek: enable PMECC header generation

2014-05-19 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Bo Shen voice.s...@atmel.com --- Changes in v3: * use CONFIG_SPL_GENERATE_ATMEL_PMECC_HEADER Changes in v2: None include/configs/sama5d3xek.h |1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/sama5d3xek.h b

[U-Boot] [PATCH v3 2/3] arm:at91: enable ROM loadable atmel image

2014-05-19 Thread Andreas Bießmann
For sama5d3xek we need to modify the SPL image for correct detection by ROM code. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v3: * add atmel_pmecc_params host tool, it generates an appropriate string for mkimage -n switch with compiled in values also used

[U-Boot] [PATCH v3 1/3] mkimage: add atmelimage

2014-05-19 Thread Andreas Bießmann
target was succesfully booted on a sama5d34ek via MMC and NAND. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Bo Shen voice.s...@atmel.com Cc: Heiko Schocher h...@denx.de --- Changes in v3: * remove check for 'usePmecc=y' Changes in v2: * do not check filesize in atmelimage

[U-Boot] [PATCH] corvus: remove unneeded CONFIG_AT91_LEGACY

2014-05-16 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Heiko Schocher h...@denx.de --- include/configs/corvus.h |1 - 1 file changed, 1 deletion(-) diff --git a/include/configs/corvus.h b/include/configs/corvus.h index 959e188..631add3 100644 --- a/include/configs/corvus.h +++ b

Re: [U-Boot] [PATCH] patman: Suppress duplicate signoffs only for real patches

2014-05-16 Thread Andreas Bießmann
. Correct this by only suppressing signoffs in the second pass. Signed-off-by: Simon Glass s...@chromium.org Tested-by: Andreas Bießmann andreas.de...@googlemail.com should be applied ASAP. Patman is a really useful tool but unusable without this patch

[U-Boot] [PATCH v2 0/3] Add atmel ROM code image

2014-05-16 Thread Andreas Bießmann
of this patchset the atmelimage mkimage target can also generate PMECC NAND header. Changes in v2: * do not check filesize in atmelimage * add PMECC header generation and printout * add printout of 6'th vector * add -n switch to mkimage for PMECC type NAND and CONFIG_SYS_NANDFLASH Andreas Bießmann (3

[U-Boot] [PATCH v2 1/3] mkimage: add atmelimage

2014-05-16 Thread Andreas Bießmann
target was succesfully booted on a sama5d34ek via MMC and NAND. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Bo Shen voice.s...@atmel.com Cc: Heiko Schocher h...@denx.de --- Changes in v2: * do not check filesize in atmelimage * add PMECC header generation and printout * add

[U-Boot] [PATCH v2 3/3] sama5d3xek: enable PMECC header generation

2014-05-16 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Bo Shen voice.s...@atmel.com --- Changes in v2: None include/configs/sama5d3xek.h |6 ++ 1 file changed, 6 insertions(+) diff --git a/include/configs/sama5d3xek.h b/include/configs/sama5d3xek.h index 516be85..bddd7e4

[U-Boot] [PATCH v2 2/3] arm:at91: enable ROM loadable atmel image

2014-05-16 Thread Andreas Bießmann
For sama5d3xek we need to modify the SPL image for correct detection by ROM code. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- Changes in v2: * add -n switch to mkimage for PMECC type NAND and CONFIG_SYS_NANDFLASH arch/arm/cpu/armv7/at91/config.mk | 10 ++ doc

Re: [U-Boot] [AVR32] CONFIG_SYS_TEXT_BASE is missing from atngw100mkii board

2014-05-16 Thread Andreas Bießmann
Hi Masahiro, On 05/16/2014 07:48 AM, Masahiro Yamada wrote: Hi Andreass, I noticed by chance atngw100mkii board does not define CONFIG_SYS_TEXT_BASE, although the other AVR32 boards define it. Is this your intention, or mistake? oups. I can't remember why this is missing. Maybe cause

[U-Boot] [PATCH] atngw100mkii: add missing CONFIG_SYS_TEXT_BASE

2014-05-16 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com Cc: Masahiro Yamada yamad...@jp.panasonic.com --- include/configs/atngw100mkii.h |1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/atngw100mkii.h b/include/configs/atngw100mkii.h index 066d09a..7b4f9cf 100644

Re: [U-Boot] [RFC] Kconfig: MAINTAINERS file or not?

2014-04-30 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] [PATCH] spl: consolidate arch/arm/include/asm/arch-*/spl.h

2014-04-23 Thread Andreas Bießmann
. Signed-off-by: Masahiro Yamada yamad...@jp.panasonic.com Cc: Tom Rini tr...@ti.com Cc: Michal Simek michal.si...@xilinx.com Cc: Andreas Bießmann andreas.de...@googlemail.com Acked-by: Andreas Bießmann andreas.de...@googlemail.com ___ U-Boot mailing

[U-Boot] [RFC PATCH 0/2] Add atmel ROM code image

2014-04-23 Thread Andreas Bießmann
is a bit smarter. We would need to patch at least 2 start.S files (arm926ejs and armv7), maybe also the arm920t one too. In fact is the conversion of executable BLOB to ROM detected executable BLOB something that should really be done afterwards as all other SoC vendors do. Andreas Bießmann (2

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