Re: [U-Boot] [PATCH] m68k: remove TASREG board

2015-01-13 Thread Stefan Roese
On 13.01.2015 06:31, Matthias Fuchs wrote: [Alison Wang] May I ask you why you want to remove TASREG board you maintained? this board support hasn't been tested on real hardware for a very long time and will probably never be tested again on this obsolete board. I use the current (nearly compl

Re: [U-Boot] [PATCH] gpt: Fix the protective MBR partition size

2015-01-13 Thread Lukasz Majewski
Hi Steve, > (+ Lukasz) > Interesting - I'll defer to Lukasz... > Thanks, Steve Thanks guys for spotting the mistake and sorry for a late reply (holidays time). I'm glad that this patch was included to v2015.01 > > On 15-01-08 03:26 AM, Maxime Ripard wrote: > > According to the UEFI Spec (Tab

Re: [U-Boot] [PATCH 3/4] config_distro_bootcmd: Scan all partitions for boot files

2015-01-13 Thread Sjoerd Simons
On Mon, 2015-01-12 at 12:44 -0600, Dennis Gilmore wrote: > On Mon, 12 Jan 2015 10:42:27 -0700 > Stephen Warren wrote: > > > On 01/10/2015 11:27 AM, Dennis Gilmore wrote: > > > On Tue, 06 Jan 2015 17:43:19 -0700 > > > Stephen Warren wrote: > > > > > >> (CCing Dennis so he can comment from a distr

[U-Boot] [PATCH] ARM: UniPhier: add static to local functions

2015-01-13 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada --- arch/arm/cpu/armv7/uniphier/ph1-ld4/pll_init.c | 6 +++--- arch/arm/cpu/armv7/uniphier/ph1-pro4/pll_init.c | 6 +++--- arch/arm/cpu/armv7/uniphier/ph1-sld8/pll_init.c | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/arch/arm/cpu/armv7

[U-Boot] [PATCH] ARM: UniPhier: fix comments in SoC Glue init function

2015-01-13 Thread Masahiro Yamada
Signed-off-by: Masahiro Yamada --- arch/arm/cpu/armv7/uniphier/ph1-ld4/sg_init.c | 2 +- arch/arm/cpu/armv7/uniphier/ph1-pro4/sg_init.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/armv7/uniphier/ph1-ld4/sg_init.c b/arch/arm/cpu/armv7/uniphier/ph1-ld4/sg_

Re: [U-Boot] [PATCH 2/2] mmc: Skip changing bus width for MMC cards earlier than version 4.0

2015-01-13 Thread Alexey Brodkin
Hi Pantelis, On Thu, 2014-12-25 at 10:22 -0600, Andrew Gabbasov wrote: > Wider bus widths (larger than default 1 bit) appeared in MMC standard > version 4.0. So, for MMC cards of any earlier version trying to change > the bus width (including ext_csd comparison) does not make any sense. > It may w

[U-Boot] [PATCH] PM9263 adding generic board support

2015-01-13 Thread Georgi Botev
Signed-off-by: Georgi Botev --- include/configs/pm9263.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/pm9263.h b/include/configs/pm9263.h index f0f12af..f6aebf4 100644 --- a/include/configs/pm9263.h +++ b/include/configs/pm9263.h @@ -18,6 +18,8 @@ */ #include +#defi

[U-Boot] [PATCH] PM9261 adding generic board support

2015-01-13 Thread Georgi Botev
Signed-off-by: Georgi Botev --- include/configs/pm9261.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/pm9261.h b/include/configs/pm9261.h index deaa3ad..10415d3 100644 --- a/include/configs/pm9261.h +++ b/include/configs/pm9261.h @@ -20,7 +20,7 @@ #include

Re: [U-Boot] [U-Boot, 1/2] console: Use pre-console buffer to get complete log on all consoles

2015-01-13 Thread Hans de Goede
Hi, On 12-01-15 12:05, Hans de Goede wrote: Hi, On 08-01-15 08:02, Siarhei Siamashka wrote: Currently the pre-console buffer can accumulate early log messages and flush them to the serial console as soon as it becomes available. This patch just adds one more pre-console buffer flushing point

[U-Boot] [PATCH] PM9G45 adding generic board support

2015-01-13 Thread Georgi Botev
Signed-off-by: Georgi Botev --- include/configs/pm9g45.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/pm9g45.h b/include/configs/pm9g45.h index f78e0ec..a8dc0f0 100644 --- a/include/configs/pm9g45.h +++ b/include/configs/pm9g45.h @@ -22,6 +22,8 @@ */ #include +#defi

Re: [U-Boot] [PATCH 0/3] sunxi: Enable VGA output on Hummingbird A31

2015-01-13 Thread Hans de Goede
Hi, On 12-01-15 11:02, Chen-Yu Tsai wrote: Hi Hans, Ian, This series enables the VGA output on the Hummingbird A31. The VGA output is driven from LCD0, through an external DAC that's powered up by toggling pin PH25. Patch 1 allows selecting CONFIG_VIDEO_VGA_VIA_LCD on sun6i and sun8i. These 2

Re: [U-Boot] [PATCH] sunxi: axp221: correct ALDO2 description for sun6i

2015-01-13 Thread Hans de Goede
Hi, On 11-01-15 10:41, Chen-Yu Tsai wrote: On Sun, Jan 11, 2015 at 5:38 PM, Ian Campbell wrote: On Sat, 2015-01-03 at 10:17 +0800, Chen-Yu Tsai wrote: ALDO2 is used to power LPDDR2 SDRAM on both the reference design and the Hummingbird A31, when this type of RAM is present. Signed-off-by: Ch

[U-Boot] [PATCH] Exynos: Fix warnings from clock_get_periph_rate

2015-01-13 Thread Akshay Saraswat
Apparently, members of clk_bit_info array do not map correctly to the members of enum periph_id. This mapping got broken after we changed periph_id(s) to reflect interrupt number instead of their position in a sequence. This patch intends to fix above mentioned issue and add get_periph_rate for Exy

[U-Boot] [PATCH 0/2] Really complete SPL & u-boot log on all consoles

2015-01-13 Thread Siarhei Siamashka
By enabling pre-console buffer in both SPL and u-boot and some minor tweaks, it is possible to see all log messages (including SPL messages too) on VGA/HDMI/LCD console and other stdio based consoles. The first patch adds the necessary code to implement this feature. The second patch enables it fo

[U-Boot] [PATCH 2/2] sunxi: Enable SPL pre-console buffer

2015-01-13 Thread Siarhei Siamashka
This allows to get log messages from SPL on stdio consoles. The pre-console buffer is placed in 2 KiB of SRAM, chopped off from the upper addresses of stack. This size is completely arbitrary and can be increased or decreased if necessary. Only normal SPL is supported, but not FEL mode. Signed-off

[U-Boot] [PATCH 1/2] console: Allow pre-console buffer to also extract SPL log messages

2015-01-13 Thread Siarhei Siamashka
It is possible to enable pre-console buffer in SPL and later extract log messages from it when updating stdio consoles in u-boot. Signed-off-by: Siarhei Siamashka --- common/console.c | 65 +++- 1 file changed, 60 insertions(+), 5 deletions(-)

[U-Boot] [PATCH] sunxi: display: Make lcd display clk phase configurable

2015-01-13 Thread Hans de Goede
While running some tests with an Olinuxino-A13-Micro + a 7" Olimex LCD module I noticed that the screen flickered. This is caused by the lcd display clk phase reg value being set to 0, where it should be 1 in this setup. This commit adds a Kconfig option for the lcd display clk phase, so that we c

Re: [U-Boot] [U-Boot, 1/2] console: Use pre-console buffer to get complete log on all consoles

2015-01-13 Thread Siarhei Siamashka
On Tue, 13 Jan 2015 11:59:02 +0100 Hans de Goede wrote: > Hi, > > On 12-01-15 12:05, Hans de Goede wrote: > > Hi, > > > > On 08-01-15 08:02, Siarhei Siamashka wrote: > >> Currently the pre-console buffer can accumulate early log messages > >> and flush them to the serial console as soon as it be

[U-Boot] [PATCH 1/2] Errata/ARM57: Add basic constructs to handle and apply A57 specific erratas

2015-01-13 Thread Bhupesh Sharma
This patch adds basic constructs in the ARMv8 u-boot code to handle and apply Cortex-A57 specific erratas. As and example, the framework showcases how erratas 826974 and 828024 can be handled and applied. Later on this framework can be extended to include other erratas. Signed-off-by: Bhupesh Sh

[U-Boot] [PATCH] net/designware: add error message on DMA reset timeout

2015-01-13 Thread Alexey Brodkin
If for some reason DMA module fails to reset user oserves only this: --->--- # dhcp Trying dwmac.e0018000 FAIL --->--- This message makes not much sense. With proposed change error message will be more helpful: --->--- # dhcp Trying dwmac.e0018000 DMA reset timeout FAIL --->--- For example user m

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

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 05:06:19PM -0800, Simon Glass wrote: > Hi Tom, > > The following changes since commit 92fa7f53f1f3f03296f8ffb14bdf1baefab83368: > > Prepare v2015.01 (2015-01-12 09:39:08 -0500) > > are available in the git repository at: > > git://git.denx.de/u-boot-x86.git > > for

Re: [U-Boot] [PATCH] generic-board: show model name in board_init_f() too

2015-01-13 Thread Simon Glass
Hi Masahiro, On 27 November 2014 at 10:14, Simon Glass wrote: > Hi Masahiro, > > On 27 November 2014 at 10:03, Masahiro Yamada > wrote: >> The common/board_r.c has show_model_r() to display the model name >> if the DTB has a "model" property. It sounds useful to have a similar >> function in c

Re: [U-Boot] [PATCH v4] dm: sh: serial: Add support driver model

2015-01-13 Thread Simon Glass
On 10 January 2015 at 10:06, Simon Glass wrote: > Hi Nobuhiro, > > On 21 December 2014 at 21:22, Nobuhiro Iwamatsu > wrote: >> This adds driver model support with this driver. This was tested by Koelsch >> board and Gose board. >> >> Signed-off-by: Nobuhiro Iwamatsu >> Acked-by: Simon Glass >>

Re: [U-Boot] [PATCH v6 2/5] i2c: UniPhier: add driver for UniPhier i2c controller

2015-01-13 Thread Simon Glass
On 12 January 2015 at 19:44, Masahiro Yamada wrote: > This commit adds on-chip I2C driver used on some old Panasonic > UniPhier SoCs. > > Signed-off-by: Masahiro Yamada > Reviewed-by: Simon Glass > Acked-by: Simon Glass > Acked-by: Heiko Schocher > --- > > Changes in v6: > - Pass (struct uni

Re: [U-Boot] [PATCH v6 4/5] ARM: UniPhier: enable I2C for UniPhier SoCs

2015-01-13 Thread Simon Glass
On 12 January 2015 at 19:44, Masahiro Yamada wrote: > Signed-off-by: Masahiro Yamada > Acked-by: Simon Glass > --- > > Changes in v6: None > Changes in v5: None > Changes in v4: None > Changes in v3: None > Changes in v2: None > > configs/ph1_ld4_defconfig | 2 ++ > configs/ph1_pro4_defconfig

Re: [U-Boot] [PATCH v6 3/5] i2c: UniPhier: add driver for UniPhier FIFO-builtin i2c controller

2015-01-13 Thread Simon Glass
On 12 January 2015 at 19:44, Masahiro Yamada wrote: > This commit adds on-chip I2C driver used on newer SoCs of Panasonic > UniPhier platform. > > Signed-off-by: Masahiro Yamada > Reviewed-by: Simon Glass > Acked-by: Simon Glass > Acked-by: Heiko Schocher Applied to u-boot-dm, thanks! > ---

Re: [U-Boot] [PATCH v6 1/5] i2c: add CONFIG_DM_I2C to Kconfig

2015-01-13 Thread Simon Glass
On 12 January 2015 at 19:44, Masahiro Yamada wrote: > Signed-off-by: Masahiro Yamada > Reviewed-by: Simon Glass > Acked-by: Simon Glass > Acked-by: Heiko Schocher Applied to u-boot-dm, thanks! > --- > > Changes in v6: None > Changes in v5: None > Changes in v4: None > Changes in v3: None > C

Re: [U-Boot] [PATCH v6 5/5] ARM: UniPhier: enable CONFIG_I2C_EEPROM

2015-01-13 Thread Simon Glass
On 12 January 2015 at 19:44, Masahiro Yamada wrote: > Signed-off-by: Masahiro Yamada > Acked-by: Simon Glass > --- > > Changes in v6: None > Changes in v5: None > Changes in v4: None > Changes in v3: None > Changes in v2: None > > include/configs/uniphier.h | 3 +++ > 1 file changed, 3 insertio

[U-Boot] [PATCH 2/2] configs/ls2085a: Add support for Cortex-A57 erratas

2015-01-13 Thread Bhupesh Sharma
This patch adds support for handling 828024 and 826974 erratas for Cortex-A57 cores present on LS2085A SoC. Signed-off-by: Bhupesh Sharma --- include/configs/ls2085a_common.h |4 1 file changed, 4 insertions(+) diff --git a/include/configs/ls2085a_common.h b/include/configs/ls2085a_com

Re: [U-Boot] [PATCH] net/designware: add error message on DMA reset timeout

2015-01-13 Thread Tom Rini
On Tue, Jan 13, 2015 at 05:10:24PM +0300, Alexey Brodkin wrote: > If for some reason DMA module fails to reset user oserves only this: > --->--- > # dhcp > Trying dwmac.e0018000 > FAIL > --->--- > > This message makes not much sense. > With proposed change error message will be more helpful: > --

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

2015-01-13 Thread Simon Glass
Hi Tom, On 13 January 2015 at 06:37, Tom Rini wrote: > On Mon, Jan 12, 2015 at 05:06:19PM -0800, Simon Glass wrote: > >> Hi Tom, >> >> The following changes since commit 92fa7f53f1f3f03296f8ffb14bdf1baefab83368: >> >> Prepare v2015.01 (2015-01-12 09:39:08 -0500) >> >> are available in the git r

[U-Boot] [PATCH] Kconfig: move CONFIG_SYS_CLK_FREQ to Kconfig

2015-01-13 Thread Alexey Brodkin
It makes sense to specify CONFIG_SYS_CLK_FREQ in "configs/xx_defconfig" instead of "include/configs/xxx.h" because then header will be reusable across boards with different CPU clocks. Also this nice to have an ability for end user to tune this value himself via "menuconfig". For now I'm only app

Re: [U-Boot] [PATCH] Kconfig: move CONFIG_SYS_CLK_FREQ to Kconfig

2015-01-13 Thread Tom Rini
On Tue, Jan 13, 2015 at 06:49:01PM +0300, Alexey Brodkin wrote: > It makes sense to specify CONFIG_SYS_CLK_FREQ in "configs/xx_defconfig" > instead of "include/configs/xxx.h" because then header will be reusable > across boards with different CPU clocks. > > Also this nice to have an ability for

Re: [U-Boot] New i.MX board

2015-01-13 Thread Fabio Estevam
On Fri, Jan 9, 2015 at 1:32 PM, Ian Molton wrote: > Hi folks, > > I'm currently bringing up a new i.MX6q based board. > > I've got u-boot working, but its clear that a lot of the iMX stuff is still > using the old configuration system. Not sure which version you are using, but if you use 2015.01

Re: [U-Boot] [PATCH 1/2] Errata/ARM57: Add basic constructs to handle and apply A57 specific erratas

2015-01-13 Thread York Sun
On 01/13/2015 05:19 AM, Bhupesh Sharma wrote: > This patch adds basic constructs in the ARMv8 u-boot code > to handle and apply Cortex-A57 specific erratas. > > As and example, the framework showcases how erratas 826974 and > 828024 can be handled and applied. > > Later on this framework can be e

Re: [U-Boot] [PATCH] ARM: OMAP5: DRA7xx: Add support for power rail grouping

2015-01-13 Thread Tom Rini
On Fri, Dec 19, 2014 at 05:34:31PM +0200, Lubomir Popov wrote: > On the DRA72x (J6Eco) EVM one PMIC SMPS is powering three SoC > core rails. This concept of using one SMPS to supply multiple > core domains (in various, although limited combinations, per > primary device use case) has now become co

[U-Boot] Please pull u-boot-x86.git (take 2)

2015-01-13 Thread Simon Glass
Hi Tom, I'm not sure of the process for a failed pull request. I have fixed up the offending patch (fdt: Add several apis to decode pci device node) and pushed to to x86/master. The following changes since commit 92fa7f53f1f3f03296f8ffb14bdf1baefab83368: Prepare v2015.01 (2015-01-12 09:39:08

Re: [U-Boot] [U-Boot,03/22] ppc4xx: remove ASH405 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:16PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] m68k: remove TASREG board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:33:38PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs > Acked-by: Stefan Roese Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.den

Re: [U-Boot] [U-Boot,05/22] ppc4xx: remove CPCIISER4 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:18PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,02/22] ppc4xx: remove AR405 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:15PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,01/22] ppx4xx: remove APC405 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:14PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,04/22] ppc4xx: remove CMS700 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:17PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,10/22] ppc4xx: remove HUB405 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:23PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,07/22] ppc4xx: remove DU405 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:20PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,06/22] ppc4xx: remove DP405 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:19PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,09/22] ppc4xx: remove HH405 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:22PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,11/22] ppc4xx: remove OCRTC board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:24PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,12/22] ppc4xx: remove PCI405 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:25PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,08/22] ppc4xx: remove DU440 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:21PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,13/22] ppc4xx: remove PMC405 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:26PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,18/22] ppc4xx: cleanup CPCI4052 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:31PM +0100, Matthias Fuchs wrote: > - remove some obsolete code > - switch to generic board > > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U

Re: [U-Boot] [U-Boot, 21/22] ppc4xx: switch PMC405DE to generic board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:34PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot, 19/22] ppc4xx: switch CPCI2DP to generic board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:32PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,17/22] ppc4xx: remove some CPCI405 variants

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:30PM +0100, Matthias Fuchs wrote: > only keep CPCI4052 > > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.

Re: [U-Boot] [U-Boot,15/22] ppc4xx: remove WUH405 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:28PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,22/22] ppc4xx: switch VOM405 to generic board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:35PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] PM9261 adding generic board support

2015-01-13 Thread Tom Rini
On Tue, Jan 13, 2015 at 12:15:55PM +0200, Georgi Botev wrote: > Signed-off-by: Georgi Botev Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mail

Re: [U-Boot] PM9263 adding generic board support

2015-01-13 Thread Tom Rini
On Tue, Jan 13, 2015 at 12:07:21PM +0200, Georgi Botev wrote: > Signed-off-by: Georgi Botev Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mail

Re: [U-Boot] PM9G45 adding generic board support

2015-01-13 Thread Tom Rini
On Tue, Jan 13, 2015 at 12:30:17PM +0200, Georgi Botev wrote: > Signed-off-by: Georgi Botev Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mail

Re: [U-Boot] [U-Boot,16/22] ppc4xx: remove G2000 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:29PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,14/22] ppc4xx: remove VOH405 board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:27PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [U-Boot,20/22] ppc4xx: switch PLU405 to generic board

2015-01-13 Thread Tom Rini
On Mon, Jan 12, 2015 at 10:47:33PM +0100, Matthias Fuchs wrote: > Signed-off-by: Matthias Fuchs Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/

Re: [U-Boot] [PATCH 01/17] sunxi: axp221: Protect axp221_init against multiple calls

2015-01-13 Thread Ian Campbell
On Sun, 2015-01-11 at 20:34 +0100, Hans de Goede wrote: > The voltage setting code knows it needs to call axp221_init before calling > the various voltage setting functions. > > But users of axp utility functions like axp221_get_sid() do not know this, > so the utility functions always call axp221

Re: [U-Boot] [PATCH 02/17] sunxi: axp221: Add support for controlling the drivebus pin

2015-01-13 Thread Ian Campbell
On Sun, 2015-01-11 at 20:34 +0100, Hans de Goede wrote: Acked-by: Ian Campbell ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 03/17] sunxi: Move usb-controller init code out of ehci-sunxi.c for reuse for otg

2015-01-13 Thread Ian Campbell
On Sun, 2015-01-11 at 20:34 +0100, Hans de Goede wrote: > Most of the usb-controller init code found in ehci-sunxi.c also is necessary > to init the otg usb controller, so move it to a common place. > > While at it also update various #ifdefs / defines for sun8i support. > > Signed-off-by: Hans d

Re: [U-Boot] [PATCH 04/17] sunxi: usbc: Add support for usb0 to the common usbc code

2015-01-13 Thread Ian Campbell
On Sun, 2015-01-11 at 20:34 +0100, Hans de Goede wrote: > Signed-off-by: Hans de Goede Acked-by: Ian Campbell ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 05/17] sunxi: usbc: Add support for usb-vbus0 controller by axp drivebus pin

2015-01-13 Thread Ian Campbell
On Sun, 2015-01-11 at 20:34 +0100, Hans de Goede wrote: > The axp221 / axp223's N_VBUSEN pin can be configured as an output rather > then an input, and this is used on some boards to control usb-vbus0, add > support for this. > > Signed-off-by: Hans de Goede I wonder if we should expose this as

[U-Boot] [PATCH 0/2] Fill blank fields of doc/README.scrapyard with a tool

2015-01-13 Thread Masahiro Yamada
Masahiro Yamada (2): scripts: add a utility to fill blank fields of doc/README.scrapyard README.scrapyard: fill commit and date fields doc/README.scrapyard | 96 +- scripts/fill_scrapyard.py | 168 ++ 2 files changed

[U-Boot] [PATCH 1/2] scripts: add a utility to fill blank fields of doc/README.scrapyard

2015-01-13 Thread Masahiro Yamada
We are removing bunch of non-generic boards these days. Updating doc/README.scrapyard is a really tedious task, but it can be automated. I hope this tool will make our life easier. Signed-off-by: Masahiro Yamada --- scripts/fill_scrapyard.py | 168 +

[U-Boot] [PATCH 2/2] README.scrapyard: fill commit and date fields

2015-01-13 Thread Masahiro Yamada
This commit was generated by the following command: scripts/fill_scrapyard.py Signed-off-by: Masahiro Yamada --- I notice lots of ppc4xx boards are being removed. I will send v2 later. doc/README.scrapyard | 96 ++-- 1 file changed, 48 ins

[U-Boot] [PATCH v1 0/4] Jetson-TK1 support for PSCI

2015-01-13 Thread Ian Campbell
Hi Thierry, I needed to boot my Jetson in NS mode (in order to boot Xen) and was investigating the possibility of PSCI support when I discovered that you had already started on it[0]. Hurrah! I cherry-picked the relevant commit onto u-boot-tegra#master and added a few more patches and now it boot

[U-Boot] [PATCH v1 4/4] tegra124: Reserve secure RAM using MC_SECURITY_CFG{0, 1}_0

2015-01-13 Thread Ian Campbell
These registers can be used to prevent non-secure world from accessing a megabyte aligned region of RAM, use them to protect the u-boot secure monitor code. At first I tried to do this from s_init(), however this inexplicably causes u-boot's networking (e.g. DHCP) to fail, while networking under L

[U-Boot] [PATCH v1 3/4] jetson-tk1: Add PSCI configuration options and reserve secure code

2015-01-13 Thread Ian Campbell
The secure world code is relocated to the MB just below the top of 4G, we reserve it in the FDT (by setting CONFIG_ARMV7_SECURE_RESERVE_SIZE) but it is not protected in h/w. See next patch. Signed-off-by: Ian Campbell --- (This was originally commit ed48864fb69d352291ed75d50a215d60864b021b in htt

[U-Boot] [PATCH v1 2/4] virt-dt: Allow reservation of the secure region when it is in a RAM carveout.

2015-01-13 Thread Ian Campbell
In this case the secure code lives in RAM, and hence needs to be reserved, but it has been relocated, so the reservation of __secure_start does not apply. Add support for setting CONFIG_ARMV7_SECURE_RESERVE_SIZE to reserve such a region. This will be used in a subsequent patch for Jetson-TK1 Sig

[U-Boot] [PATCH v1 1/4] tegra124: Add more registers to struct mc_ctlr

2015-01-13 Thread Ian Campbell
I will need mc_security_cfg0/1 in a future patch and I added the rest while debugging, so thought I might as well commit them. Signed-off-by: Ian Campbell --- arch/arm/include/asm/arch-tegra124/mc.h | 35 +++-- 1 file changed, 33 insertions(+), 2 deletions(-) diff --

Re: [U-Boot] [PATCH 17/17] sunxi: Hookup OTG USB controller support

2015-01-13 Thread Ian Campbell
On Sun, 2015-01-11 at 20:34 +0100, Hans de Goede wrote: > Hookup OTG USB controller support and enable the otg controller + USB-keyb > on various tablets. > > This allows tablet owners to interact with u-boot without needing to solder > a serial console onto their tablet PCB. Looks good, except I

Re: [U-Boot] [PATCH 0/2] Fill blank fields of doc/README.scrapyard with a tool

2015-01-13 Thread Tom Rini
On Wed, Jan 14, 2015 at 04:13:24AM +0900, Masahiro Yamada wrote: > Masahiro Yamada (2): > scripts: add a utility to fill blank fields of doc/README.scrapyard > README.scrapyard: fill commit and date fields Yay, thanks! -- Tom signature.asc Description: Digital signature __

Re: [U-Boot] [PATCH 3/4] config_distro_bootcmd: Scan all partitions for boot files

2015-01-13 Thread Stephen Warren
On 01/13/2015 01:40 AM, Sjoerd Simons wrote: On Mon, 2015-01-12 at 12:44 -0600, Dennis Gilmore wrote: On Mon, 12 Jan 2015 10:42:27 -0700 Stephen Warren wrote: On 01/10/2015 11:27 AM, Dennis Gilmore wrote: On Tue, 06 Jan 2015 17:43:19 -0700 Stephen Warren wrote: (CCing Dennis so he can com

Re: [U-Boot] [PATCH 1/2] console: Allow pre-console buffer to also extract SPL log messages

2015-01-13 Thread Simon Glass
Hi Siarhei, On 13 January 2015 at 04:30, Siarhei Siamashka wrote: > It is possible to enable pre-console buffer in SPL and later extract > log messages from it when updating stdio consoles in u-boot. > > Signed-off-by: Siarhei Siamashka > --- > common/console.c | 65 > +

[U-Boot] avr32 atmel ngw100 support question

2015-01-13 Thread Waldemar Brodkorb
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 the device for some kind of automatic test suite runs. Does the support for this device is known to work in 2015.01? Can I update the old existing U-Boot boot loade

Re: [U-Boot] [PATCH 1/2] scripts: add a utility to fill blank fields of doc/README.scrapyard

2015-01-13 Thread Simon Glass
Hi Masahiro, On 13 January 2015 at 11:13, Masahiro Yamada wrote: > We are removing bunch of non-generic boards these days. > > Updating doc/README.scrapyard is a really tedious task, but it can > be automated. I hope this tool will make our life easier. > > Signed-off-by: Masahiro Yamada > ---

[U-Boot] [PATCH] am335x_evm: Enable CONFIG_NAND_OMAP_GPMC_PREFETCH

2015-01-13 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/am335x_evm.h |1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index 0004750..d5e84ab 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -239,6 +239,7 @@ #def

Re: [U-Boot] Please pull u-boot-x86.git (take 2)

2015-01-13 Thread Tom Rini
On Tue, Jan 13, 2015 at 10:21:06AM -0800, Simon Glass wrote: > Hi Tom, > > I'm not sure of the process for a failed pull request. I have fixed up > the offending patch (fdt: Add several apis to decode pci device node) > and pushed to to x86/master. > > > The following changes since commit 92fa7

Re: [U-Boot] omap5: Add netargs and netboot option

2015-01-13 Thread Tom Rini
On Thu, Dec 04, 2014 at 11:27:05AM -0600, Cooper Jr., Franklin wrote: > * Add netargs and netboot option. > * This enables tftp and nfs booting > * This puts omap5 devices inline with other devices such as am335x and am437x > > Signed-off-by: Franklin S Cooper Jr Applied to u-boot-ti/master, th

Re: [U-Boot] [U-Boot, v2, 7/8] pmic: add tps62362 simple wrapper code

2015-01-13 Thread Tom Rini
On Tue, Jan 06, 2015 at 09:14:36AM -0600, Felipe Balbi wrote: > This regulator is used with AM437x IDK to feed > VDD_MPU, without means to scale VDD_MPU we can't > support higher frequencies. > > Signed-off-by: Felipe Balbi Applied to u-boot-ti/master, thanks! -- Tom signature.asc Descripti

Re: [U-Boot] [U-Boot,v2,1/2] mtd: OMAP: Enable GPMC prefetch mode

2015-01-13 Thread Tom Rini
On Wed, Jun 25, 2014 at 02:43:32PM +0200, Daniel Mack wrote: > Enable GPMC's prefetch feature for NAND access. This speeds up NAND read > access a lot by pre-fetching contents in the background and reading them > through the FIFO address. > > The current implementation has two limitations: > >

Re: [U-Boot] [U-Boot, 1/8] arm: am437x: PLL values for all input frequencies

2015-01-13 Thread Tom Rini
On Mon, Dec 22, 2014 at 04:26:10PM -0600, Felipe Balbi wrote: > From: James Doublesin > > Need to provide PLL values for all possible input frequencies (19.2, 24, > 25, 26MHz). Values provide are also optimized for jitter (needed > especially for PER PLL and DDR PLL). > > Signed-off-by: James D

Re: [U-Boot] [U-Boot, 1/8] arm: am437x: PLL values for all input frequencies

2015-01-13 Thread Tom Rini
On Mon, Dec 22, 2014 at 04:26:10PM -0600, Felipe Balbi wrote: > From: James Doublesin > > Need to provide PLL values for all possible input frequencies (19.2, 24, > 25, 26MHz). Values provide are also optimized for jitter (needed > especially for PER PLL and DDR PLL). > > Signed-off-by: James D

Re: [U-Boot] [U-Boot, 3/8] arm: am437x: Correct PLL frequency for 25MHz

2015-01-13 Thread Tom Rini
On Mon, Dec 22, 2014 at 04:26:12PM -0600, Felipe Balbi wrote: > From: James Doublesin > > The frequencies for 25MHz in dpll_per were out of spec for 25MHz, > correct. > > Signed-off-by: James Doublesin > Signed-off-by: Felipe Balbi Applied to u-boot-ti/master, thanks! -- Tom signature.as

Re: [U-Boot] [U-Boot, 5/8] power: tps65218: define all valid VDD_MPU voltages

2015-01-13 Thread Tom Rini
On Mon, Dec 22, 2014 at 04:26:14PM -0600, Felipe Balbi wrote: > DCDC1 is used as VDD_MPU in all known boards, > let's define all other valid voltages for that > rail so it can be used by our boards. > > Signed-off-by: Felipe Balbi Applied to u-boot-ti/master, thanks! -- Tom signature.asc De

Re: [U-Boot] [U-Boot,6/8] board: ti: am43xx: take care of all OPPs

2015-01-13 Thread Tom Rini
On Mon, Dec 22, 2014 at 04:26:15PM -0600, Felipe Balbi wrote: > Make sure that all OPPs are checked on > scale_vcores(). While at that also fix 600MHz > VDD_MPU voltage according to AM437x Data Manual > available at [1]. > > Table 5-3 on that document, lists all valid > voltages per frequency. >

Re: [U-Boot] [U-Boot, 2/8] arm: am437x: Enable hardware leveling for EMIF

2015-01-13 Thread Tom Rini
On Mon, Dec 22, 2014 at 04:26:11PM -0600, Felipe Balbi wrote: > From: James Doublesin > > Switch to using hardware leveling for certain parameters on the EMIF > rather than using precalculated values. Doing this also means we have a > common place now between am437x and am335x for setting > emi

Re: [U-Boot] pcm051: Add boot script support to pcm051

2015-01-13 Thread Tom Rini
On Sat, Dec 27, 2014 at 10:10:44PM +0300, matwey.korni...@gmail.com wrote: > This patch adds boot script support to pcm051 > > Signed-off-by: Matwey V. Kornilov Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature _

Re: [U-Boot] [U-Boot, 8/8] board: ti: am43xx: add support for AM43xx Industrial Development Kit

2015-01-13 Thread Tom Rini
On Mon, Dec 22, 2014 at 04:26:17PM -0600, Felipe Balbi wrote: > AM43xx Industrial Development Kit is a new board > based on AM437x line of SoCs. Targetted at Industrial > Automation applications, it comes with EtherCAT, motor > control and other goodies. > > Thanks to James Doublesin for all the

Re: [U-Boot] [U-Boot, 4/8] board: ti: am43xx: replace if else if else with a switch

2015-01-13 Thread Tom Rini
On Mon, Dec 22, 2014 at 04:26:13PM -0600, Felipe Balbi wrote: > A switch statement fits better in this case, > specially considering we have a few extra > frequencies to use. > > Signed-off-by: Felipe Balbi Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signa

Re: [U-Boot] [U-Boot, 1/2] arm: omap3: devkit8000: inherit from ti_armv7_common.h

2015-01-13 Thread Tom Rini
On Fri, Jan 02, 2015 at 12:35:42AM +0100, Anthoine Bourgeois wrote: Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature ___ 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: omap3: devkit8000: inherit from ti_omap3_common.h

2015-01-13 Thread Tom Rini
On Fri, Jan 02, 2015 at 12:35:43AM +0100, Anthoine Bourgeois wrote: > Signed-off-by: Anthoine Bourgeois Applied to u-boot-ti/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot mailing list U-Boot@lists.denx.de http://lis

[U-Boot] Please pull u-boot-ti

2015-01-13 Thread Tom Rini
Just talkin' to myself here, The following changes since commit 92fa7f53f1f3f03296f8ffb14bdf1baefab83368: Prepare v2015.01 (2015-01-12 09:39:08 -0500) are available in the git repository at: git://git.denx.de/u-boot-ti master for you to fetch changes up to fa58b102cd8f5345cbc28657600c3a28a

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

2015-01-13 Thread Andreas Bießmann
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 the device for some > kind of automatic test suite runs. > > Does the support for this device is k

  1   2   >