[U-Boot] [PATCH] Fix spelling of "occurred".

2016-04-30 Thread Vagrant Cascadian
Signed-off-by: Vagrant Cascadian --- board/bf533-ezkit/flash.c | 2 +- board/mpl/pip405/pip405.c | 2 +- board/tqc/tqm5200/cmd_stk52xx.c| 2 +- cmd/fdc.c | 8 common/kgdb.c

[U-Boot] [PATCH] Change my mailaddress

2016-04-30 Thread Andreas Bießmann
I'll switch my mails to my own server, so drop all gmail references. Signed-off-by: Andreas Bießmann --- .mailmap| 1 + MAINTAINERS | 4 ++-- arch/arm/lib/stack.c

[U-Boot] [PATCH] mkimage: fix argument parsing on BSD systems

2016-04-30 Thread Andreas Bießmann
The getopt(3) optstring '-' is a GNU extension which is not available on BSD systems like OS X. Remove this dependency by implementing argument parsing in another way. This will also change the lately introduced '-b' switch behaviour. Signed-off-by: Andreas Bießmann

Re: [U-Boot] [PATCH] omap3: Reduce logic/overo SPL max image size

2016-04-30 Thread Derald D. Woods
On 04/28/2016 06:34 PM, Tom Rini wrote: On Thu, Apr 28, 2016 at 05:55:17PM -0500, Adam Ford wrote: I am hoping to look at this tomorrow at work. Any suggested toolchain you recommend? gcc-4.9.x fails (too large), gcc-5.3.x succeeds, gcc-6.x is also likely fine but I haven't started using

[U-Boot] [PATCH 1/2] ARM: exynos: Fix build error if SERIAL is disabled in SPL

2016-04-30 Thread Marek Vasut
If CONFIG_SPL_SERIAL_SUPPORT is not defined in include/configs/exynos5-common.h the following error is produced during the build of the SPL: arch/arm/mach-exynos/built-in.o: In function `do_lowlevel_init': ...u-boot/arch/arm/mach-exynos/lowlevel_init.c:221: undefined reference to

[U-Boot] [PATCH] cmd: disk: Fix unused variable warning

2016-04-30 Thread Marek Vasut
If serial support is not compiled into U-Boot, which may be the case for some SPL builds, the following warning will be generated in disk.c: cmd/disk.c: In function 'common_diskboot': cmd/disk.c:16:6: warning: variable 'dev' set but not used [-Wunused-but-set-variable] int dev, part; ^

[U-Boot] [PATCH 2/2] ARM: exynos: Disable serial support in SPL

2016-04-30 Thread Marek Vasut
The exynos5 platforms use DM in U-Boot and do not use DM in SPL. The serial driver, serial_s5p.c, is DM-only. This is OK for U-Boot, but in SPL, this will fail with the following compile error: drivers/built-in.o: In function `get_current': ...u-boot/drivers/serial/serial.c:387: undefined

[U-Boot] pull request: u-boot-uniphier/master

2016-04-30 Thread Masahiro Yamada
Hi Tom, Please pull some more fixes for v2016.05. The following changes since commit fccdb287f5f5f2349d3ca1c7cdf972015417d46d: Merge branch 'master' of git://git.denx.de/u-boot-video (2016-04-28 13:15:52 -0400) are available in the git repository at:

Re: [U-Boot] [PATCH 0/4] ARM: uniphier: some fixes for U-Boot v2016.05

2016-04-30 Thread Masahiro Yamada
2016-04-28 15:37 GMT+09:00 Masahiro Yamada : > > > Masahiro Yamada (4): > ARM: uniphier: fix boot mode table of PH1-LD20 > ARM: uniphier: enable Peripherl clock to use UART in SPL > ARM: uniphier: allow to use System Bus for ROM boot mode of PH1-LD20 > ARM:

[U-Boot] [PATCH] phy: atheros: add support for RGMII_ID, RGMII_TXID and RGMII_RXID

2016-04-30 Thread Andrea Merello
This adds support for internal delay on RX and TX on RGMII interface for the AR8035 phy. This is basically the same Linux driver do. Tested on a Zynq Zturn board (for which u-boot support in is my tree; first patch waiting ML approval) Signed-off-by: Andrea Merello

Re: [U-Boot] [Patch v2] fsl-layerscape: fdt: add IFC fixup if no IFC is avaliable in U-Boot

2016-04-30 Thread Mingkai Hu
> -Original Message- > From: Gong Qianyu [mailto:qianyu.g...@nxp.com] > Sent: Thursday, April 28, 2016 2:05 PM > To: u-boot@lists.denx.de; york sun; o...@buserror.net > Cc: Mingkai Hu; Qianyu Gong > Subject: [Patch v2] fsl-layerscape: fdt: add IFC fixup if no IFC is avaliable > in >

Re: [U-Boot] [PATCH] armv8/ls1043ardb: fix the limitation of using 'cpld reset'

2016-04-30 Thread Mingkai Hu
Qianyu, The reset command is used to boot from the location set in the hardware switch. Regards, Mingkai > -Original Message- > From: Gong Qianyu [mailto:qianyu.g...@nxp.com] > Sent: Monday, April 25, 2016 4:39 PM > To: u-boot@lists.denx.de; york sun; Mingkai Hu > Cc: Shaohui Xie;

[U-Boot] [PATCH] arm: Treat arm946es as v5te

2016-04-30 Thread Marek Vasut
The arm946es is armv5te , so use -march=armv5te instead of armv4t. Signed-off-by: Marek Vasut Cc: Albert Aribaud Cc: Tom Rini --- arch/arm/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [U-Boot] Devicetree specification process

2016-04-30 Thread Grant Likely
On Sat, Apr 30, 2016 at 12:23 AM, Grant Likely wrote: > I'm pleased to announce the first *very early draft* of the new > devicetree specification that I and several others have been working > on since January. This document picks up where ePAPR left off in 2012. > I'm

[U-Boot] in cmd/fdt.c, why is CONFIG_OF_CONTROL described as "temporary #ifdef"?

2016-04-30 Thread Robert P. J. Day
puzzled by this in cmd/fdt.c: /* Temporary #ifdef - some archs don't have fdt_blob yet */ #ifdef CONFIG_OF_CONTROL if (argc && !strcmp(*argv, "-c")) { control = 1; argc--; argv++; }