Re: [U-Boot] [PATCH] Tegra114: pinmux: Fix bad CAM_MCLK func 3 table entry

2013-03-13 Thread Stephen Warren
On 03/13/2013 04:10 PM, Tom Warren wrote: > This caused CAM_MCLK's pinmux reg to be locked out, since the > table parsing code couldn't find a matching entry for VI_ALT3 > and wrote garbage to the register. > diff --git a/arch/arm/cpu/tegra114-common/pinmux.c > b/arch/arm/cpu/tegra114-common/pinm

[U-Boot] [PATCH] Tegra114: Fix/update GP padcfg register struct

2013-03-13 Thread Tom Warren
Differences in padcfg registers (some removed, some added) between Tegra30 and Tegra114 weren't picked up when I ported this file. Also removed the HSM setting for SDIOCFG - not called out in TRM. Signed-off-by: Tom Warren --- arch/arm/include/asm/arch-tegra114/gp_padctrl.h | 84 ++

Re: [U-Boot] [PULL] : Please pull u-boot-imx -- 3 build failures

2013-03-13 Thread Eric Nelson
Hi Albert, On 03/13/2013 03:26 PM, Albert ARIBAUD wrote: On Wed, 13 Mar 2013 13:29:55 +0100, Albert ARIBAUD wrote: > However, MAKEALL -a arm fails on three boards: nitrogen6s1g, with an error, and nitrogen6dl2g and nitrogen6q2g, with a warning. nitrogen6s1g: nitrogen6x.c:89:17: error: 'C

Re: [U-Boot] [PULL] : Please pull u-boot-imx -- 3 build failures

2013-03-13 Thread Fabio Estevam
Hi Eric, On Wed, Mar 13, 2013 at 7:36 PM, Eric Nelson wrote: > Hi Albert, > > > On 03/13/2013 03:26 PM, Albert ARIBAUD wrote: >> >> On Wed, 13 Mar 2013 13:29:55 +0100, Albert ARIBAUD >> wrote: >> >> > >> >> However, MAKEALL -a arm fails on three boards: nitrogen6s1g, with an >> error, and nitro

Re: [U-Boot] [PULL] : Please pull u-boot-imx -- 3 build failures

2013-03-13 Thread Eric Nelson
Thanks Fabio. On 03/13/2013 03:40 PM, Fabio Estevam wrote: Hi Eric, On Wed, Mar 13, 2013 at 7:36 PM, Eric Nelson wrote: Hi Albert, On 03/13/2013 03:26 PM, Albert ARIBAUD wrote: On Wed, 13 Mar 2013 13:29:55 +0100, Albert ARIBAUD wrote: However, MAKEALL -a arm fails on three boards:

Re: [U-Boot] [PULL] : Please pull u-boot-imx -- 3 build failures

2013-03-13 Thread Fabio Estevam
On Wed, Mar 13, 2013 at 7:43 PM, Eric Nelson wrote: > Thanks Fabio. > > > On 03/13/2013 03:40 PM, Fabio Estevam wrote: >> >> Hi Eric, >> >> On Wed, Mar 13, 2013 at 7:36 PM, Eric Nelson >> wrote: >>> >>> Hi Albert, >>> >>> >>> On 03/13/2013 03:26 PM, Albert ARIBAUD wrote: On Wed, 13

[U-Boot] [PATCH] Tegra114: Dalmore: Always use DEFAULT instead of DISABLE for lock bits

2013-03-13 Thread Tom Warren
The pinmux code issues a warning if the aller attempts to disable the lock bit in a pinmux register, since this is impossible (once it's locked, the only way to unlock it is to reset the device/pmt controller). The I2C/DDC/CEC/USB macros expect a lock setting to be passed in, and the previous sett

Re: [U-Boot] [PULL] : Please pull u-boot-imx -- 3 build failures

2013-03-13 Thread Eric Nelson
On 03/13/2013 03:44 PM, Fabio Estevam wrote: On Wed, Mar 13, 2013 at 7:43 PM, Eric Nelson wrote: Thanks Fabio. On 03/13/2013 03:40 PM, Fabio Estevam wrote: Hi Eric, On Wed, Mar 13, 2013 at 7:36 PM, Eric Nelson wrote: Hi Albert, On 03/13/2013 03:26 PM, Albert ARIBAUD wrote: On Wed,

[U-Boot] [PATCH] nitrogen6x: Fix RAM size variable

2013-03-13 Thread Fabio Estevam
From: Fabio Estevam Fix the following build error: nitrogen6x.c:89:17: error: 'CONFIG_DDR_MB' undeclared (first use in this function) nitrogen6x.c:89:17: note: each undeclared identifier is reported only once for each function it appears in Reported-by: Albert Aribaud Signed-off-by: Fabio Este

[U-Boot] [PATCH 2/2] nitrogen: Use unsigned long to specify the total RAM size

2013-03-13 Thread Fabio Estevam
From: Fabio Estevam > When building for the nitrogen boards with 2GB the following warning happens: nitrogen6x.c:89:38: warning: integer overflow in expression [-Woverflow] 2GB can not fit in 32-bits, so use ulong instead. Reported-by: Albert Aribaud Signed-off-by: Fabio Estevam --- board/bo

Re: [U-Boot] [PATCH] nitrogen6x: Fix RAM size variable

2013-03-13 Thread Fabio Estevam
On Wed, Mar 13, 2013 at 7:50 PM, Fabio Estevam wrote: > From: Fabio Estevam > > Fix the following build error: > > nitrogen6x.c:89:17: error: 'CONFIG_DDR_MB' undeclared (first use in > this function) > nitrogen6x.c:89:17: note: each undeclared identifier is reported only > once for each function

Re: [U-Boot] [PATCH] Tegra114: pinmux: Fix bad CAM_MCLK func 3 table entry

2013-03-13 Thread Tom Warren
On Wed, Mar 13, 2013 at 3:34 PM, Stephen Warren wrote: > On 03/13/2013 04:10 PM, Tom Warren wrote: >> This caused CAM_MCLK's pinmux reg to be locked out, since the >> table parsing code couldn't find a matching entry for VI_ALT3 >> and wrote garbage to the register. > >> diff --git a/arch/arm/cpu/

Re: [U-Boot] [PATCH] Tegra114: Dalmore: Always use DEFAULT instead of DISABLE for lock bits

2013-03-13 Thread Tom Warren
On Wed, Mar 13, 2013 at 3:46 PM, Tom Warren wrote: > The pinmux code issues a warning if the aller attempts to disable the *caller - I'll fix this when I apply it. :/ > lock bit in a pinmux register, since this is impossible (once it's > locked, the only way to unlock it is to reset the device/pm

[U-Boot] [PATCH v2 1/2] nitrogen6x: Fix RAM size variable

2013-03-13 Thread Fabio Estevam
From: Fabio Estevam Fix the following build error when buildig nitrogen6s1g: nitrogen6x.c:89:17: error: 'CONFIG_DDR_MB' undeclared (first use in this function) nitrogen6x.c:89:17: note: each undeclared identifier is reported only once for each function it appears in Reported-by: Albert Aribaud

[U-Boot] [PATCH v2 2/2] nitrogen: Use unsigned long to specify the total RAM size

2013-03-13 Thread Fabio Estevam
From: Fabio Estevam > When building for the nitrogen boards with 2GB the following warning happens: nitrogen6x.c:89:38: warning: integer overflow in expression [-Woverflow] 2GB can not fit in 32-bits, so use ulong instead. Reported-by: Albert Aribaud Signed-off-by: Fabio Estevam --- Changes s

Re: [U-Boot] [PATCH] Tegra114: pinmux: Fix bad CAM_MCLK func 3 table entry

2013-03-13 Thread Stephen Warren
On 03/13/2013 04:55 PM, Tom Warren wrote: > On Wed, Mar 13, 2013 at 3:34 PM, Stephen Warren wrote: >> On 03/13/2013 04:10 PM, Tom Warren wrote: >>> This caused CAM_MCLK's pinmux reg to be locked out, since the >>> table parsing code couldn't find a matching entry for VI_ALT3 >>> and wrote garbage

Re: [U-Boot] [PATCH] Tegra114: Fix/update GP padcfg register struct

2013-03-13 Thread Stephen Warren
On 03/13/2013 04:34 PM, Tom Warren wrote: > Differences in padcfg registers (some removed, some added) between > Tegra30 and Tegra114 weren't picked up when I ported this file. > Also removed the HSM setting for SDIOCFG - not called out in TRM. The actual diff would be a lot easier to see if the r

Re: [U-Boot] [PATCH] Tegra114: Dalmore: Always use DEFAULT instead of DISABLE for lock bits

2013-03-13 Thread Stephen Warren
On 03/13/2013 04:46 PM, Tom Warren wrote: > The pinmux code issues a warning if the aller attempts to disable the > lock bit in a pinmux register, since this is impossible (once it's > locked, the only way to unlock it is to reset the device/pmt controller). > > The I2C/DDC/CEC/USB macros expect a

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

2013-03-13 Thread Bo Shen
Hello, On 3/13/2013 20:26, mar...@netopen.com.br wrote: Hi Our board reboots after send Wrong Image Format message to the console and hangs. How do you do this? what output from console? The Linux uImage is correctly placed in the NAND 0X20. The console input is somehow inhibit. I canno

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

2013-03-13 Thread Bo Shen
On 3/11/2013 0:16, Andreas Bießmann wrote: Signed-off-by: Andreas Bießmann Cc: Bo Shen Acked-by: Bo Shen --- board/atmel/at91sam9260ek/at91sam9260ek.c | 12 include/configs/at91sam9260ek.h | 20 2 files changed, 20 insertions(+), 12 delet

Re: [U-Boot] [PATCH] Tegra114: Fix/update GP padcfg register struct

2013-03-13 Thread Tom Warren
Stephen, > -Original Message- > From: Stephen Warren [mailto:swar...@wwwdotorg.org] > Sent: Wednesday, March 13, 2013 4:30 PM > To: Tom Warren > Cc: u-boot@lists.denx.de; Stephen Warren; Tom Warren > Subject: Re: [U-Boot] [PATCH] Tegra114: Fix/update GP padcfg register struct > > On 03/13

[U-Boot] [PATCH v4] Add initial support for Wandboard dual lite and solo.

2013-03-13 Thread Fabio Estevam
From: Fabio Estevam Add initial support for Wandboard. Wandboard is a development board that has two variants: one version based on mx6 dual lite and another one based on mx6 solo. For details on the features of Wandboard, please refer to: http://www.wandboard.org/ Signed-off-by: Fabio Estevam

Re: [U-Boot] [PATCH v1] DOS_PBR block type is also valid dos block type.

2013-03-13 Thread Sonic Zhang
Hi Stephen, On Thu, Mar 14, 2013 at 1:11 AM, Stephen Warren wrote: > On 03/11/2013 08:59 PM, Sonic Zhang wrote: >> Hi Stephen, >> >> On Tue, Mar 12, 2013 at 1:28 AM, Stephen Warren >> wrote: >>> On 03/11/2013 03:56 AM, sonic@gmail.com wrote: From: Sonic Zhang - Should return

Re: [U-Boot] [PATCH 01/13] video: exynos_fb: Remove callbacks from the driver

2013-03-13 Thread Simon Glass
Hi Ajay, On Wed, Mar 13, 2013 at 6:44 AM, Ajay kumar wrote: > Hi Simon, > > The idea was to move out panel_info structure from board files, and > passing the same info from the device tree. > The first obstacle towards this were the callback hooks in the > panel_info structure. > This is just a w

Re: [U-Boot] [PATCH v1] DOS_PBR block type is also valid dos block type.

2013-03-13 Thread Stephen Warren
On 03/13/2013 08:51 PM, Sonic Zhang wrote: > Hi Stephen, > > On Thu, Mar 14, 2013 at 1:11 AM, Stephen Warren wrote: >> On 03/11/2013 08:59 PM, Sonic Zhang wrote: >>> Hi Stephen, >>> >>> On Tue, Mar 12, 2013 at 1:28 AM, Stephen Warren >>> wrote: On 03/11/2013 03:56 AM, sonic@gmail.com w

Re: [U-Boot] [PATCH] Tegra114: Fix/update GP padcfg register struct

2013-03-13 Thread Stephen Warren
On 03/13/2013 08:13 PM, Tom Warren wrote: > Stephen, > >> -Original Message- >> From: Stephen Warren [mailto:swar...@wwwdotorg.org] >> Sent: Wednesday, March 13, 2013 4:30 PM >> To: Tom Warren >> Cc: u-boot@lists.denx.de; Stephen Warren; Tom Warren >> Subject: Re: [U-Boot] [PATCH] Tegra114

Re: [U-Boot] [PATCH v2] mxs: spl_mem_init: Align DDR2 init with FSL bootlets source

2013-03-13 Thread Lauri Hintsala
Hi, On 03/13/2013 04:22 PM, Fabio Estevam wrote: Lauri, On Wed, Mar 13, 2013 at 11:18 AM, Fabio Estevam wrote: Hi Stefano, On Wed, Mar 13, 2013 at 5:16 AM, Stefano Babic wrote: Apart of the fact that fixes booting old kernel, these changes affects all mx28 boards, not only mx28evk. Can we

Re: [U-Boot] [PATCH v2 1/3] am335x_evm: add support for BeagleBone Black DT name

2013-03-13 Thread Koen Kooi
Op 13 mrt. 2013, om 21:19 heeft Matt Porter het volgende geschreven: > On Wed, Mar 13, 2013 at 08:02:26PM +0100, Koen Kooi wrote: >> >> Op 13 mrt. 2013, om 16:07 heeft Nishanth Menon het volgende >> geschreven: >> >>> On 16:05-20130313, Koen Kooi wrote:

<    1   2