[U-Boot] [PATCH] arm: ls1021a: Remove the inappropriate use of the function 'sprintf'

2015-05-11 Thread Alison Wang
As the function 'sprintf' does not check buffer boundaries but outputs to the buffer 'enet' of fixed size (16), this patch removes the function 'sprintf', and uses 'strcpy' instead. It will assign the character arrays 'enet' and 'phy' the corresponding character strings. Signed-off-by: Alison

Re: [U-Boot] [PATCH v2 4/4] autoboot.c: Add feature to stop autobooting via SHA256 encrypted password

2015-05-11 Thread Stefan Roese
Hi Andreas, On 11.05.2015 09:16, Andreas Bießmann wrote: # ifdef CONFIG_AUTOBOOT_DELAY_STR if (delaykey[0].str == NULL) delaykey[0].str = CONFIG_AUTOBOOT_DELAY_STR; # endif -# ifdef CONFIG_AUTOBOOT_STOP_STR +# ifdef CONFIG_AUTOBOOT_DELAY_STR2 if

Re: [U-Boot] [PATCH v3 6/8] mtd: vf610_nfc: add Freescale NFC controller configs to Kconfig

2015-05-11 Thread Stefano Babic
Hi Stefan, On 08/05/2015 19:07, Stefan Agner wrote: This commit allows users to enable/disable the Freescale NFC controller found in systems like Vybrid (VF610), MPC5125, MCF54418 or Kinetis K70 via Kconfig with more detailed help docs. Signed-off-by: Stefan Agner ste...@agner.ch ---

Re: [U-Boot] [PATCH 12/12] test: dm: add sandbox PMIC framework tests

2015-05-11 Thread Przemyslaw Marczak
Hello Simon, On 05/10/2015 03:57 PM, Simon Glass wrote: Hi Przemyslaw, On 8 May 2015 at 10:20, Przemyslaw Marczak p.marc...@samsung.com wrote: This change adds new file to sandbox driver model test environment. The file is: test/dm/power.c, and it includes tests for PMIC framework, which

Re: [U-Boot] [PATCH v6 0/4] spi, sf: add mtdparts feature to spi and sf commands

2015-05-11 Thread Jagan Teki
On 11 May 2015 at 11:19, Heiko Schocher h...@denx.de wrote: Hello Jagan, Am 27.04.2015 07:42, schrieb Heiko Schocher: This patchserie add the popssibility to define mtd partitions on spi nor flash, and use this settings with the sf commands. steps: - add MTD layer driver for spi,

Re: [U-Boot] [PATCH 09/12] sandbox: add: sandbox PMIC device drivers: I2C emul, pmic, regulator

2015-05-11 Thread Przemyslaw Marczak
Hello Simon, On 05/10/2015 03:57 PM, Simon Glass wrote: Hi Przemyslaw, On 8 May 2015 at 10:20, Przemyslaw Marczak p.marc...@samsung.com wrote: This commit adds emulation of sandbox PMIC device, which includes: - PMIC I2C emulation driver - PMIC I/O driver (UCLASS_PMIC) - PMIC regulator driver

Re: [U-Boot] [PATCH] ppc: xilinx: Remove ancient ppc405 and ppc440 platform

2015-05-11 Thread Ricardo Ribalda Delgado
Hello Michal Thanks for your reply On Mon, May 11, 2015 at 9:11 AM, Michal Simek michal.si...@xilinx.com wrote: Hi, On 05/09/2015 06:24 PM, Ricardo Ribalda Delgado wrote: Hello Michal and Stefan Could you provide some context about why are we removing this? Virtex 5 (and V4) are not yet

Re: [U-Boot] [PATCH 01/12] dm: pmic: code cleanup of PMIC uclass driver

2015-05-11 Thread Przemyslaw Marczak
Hello Simon, On 05/10/2015 03:56 PM, Simon Glass wrote: Hi Przemyslaw, On 8 May 2015 at 10:20, Przemyslaw Marczak p.marc...@samsung.com wrote: The cleanup includes: - pmic.h - fix mistakes in a few comments - pmic operations: value 'reg_count' - redefine as function call - fix function name:

Re: [U-Boot] [PATCHv3] mtd: sf: Add CONFIG_SPI_N25Q256A_RESET for software-reset

2015-05-11 Thread Marek Vasut
On Sunday, May 10, 2015 at 07:53:46 PM, Pavel Machek wrote: [...] As per my early comments on this thread, I'm not happy with this approach of being added flash specific in generic code by simply added like this. I encounter similar issue before and I simply reverted [1]

Re: [U-Boot] [PATCHv3] mtd: sf: Add CONFIG_SPI_N25Q256A_RESET for software-reset

2015-05-11 Thread Marek Vasut
On Sunday, May 10, 2015 at 07:43:52 PM, Pavel Machek wrote: On Sun 2015-05-10 18:25:59, Marek Vasut wrote: On Sunday, May 10, 2015 at 02:24:01 PM, Jagan Teki wrote: On 10 May 2015 at 16:19, Pavel Machek pa...@denx.de wrote: On Sun 2015-05-10 11:15:41, Pavel Machek wrote: Add reset

Re: [U-Boot] [PATCH 10/19] imx: ventana: fix pcie reset for GW522x

2015-05-11 Thread Stefano Babic
Hi Tim, On 09/05/2015 03:28, Tim Harvey wrote: The re-assignment of pcie_rst gpio for GW522x needs to occur earlier, before the PCI subsystem calls the toggle funciton. Signed-off-by: Tim Harvey thar...@gateworks.com --- board/gateworks/gw_ventana/gw_ventana.c | 8 1 file

Re: [U-Boot] [PATCH v1 1/4] Kconfig: Enable usage of escape char '\' in string values

2015-05-11 Thread Stefan Roese
Hi Simon, On 10.05.2015 16:48, Simon Glass wrote: On 7 May 2015 at 06:13, Stefan Roese s...@denx.de wrote: I might have missed something, but I failed to use the escape char '\' in strings. To pass a printf format string like foo %d bar\n via Kconfig to the code. Right now its not possible to

Re: [U-Boot] [PATCH v6 0/4] spi, sf: add mtdparts feature to spi and sf commands

2015-05-11 Thread Heiko Schocher
Hello Jagan, Am 11.05.2015 08:01, schrieb Jagan Teki: On 11 May 2015 at 11:19, Heiko Schocher h...@denx.de wrote: Hello Jagan, Am 27.04.2015 07:42, schrieb Heiko Schocher: This patchserie add the popssibility to define mtd partitions on spi nor flash, and use this settings with the sf

Re: [U-Boot] [PATCH v2 4/4] autoboot.c: Add feature to stop autobooting via SHA256 encrypted password

2015-05-11 Thread Andreas Bießmann
Hi Stefan, On 05/08/2015 09:52 AM, Stefan Roese wrote: This patch adds the feature to only stop the autobooting, and therefor boot into the U-Boot prompt, when the input string / password matches a values that is encypted via a SHA256 hash and saved in the environment. This feature is

Re: [U-Boot] [PATCH] ppc: xilinx: Remove ancient ppc405 and ppc440 platform

2015-05-11 Thread Michal Simek
Hi, On 05/09/2015 06:24 PM, Ricardo Ribalda Delgado wrote: Hello Michal and Stefan Could you provide some context about why are we removing this? Virtex 5 (and V4) are not yet in their end of life. I was checking this internally and ppc is not supported by tools for several releases

Re: [U-Boot] [PATCH 00/12] PMIC/REGULATOR cleanup and Sandbox tests

2015-05-11 Thread Przemyslaw Marczak
Hello Simon, On 05/10/2015 03:56 PM, Simon Glass wrote: Hi Przemyslaw, On 8 May 2015 at 10:20, Przemyslaw Marczak p.marc...@samsung.com wrote: Hello! This patchset cleanups the POWER framework V4, which is applied into u-boot-dm/next tree. The main changes: - pmic/regulator uclasses

Re: [U-Boot] [PATCHv3] mtd: sf: Add CONFIG_SPI_N25Q256A_RESET for software-reset

2015-05-11 Thread Pavel Machek
On Mon 2015-05-11 14:14:32, Jagan Teki wrote: On 11 May 2015 at 14:09, Pavel Machek pa...@denx.de wrote: On Mon 2015-05-11 14:03:06, Jagan Teki wrote: On 11 May 2015 at 13:59, Pavel Machek pa...@denx.de wrote: On Mon 2015-05-11 13:35:04, Jagan Teki wrote: On 11 May 2015 at 13:18, Marek

Re: [U-Boot] [PATCHv3] mtd: sf: Add CONFIG_SPI_N25Q256A_RESET for software-reset

2015-05-11 Thread Jagan Teki
On 11 May 2015 at 14:20, Pavel Machek pa...@denx.de wrote: On Mon 2015-05-11 14:14:32, Jagan Teki wrote: On 11 May 2015 at 14:09, Pavel Machek pa...@denx.de wrote: On Mon 2015-05-11 14:03:06, Jagan Teki wrote: On 11 May 2015 at 13:59, Pavel Machek pa...@denx.de wrote: On Mon 2015-05-11

[U-Boot] [PATCH] vexpress64: fix various memory issues

2015-05-11 Thread Linus Walleij
The ARM Trusted Firmware or other security solutions are eating memory from the top of the physical SDRAM1 space, moving backward from 0x, currently occupying e.g. 0xfe00-0x with Trusted Firmware. This solution to reserving memory for secure world is not optimal, so we need to

Re: [U-Boot] [PATCH 0/6] Remove sh boards that we have no tool-chain for.

2015-05-11 Thread Phil Edworthy
Hi Joe, -Original Message- From: U-Boot [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Joe Hershberger Sent: 10 May 2015 21:23 To: u-boot@lists.denx.de Cc: Rob Herring; Thierry Reding; Stephen Warren; Joe Hershberger; Hisashi Nakamura; Masahiro Yamada; Tom Rini; York Sun;

[U-Boot] [PATCH 2/7] avr32: delete non generic board favr-32-ezkit

2015-05-11 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/avr32/Kconfig | 4 - board/earthlcd/favr-32-ezkit/Kconfig | 15 -- board/earthlcd/favr-32-ezkit/MAINTAINERS | 6 - board/earthlcd/favr-32-ezkit/Makefile| 9 --

Re: [U-Boot] [PATCHv3] mtd: sf: Add CONFIG_SPI_N25Q256A_RESET for software-reset

2015-05-11 Thread Jagan Teki
On 11 May 2015 at 13:18, Marek Vasut ma...@denx.de wrote: On Sunday, May 10, 2015 at 07:53:46 PM, Pavel Machek wrote: [...] As per my early comments on this thread, I'm not happy with this approach of being added flash specific in generic code by simply added like this. I encounter

Re: [U-Boot] [PATCHv3] mtd: sf: Add CONFIG_SPI_N25Q256A_RESET for software-reset

2015-05-11 Thread Pavel Machek
On Mon 2015-05-11 13:35:04, Jagan Teki wrote: On 11 May 2015 at 13:18, Marek Vasut ma...@denx.de wrote: On Sunday, May 10, 2015 at 07:53:46 PM, Pavel Machek wrote: [...] As per my early comments on this thread, I'm not happy with this approach of being added flash specific in

Re: [U-Boot] [PATCHv3] mtd: sf: Add CONFIG_SPI_N25Q256A_RESET for software-reset

2015-05-11 Thread Jagan Teki
On 11 May 2015 at 13:59, Pavel Machek pa...@denx.de wrote: On Mon 2015-05-11 13:35:04, Jagan Teki wrote: On 11 May 2015 at 13:18, Marek Vasut ma...@denx.de wrote: On Sunday, May 10, 2015 at 07:53:46 PM, Pavel Machek wrote: [...] As per my early comments on this thread, I'm not happy

Re: [U-Boot] [PATCHv3] mtd: sf: Add CONFIG_SPI_N25Q256A_RESET for software-reset

2015-05-11 Thread Jagan Teki
On 11 May 2015 at 14:09, Pavel Machek pa...@denx.de wrote: On Mon 2015-05-11 14:03:06, Jagan Teki wrote: On 11 May 2015 at 13:59, Pavel Machek pa...@denx.de wrote: On Mon 2015-05-11 13:35:04, Jagan Teki wrote: On 11 May 2015 at 13:18, Marek Vasut ma...@denx.de wrote: On Sunday, May 10,

[U-Boot] [PATCH V3] sf: Add support for flag status register on Micron chips

2015-05-11 Thread Zhiqiang Hou
From: Hou Zhiqiang b48...@freescale.com Enter 3 Byte address mode at first, because it may change to 4 Byte address mode in kernel driver and not reset to 3 Byte address mode after reboot. Add clear flag status register operation that some Micron SPI flash chips required after reading the flag

Re: [U-Boot] [PATCHv3] mtd: sf: Add CONFIG_SPI_N25Q256A_RESET for software-reset

2015-05-11 Thread Pavel Machek
On Mon 2015-05-11 14:35:36, Jagan Teki wrote: On 11 May 2015 at 14:20, Pavel Machek pa...@denx.de wrote: On Mon 2015-05-11 14:14:32, Jagan Teki wrote: On 11 May 2015 at 14:09, Pavel Machek pa...@denx.de wrote: On Mon 2015-05-11 14:03:06, Jagan Teki wrote: On 11 May 2015 at 13:59, Pavel

[U-Boot] [PATCH 4/7] avr32: delete non generic board mimc200

2015-05-11 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/avr32/Kconfig | 4 - board/mimc/mimc200/Kconfig | 15 board/mimc/mimc200/MAINTAINERS | 6 -- board/mimc/mimc200/Makefile| 6 -- board/mimc/mimc200/mimc200.c | 197

[U-Boot] [PATCH 5/7] avr32: delete non generic board's atstk100{3, 4, 6}

2015-05-11 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/avr32/Kconfig| 9 -- board/atmel/atstk1000/Kconfig | 48 -- board/atmel/atstk1000/MAINTAINERS | 6 -- board/atmel/atstk1000/atstk1000.c | 23 + configs/atstk1003_defconfig | 2 -

[U-Boot] [PATCH 3/7] avr32: delete non generic board hammerhead

2015-05-11 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/avr32/Kconfig | 4 - board/miromico/hammerhead/Kconfig | 15 board/miromico/hammerhead/MAINTAINERS | 6 -- board/miromico/hammerhead/Makefile | 6 --

[U-Boot] [PATCH 7/7] avr32: delete ancient board.c

2015-05-11 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/avr32/lib/Makefile | 3 - arch/avr32/lib/board.c | 256 2 files changed, 259 deletions(-) delete mode 100644 arch/avr32/lib/board.c diff --git a/arch/avr32/lib/Makefile

[U-Boot] [PATCH 6/7] avr32: take maintainership for atstk1002

2015-05-11 Thread Andreas Bießmann
I have this board at work, so I can trun tests on it. Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- board/atmel/atstk1000/MAINTAINERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/board/atmel/atstk1000/MAINTAINERS b/board/atmel/atstk1000/MAINTAINERS

[U-Boot] [PATCH 0/7] avr32: remove non-generic boards

2015-05-11 Thread Andreas Bießmann
This series deletes avr32-boards that are still using the ancient arch/avr32/lib/board.c code. If one would like his board to stay in u-boot there is a last chance to convert it to generic board _now_. It should be as easy as defining these three values in the board config: |/* generic board */

[U-Boot] [PATCH 1/7] avr32: delete non generic board atngw100

2015-05-11 Thread Andreas Bießmann
Signed-off-by: Andreas Bießmann andreas.de...@googlemail.com --- arch/avr32/Kconfig | 4 - board/atmel/atngw100/Kconfig | 15 board/atmel/atngw100/MAINTAINERS | 6 -- board/atmel/atngw100/Makefile| 6 -- board/atmel/atngw100/atngw100.c | 109

[U-Boot] [PATCH] exynos: clock: clean up checkpatch issues

2015-05-11 Thread Minkyu Kang
Signed-off-by: Minkyu Kang mk7.k...@samsung.com --- arch/arm/cpu/armv7/exynos/clock.c | 65 + 1 file changed, 37 insertions(+), 28 deletions(-) diff --git a/arch/arm/cpu/armv7/exynos/clock.c b/arch/arm/cpu/armv7/exynos/clock.c index df4d473..1c6baa1 100644

[U-Boot] i.MX6 boot mode on SRC_SBMR1

2015-05-11 Thread Palacios, Hector
Hello Troy, Code comments on commit 124a06d7fbbf82f47304d499418460312a725ad6 for forcing the boot mode say: +/* + * cfg_val will be used for + * Boot_cfg4[7:0]:Boot_cfg3[7:0]:Boot_cfg2[7:0]:Boot_cfg1[7:0] + * After reset, if GPR10[28] is 1, ROM will copy GPR9[25:0] + * to SBMR1, which will

Re: [U-Boot] [PATCHv3] mtd: sf: Add CONFIG_SPI_N25Q256A_RESET for software-reset

2015-05-11 Thread Pavel Machek
On Mon 2015-05-11 14:03:06, Jagan Teki wrote: On 11 May 2015 at 13:59, Pavel Machek pa...@denx.de wrote: On Mon 2015-05-11 13:35:04, Jagan Teki wrote: On 11 May 2015 at 13:18, Marek Vasut ma...@denx.de wrote: On Sunday, May 10, 2015 at 07:53:46 PM, Pavel Machek wrote: [...] As

[U-Boot] [PATCH] git-mailrc: add Alexey as ARC maintainer

2015-05-11 Thread Masahiro Yamada
It's easier to Cc him on ARC-releated patches. Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- doc/git-mailrc | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/git-mailrc b/doc/git-mailrc index ddc4513..1335612 100644 --- a/doc/git-mailrc +++

Re: [U-Boot] [PATCHv3] mtd: sf: Add CONFIG_SPI_N25Q256A_RESET for software-reset

2015-05-11 Thread Jagan Teki
On 11 May 2015 at 15:26, Pavel Machek pa...@denx.de wrote: On Mon 2015-05-11 14:35:36, Jagan Teki wrote: On 11 May 2015 at 14:20, Pavel Machek pa...@denx.de wrote: On Mon 2015-05-11 14:14:32, Jagan Teki wrote: On 11 May 2015 at 14:09, Pavel Machek pa...@denx.de wrote: On Mon 2015-05-11

[U-Boot] [PATCH] ARC: change the default CROSS_COMPILE for ARC

2015-05-11 Thread Masahiro Yamada
As doc/README.ARC says, pre-build ARC toolchains are available at the Synopsys GitHub page. The bin files are prefixed with arc(eb)-buildroot-linux- for earlier releases, but with arc(eb)-snps-linux- for the latest releases (arc_gnu_2014.12_prebuilt_*). For all the releases, the symbolic link,

Re: [U-Boot] [PATCH 0/7] avr32: remove non-generic boards

2015-05-11 Thread Waldemar Brodkorb
Hi, Andreas Bießmann wrote, Hi Hans-Christian, On 05/11/2015 01:19 PM, Hans-Christian Egtvedt wrote: Around Mon 11 May 2015 13:07:22 +0200 or thereabout, Andreas Bießmann wrote: This series deletes avr32-boards that are still using the ancient arch/avr32/lib/board.c code. If one would

[U-Boot] [PATCH 01/10] novena: standardise mx6_common.h include

2015-05-11 Thread Peter Robinson
Standardise mx6_common.h to the same as other mx6 boards Signed-off-by: Peter Robinson pbrobin...@gmail.com --- include/configs/novena.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/novena.h b/include/configs/novena.h index 425db8a..5040c8e 100644 ---

[U-Boot] [PATCH 10/10] mx6: standardise CONFIG_CMD_CACHE

2015-05-11 Thread Peter Robinson
Move CONFIG_CMD_CACHE to mx6_common and standardise the way it's defined. Signed-off-by: Peter Robinson pbrobin...@gmail.com --- include/configs/aristainetos.h| 2 -- include/configs/cgtqmx6eval.h | 4 include/configs/embestmx6boards.h | 4 include/configs/gw_ventana.h |

[U-Boot] [PATCH] boards/b4860qds: Update README for correct DIP information

2015-05-11 Thread Raghav Dogra
Information regarding the boolean values relating to ON and OFF were incorrect. Updating the document with correct values. Signed-off-by: Raghav Dogra rag...@freescale.com --- doc/README.b4860qds | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/README.b4860qds

Re: [U-Boot] [PATCH 0/7] avr32: remove non-generic boards

2015-05-11 Thread Hans-Christian Egtvedt
Around Mon 11 May 2015 13:07:22 +0200 or thereabout, Andreas Bießmann wrote: This series deletes avr32-boards that are still using the ancient arch/avr32/lib/board.c code. If one would like his board to stay in u-boot there is a last chance to convert it to generic board _now_. It should be as

[U-Boot] [PATCH 02/10] imx6: move all standard includes to mx6_common.h

2015-05-11 Thread Peter Robinson
The linux/sizes.h, asm/arch/imx-regs.h, asm/imx-common/gpio.h, config_cmd_default.h includes are used fairly universally across imx6 boards so include them in mx6_common.h by default. Signed-off-by: Peter Robinson pbrobin...@gmail.com --- include/configs/aristainetos.h| 6 --

[U-Boot] [PATCH 04/10] imx6: move standard ATAG configs to mx6_common.h

2015-05-11 Thread Peter Robinson
Define the standard ATAG consfigs in mx6_common. Signed-off-by: Peter Robinson pbrobin...@gmail.com --- include/configs/cgtqmx6eval.h | 5 - include/configs/cm_fx6.h | 4 include/configs/embestmx6boards.h | 5 - include/configs/gw_ventana.h | 6 +-

[U-Boot] [PATCH 03/10] imx6: move generic imx6 options to mx6_common.h

2015-05-11 Thread Peter Robinson
All boards define CONFIG_MX6, CONFIG_DISPLAY_BOARDINFO, CONFIG_DISPLAY_CPUINFO and CONFIG_SYS_GENERIC_BOARD so define them in mx6_common Signed-off-by: Peter Robinson pbrobin...@gmail.com --- include/configs/aristainetos.h | 7 --- include/configs/cgtqmx6eval.h | 5 -

[U-Boot] [PATCH 07/10] imx6: move generic miscellaneous and overwrite options

2015-05-11 Thread Peter Robinson
Move generic miscellaneous options that are standard across most, if not all, mx6 boards to central mx6_common define to ensure consistent features. Signed-off-by: Peter Robinson pbrobin...@gmail.com --- include/configs/aristainetos.h| 16 +--- include/configs/cgtqmx6eval.h

[U-Boot] [PATCH 08/10] imx6: standardise filesystem and boot options to

2015-05-11 Thread Peter Robinson
Move all standard filesystem, partition and fdt options to mx6_common. Signed-off-by: Peter Robinson pbrobin...@gmail.com --- include/configs/aristainetos.h| 8 include/configs/cgtqmx6eval.h | 6 -- include/configs/gw_ventana.h | 8

[U-Boot] [PATCH 05/10] imx6: move MXC_GPIO define to mx6_common.h

2015-05-11 Thread Peter Robinson
Define CONFIG_MXC_GPIO by default in mx6_common Signed-off-by: Peter Robinson pbrobin...@gmail.com --- include/configs/aristainetos.h| 1 - include/configs/cgtqmx6eval.h | 1 - include/configs/cm_fx6.h | 3 --- include/configs/embestmx6boards.h | 1 -

[U-Boot] [PATCH 06/10] imx6: centralise common boot options in mx6_common.h

2015-05-11 Thread Peter Robinson
Define common LOADADDR and BOOTDELAY to ensure a consistent experience across mx6 boards Signed-off-by: Peter Robinson pbrobin...@gmail.com --- include/configs/aristainetos.h| 7 --- include/configs/cgtqmx6eval.h | 7 --- include/configs/cm_fx6.h | 3 ---

[U-Boot] [PATCH 09/10] imx6: generic MMC config options to mx6_common

2015-05-11 Thread Peter Robinson
Move all standard mx6 MMC configs to mx6_common. Signed-off-by: Peter Robinson pbrobin...@gmail.com --- include/configs/aristainetos.h| 7 --- include/configs/cgtqmx6eval.h | 7 --- include/configs/cm_fx6.h | 5 - include/configs/embestmx6boards.h | 7 ---

[U-Boot] [PATCH 0/10] i.MX6: move duplicated options to mx6_common to standardise mx6 config

2015-05-11 Thread Peter Robinson
There's a lot of common options in the i.MX6 boards that are repeated across a lot of the devices. There's a mx6_common.h which is little used but makes sense to be the central location for all the options we want across all mx6 boards to ensure a consistent set of features. This is a first pass

Re: [U-Boot] [PATCH 0/7] avr32: remove non-generic boards

2015-05-11 Thread Andreas Bießmann
Hi Waldemar, On 05/11/2015 01:32 PM, Waldemar Brodkorb wrote: Andreas Bießmann (7): avr32: delete non generic board atngw100 avr32: delete non generic board favr-32-ezkit avr32: delete non generic board hammerhead avr32: delete non generic board mimc200 avr32: delete non generic

Re: [U-Boot] [PATCH 07/10] imx6: move generic miscellaneous and overwrite options

2015-05-11 Thread Tom Rini
On Mon, May 11, 2015 at 12:23:26PM +0100, Peter Robinson wrote: Move generic miscellaneous options that are standard across most, if not all, mx6 boards to central mx6_common define to ensure consistent features. Signed-off-by: Peter Robinson pbrobin...@gmail.com [snip] @@ -187,22 +182,15

Re: [U-Boot] [PATCH v1 2/4] autoboot.c: Remove CONFIG_AUTOBOOT_STOP_STR2 and CONFIG_AUTOBOOT_DELAY_STR2

2015-05-11 Thread Tom Rini
On Thu, May 07, 2015 at 02:13:30PM +0200, Stefan Roese wrote: These defines for a 2nd autoboot stop and delay string are nearly unused. Only sc3 defines CONFIG_AUTOBOOT_DELAY_STR2. And a patch to remove this most likely unmaintained board is also posted to the list. By removing these

Re: [U-Boot] [PATCH 01/10] novena: standardise mx6_common.h include

2015-05-11 Thread Tom Rini
On Mon, May 11, 2015 at 12:23:20PM +0100, Peter Robinson wrote: Standardise mx6_common.h to the same as other mx6 boards Signed-off-by: Peter Robinson pbrobin...@gmail.com Reviewed-by: Tom Rini tr...@konsulko.com -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [PATCH] ppc: xilinx: Remove ancient ppc405 and ppc440 platform

2015-05-11 Thread Tom Rini
On Mon, May 11, 2015 at 09:34:24AM +0200, Ricardo Ribalda Delgado wrote: Hello Michal Thanks for your reply On Mon, May 11, 2015 at 9:11 AM, Michal Simek michal.si...@xilinx.com wrote: [snip] The plan is to re-factor the code for this platform or just drop all the support? Platform

Re: [U-Boot] [PATCH 0/10] i.MX6: move duplicated options to mx6_common to standardise mx6 config

2015-05-11 Thread Stefano Babic
Hi Peter, On 11/05/2015 13:23, Peter Robinson wrote: There's a lot of common options in the i.MX6 boards that are repeated across a lot of the devices. There's a mx6_common.h which is little used but makes sense to be the central location for all the options we want across all mx6 boards

Re: [U-Boot] [PATCH 02/10] imx6: move all standard includes to mx6_common.h

2015-05-11 Thread Tom Rini
On Mon, May 11, 2015 at 12:23:21PM +0100, Peter Robinson wrote: The linux/sizes.h, asm/arch/imx-regs.h, asm/imx-common/gpio.h, config_cmd_default.h includes are used fairly universally across imx6 boards so include them in mx6_common.h by default. [snip] diff --git

Re: [U-Boot] [PATCH 10/10] mx6: standardise CONFIG_CMD_CACHE

2015-05-11 Thread Tom Rini
On Mon, May 11, 2015 at 12:23:29PM +0100, Peter Robinson wrote: Move CONFIG_CMD_CACHE to mx6_common and standardise the way it's defined. Signed-off-by: Peter Robinson pbrobin...@gmail.com Reviewed-by: Tom Rini tr...@konsulko.com -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [PATCH 0/10] i.MX6: move duplicated options to mx6_common to standardise mx6 config

2015-05-11 Thread Tom Rini
On Mon, May 11, 2015 at 12:23:19PM +0100, Peter Robinson wrote: There's a lot of common options in the i.MX6 boards that are repeated across a lot of the devices. There's a mx6_common.h which is little used but makes sense to be the central location for all the options we want across all

Re: [U-Boot] [PATCH 05/10] imx6: move MXC_GPIO define to mx6_common.h

2015-05-11 Thread Tom Rini
On Mon, May 11, 2015 at 12:23:24PM +0100, Peter Robinson wrote: Define CONFIG_MXC_GPIO by default in mx6_common Signed-off-by: Peter Robinson pbrobin...@gmail.com [snip] diff --git a/include/configs/mx6_common.h b/include/configs/mx6_common.h index b30ffb2..e54eee2 100644 ---

Re: [U-Boot] [PATCH 03/10] imx6: move generic imx6 options to mx6_common.h

2015-05-11 Thread Tom Rini
On Mon, May 11, 2015 at 12:23:22PM +0100, Peter Robinson wrote: All boards define CONFIG_MX6, CONFIG_DISPLAY_BOARDINFO, CONFIG_DISPLAY_CPUINFO and CONFIG_SYS_GENERIC_BOARD so define them in mx6_common Signed-off-by: Peter Robinson pbrobin...@gmail.com Reviewed-by: Tom Rini

Re: [U-Boot] [PATCH 04/10] imx6: move standard ATAG configs to mx6_common.h

2015-05-11 Thread Tom Rini
On Mon, May 11, 2015 at 12:23:23PM +0100, Peter Robinson wrote: Define the standard ATAG consfigs in mx6_common. Signed-off-by: Peter Robinson pbrobin...@gmail.com Reviewed-by: Tom Rini tr...@konsulko.com -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [PATCH 09/10] imx6: generic MMC config options to mx6_common

2015-05-11 Thread Tom Rini
On Mon, May 11, 2015 at 12:23:28PM +0100, Peter Robinson wrote: Move all standard mx6 MMC configs to mx6_common. Signed-off-by: Peter Robinson pbrobin...@gmail.com Reviewed-by: Tom Rini tr...@konsulko.com -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [PATCH 02/10] imx6: move all standard includes to mx6_common.h

2015-05-11 Thread Peter Robinson
On Mon, May 11, 2015 at 1:32 PM, Tom Rini tr...@konsulko.com wrote: On Mon, May 11, 2015 at 12:23:21PM +0100, Peter Robinson wrote: The linux/sizes.h, asm/arch/imx-regs.h, asm/imx-common/gpio.h, config_cmd_default.h includes are used fairly universally across imx6 boards so include them in

[U-Boot] [PATCH] README.scrapyard: add entries for dead board, T4240EMU and sc3

2015-05-11 Thread Masahiro Yamada
Follow-up commit 7fc63cca611b (mpc85xx/T4240EMU: Remove T4240EMU board), and commit 27e721564591 (ppc4xx: Remove sc3 board), filling the blank fields. Signed-off-by: Masahiro Yamada yamada.masah...@socionext.com --- Tom, please apply this patch asap because various board removal patches are

Re: [U-Boot] [PATCH 0/7] avr32: remove non-generic boards

2015-05-11 Thread Andreas Bießmann
Hi Hans-Christian, On 05/11/2015 01:19 PM, Hans-Christian Egtvedt wrote: Around Mon 11 May 2015 13:07:22 +0200 or thereabout, Andreas Bießmann wrote: This series deletes avr32-boards that are still using the ancient arch/avr32/lib/board.c code. If one would like his board to stay in u-boot

Re: [U-Boot] [PATCH 0/10] i.MX6: move duplicated options to mx6_common to standardise mx6 config

2015-05-11 Thread Fabio Estevam
On Mon, May 11, 2015 at 8:23 AM, Peter Robinson pbrobin...@gmail.com wrote: There's a lot of common options in the i.MX6 boards that are repeated across a lot of the devices. There's a mx6_common.h which is little used but makes sense to be the central location for all the options we want

Re: [U-Boot] [PATCH 08/10] imx6: standardise filesystem and boot options to

2015-05-11 Thread Tom Rini
On Mon, May 11, 2015 at 12:23:27PM +0100, Peter Robinson wrote: Move all standard filesystem, partition and fdt options to mx6_common. Signed-off-by: Peter Robinson pbrobin...@gmail.com [snip] @@ -274,7 +267,6 @@ #define CONFIG_MTD_PARTITIONS #define CONFIG_MTD_DEVICE #define

Re: [U-Boot] [PATCH 05/10] imx6: move MXC_GPIO define to mx6_common.h

2015-05-11 Thread Peter Robinson
On Mon, May 11, 2015 at 1:43 PM, Tom Rini tr...@konsulko.com wrote: On Mon, May 11, 2015 at 12:23:24PM +0100, Peter Robinson wrote: Define CONFIG_MXC_GPIO by default in mx6_common Signed-off-by: Peter Robinson pbrobin...@gmail.com [snip] diff --git a/include/configs/mx6_common.h

Re: [U-Boot] [PATCH 08/10] imx6: standardise filesystem and boot options to

2015-05-11 Thread Peter Robinson
On Mon, May 11, 2015 at 1:25 PM, Tom Rini tr...@konsulko.com wrote: On Mon, May 11, 2015 at 12:23:27PM +0100, Peter Robinson wrote: Move all standard filesystem, partition and fdt options to mx6_common. Signed-off-by: Peter Robinson pbrobin...@gmail.com [snip] @@ -274,7 +267,6 @@ #define

Re: [U-Boot] [PATCH 05/10] imx6: move MXC_GPIO define to mx6_common.h

2015-05-11 Thread Tom Rini
On Mon, May 11, 2015 at 01:51:04PM +0100, Peter Robinson wrote: On Mon, May 11, 2015 at 1:43 PM, Tom Rini tr...@konsulko.com wrote: On Mon, May 11, 2015 at 12:23:24PM +0100, Peter Robinson wrote: Define CONFIG_MXC_GPIO by default in mx6_common Signed-off-by: Peter Robinson

Re: [U-Boot] [PATCH 02/10] imx6: move all standard includes to mx6_common.h

2015-05-11 Thread Tom Rini
On Mon, May 11, 2015 at 02:13:00PM +0100, Peter Robinson wrote: On Mon, May 11, 2015 at 1:32 PM, Tom Rini tr...@konsulko.com wrote: On Mon, May 11, 2015 at 12:23:21PM +0100, Peter Robinson wrote: The linux/sizes.h, asm/arch/imx-regs.h, asm/imx-common/gpio.h, config_cmd_default.h includes

Re: [U-Boot] [PATCH 08/10] imx6: standardise filesystem and boot options to

2015-05-11 Thread Tom Rini
On Mon, May 11, 2015 at 01:52:43PM +0100, Peter Robinson wrote: On Mon, May 11, 2015 at 1:25 PM, Tom Rini tr...@konsulko.com wrote: On Mon, May 11, 2015 at 12:23:27PM +0100, Peter Robinson wrote: Move all standard filesystem, partition and fdt options to mx6_common. Signed-off-by: Peter

Re: [U-Boot] [PATCH] ppc: xilinx: Remove ancient ppc405 and ppc440 platform

2015-05-11 Thread Michal Simek
Hi, On 05/11/2015 09:34 AM, Ricardo Ribalda Delgado wrote: Hello Michal Thanks for your reply On Mon, May 11, 2015 at 9:11 AM, Michal Simek michal.si...@xilinx.com wrote: Hi, On 05/09/2015 06:24 PM, Ricardo Ribalda Delgado wrote: Hello Michal and Stefan Could you provide some context

Re: [U-Boot] [PATCH 02/10] imx6: move all standard includes to mx6_common.h

2015-05-11 Thread Peter Robinson
On Mon, May 11, 2015 at 2:20 PM, Tom Rini tr...@konsulko.com wrote: On Mon, May 11, 2015 at 02:13:00PM +0100, Peter Robinson wrote: On Mon, May 11, 2015 at 1:32 PM, Tom Rini tr...@konsulko.com wrote: On Mon, May 11, 2015 at 12:23:21PM +0100, Peter Robinson wrote: The linux/sizes.h,

Re: [U-Boot] [PATCH v1 1/4] Kconfig: Enable usage of escape char '\' in string values

2015-05-11 Thread Stefan Roese
Hi Simon, Hi Masahiro, On 11.05.2015 09:58, Stefan Roese wrote: On 10.05.2015 16:48, Simon Glass wrote: On 7 May 2015 at 06:13, Stefan Roese s...@denx.de wrote: I might have missed something, but I failed to use the escape char '\' in strings. To pass a printf format string like foo %d bar\n

Re: [U-Boot] [PATCH 07/10] imx6: move generic miscellaneous and overwrite options

2015-05-11 Thread Peter Robinson
On Mon, May 11, 2015 at 1:33 PM, Tom Rini tr...@konsulko.com wrote: On Mon, May 11, 2015 at 12:23:26PM +0100, Peter Robinson wrote: Move generic miscellaneous options that are standard across most, if not all, mx6 boards to central mx6_common define to ensure consistent features.

Re: [U-Boot] [PATCH 05/10] imx6: move MXC_GPIO define to mx6_common.h

2015-05-11 Thread Stefano Babic
Hi Peter, On 11/05/2015 14:51, Peter Robinson wrote: You're dropping CONFIG_CMD_GPIO (a handy thing IMHO) in a few cases and not adding it in globally which I would argue is the right thing to do. Bah, oversight! OK to add it back to mx6_common.h in a follow up patch? What about to fix it

Re: [U-Boot] [U-Boot, 6/6] overo: Override RAM setup for rev. 0 boards

2015-05-11 Thread Ash Charles
Ah---good catch. Thanks for the explanation Tom. --Ash On Sun, May 10, 2015 at 7:07 AM, Tom Rini tr...@konsulko.com wrote: On Tue, Apr 28, 2015 at 04:17:55PM -0700, Ash Charles wrote: From: Arun Bharadwaj a...@gumstix.com Overo boards with board revision 0 use a 256MB RAM + 256MB NAND chip.

Re: [U-Boot] [PATCH 0/10] i.MX6: move duplicated options to mx6_common to standardise mx6 config

2015-05-11 Thread Eric Nelson
Thanks Peter, On 05/11/2015 04:23 AM, Peter Robinson wrote: There's a lot of common options in the i.MX6 boards that are repeated across a lot of the devices. There's a mx6_common.h which is little used but makes sense to be the central location for all the options we want across all mx6

[U-Boot] [PATCH v1 0/3] New tag for Flattened Image Trees (FIT) - Booting Xen from a FIT.

2015-05-11 Thread Karl Apsite
The FIT config now supports a tag named loadables: which is a comma separated list. Users can add any number of images to the list, and u-boot will move the selected binaries to their listed load_addresses. This allows u-boot to boot xen from using an FIT configuration. Xen expects a kernel to

[U-Boot] [PATCH 2/2] Use map_sysmem when accessing memory in setexpr

2015-05-11 Thread Joe Hershberger
The setexpr command used to segfault when accessing memory in sandbox. The pointer accesses should be mapped. Signed-off-by: Joe Hershberger joe.hershber...@ni.com Cc: Simon Glass s...@chromium.org --- common/cmd_setexpr.c | 32 +++- 1 file changed, 23 insertions(+),

Re: [U-Boot] [PATCH] env_mmc: avoid stack allocation for env

2015-05-11 Thread Tim Harvey
On Fri, May 8, 2015 at 3:15 PM, Marek Vasut ma...@denx.de wrote: On Friday, May 08, 2015 at 11:51:36 PM, Tim Harvey wrote: Allocating space for temporary env on the stack makes env_relocate_spec() unsuitable for SPL environments which have very little stack. Well yeah, but what if you don't

[U-Boot] [PATCH v2 1/2] hummingboard: Remove mx6solo specific support

2015-05-11 Thread Fabio Estevam
Hummingboard dual, dual-lite and solo are now supported via SPL mechanism. Remove the previous hummingboard support, which does not use SPL and supported only the solo variant. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Changes since v1: - Also remove the mx6-microsom directory

[U-Boot] [PATCH v2 2/2] mx6cuboxi: Mention Cubox-i in the README

2015-05-11 Thread Fabio Estevam
Cubox-i boards are also supported, so update the README file. Signed-off-by: Fabio Estevam fabio.este...@freescale.com --- Changes since v1: - None board/solidrun/mx6cuboxi/README | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/board/solidrun/mx6cuboxi/README

Re: [U-Boot] [PATCH v2 2/3] x86: Move FRAMEBUFFER_SET_VESA_MODE etc to video Kconfig

2015-05-11 Thread Simon Glass
On 10 May 2015 at 17:36, Bin Meng bmeng...@gmail.com wrote: CONFIG_FRAMEBUFFER_SET_VESA_MODE and CONFIG_FRAMEBUFFER_VESA_MODE are not x86-specific, so move them to drivers/video/Kconfig and make them depend on VIDEO_VESA driver. Some cosmetic fixes are applied to the Kconfig help text as well.

[U-Boot] [PATCH v6] dm: usb: Prefix ehci interrupt-queue functions with _ehci_

2015-05-11 Thread Hans de Goede
This is a preparation patch for adding interrupt-queue support to the ehci dm code. Signed-off-by: Hans de Goede hdego...@redhat.com Acked-by: Simon Glass s...@chromium.org --- Changes in v6: -Use _ehci_ prefixed versions of int_queue functions in _ehci_submit_int_msg() this avoids linker errors

Re: [U-Boot] [PATCH 10/19] imx: ventana: fix pcie reset for GW522x

2015-05-11 Thread Tim Harvey
On Mon, May 11, 2015 at 12:59 AM, Stefano Babic sba...@denx.de wrote: Hi Tim, On 09/05/2015 03:28, Tim Harvey wrote: The re-assignment of pcie_rst gpio for GW522x needs to occur earlier, before the PCI subsystem calls the toggle funciton. Signed-off-by: Tim Harvey thar...@gateworks.com ---

Re: [U-Boot] [PATCH 4/4] sunxi: Change usb-kbd interrupt polling to use an usb interrupt qeueue

2015-05-11 Thread Ian Campbell
On Mon, 2015-05-11 at 21:08 +0200, Hans de Goede wrote: Now that the ohci code supports usb interrupt qeueues we can switch (back) to using an usb interrupt qeueue for usb-kbd interrupt polling. This queues and queue. greatly reduces u-boot's latency when dealing with usb keyboards.

Re: [U-Boot] [PATCH] arm: ls1021a: Remove the inappropriate use of the function 'sprintf'

2015-05-11 Thread Joe Hershberger
On Mon, May 11, 2015 at 2:39 AM, Alison Wang b18...@freescale.com wrote: As the function 'sprintf' does not check buffer boundaries but outputs to the buffer 'enet' of fixed size (16), this patch removes the function 'sprintf', and uses 'strcpy' instead. It will assign the character arrays

Re: [U-Boot] [PATCH 5/5] tbs2910: add ext4 write support

2015-05-11 Thread Soeren Moch
On 05/05/15 23:09, Soeren Moch wrote: Add CONFIG_CMD_EXT4_WRITE to enable ext4 write support. Signed-off-by: Soeren Moch sm...@web.de --- Cc: Stefano Babic sba...@denx.de --- include/configs/tbs2910.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/tbs2910.h

Re: [U-Boot] [PATCH 0/10 v2] i.MX6: move duplicated options to mx6_common to standardise mx6 config

2015-05-11 Thread Soeren Moch
[V2: sorry forgot to Cc: the list] There's a lot of common options in the i.MX6 boards that are repeated across a lot of the devices. There's a mx6_common.h which is little used but makes sense to be the central location for all the options we want across all mx6 boards to ensure a

[U-Boot] [PATCH 4/4] sunxi: Change usb-kbd interrupt polling to use an usb interrupt qeueue

2015-05-11 Thread Hans de Goede
Now that the ohci code supports usb interrupt qeueues we can switch (back) to using an usb interrupt qeueue for usb-kbd interrupt polling. This greatly reduces u-boot's latency when dealing with usb keyboards. Signed-off-by: Hans de Goede hdego...@redhat.com --- include/configs/sunxi-common.h |

[U-Boot] [PATCH 1/4] usb: ohci: Do not reuse ed for interrupt endpoints of different devices

2015-05-11 Thread Hans de Goede
When submitting interrupt packets to an endpoint we only link in the ed once to avoid some races surrounding unlinking of periodic endpoints, but we share one ohci_device struct / one set of ed-s for all devices, which means that if we have an interrupt endpoint at endpoint 1 with one device, and

[U-Boot] [PATCH 0/4] usb: ohci: Add support for interrupt queues

2015-05-11 Thread Hans de Goede
Hi All, Here is a patch-set adding interrupt queue support to the ohci-hcd code. Note this patch-set sits on top of my earlier (dm) usb ohci / ehci / sunxi' work. Regards, Hans ___ U-Boot mailing list U-Boot@lists.denx.de

[U-Boot] [PATCH 2/4] usb: ohci: Add an ohci_alloc_urb() function

2015-05-11 Thread Hans de Goede
Add an ohci_alloc_urb() function, this is a preparation patch for adding interrupt queue support. Signed-off-by: Hans de Goede hdego...@redhat.com --- drivers/usb/host/ohci-hcd.c | 31 +++ 1 file changed, 23 insertions(+), 8 deletions(-) diff --git

  1   2   >