Re: [U-Boot] [PATCH 2/2] mx6qsabrelite: Do not hardcode the CPU revision

2013-03-15 Thread Dirk Behme
Am 15.03.2013 22:06, schrieb Fabio Estevam: From: Fabio Estevam Instead of hardcoding the CPU revision, it is better to use get_cpu_rev(). I think to remember that there is a reason why it is hard coded this way. Have you tested this with the Vivante GPU driver? If I remember correctly they

Re: [U-Boot] [PATCH] Exynos: clock: Fix a bug in PLL lock check condition

2013-03-15 Thread Simon Glass
On Fri, Mar 15, 2013 at 5:29 AM, Akshay Saraswat wrote: > The condition for testing of PLL getting locked was incorrect. Rectify > this error in this patch. > > Reported-by: Alexei Fedorov > Signed-off-by: Hatim Ali > Signed-off-by: Akshay Saraswat Acked-by: Simon Glass __

Re: [U-Boot] [PATCH 1/2] nitrogen6x: Pass the correct CPU revision to the kernel

2013-03-15 Thread Eric Nelson
On 03/15/2013 02:06 PM, Fabio Estevam wrote: From: Fabio Estevam As nitrogen6x boards support different i.MX6 flavors (quad, dual-lite and solo) the correct CPU revision needs to passed to the kernel, so call get_cpu_rev() instead of hardcoding it. Freescale 3.0.35 kernel assumes that the CPU

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

2013-03-15 Thread Bo Shen
Hi Marcio, 于 2013/3/16 2:46, mar...@netopen.com.br 写道: Hi B. Thanks for your attention! Bad Data CRC don't help. Because, many possible issue will cause this issue. I will provide the log. Consider you use 16bit NAND flash. Have you define CONFIG_SYS_NAND_DBW_16 in board configuratio

[U-Boot] [PATCH] patman: Make "Reviewed-by" an important tag

2013-03-15 Thread Doug Anderson
Although "Reviewed-by:" is a tag that gerrit adds, it's also a tag used by upstream. Stripping it is undesirable. In fact, we should treat it as important. Signed-off-by: Doug Anderson --- tools/patman/README | 4 ++-- tools/patman/patchstream.py | 4 ++-- 2 files changed, 4 insertions

[U-Boot] [PATCH] patman: Allow specifying the message ID your series is in reply to

2013-03-15 Thread Doug Anderson
Some versions of git don't seem to prompt you for the message ID that your series is in reply to. Allow specifying this from the command line. Signed-off-by: Doug Anderson --- tools/patman/gitutil.py | 7 ++- tools/patman/patman.py | 4 +++- 2 files changed, 9 insertions(+), 2 deletions(-)

Re: [U-Boot] [PATCH V5 REPOST 6/7] mmc: add bcm2835 driver

2013-03-15 Thread Stephen Warren
On 03/11/2013 12:35 AM, Albert ARIBAUD wrote: > Hi Stephen, > > On Sat, 09 Mar 2013 23:34:21 -0700, Stephen Warren > wrote: > >> On 02/03/2013 04:27 AM, Albert ARIBAUD wrote: >>> On Tue, 15 Jan 2013 19:26:58 -0700, Stephen Warren >>> wrote: >>> This adds a simple driver for the BCM2835's

Re: [U-Boot] [PATCH v9 0/31] Create generic board init for ARM, x86, PPC

2013-03-15 Thread Tom Rini
On Wed, Mar 13, 2013 at 09:46:26AM +0100, Wolfgang Denk wrote: > Dear Simon Glass, > > In message <1363020460-14307-1-git-send-email-...@chromium.org> you wrote: > > This series creates a generic board init implementation which contains > > the essential functions of the major arch/xxx/lib/board.c

[U-Boot] Pull request: u-boot-arm/master

2013-03-15 Thread Albert ARIBAUD
Hello Tom, Here is a PR for ARM. Note that doc/README.scrapyard will need a manual merge resolution due to ARM tree having a commit that reorders the headers and reformats the lines while mainline has a commit adding two new entries still in the older format. The following changes since commit fc

[U-Boot] [PATCH 2/2] mx6qsabrelite: Do not hardcode the CPU revision

2013-03-15 Thread Fabio Estevam
From: Fabio Estevam Instead of hardcoding the CPU revision, it is better to use get_cpu_rev(). Signed-off-by: Fabio Estevam --- board/freescale/mx6qsabrelite/mx6qsabrelite.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/board/freescale/mx6qsabrelite/mx6qsabrelite.c

Re: [U-Boot] [PATCH 2/4] cpsw: add support for TI814x slave_regs differences

2013-03-15 Thread Tom Rini
On Fri, Mar 15, 2013 at 04:58:18PM -0400, Matt Porter wrote: > TI814x's version 1 CPSW has a different slave_regs layout. > Add support for the differing registers. > > Signed-off-by: Matt Porter Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [PATCH 1/4] am33xx: add pll and clock support for TI814x CPSW

2013-03-15 Thread Tom Rini
On Fri, Mar 15, 2013 at 04:58:17PM -0400, Matt Porter wrote: [snip] > + /* Ethernet */ > + writel(PRCM_MOD_EN, &cmalwon->l3slowclkstctrl); > + while ((readl(&cmalwon->l3slowclkstctrl) & 0x2100) != 0x2100) > + ; > + writel(PRCM_MOD_EN, &cmalwon->ethclkstctrl); > + wr

[U-Boot] [PATCH 1/2] nitrogen6x: Pass the correct CPU revision to the kernel

2013-03-15 Thread Fabio Estevam
From: Fabio Estevam As nitrogen6x boards support different i.MX6 flavors (quad, dual-lite and solo) the correct CPU revision needs to passed to the kernel, so call get_cpu_rev() instead of hardcoding it. Freescale 3.0.35 kernel assumes that the CPU revision is passed passed from the bootloader.

Re: [U-Boot] [PATCH 3/4] phy: add support for ET1011C phys

2013-03-15 Thread Tom Rini
On Fri, Mar 15, 2013 at 04:58:19PM -0400, Matt Porter wrote: > Adds an ET1011C PHY driver which is derived from > the current Linux kernel PHY driver. Note that an > errata workaround config option is implemented to > allow for TX_CLK to be enabled even when gigabit > mode is negotiated. This work

Re: [U-Boot] [PATCH 4/4] ti814x_evm: enable CPSW support

2013-03-15 Thread Tom Rini
On Fri, Mar 15, 2013 at 04:58:20PM -0400, Matt Porter wrote: > Adds CPSW support to the TI814X EVM configured with > an ET1011C PHY in GMII mode. > > Signed-off-by: Matt Porter Reviewed-by: Tom Rini -- Tom signature.asc Description: Digital signature ___

[U-Boot] [PATCH 3/4] phy: add support for ET1011C phys

2013-03-15 Thread Matt Porter
Adds an ET1011C PHY driver which is derived from the current Linux kernel PHY driver. Note that an errata workaround config option is implemented to allow for TX_CLK to be enabled even when gigabit mode is negotiated. This workaround is used on the TI814x-EVM. Signed-off-by: Matt Porter --- driv

[U-Boot] [PATCH 4/4] ti814x_evm: enable CPSW support

2013-03-15 Thread Matt Porter
Adds CPSW support to the TI814X EVM configured with an ET1011C PHY in GMII mode. Signed-off-by: Matt Porter --- board/ti/ti814x/evm.c| 72 ++ board/ti/ti814x/evm.h|1 + board/ti/ti814x/mux.c| 35 include

Re: [U-Boot] Uboot support for MT29F2G16ABBEAH4 NAND 16 bit

2013-03-15 Thread marcio
Hi Scott Thanks a lot for your attention. I am using a custom board based at the Atmel AT91SAM9M10G45-EK Development Kit. I am quite sure The Linux Kernel is properly loaded in the NAND memory. Here is the U-boot log. U-Boot 2012.10-00075-g0362411-dirty (Mar 15 2013 - 11:33:53) U-Boot

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

2013-03-15 Thread mar...@netopen.com.br
Hi B I would like to mention that I run U-boot either via the code located in flash(using at91bootstrap) or directly in the DDRAM via Eclipse/GDB/JTAG(Jflash). Thanks Marcio On Thu, 14 Mar 2013 19:31:39 -0700 (PDT), Bo Shen-3 [via U-Boot] wrote: > Hi Marcio, > > On 3/14/2013 20:23,

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

2013-03-15 Thread mar...@netopen.com.br
Hi B. Thanks for your attention! >Bad Data CRC don't help. Because, many possible issue will cause this issue. I will provide the log. >Consider you use 16bit NAND flash. Have you define >CONFIG_SYS_NAND_DBW_16 in board configuration header? Yes I did that. Before I include this defin

[U-Boot] [PATCH 2/4] cpsw: add support for TI814x slave_regs differences

2013-03-15 Thread Matt Porter
TI814x's version 1 CPSW has a different slave_regs layout. Add support for the differing registers. Signed-off-by: Matt Porter --- drivers/net/cpsw.c |6 ++ 1 file changed, 6 insertions(+) diff --git a/drivers/net/cpsw.c b/drivers/net/cpsw.c index f5c5b9a..34c9fdd 100644 --- a/drivers/n

[U-Boot] [PATCH 1/4] am33xx: add pll and clock support for TI814x CPSW

2013-03-15 Thread Matt Porter
Enables required PLLs and clocks for CPSW on TI814x. Signed-off-by: Matt Porter --- arch/arm/cpu/armv7/am33xx/clock_ti814x.c | 56 +++- arch/arm/include/asm/arch-am33xx/hardware_ti814x.h |1 + board/ti/ti814x/evm.c |3 ++ 3 files c

[U-Boot] [PATCH 0/4] Enable CPSW on TI814x EVM

2013-03-15 Thread Matt Porter
This series adds support for CPSW on the PG1.0 TI814x EVM board. The V1 CPSW on TI814x requires minor register changes to the existing driver as well as TI814x-specific pll/clock support. An ET1011C phy driver is added to support the PHY present on the PG1.0 EVM. It has been tested loading/bootin

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

2013-03-15 Thread Wolfgang Denk
Dear Fabio Estevam, In message you wrote: > > >> +#define CONFIG_SYS_MEMTEST_START 0x1000 > >> +#define CONFIG_SYS_MEMTEST_END 0x1001 > > > > This makes no sense. Please see doc/README.memory-test > > This is something that always causes me confusion. > > doc/README

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

2013-03-15 Thread Wolfgang Denk
Dear Stefano, In message <514367ed.6070...@denx.de> you wrote: > > It is ok to move the information to bdinfo, but then it should not break > the consistence: all i.MX should follow the same rule. This makes also > easier for board maintainers to switch from a SOC to the next one, > because they

Re: [U-Boot] pull request for u-boot-tegra/master into ARM/master

2013-03-15 Thread Albert ARIBAUD
Hi Tom, On Fri, 15 Mar 2013 08:25:11 -0700, Tom Warren wrote: > Albert, > > Please pull u-boot-tegra/master into ARM/master. Thanks! > > ./MAKEALL for all the Tegra boards is OK, running a ./MAKEALL -a arm > now. Checkpatch.pl is clean. > > The following changes since commit ef123c52537046325

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

2013-03-15 Thread Fabio Estevam
From: Fabio Estevam Wandboard is a development board that has two variants: one version based on mx6 dual lite and another one based on mx6 solo. For more details about Wandboard, please refer to: http://www.wandboard.org/ Signed-off-by: Fabio Estevam --- Changes since v4: - Improved commit lo

[U-Boot] [PATCH] .checkpatch.conf: ignore udelay->usleep_range warnings

2013-03-15 Thread Matt Porter
usleep_range() is a Linux facility, ignore it when udelay() is encountered. Signed-off-by: Matt Porter --- .checkpatch.conf |3 +++ 1 file changed, 3 insertions(+) diff --git a/.checkpatch.conf b/.checkpatch.conf index 38386b3..d88af57 100644 --- a/.checkpatch.conf +++ b/.checkpatch.conf @@

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

2013-03-15 Thread Fabio Estevam
On Fri, Mar 15, 2013 at 3:21 PM, Fabio Estevam wrote: > Hi Wolfgang, > > On Thu, Mar 14, 2013 at 9:31 AM, Wolfgang Denk wrote: > >>> +#define CONFIG_SYS_MEMTEST_START 0x1000 >>> +#define CONFIG_SYS_MEMTEST_END 0x1001 >> >> This makes no sense. Please see doc/README.memo

Re: [U-Boot] [PATCH 3/4 V3] S5P: Serial: Add fdt support to driver

2013-03-15 Thread Simon Glass
Hi Rajeshwari, On Fri, Mar 15, 2013 at 3:43 AM, Rajeshwari Shinde wrote: > This patch adds FDT support to the serial s5p driver. > At present disabling the serial console (from the device tree) crashes > U-Boot. Add checks for this case, so that execution can continue without > a serial console.

Re: [U-Boot] [PATCH 2/4 V3] EXYNOS5: FDT: Add serial device node values

2013-03-15 Thread Simon Glass
On Fri, Mar 15, 2013 at 3:38 AM, Rajeshwari Shinde wrote: > This patch adds the device node required for serial driver > > Signed-off-by: Abhilash Kesavan > Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass > --- > Changes in V2: > - Changed the compatible string to "samsung,exyn

Re: [U-Boot] [PATCH 4/4 v6] Exynos: config: Enable hash command

2013-03-15 Thread Simon Glass
On Fri, Mar 15, 2013 at 1:52 AM, Akshay Saraswat wrote: > This enables hash command. > > Tested with command "hash sha256 0x40008000 0x2B 0x40009000". > Used mm and md to write a standard string to memory location > 0x40008000 and ran the above command to verify the output. > > Signed-off-by: ARUN

Re: [U-Boot] [PATCH 3/4 v6] gen: Add sha h/w acceleration to hash

2013-03-15 Thread Simon Glass
Hi Akshay, On Fri, Mar 15, 2013 at 1:52 AM, Akshay Saraswat wrote: > Adding H/W acceleration support to hash which can be used > to test SHA 256 hash algorithm. > > Signed-off-by: ARUN MANKUZHI > Signed-off-by: Akshay Saraswat > --- > Changes since v1: > - Added sha256 support to "hash"

Re: [U-Boot] [PATCH 1/4 v6] Exynos: Add hardware accelerated SHA256 and SHA1

2013-03-15 Thread Simon Glass
Hi Akshay, On Fri, Mar 15, 2013 at 1:52 AM, Akshay Saraswat wrote: > SHA-256 and SHA-1 accelerated using ACE hardware. > > Signed-off-by: ARUN MANKUZHI > Signed-off-by: Akshay Saraswat One nit below, but otherwise: Acked-by: Simon Glass [...] > Changes since v5: > - Removed ace_sha.

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

2013-03-15 Thread Otavio Salvador
Hi Stefano, On Fri, Mar 15, 2013 at 3:51 PM, Albert ARIBAUD wrote: > Applied to u-boot-arm/master, thanks! Could you please merge u-boot-arm/master back into u-boot-imx/master? -- Otavio Salvador O.S. Systems E-mail: ota...@ossystems.com.br http://www.ossystems.com

[U-Boot] [PATCH v4 9/9] ti814x_evm: add ti814x evm board support

2013-03-15 Thread Matt Porter
Add TI814X EVM board directory, config file, and MAINTAINERS entry. Enable build. Signed-off-by: Matt Porter Reviewed-by: Tom Rini --- v4: * Removed unused include * Removed CONFIG_FS_* options to use fallbacks v3: no change v2: * squash MAINTAINERS and Makefile commits

[U-Boot] [PATCH v4 8/9] ns16550: enable quirks for ti814x

2013-03-15 Thread Matt Porter
TI814X requires the same quirks as AM33XX to be enabled. Signed-off-by: Matt Porter Reviewed-by: Tom Rini --- v4: no changes v3: no changes v2: no changes --- drivers/serial/ns16550.c |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/serial/ns16550.c b/drivers

[U-Boot] [PATCH v4 6/9] am33xx: add dmm support to emif4 library

2013-03-15 Thread Matt Porter
Adds a config_dmm() routine to support TI814X DMM configuration. Signed-off-by: Matt Porter Reviewed-by: Tom Rini --- v4: no changes v3: no changes v2: no changes --- arch/arm/cpu/armv7/am33xx/emif4.c | 17 + arch/arm/include/asm/arch-am33xx/ddr_defs.h |5 +

[U-Boot] [PATCH v4 7/9] am33xx: support ti814x mmc reference clock

2013-03-15 Thread Matt Porter
TI814x has a 192MHz hsmmc reference clock. Select that clock rate when building for TI814x. Signed-off-by: Matt Porter --- v4: no changes v3: no changes v2: no changes, new to the series --- arch/arm/include/asm/arch-am33xx/mmc_host_def.h |4 1 file changed, 4 insertions(+) diff --git

[U-Boot] [PATCH v4 5/9] am33xx: add ti814x specific register definitions

2013-03-15 Thread Matt Porter
Support the ti814x specific register definitions within arch-am33xx. Signed-off-by: Matt Porter Reviewed-by: Tom Rini --- v4: Removed from omap.h v3: no changes v2: Update for hardware.h split --- arch/arm/cpu/armv7/am33xx/sys_info.c |3 +++ arch/arm/include/asm/arch-am33xx/

[U-Boot] [PATCH v4 4/9] am33xx: refactor am33xx mux support and add ti814x support

2013-03-15 Thread Matt Porter
AM33XX and TI814X have a similar mux though the pinmux register layout and address space differ. Add a separate ti814x mux include to support the TI814X-specific differences. Signed-off-by: Matt Porter Reviewed-by: Tom Rini Acked-by: Peter Korsgaard --- v4: no changes v3: no changes v2

[U-Boot] [PATCH v4 3/9] am33xx: refactor am33xx clocks and add ti814x support

2013-03-15 Thread Matt Porter
Split clock.c for am335x and ti814x and add ti814x specific clock support. Signed-off-by: Matt Porter --- v4: no changes v3: * Fix EMIF/L3F clock enable ordering issue (Exposed on UART boot with hang at check for L3F enabled) v2: * remove unused dmtimer support

[U-Boot] [PATCH v4 2/9] am33xx: refactor emif4/ddr to support multiple EMIF instances

2013-03-15 Thread Matt Porter
The AM33xx emif4/ddr support closely matches what is need to support TI814x except that TI814x has two EMIF instances. Refactor all the emif4 helper calls and the config_ddr() init function to use an additional instance number argument. Signed-off-by: Matt Porter Reviewed-by: Tom Rini --- v4:

[U-Boot] [PATCH v4 1/9] am33xx: convert defines from am33xx-specific to generic names

2013-03-15 Thread Matt Porter
Eliminate AM33xx specific names to prepare for TI814x support within AM33xx-land. Signed-off-by: Matt Porter Reviewed-by: Tom Rini --- v4: fix pcm051 build breakage v3: no changes v2: no changes --- arch/arm/cpu/armv7/am33xx/board.c |4 ++-- arch/arm/include/asm/arch-am33xx/hardw

[U-Boot] [PATCH v4 0/9] Add TI814x EVM Support

2013-03-15 Thread Matt Porter
This series adds support for the PG1.0 TI814x EVM board. TI814x fits into the existing AM33XX SoC support with some refactoring of the AM33XX-specific emif4, clock, and mux code. It has been tested booting up a Linux kernel and regression tested on BeagleBone and EVM-SK AM33XX boards. It has also

Re: [U-Boot] Uboot support for MT29F2G16ABBEAH4 NAND 16 bit

2013-03-15 Thread Scott Wood
On 03/14/2013 05:52:57 PM, mar...@netopen.com.br wrote: Hi has Anybody managed to load the Linux Kernel using MT29F2G16ABBEAH4 NAND or other 16 bits NAND memory? I haven't personally, but there's no general reason why 16-bit NAND shouldn't work in U-Boot. Some NAND controllers or drivers

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

2013-03-15 Thread Albert ARIBAUD
Hi Stefano, On Fri, 15 Mar 2013 14:54:06 +0100, Stefano Babic wrote: > Hi Albert, > > here an update pull request after applying Fabio's fixes. > > The following changes since commit 4cfc611b4a4ce009cfad46804bec2a1caad8e329: > > ARM: ns9750dev: remove remainders of dead board (2013-02-28 14

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

2013-03-15 Thread Stefano Babic
On 15/03/2013 18:27, Wolfgang Denk wrote: > Dear Stefano Babic, > Hi Wolfgang, > I agree that it is important information, and there should be a way > that the user can get at this information. But I see no urgent need > to print this for everyboot, where it is just costing us precious boot > t

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

2013-03-15 Thread Fabio Estevam
Hi Wolfgang, On Thu, Mar 14, 2013 at 9:31 AM, Wolfgang Denk wrote: >> +#define CONFIG_SYS_MEMTEST_START 0x1000 >> +#define CONFIG_SYS_MEMTEST_END 0x1001 > > This makes no sense. Please see doc/README.memory-test This is something that always causes me confusion. doc/

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

2013-03-15 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/15/2013 01:09 PM, Stephen Warren wrote: > On 03/15/2013 12:36 AM, Sonic Zhang wrote: ... >> We can erase the first 3 blocks completely before formatting it >> again. But, nothing can prevent others from formatting the SD >> card with different

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

2013-03-15 Thread Wolfgang Denk
Dear Stefano Babic, In message <5143365f.5000...@denx.de> you wrote: > > > Indeed this is common code, I see it now. So yes, if we change this, > > it should be done as separate patch. I think debug() makes a lot of > > sense here to reduce the output at boot time to a reasonable minimum, > > b

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

2013-03-15 Thread Stephen Warren
On 03/15/2013 12:36 AM, Sonic Zhang wrote: ... > We can erase the first 3 blocks completely before formatting it again. > But, nothing can prevent others from formatting the SD card with > different tools. Surely any tool that creates a partition table on a device when there wasn't any partition t

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

2013-03-15 Thread Stephen Warren
On 03/15/2013 06:46 AM, Tom Rini wrote: > On 03/15/2013 01:10 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

[U-Boot] [PATCH] armv7: do not relocate _start twice

2013-03-15 Thread Vincent Stehlé
The _start symbol is already relocated, so do not add the relocation the second time in c_runtime_cpu_setup. This fixes e.g. the abort exception handling path, which ended in double fault due to bad address in VBAR. Signed-off-by: Vincent Stehlé Reported-by: Lubomir Popov --- Hello, Here is

Re: [U-Boot] [PATCH] am335x: Enable DDR PHY dynamic power down bit for DDR3 boards

2013-03-15 Thread Lars Poeschel
On Friday 15 March 2013 at 16:05:24, Tom Rini wrote: > On Fri, Mar 15, 2013 at 12:41:16PM +0530, Vaibhav Hiremath wrote: > > Enable DDR PHY dynamic power down bit, which enables > > powering down the IO receiver when not performing read. > > > > This also helps in reducing overall power consumptio

Re: [U-Boot] [U-Boot,v11,02/31] Replace __bss_end__ with __bss_end

2013-03-15 Thread Simon Glass
Hi Tom, On Fri, Mar 15, 2013 at 8:50 AM, Tom Rini wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 03/15/2013 11:47 AM, Simon Glass wrote: >> Hi Tom, >> >> On Fri, Mar 15, 2013 at 6:33 AM, Tom Rini wrote: >>> On Thu, Mar 14, 2013 at 06:54:53AM -, Simon Glass wrote: >>> No

Re: [U-Boot] [U-Boot,v11,02/31] Replace __bss_end__ with __bss_end

2013-03-15 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/15/2013 11:47 AM, Simon Glass wrote: > Hi Tom, > > On Fri, Mar 15, 2013 at 6:33 AM, Tom Rini wrote: >> On Thu, Mar 14, 2013 at 06:54:53AM -, Simon Glass wrote: >> >>> Note this is a tree-wide change affecting multiple >>> architectures. >

Re: [U-Boot] [U-Boot,v11,02/31] Replace __bss_end__ with __bss_end

2013-03-15 Thread Simon Glass
Hi Tom, On Fri, Mar 15, 2013 at 6:33 AM, Tom Rini wrote: > On Thu, Mar 14, 2013 at 06:54:53AM -, Simon Glass wrote: > >> Note this is a tree-wide change affecting multiple architectures. >> >> At present we use __bss_start, but mostly __bss_end__. This seems >> inconsistent and in a number of

[U-Boot] pull request for u-boot-tegra/master into ARM/master

2013-03-15 Thread Tom Warren
Albert, Please pull u-boot-tegra/master into ARM/master. Thanks! ./MAKEALL for all the Tegra boards is OK, running a ./MAKEALL -a arm now. Checkpatch.pl is clean. The following changes since commit ef123c525370463254a6f8e67563fdb0b0b46412: Albert ARIBAUD (1): Refactor linker-generated

Re: [U-Boot] [PATCH] am335x: Enable DDR PHY dynamic power down bit for DDR3 boards

2013-03-15 Thread Tom Rini
On Fri, Mar 15, 2013 at 12:41:16PM +0530, Vaibhav Hiremath wrote: > Enable DDR PHY dynamic power down bit, which enables > powering down the IO receiver when not performing read. > > This also helps in reducing overall power consumption in > low power states (suspend/standby). > > Signed-off-by:

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

2013-03-15 Thread Stefano Babic
On 14/03/2013 21:24, Wolfgang Denk wrote: > Dear Fabio, > Hi Wolfgang, hi Fabio, >>> Can we please remove the "Reset cause: WDOG" line in production mode? >> >> Do you mean the change below? >> >> --- a/arch/arm/imx-common/cpu.c >> +++ b/arch/arm/imx-common/cpu.c >> @@ -148,7 +148,7 @@ int print

Re: [U-Boot] [PATCH v7] Introduced btrfs file-system with btrload command

2013-03-15 Thread Tom Rini
On Thu, Mar 14, 2013 at 12:35:46PM +, Adnan Ali wrote: > Introduces btrfs file-system to read file from > volume/sub-volumes with btrload command. This > implementation has read-only support. > This btrfs implementation is based on syslinux btrfs > code, commit 269ebc845ebc8b46ef4b0be7fa0005c7

[U-Boot] [PULL] : Please pull u-boot-imx

2013-03-15 Thread Stefano Babic
Hi Albert, here an update pull request after applying Fabio's fixes. The following changes since commit 4cfc611b4a4ce009cfad46804bec2a1caad8e329: ARM: ns9750dev: remove remainders of dead board (2013-02-28 14:49:24 +0100) are available in the git repository at: git://www.denx.de/git/u-boot

Re: [U-Boot] [U-Boot,v11,02/31] Replace __bss_end__ with __bss_end

2013-03-15 Thread Tom Rini
On Thu, Mar 14, 2013 at 06:54:53AM -, Simon Glass wrote: > Note this is a tree-wide change affecting multiple architectures. > > At present we use __bss_start, but mostly __bss_end__. This seems > inconsistent and in a number of places __bss_end is used instead. > > Change to use __bss_end f

Re: [U-Boot] [PATCHv2 0/3] new IGEP board support

2013-03-15 Thread Tom Rini
On Fri, Mar 15, 2013 at 01:48:38PM +0100, Enric Balletbo Serra wrote: > Hi Tom, > > Any comments on these patch series ? > > 2013/2/7 Javier Martinez Canillas : > > On Thu, Feb 7, 2013 at 11:40 AM, [Enric Balletbo i Serra > > wrote: > >> From: Enric Balletbo i Serra > >> > >> Hi all, > >> > >>

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

2013-03-15 Thread Tom Rini
On Fri, Mar 15, 2013 at 02:36:21PM +0800, Sonic Zhang wrote: > Hi Stephen, > > On Fri, Mar 15, 2013 at 1:10 PM, 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 A

Re: [U-Boot] [PATCHv2 0/3] new IGEP board support

2013-03-15 Thread Enric Balletbo Serra
Hi Tom, Any comments on these patch series ? 2013/2/7 Javier Martinez Canillas : > On Thu, Feb 7, 2013 at 11:40 AM, [Enric Balletbo i Serra > wrote: >> From: Enric Balletbo i Serra >> >> Hi all, >> >> This is the second version to add support to the IGEP COM PROTON board in >> current mainline.

Re: [U-Boot] [PATCH] igep00x0: Enable CONFIG_CMD_BOOTZ

2013-03-15 Thread Javier Martinez Canillas
On Fri, Mar 15, 2013 at 1:32 PM, Enric Balletbo i Serra wrote: > From: Enric Balletbo i Serra > > With v3.9 and later of the Linux Kernel defaulting to multi-platform > images with omap2plus_defconfig, uImage isn't builtable anymore by > default. Add CONFIG_CMD_BOOTZ so that we can still boot so

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

2013-03-15 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/15/2013 01:10 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

[U-Boot] [PATCH] igep00x0: Enable CONFIG_CMD_BOOTZ

2013-03-15 Thread Enric Balletbo i Serra
From: Enric Balletbo i Serra With v3.9 and later of the Linux Kernel defaulting to multi-platform images with omap2plus_defconfig, uImage isn't builtable anymore by default. Add CONFIG_CMD_BOOTZ so that we can still boot something the kernel spits out. Signed-off-by: Enric Balletbo i Serra ---

[U-Boot] [PATCH] Exynos: clock: Fix a bug in PLL lock check condition

2013-03-15 Thread Akshay Saraswat
The condition for testing of PLL getting locked was incorrect. Rectify this error in this patch. Reported-by: Alexei Fedorov Signed-off-by: Hatim Ali Signed-off-by: Akshay Saraswat --- board/samsung/smdk5250/clock_init.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) dif

[U-Boot] [PATCH v4 1/3] mx6qsabresd: Fix card detection for invalid card id case

2013-03-15 Thread Otavio Salvador
This changes the code so in case an unkown value is passed it will return as invalid. Signed-off-by: Otavio Salvador --- Changes in v4: - Fix switch code to proper break (Stefano) Changes in v3: None Changes in v2: - Rework code to use a 'ret' variable (Fabio) board/freescale/mx6qsabresd/mx6qs

[U-Boot] [PATCH v4 3/3] mx6qsabre{sd,auto}: Add boot mode select

2013-03-15 Thread Otavio Salvador
Adds support for 'bmode' command which let user to choose where to boot from; this allows U-Boot to load system from another storage without messing with jumpers. Signed-off-by: Otavio Salvador --- Changes in v4: None Changes in v3: - Drop change in bootdelay; the change where done by me while te

[U-Boot] [PATCH v4 2/3] mx6qsabresd: Document the mapping of USDHC[2-4]

2013-03-15 Thread Otavio Salvador
This documents the SD card identifier so it is easier for user to spot which card number will be used, if need. Signed-off-by: Otavio Salvador --- Changes in v4: None Changes in v3: None Changes in v2: - Improve commit log board/freescale/mx6qsabresd/mx6qsabresd.c | 4 1 file changed, 4 in

[U-Boot] [PATCH v4 0/3] i.MX6 SabreSD and SabreAUTO bmode support

2013-03-15 Thread Otavio Salvador
This adds the bmode support for i.MX6 SabreSD and SabreAUTO boards. This allows user to choose the boot mode at runtime making it easy to boot from USB or other media. Changes in v4: - Fix switch code to proper break (Stefano) Changes in v3: - Drop change in bootdelay; the change where done by m

Re: [U-Boot] [PATCH] ARM: AM33XX: Fix typo that causes an AM duplication in CPU name.

2013-03-15 Thread Javier Martinez Canillas
On Fri, Mar 15, 2013 at 12:35 PM, Enric Balletbo i Serra wrote: > From: Enric Balletbo i Serra > > Just fix a typo displaying the CPU info. With CONFIG_DISPLAY_INFO we see > something like AMAM335X-GP rev 0 instead of AM335X-GP rev 0. > > Signed-off-by: Enric Balletbo i Serra > --- > arch/arm/c

[U-Boot] [PATCH] ARM: AM33XX: Fix typo that causes an AM duplication in CPU name.

2013-03-15 Thread Enric Balletbo i Serra
From: Enric Balletbo i Serra Just fix a typo displaying the CPU info. With CONFIG_DISPLAY_INFO we see something like AMAM335X-GP rev 0 instead of AM335X-GP rev 0. Signed-off-by: Enric Balletbo i Serra --- arch/arm/cpu/armv7/am33xx/sys_info.c |2 +- 1 file changed, 1 insertion(+), 1 deletio

[U-Boot] Bug in clock settings for SMDK5250

2013-03-15 Thread Alexei Fedorov
There's a bug in system_clock_init() function (board\samsung\smdk5250\clock_init.c) where APLL, MPLL, BPLL, etc. clocks are set: while (readl(&clk->bpll_con0) & BPLL_CON0_LOCKED) ; This should be while (!(readl(&clk->bpll_con0) & BPLL_CON0_L

Re: [U-Boot] [PATCH v7] Introduced btrfs file-system with btrload command

2013-03-15 Thread Adnan Ali
Hi On 15/03/13 00:00, Simon Glass wrote: Hi, On Thu, Mar 14, 2013 at 5:35 AM, Adnan Ali wrote: Introduces btrfs file-system to read file from volume/sub-volumes with btrload command. This implementation has read-only support. This btrfs implementation is based on syslinux btrfs code, commit 2

Re: [U-Boot] [PATCH 3/4] S5P: Serial: Add fdt support to driver

2013-03-15 Thread Rajeshwari Birje
Please ignore this mail. Sorry for spamming On Fri, Mar 15, 2013 at 4:08 PM, Rajeshwari Shinde wrote: > This patch adds FDT support to the serial s5p driver. > At present disabling the serial console (from the device tree) crashes > U-Boot. Add checks for this case, so that execution can continue

[U-Boot] [PATCH 3/4 V3] S5P: Serial: Add fdt support to driver

2013-03-15 Thread Rajeshwari Shinde
This patch adds FDT support to the serial s5p driver. At present disabling the serial console (from the device tree) crashes U-Boot. Add checks for this case, so that execution can continue without a serial console. It also enables the serial_s5p driver recognize the silent_console option. Signed-

[U-Boot] [PATCH 1/4 V3] EXYNOS5: FDT: Add compatible strings for Serial

2013-03-15 Thread Rajeshwari Shinde
Add required compatible information for s5p serial driver Signed-off-by: Abhilash Kesavan Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes in V2: - Changed the compatible string to "samsung,exynos4210-uart" Chnages in V3: - Rebased on latest u-boot-samsung inc

[U-Boot] [PATCH 0/4 V3] SMDK5250: FDT: Add device tree support for console

2013-03-15 Thread Rajeshwari Shinde
Enabled fdt support for default console on SMDK5250. Changes in V2: - Changed the compatible string to "samsung,exynos4210-uart" Changes in V3: - Rebased the patchset on latest u-boot-samsung branch. - Added a alias console as we will support one at any point of time.

[U-Boot] [PATCH 3/4] S5P: Serial: Add fdt support to driver

2013-03-15 Thread Rajeshwari Shinde
This patch adds FDT support to the serial s5p driver. At present disabling the serial console (from the device tree) crashes U-Boot. Add checks for this case, so that execution can continue without a serial console. It also enables the serial_s5p driver recognize the silent_console option. Signed-

[U-Boot] [PATCH 4/4 V3] CONFIG: EXYNOS5: Enable silent console

2013-03-15 Thread Rajeshwari Shinde
This patch enables CONFIG_SILENT_CONSOLE for EXYNOS5. Signed-off-by: Rajeshwari Shinde Acked-by: Simon Glass --- Changes in V2: - None Changes in V3: - None include/configs/exynos5250-dt.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/configs/

[U-Boot] [PATCH 2/4 V3] EXYNOS5: FDT: Add serial device node values

2013-03-15 Thread Rajeshwari Shinde
This patch adds the device node required for serial driver Signed-off-by: Abhilash Kesavan Signed-off-by: Rajeshwari Shinde --- Changes in V2: - Changed the compatible string to "samsung,exynos4210-uart" Changes in V3: - Added a alias console as we will support one at any point o

[U-Boot] [PATCH] arm: at91: at91sam9n12ek: add nandflash/spiflash/mmc/lcd support

2013-03-15 Thread Josh Wu
This patch adds at91sam9n12ek support, it enables: - dbgu - nand with pmecc - spi flash - mmc - lcd TODO: - usb - ethernet Signed-off-by: Josh Wu --- arch/arm/cpu/arm926ejs/at91/Makefile |1 + arch/arm/cpu/arm926ejs/at91/at91sam9n12_devices.c | 137 ++ arch/arm/cpu/a

[U-Boot] [PATCH 3/4 v6] gen: Add sha h/w acceleration to hash

2013-03-15 Thread Akshay Saraswat
Adding H/W acceleration support to hash which can be used to test SHA 256 hash algorithm. Signed-off-by: ARUN MANKUZHI Signed-off-by: Akshay Saraswat --- Changes since v1: - Added sha256 support to "hash" command instead of new sha256 command. Changes sice v2: - Added new nodes

[U-Boot] [PATCH 4/4 v6] Exynos: config: Enable hash command

2013-03-15 Thread Akshay Saraswat
This enables hash command. Tested with command "hash sha256 0x40008000 0x2B 0x40009000". Used mm and md to write a standard string to memory location 0x40008000 and ran the above command to verify the output. Signed-off-by: ARUN MANKUZHI Signed-off-by: Akshay Saraswat --- Changes since v2:

[U-Boot] [PATCH 0/4 v6] Add ACE HW support for SHA256 and SHA1

2013-03-15 Thread Akshay Saraswat
This patch set adds hardware acceleration for SHA 256 with the help of ACE. Changes since v1: - Patch-1: Fixed few nits. - Patch-2: Removed not required config. - Patch-3: Added sha256 to hash command instead of new sha256 command. Changes since v2: - Patch-1:

[U-Boot] [PATCH 2/4 v6] Exynos: config: Enable ACE HW for SHA 256 for Exynos

2013-03-15 Thread Akshay Saraswat
This enables SHA 256 for exynos. Signed-off-by: ARUN MANKUZHI Signed-off-by: Akshay Saraswat Acked-by: Simon Glass --- Changes since v1: - Removed not required config. Changes sice v2: - Added "SHA1" in the comment for config. Changes sice v3: - Added "Acked-by: Simon

[U-Boot] [PATCH 1/4 v6] Exynos: Add hardware accelerated SHA256 and SHA1

2013-03-15 Thread Akshay Saraswat
SHA-256 and SHA-1 accelerated using ACE hardware. Signed-off-by: ARUN MANKUZHI Signed-off-by: Akshay Saraswat --- Changes since v1: - Moved code to drivers/crypto. - Fixed few other nits. Changes since v2: - Added falling back to software sha256 in case length exceeds bu

Re: [U-Boot] [PATCH] arm: Correct CONFIG_STANDALONE_LOAD_ADDR for AM33XX/OMAP* platforms

2013-03-15 Thread Peter Korsgaard
> "Tom" == Tom Rini writes: Tom> All of these platforms have memory starting at 0x8000, so this is Tom> the correct CONFIG_STANDALONE_LOAD_ADDR for all of them. For am33xx atleast: Acked-by: Peter Korsgaard Tom> Signed-off-by: Tom Rini Tom> --- Tom> arch/arm/config.mk |2 +-

[U-Boot] [PATCH] am335x: Enable DDR PHY dynamic power down bit for DDR3 boards

2013-03-15 Thread Vaibhav Hiremath
Enable DDR PHY dynamic power down bit, which enables powering down the IO receiver when not performing read. This also helps in reducing overall power consumption in low power states (suspend/standby). Signed-off-by: Vaibhav Hiremath Signed-off-by: Satyanarayana, Sandhya Cc: Tom Rini --- arch