[U-Boot] [PATCH] ARM: uniphier: move cmd_ddrmphy.c to fix build error

2016-02-03 Thread Masahiro Yamada
If CONFIG_CMD_DDRMPHY_DUMP is enabled, the build fails. Fixes: 93d92d46cd01 ("ARM: uniphier: add dump command for DDR Multi PHY registers") Signed-off-by: Masahiro Yamada --- arch/arm/mach-uniphier/{ => dram}/cmd_ddrmphy.c | 0 1 file changed, 0 insertions(+), 0

Re: [U-Boot] Issue with USB mass storage (thumb drives)

2016-02-03 Thread Fabio Estevam
On Wed, Feb 3, 2016 at 7:40 AM, Marek Vasut wrote: > > In that case, debug time. > > Usual problems are bad routing of the tracks on the board , so try with USB > 1.1 > hub and if that works, that's your problem. Another suggestion would be to try the 100MB transfer in Linux and

Re: [U-Boot] Issue with USB mass storage (thumb drives)

2016-02-03 Thread Schrempf Frieder
On 03.02.2016 10:55, Fabio Estevam wrote: > On Wed, Feb 3, 2016 at 7:40 AM, Marek Vasut wrote: > >> In that case, debug time. >> >> Usual problems are bad routing of the tracks on the board , so try with USB >> 1.1 >> hub and if that works, that's your problem. > Another

Re: [U-Boot] do i have any chance of booting a vxworks 5.5.2 image with u-boot?

2016-02-03 Thread Robert P. J. Day
Quoting Tom Rini : On Mon, Feb 01, 2016 at 05:20:16PM -0500, Robert P. J. Day wrote: i know u-boot has a "bootvx" command for booting vxworks images, but from what i read here: http://stackoverflow.com/questions/24114948/vxworks-portingdm8168 it's only vxworks 7 that

Re: [U-Boot] [PATCH 14/16] efi_loader: Add distro boot script for removable media

2016-02-03 Thread Leif Lindholm
On Tue, Feb 02, 2016 at 03:45:12AM +0100, Alexander Graf wrote: > UEFI defines a simple boot protocol for removable media. There we should look > at the EFI (first GPT FAT) partition and search for /efi/boot/bootXXX.efi with > XXX being different between different platforms (x86, x64, arm, aa64,

Re: [U-Boot] Issue with USB mass storage (thumb drives)

2016-02-03 Thread Marek Vasut
On Wednesday, February 03, 2016 at 08:45:27 AM, Hannes Schmelzer wrote: > Hi there, Please do not top-post > i can osberve same strange thing on Xilinx ZYNQ. > > But really strange is: > I'm having a couple of USB-sticks on my desk, about 5pcs. > Exactly one of them is working without any

Re: [U-Boot] Issue with USB mass storage (thumb drives)

2016-02-03 Thread Marek Vasut
On Wednesday, February 03, 2016 at 08:40:00 AM, Schrempf Frieder wrote: > On 02.02.2016 17:39, Marek Vasut wrote: > > On Tuesday, February 02, 2016 at 05:28:42 PM, Fabio Estevam wrote: > >> Adding Marek in case he has any ideas. > >> > >> On Tue, Feb 2, 2016 at 8:35 AM, Schrempf Frieder > >> >

Re: [U-Boot] [PATCH v3] Enable snooping on transactions from CAAM block

2016-02-03 Thread Aneesh Bansal
> -Original Message- > From: Huan Wang > Sent: Tuesday, February 02, 2016 12:31 PM > To: york sun ; Aneesh Bansal ; u- > b...@lists.denx.de; Huan Wang-B18965 > Cc: Ruchika Gupta ; Prabhakar Kushwaha

[U-Boot] [PATCH] fastboot: sparse: fix sparse blocks calculation

2016-02-03 Thread Jeffy Chen
It may overflow in sparse_block_size_to_storage, use uint64_t instead in the calculation. Signed-off-by: Jeffy Chen --- common/image-sparse.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/image-sparse.c b/common/image-sparse.c index

Re: [U-Boot] [PATCH] fastboot: sparse: fix chunk write offset calculation

2016-02-03 Thread Maxime Ripard
Hi Jeffy, On Tue, Feb 02, 2016 at 04:43:31PM +0800, Jeffy Chen wrote: > We should count skipped blocks in when calculating write offset. > > Signed-off-by: Jeffy Chen As I told you, this won't work in the NAND case. If there's a bad block in the NAND, the offset

Re: [U-Boot] Issue with USB mass storage (thumb drives)

2016-02-03 Thread Marek Vasut
On Wednesday, February 03, 2016 at 11:15:00 AM, Schrempf Frieder wrote: > On 03.02.2016 10:55, Fabio Estevam wrote: > > On Wed, Feb 3, 2016 at 7:40 AM, Marek Vasut wrote: > >> In that case, debug time. > >> > >> Usual problems are bad routing of the tracks on the board , so try

Re: [U-Boot] Issue with USB mass storage (thumb drives)

2016-02-03 Thread Schrempf Frieder
On 03.02.2016 12:12, Marek Vasut wrote: > On Wednesday, February 03, 2016 at 11:15:00 AM, Schrempf Frieder wrote: >> On 03.02.2016 10:55, Fabio Estevam wrote: >>> On Wed, Feb 3, 2016 at 7:40 AM, Marek Vasut wrote: In that case, debug time. Usual problems are bad

[U-Boot] [PATCHv2] common/memsize.c: Simplify RAM size detection

2016-02-03 Thread Eddy Petrișor
The case of memory of size 0 is not that different from a memory of any other size, so we remove the duplicate code and treat the small differences when it is the case. Signed-off-by: Eddy Petrișor --- v2: Removed patman stuff from commit message common/memsize.c | 47

[U-Boot] [PATCH v2 0/7] driver model bring-up of sata device on dra72 and dra74 evm

2016-02-03 Thread Mugunthan V N
This patch series enables sata driver to adopt driver model. This has been tested on the following evms (logs [1]) by loading kernel and dtb from sata hard-disk. * dra72 evm * dra74 evm Also pushed a branch for testing [2] [1] - http://pastebin.ubuntu.com/14865336/ [2] -

[U-Boot] [PATCH v2 1/7] arm: omap: sata: move enable sata clocks to enable_basic_clocks()

2016-02-03 Thread Mugunthan V N
All the clocks which has to be enabled has to be done in enable_basic_clocks(), so moving enable sata clock to common clocks enable function. Signed-off-by: Mugunthan V N Reviewed-by: Tom Rini --- arch/arm/cpu/armv7/omap-common/sata.c | 23

Re: [U-Boot] [PATCH 3/5] kbuild: use $(call cmd, ) rather than $(call if_changed, ) where possible

2016-02-03 Thread Albert ARIBAUD
Hello Masahiro, On Wed, 3 Feb 2016 21:05:12 +0900, Masahiro Yamada wrote: > These build commands are constant (mostly, just concatenating images, > or just copying). No need to use $(call if_changed,...) for them. I am a total kbuild ignorant, so I'm probably

Re: [U-Boot] [PATCHv2] common/memsize.c: Simplify RAM size detection

2016-02-03 Thread Albert ARIBAUD
Hello Eddy, On Tue, 2 Feb 2016 22:15:28 +0200, Eddy Petrișor wrote: > The case of memory of size 0 is not that different from a memory of any other > size, so we remove the duplicate code and treat the small differences when it > is the case. > > Signed-off-by: Eddy

[U-Boot] (no subject)

2016-02-03 Thread Peter Robinson
Hi All, Here's a couple of patches to help building on gcc-6. We're rebasing Fedora to gcc-6 for Fedora 24 so this was the first build I've attempted with it. It doesn't fix all problems as I also see an issue that the generated/generic-asm-offsets.h isn't generated early enough in the build

[U-Boot] [PATCH 2/3] common: env_flags: include common.h even for HOST_CC

2016-02-03 Thread Peter Robinson
When compiling with gcc 6 we get the following error due to ARRAY_SIZE being defined elsewhere. common/env_flags.c:155: undefined reference to `ARRAY_SIZE' Signed-off-by: Peter Robinson --- common/env_flags.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

Re: [U-Boot] your mail

2016-02-03 Thread Tom Rini
On Wed, Feb 03, 2016 at 12:42:49PM +, Peter Robinson wrote: > > Hi All, > > Here's a couple of patches to help building on gcc-6. We're rebasing Fedora > to gcc-6 for Fedora 24 so this was the first build I've attempted with it. It > doesn't fix all problems as I also see an issue that the

[U-Boot] [PATCH] dts: keep clock-names and clocks in SPL DTB if SPL_CLK is enabled

2016-02-03 Thread Masahiro Yamada
These two properties are necessary for SPL to get clocks from DT. Note: For now, only clock look-up by index is supported (clk_get_by_index() function), so "clock-names" is never parsed in U-Boot. However, we may want to support something like clk_get_by_name() in the future, so let's keep

[U-Boot] [PATCH 0/5] kbuild fixes

2016-02-03 Thread Masahiro Yamada
Masahiro Yamada (5): kbuild: remove unneeded ifdef conditionals around build rules kbuild: sunxi: fix build rule of sunxi-spl.bin kbuild: use $(call cmd,) rather than $(call if_changed,) where possible kbuild: add missing FORCE where $(call if_changed,) is used kbuild: fix build

Re: [U-Boot] [PATCH 3/5] kbuild: use $(call cmd, ) rather than $(call if_changed, ) where possible

2016-02-03 Thread Albert ARIBAUD
Hello Albert, On Wed, 3 Feb 2016 13:18:35 +0100, Albert ARIBAUD wrote: > Hello Masahiro, > > On Wed, 3 Feb 2016 21:05:12 +0900, Masahiro Yamada > wrote: > > These build commands are constant (mostly, just concatenating images, > > or

[U-Boot] [PATCH v2 7/7] defconfig: dra72_evm: enable disk driver model

2016-02-03 Thread Mugunthan V N
Enable disk driver model for dra72_evm as dwc_ahci supports driver model Signed-off-by: Mugunthan V N Reviewed-by: Tom Rini --- configs/dra72_evm_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/dra72_evm_defconfig

[U-Boot] [PATCH v2 6/7] defconfig: dra74_evm: enable disk driver model

2016-02-03 Thread Mugunthan V N
Enable disk driver model for dra74_evm as dwc_ahci supports driver model Signed-off-by: Mugunthan V N Reviewed-by: Tom Rini --- configs/dra74_evm_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/dra74_evm_defconfig

[U-Boot] [PATCH 1/3] Copy gcc5 over to compiler-gcc6.h as a beginning of support

2016-02-03 Thread Peter Robinson
Add initial support for gcc6 by taking a copy of compiler-gcc5.h Signed-off-by: Peter Robinson --- include/linux/compiler-gcc6.h | 65 +++ 1 file changed, 65 insertions(+) create mode 100644 include/linux/compiler-gcc6.h diff --git

Re: [U-Boot] [PATCH 2/3] common: env_flags: include common.h even for HOST_CC

2016-02-03 Thread Albert ARIBAUD
Hello Peter, On Wed, 3 Feb 2016 12:42:51 +, Peter Robinson wrote: > When compiling with gcc 6 we get the following error due to ARRAY_SIZE being > defined elsewhere. > > common/env_flags.c:155: undefined reference to `ARRAY_SIZE' > > Signed-off-by: Peter Robinson

[U-Boot] [PATCH 1/2] armv8: ls2080: Add mcinitcmd env variable in default env

2016-02-03 Thread Prabhakar Kushwaha
Define mcinitcmd env variable to load Management complex during u-boot boot sequence. Signed-off-by: Prabhakar Kushwaha --- include/configs/ls2080a_common.h | 4 +++- include/configs/ls2080aqds.h | 4 +++- include/configs/ls2080ardb.h | 4 +++- 3 files

[U-Boot] [PATCH 2/2] armv8: ls2080: Update bootcmd env variable

2016-02-03 Thread Prabhakar Kushwaha
Before Linux boot DPL must be deployed to DPAA2 interface. So update bootcmd env variable to make sure DPL deployment before Linux boot. Signed-off-by: Prabhakar Kushwaha --- include/configs/ls2080a_common.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)

[U-Boot] [PATCH 2/5] kbuild: sunxi: fix build rule of sunxi-spl.bin

2016-02-03 Thread Masahiro Yamada
The build command for sunxi-spl.bin is constant, so it is pointless to use $(call if_changed,...). $(call cmd,...) is enough. On the other hand, if the tools/mksunxiboot is updated, the resulted output may be different. Make the output image dependent on tools/mksunxiboot. Signed-off-by:

[U-Boot] [PATCH 5/5] kbuild: fix build rule of u-boot-spl.dtb

2016-02-03 Thread Masahiro Yamada
The build command of u-boot-spl.dtb is not constant, but dependent on CONFIG_OF_SPL_REMOVE_PROPS. Use $(call if_changed,...) so that the change of CONFIG_OF_SPL_REMOVE_PROPS is detected. Signed-off-by: Masahiro Yamada --- scripts/Makefile.spl | 4 ++-- 1 file

[U-Boot] [PATCH 3/5] kbuild: use $(call cmd, ) rather than $(call if_changed, ) where possible

2016-02-03 Thread Masahiro Yamada
These build commands are constant (mostly, just concatenating images, or just copying). No need to use $(call if_changed,...) for them. Signed-off-by: Masahiro Yamada --- Makefile | 26 +- scripts/Makefile.spl | 4 ++-- 2

[U-Boot] [PATCH 1/5] kbuild: remove unneeded ifdef conditionals around build rules

2016-02-03 Thread Masahiro Yamada
These rules are only used for SOCFPGA, SUNXI, but no need to hide them from other SoCs. Signed-off-by: Masahiro Yamada --- scripts/Makefile.spl | 4 1 file changed, 4 deletions(-) diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl index

[U-Boot] [PATCH 4/5] kbuild: add missing FORCE where $(call if_changed, ) is used

2016-02-03 Thread Masahiro Yamada
FORCE is needed for $(call if_changed,...) to be evaluated every time. Otherwise, the command is not executed when the command line has changed but any prerequisite has not been updated. Signed-off-by: Masahiro Yamada --- Makefile | 10 +-

Re: [U-Boot] [PATCH] gunzip: remove avail_in recalculation

2016-02-03 Thread Kees Cook
On Fri, Jan 29, 2016 at 12:26 PM, Stephen Warren wrote: > From: Stephen Warren > > Current, the following passes: > ./u-boot -d arch/sandbox/dts/test.dtb -c 'ut_image_decomp' > but the following fails: > ./u-boot -d arch/sandbox/dts/test.dtb -c

[U-Boot] [PATCH 2/2] fastboot: sparse: remove unnecessary logging

2016-02-03 Thread Steve Rae
remove logging of the 'skipped' blocks Signed-off-by: Steve Rae --- common/image-sparse.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/common/image-sparse.c b/common/image-sparse.c index f02aee4..594bf4e 100644 --- a/common/image-sparse.c +++

[U-Boot] [PATCH 1/2] fastboot: sparse: fix block addressing for don't care chunk type

2016-02-03 Thread Steve Rae
When 7bfc3b1 (sparse: Refactor chunk parsing function) was implemented, it dropped 9981945 (aboot: fix block addressing for don't care chunk type). This re-implements the required fix for the "don't care chunk type"... Signed-off-by: Steve Rae --- common/image-sparse.c | 10

Re: [U-Boot] Wacky vlan IP format in env_flags.h ?

2016-02-03 Thread Joe Hershberger
Hi Peter, On Wed, Feb 3, 2016 at 2:48 PM, Peter Hanson wrote: > The commit below added default format flags for common net env vars: > http://git.denx.de/?p=u-boot.git;a=commit;h=c0a93440a7cb50843510549d9943a4fba211f0f2 > > Alas, it seems to specify IP format for vlan tags,

Re: [U-Boot] [PATCH v2 0/7] driver model bring-up of sata device on dra72 and dra74 evm

2016-02-03 Thread Mugunthan V N
On Wednesday 03 February 2016 05:29 PM, Mugunthan V N wrote: > This patch series enables sata driver to adopt driver model. This > has been tested on the following evms (logs [1]) by loading > kernel and dtb from sata hard-disk. > * dra72 evm > * dra74 evm > > Also pushed a branch for testing [2]

[U-Boot] [PATCH] serial: zynq: Change logic in putc

2016-02-03 Thread Michal Simek
Sync logic with Linux kernel where TX empty flag is checked before char is sent. This logic is fixing problem with console on zynqmp platform. For example: DRAM: 2 GiB Enabling Caches... EL Level: �� sdhci@ff17: 0 Using default environment Signed-off-by: Michal Simek

[U-Boot] [PATCH] rpi: set ethaddr as well

2016-02-03 Thread Lubomir Rintel
Let's set "ethaddr" when we get the ethernet address too, so that fdt_fixup_ethernet() sets the address in the device tree and the Linux driver can pick it up. Signed-off-by: Lubomir Rintel --- The related Linux kernel change submitted here:

[U-Boot] [PATCH] test/py: HTML awesome!

2016-02-03 Thread Stephen Warren
From: Stephen Warren Implement three improvements to the HTML log file: - Ability to expand/contract sections. All passing sections are contracted at file load time so the user can concentrate on issues requiring action. - The overall status report is copied to the top of

Re: [U-Boot] [PATCH 14/16] efi_loader: Add distro boot script for removable media

2016-02-03 Thread Alexander Graf
> Am 03.02.2016 um 12:36 schrieb Leif Lindholm : > >> On Tue, Feb 02, 2016 at 03:45:12AM +0100, Alexander Graf wrote: >> UEFI defines a simple boot protocol for removable media. There we should look >> at the EFI (first GPT FAT) partition and search for

Re: [U-Boot] [PATCHv2] common/memsize.c: Simplify RAM size detection

2016-02-03 Thread Eddy Petrișor
2016-02-03 15:38 GMT+02:00 Albert ARIBAUD : > Hello Eddy, > > On Tue, 2 Feb 2016 22:15:28 +0200, Eddy Petrișor > wrote: [..] >> v2: Removed patman stuff from commit message > > Sorry for asking, but since you're mentioning it... If you are

Re: [U-Boot] [PATCH 2/3] common: env_flags: include common.h even for HOST_CC

2016-02-03 Thread Peter Robinson
Hi Albert, On Wed, Feb 3, 2016 at 1:41 PM, Albert ARIBAUD wrote: > Hello Peter, > > On Wed, 3 Feb 2016 12:42:51 +, Peter Robinson > wrote: >> When compiling with gcc 6 we get the following error due to ARRAY_SIZE being >> defined elsewhere.

Re: [U-Boot] Issue with USB mass storage (thumb drives)

2016-02-03 Thread Marek Vasut
On Wednesday, February 03, 2016 at 12:49:20 PM, Schrempf Frieder wrote: > On 03.02.2016 12:12, Marek Vasut wrote: > > On Wednesday, February 03, 2016 at 11:15:00 AM, Schrempf Frieder wrote: > >> On 03.02.2016 10:55, Fabio Estevam wrote: > >>> On Wed, Feb 3, 2016 at 7:40 AM, Marek Vasut

Re: [U-Boot] .travis.yml: rework according to new travis-ci infra

2016-02-03 Thread Stephen Warren
On 02/01/2016 06:57 PM, Tom Rini wrote: On Mon, Jan 25, 2016 at 08:22:41PM +0100, Roger Meier wrote: - install using addons.apt - remove MAKEALL - split mpc85xx boards - remove TEST_CONFIG_CMD, just info - fetch mips toolchain via buildman - remove --list-error-boards param - conditional

Re: [U-Boot] [PATCH 00/23] x86: Convert to use DM PCI APIs completely

2016-02-03 Thread Simon Glass
Hi Bin, On 2 February 2016 at 20:44, Bin Meng wrote: > Hi Simon, > > On Wed, Feb 3, 2016 at 11:30 AM, Simon Glass wrote: >> Hi Bin, >> >> On 1 February 2016 at 23:34, Bin Meng wrote: >>> Hi Simon, >>> >>> On Tue, Feb 2, 2016 at 11:55

Re: [U-Boot] [PATCH 00/23] x86: Convert to use DM PCI APIs completely

2016-02-03 Thread Simon Glass
Hi Bin, On 2 February 2016 at 20:58, Bin Meng wrote: > Hi Simon, > > On Wed, Feb 3, 2016 at 11:37 AM, Simon Glass wrote: >> HI Bin, >> >> On 1 February 2016 at 09:19, Simon Glass wrote: >>> Hi Bin, >>> >>> On 1 February 2016 at 02:40,

Re: [U-Boot] [PATCH 14/16] efi_loader: Add distro boot script for removable media

2016-02-03 Thread Simon Glass
Hi, On 3 February 2016 at 08:53, Alexander Graf wrote: > > >> Am 03.02.2016 um 12:36 schrieb Leif Lindholm : >> >>> On Tue, Feb 02, 2016 at 03:45:12AM +0100, Alexander Graf wrote: >>> UEFI defines a simple boot protocol for removable media. There we

Re: [U-Boot] [PATCH] ns16550: Clean up & unify register accessors

2016-02-03 Thread Simon Glass
Hi Paul, On 2 February 2016 at 07:12, Paul Burton wrote: > This patch starts to clean up the ns16550 driver by modifying the way in > which registers are accessed such that much of the code can be shared by > both systems using device model & systems that don't. The basic

[U-Boot] [PATCH v2 4/7] arm: omap-common: sata: prepare driver for DM conversion

2016-02-03 Thread Mugunthan V N
Prepare sata driver for DM conversion by abstracting sata phy init to seperate function. Signed-off-by: Mugunthan V N Reviewed-by: Tom Rini --- arch/arm/cpu/armv7/omap-common/sata.c | 13 + include/sata.h| 2 ++ 2

[U-Boot] [PATCH v2 3/7] drivers: block: disk-uclass: implement scsi_init()

2016-02-03 Thread Mugunthan V N
Implement scsi_init() api to probe driver model based sata devices. Signed-off-by: Mugunthan V N --- drivers/block/disk-uclass.c | 39 +++ 1 file changed, 39 insertions(+) diff --git a/drivers/block/disk-uclass.c

[U-Boot] [PATCH v2 5/7] drivers: block: dwc_ahci: Implement a driver for Synopsys DWC sata device

2016-02-03 Thread Mugunthan V N
Implement a sata driver for Synopsys DWC sata device based on U-boot driver model. Signed-off-by: Mugunthan V N Reviewed-by: Tom Rini --- drivers/block/Kconfig| 7 + drivers/block/Makefile | 2 ++ drivers/block/dwc_ahci.c | 71

[U-Boot] [PATCH v2 2/7] arm: omap: sata: compile out sata init apis when CONFIG_DISK is defined

2016-02-03 Thread Mugunthan V N
Compile out sata init/reset apis as this will be implemented in disk-uclass driver to initialize sata devices. Signed-off-by: Mugunthan V N --- arch/arm/cpu/armv7/omap-common/sata.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/cpu/armv7/omap-common/sata.c

Re: [U-Boot] your mail

2016-02-03 Thread Peter Robinson
>> Here's a couple of patches to help building on gcc-6. We're rebasing Fedora >> to gcc-6 for Fedora 24 so this was the first build I've attempted with it. >> It doesn't fix all problems as I also see an issue that the >> generated/generic-asm-offsets.h isn't generated early enough in the

[U-Boot] Patman use (was: [PATCHv2] common/memsize.c: Simplify RAM size detection)

2016-02-03 Thread Albert ARIBAUD
Hello Eddy, (re-titling) On Wed, 3 Feb 2016 18:32:45 +0200, Eddy Petrișor wrote: > 2016-02-03 15:38 GMT+02:00 Albert ARIBAUD : > > Hello Eddy, > > > > On Tue, 2 Feb 2016 22:15:28 +0200, Eddy Petrișor > > wrote: >

Re: [U-Boot] [PATCH 2/3] common: env_flags: include common.h even for HOST_CC

2016-02-03 Thread Albert ARIBAUD
Hello Peter, On Wed, 3 Feb 2016 16:11:38 +, Peter Robinson wrote: > Hi Albert, > > On Wed, Feb 3, 2016 at 1:41 PM, Albert ARIBAUD > wrote: > > Hello Peter, > > > > On Wed, 3 Feb 2016 12:42:51 +, Peter Robinson > >

Re: [U-Boot] [PATCH 3/5] kbuild: use $(call cmd, ) rather than $(call if_changed, ) where possible

2016-02-03 Thread Stephen Warren
On 02/03/2016 05:05 AM, Masahiro Yamada wrote: These build commands are constant (mostly, just concatenating images, or just copying). No need to use $(call if_changed,...) for them. I disagree, since I believe this change means that if someone /does/ change the command in the future (e.g.

Re: [U-Boot] [PATCH] .travis.yml: explicitly request sudo

2016-02-03 Thread Andreas Färber
Am 03.02.2016 um 18:41 schrieb Stephen Warren: > From: Stephen Warren > > Without this, builds default to using new Travis CI infra-structure which > does no allow sudo. The builds need sudo in order to install the ELDK > compilers. Consequently, almost all builds fail

[U-Boot] [PATCH 2/3] ARM: uniphier: enable UniPhier SD/MMC host driver

2016-02-03 Thread Masahiro Yamada
Enable the driver in all UniPhier defconfig files and add some needed defines to the common files. Signed-off-by: Masahiro Yamada --- arch/arm/Kconfig | 1 + configs/uniphier_ld4_sld8_defconfig | 1 + configs/uniphier_pro4_defconfig | 1

[U-Boot] [PATCH 0/3] UniPhier SD/eMMC controller driver

2016-02-03 Thread Masahiro Yamada
Masahiro Yamada (3): mmc: uniphier: add driver for UniPhier SD/MMC host controller ARM: uniphier: enable UniPhier SD/MMC host driver ARM: dts: uniphier: add SD/MMC host controller nodes arch/arm/Kconfig | 1 + arch/arm/dts/uniphier-ph1-ld4-ref.dts|

[U-Boot] [PATCH] test/py: exit(1) if there are problems running py.test

2016-02-03 Thread Stephen Warren
From: Stephen Warren The test/py/test.py wrapper script catches exceptions thrown when exec()ing py.test in order to print a helpful error message. However, the exception handling code squashes the exception and so the script exits with a non-zero exit code, leading callers

[U-Boot] [PATCH] .travis.yml: explicitly request sudo

2016-02-03 Thread Stephen Warren
From: Stephen Warren Without this, builds default to using new Travis CI infra-structure which does no allow sudo. The builds need sudo in order to install the ELDK compilers. Consequently, almost all builds fail without this. I suspect that existing Travis CI users have not

[U-Boot] [PATCH 3/3] ARM: dts: uniphier: add SD/MMC host controller nodes

2016-02-03 Thread Masahiro Yamada
This host controller is available for all UniPhier SoCs. Signed-off-by: Masahiro Yamada --- arch/arm/dts/uniphier-ph1-ld4-ref.dts| 4 +++ arch/arm/dts/uniphier-ph1-ld4.dtsi | 25 +++ arch/arm/dts/uniphier-ph1-ld6b-ref.dts

[U-Boot] [PATCH 1/3] mmc: uniphier: add driver for UniPhier SD/MMC host controller

2016-02-03 Thread Masahiro Yamada
Add a driver for the on-chip SD/eMMC host controller used by UniPhier SoC family. Signed-off-by: Masahiro Yamada --- drivers/mmc/Kconfig | 6 + drivers/mmc/Makefile | 1 + drivers/mmc/uniphier-sd.c | 713

Re: [U-Boot] [PATCH 2/3] common: env_flags: include common.h even for HOST_CC

2016-02-03 Thread Tom Rini
On Wed, Feb 03, 2016 at 06:53:11PM +0100, Albert ARIBAUD wrote: > Hello Peter, > > On Wed, 3 Feb 2016 16:11:38 +, Peter Robinson > wrote: > > Hi Albert, > > > > On Wed, Feb 3, 2016 at 1:41 PM, Albert ARIBAUD > > wrote: > > > Hello Peter, > >

Re: [U-Boot] Issue with USB mass storage (thumb drives)

2016-02-03 Thread Sergei Temerkhanov
On Wed, Feb 3, 2016 at 8:40 AM, Marek Vasut wrote: > On Wednesday, February 03, 2016 at 12:49:20 PM, Schrempf Frieder wrote: >> On 03.02.2016 12:12, Marek Vasut wrote: >> > On Wednesday, February 03, 2016 at 11:15:00 AM, Schrempf Frieder wrote: >> >> On 03.02.2016 10:55, Fabio