Re: [U-Boot] [RFC PATCH 3/3] spl: add support to booting with ATF

2017-01-05 Thread Michal Simek
Hi, On 6.1.2017 08:09, Kever Yang wrote: > Hi Michal, > > Thanks for your comments. > > On 01/02/2017 11:05 PM, Michal Simek wrote: >> On 29.12.2016 11:25, Kever Yang wrote: >>> ATF(ARM Trust Firmware) is used by ARM arch64 SoCs, find more infomation >>> about ATF at: >>> >>> SPL is

Re: [U-Boot] [RFC PATCH 0/3] arm64: rk3399: enable SPL with ATF support

2017-01-05 Thread Kever Yang
Hi Michal, On 01/02/2017 11:05 PM, Michal Simek wrote: Hi, separation of rk3399 SPL from ATF SPL would be worth. Thanks for your comment, this may help my rk3399 SPL patches get accept faster. I will do it after people get back from holiday and send me other comments. Thanks, - Kever

Re: [U-Boot] [RFC PATCH 3/3] spl: add support to booting with ATF

2017-01-05 Thread Kever Yang
Hi Michal, Thanks for your comments. On 01/02/2017 11:05 PM, Michal Simek wrote: On 29.12.2016 11:25, Kever Yang wrote: ATF(ARM Trust Firmware) is used by ARM arch64 SoCs, find more infomation about ATF at: SPL is consider as BL2 in ATF, it needs to load other part of ATF binary SPL

[U-Boot] [PATCH v3 3/3] LS1046ARDB: Add QSPI Secure Boot target

2017-01-05 Thread Sumit Garg
Add QSPI Secure Boot target. Also enable sec init. Signed-off-by: Vinitha Pillai Signed-off-by: Sumit Garg --- Changes in v3: Changes in comment style. Changes in v2: Split patches logically from 2 to 3. board/freescale/ls1046ardb/MAINTAINERS

[U-Boot] [PATCH v3 0/3] LS1046A secure boot target addition

2017-01-05 Thread Sumit Garg
The patch-set does the following: 1. Add NOR secure boot target on ls1046aqds platform. 2. Add QSPI secure boot target on ls1046ardb platform. Changes in v3: Changes in comment style. Changes in v2: Split patches logically from 2 to 3. Sumit Garg (3): SECURE_BOOT: Enable chain of trust on

[U-Boot] [PATCH v3 1/3] SECURE_BOOT: Enable chain of trust on LS1046A platform

2017-01-05 Thread Sumit Garg
Define bootscript and its header addresses for QSPI target. Also define PPA header address to enable PPA validation. Signed-off-by: Vinitha Pillai Signed-off-by: Sumit Garg --- Changes in v3: Changes in comment style. Changes in v2: Split patches

[U-Boot] [PATCH v3 2/3] LS1046AQDS: Add NOR Secure Boot Target

2017-01-05 Thread Sumit Garg
Add NOR secure boot target. Also enable sec init. Signed-off-by: Vinitha Pillai Signed-off-by: Sumit Garg --- Changes in v3: Changes in comment style. Changes in v2: Split patches logically from 2 to 3. board/freescale/ls1046aqds/MAINTAINERS |

Re: [U-Boot] usb start hangs

2017-01-05 Thread york sun
On 01/05/2017 06:19 PM, Marek Vasut wrote: > On 01/06/2017 03:13 AM, Tony O'Brien wrote: >> Hi - >> >> >> We recently updated our U-Boot release to v2016.11 and now our USB devices >> don't work. When usb start is executed with a device inserted it hangs at >> 'scanning bus 0 for devices...'

[U-Boot] [PATCH 3/4] ARM: at91: sama5: add SoC configs to Kconfig

2017-01-05 Thread Wenyou Yang
To remove the SoCs options such as SAMA5D2, SAMA5D3 and SAMA5D4 from CONFIG_SYS_EXTRA_OPTIONS which is deprecated. Add these SoC configs to Kconfig. Signed-off-by: Wenyou Yang --- arch/arm/mach-at91/Kconfig | 28 1 file changed, 20

[U-Boot] [PATCH 4/4] defconfig: sama5: remove SoCs from CONFIG_SYS_EXTRA_OPTIONS

2017-01-05 Thread Wenyou Yang
The CONFIG_SYS_EXTRA_OPTIONS is deprecated, and the SoC options such as SAMA5D2, SAMA5D3 and SAMA5D4 are defined as config in Kconfig, update the defconfig file, remove these options. Signed-off-by: Wenyou Yang --- configs/ma5d4evk_defconfig | 1 -

[U-Boot] [PATCH 2/4] ARM: at91: sama5: remove hardware.h included in board config

2017-01-05 Thread Wenyou Yang
As said in READRE.kconfig, include/configs/*.h will be removed after all options are switched to Kconfig. As the first step, remove the follow line from include/configs/at91-sama5_common.h. #include Signed-off-by: Wenyou Yang --- arch/arm/mach-at91/atmel_sfr.c |

[U-Boot] [PATCH 0/4] ARM: sama5: remove SoCs from CONFIG_SYS_EXTRA_OPTIONS

2017-01-05 Thread Wenyou Yang
The CONFIG_SYS_EXTRA_OPTIONS is deprecated, remove the SoC options such as SAMA5D2, SAMA5D3 and SAMA5D4 from CONFIG_SYS_EXTRA_OPTIONS. Wenyou Yang (4): ARM: at91: move CONFIG_AT91FAMILY option to Kconfig ARM: at91: sama5: remove hardware.h included in board config ARM: at91: sama5: add SoC

[U-Boot] [PATCH 1/4] ARM: at91: move CONFIG_AT91FAMILY option to Kconfig

2017-01-05 Thread Wenyou Yang
Move CONFIG_AT91FAMILY option from include/mach/.h to Kconfig. Signed-off-by: Wenyou Yang --- arch/arm/mach-at91/Kconfig| 3 +++ arch/arm/mach-at91/include/mach/at91rm9200.h | 1 - arch/arm/mach-at91/include/mach/at91sam9260.h | 5 -

[U-Boot] [PATCH] ARM: at91: move PIO_SCDR_DIV to mach/at91_pio.h

2017-01-05 Thread Wenyou Yang
To fix the build error when building for at91sam9261ek, move PIO_SCDR_DIV definition to mach/at91_pio.h. ---8<--- error: 'PIO_SCDR_DIV' undeclared (first use in this function) --->8--- Signed-off-by: Wenyou Yang --- arch/arm/mach-at91/include/mach/at91_pio.h | 2 ++

Re: [U-Boot] usb start hangs

2017-01-05 Thread york sun
+Prabhakar Prabhakar, Please include USB IP owner to take a look. On 01/05/2017 08:27 PM, Marek Vasut wrote: > On 01/06/2017 03:40 AM, york sun wrote: >> On 01/05/2017 06:19 PM, Marek Vasut wrote: >>> On 01/06/2017 03:13 AM, Tony O'Brien wrote: Hi - We recently updated our

[U-Boot] [PATCH v2 2/2] LS2080A: Add validation of MC & DPC images.

2017-01-05 Thread Udit Agarwal
Add secure boot validation of MC, DPC images using esbc_validate command. Signed-off-by: Sumit Garg Signed-off-by: Udit Agarwal --- Changes for V2: Use of #ifdef instead of #ifndef with CONFIG_SECURE_BOOT macro and coresponding changes in mcinitcmd

[U-Boot] [PATCH v2 1/2] SECURE_BOOT: Update bootscript and its hdr addresses

2017-01-05 Thread Udit Agarwal
Update bootscript and its hdr addresses for Layerscape Chasis 3 based platforms instead of individual SoCs. Signed-off-by: Sumit Garg Signed-off-by: Udit Agarwal --- Changes for V2: Modified the subject arch/arm/include/asm/fsl_secure_boot.h | 12

Re: [U-Boot] usb start hangs

2017-01-05 Thread Marek Vasut
On 01/06/2017 03:40 AM, york sun wrote: > On 01/05/2017 06:19 PM, Marek Vasut wrote: >> On 01/06/2017 03:13 AM, Tony O'Brien wrote: >>> Hi - >>> >>> >>> We recently updated our U-Boot release to v2016.11 and now our USB devices >>> don't work. When usb start is executed with a device inserted it

Re: [U-Boot] usb start hangs

2017-01-05 Thread Marek Vasut
On 01/06/2017 03:13 AM, Tony O'Brien wrote: > Hi - > > > We recently updated our U-Boot release to v2016.11 and now our USB devices > don't work. When usb start is executed with a device inserted it hangs at > 'scanning bus 0 for devices...' and doesn't recover. Our product uses an NXP >

Re: [U-Boot] [PATCH] mx6ullevk: Add missing MAINTAINERS for mx6ull_14x14_evk_plugin_defconfig

2017-01-05 Thread Peng Fan
> -Original Message- > From: Jagan Teki [mailto:ja...@openedev.com] > Sent: Thursday, January 05, 2017 10:33 PM > To: tr...@konsulko.com > Cc: u-boot@lists.denx.de; Jagan Teki ; Stefano Babic > ; Peng Fan > Subject: [PATCH]

Re: [U-Boot] [GIT PULL] Please pull u-boot-mmc master

2017-01-05 Thread Jaehoon Chung
On 01/05/2017 11:34 PM, Tom Rini wrote: > On Tue, Jan 03, 2017 at 10:17:18AM +0900, Jaehoon Chung wrote: > >> Dear Tom, >> >> Could you pull these patches on your master branch? >> There is a patch relevant to PMIC for PR. >> I considered to make the pmic branch, but just included this patch in

Re: [U-Boot] [PATCH v2 2/2] test/py: Create tests for ext4 and fat testing on sandbox

2017-01-05 Thread Stephen Warren
On 01/01/2017 02:48 PM, Stefan Bruens wrote: On Montag, 12. Dezember 2016 11:04:34 CET you wrote: On 12/04/2016 05:52 PM, Stefan Brüns wrote: From: Stefan Brüns The following checks are currently implemented: 1. listing a directory 2. verifying size of a file

Re: [U-Boot] [PATCH] rpi: Fix device tree path on ARM64

2017-01-05 Thread Stephen Warren
On 01/03/2017 03:39 AM, Tuomas Tynkkynen wrote: The directory structure of device tree files produced by the kernel's 'make dtbs_install' is different on ARM64, the RPi3 device tree file is in a 'broadcom' subdirectory there. Make the set_fdtfile function account for this so that the distro boot

[U-Boot] [PATCH] README: mxc_hab: Adapt the CONFIG_SECURE_BOOT text to Kconfig

2017-01-05 Thread Fabio Estevam
From: Fabio Estevam Commit 6e1f4d2652e79 ("arm: imx-common: add SECURE_BOOT option to Kconfig") moved the CONFIG_SECURE_BOOT option to Kconfig, so update the mxc_hab README file to reflect that. Signed-off-by: Fabio Estevam --- doc/README.mxc_hab

Re: [U-Boot] [PATCH] sunxi: makes an invisible option for H3-like DRAM controllers

2017-01-05 Thread Icenowy Zheng
06.01.2017, 06:16, "Maxime Ripard" : > On Thu, Dec 29, 2016 at 02:50:48AM +0800, Icenowy Zheng wrote: >>  Allwinner SoCs after H3 (e.g. A64, H5, R40, V3s) uses a H3-like >>  DesignWare DRAM controller, which do not have official free DRAM >>  initialization

Re: [U-Boot] [linux-sunxi] Re: [RFC PATCH 4/4] sunxi: low memory footprint for V3s

2017-01-05 Thread Icenowy Zheng
2017年1月6日 06:39于 Maxime Ripard 写道: > > On Thu, Dec 29, 2016 at 03:01:01AM +0800, Icenowy Zheng wrote: > > V3s devices won't have enough memory to load U-Boot binary at > > 0x4a00, and they do not have enough memory to reserve 64MiB for > > malloc() (it has

Re: [U-Boot] [linux-sunxi] Re: [RFC PATCH 1/4] sunxi: add DDR2 support to H3-like DRAM controller

2017-01-05 Thread Icenowy Zheng
2017年1月6日 06:37于 Maxime Ripard 写道: > > On Thu, Dec 29, 2016 at 03:00:58AM +0800, Icenowy Zheng wrote: > > H3-like DRAM controller needs some special code to operate a DDR2 DRAM > > chip. Add the logic to probe such a chip. > > > > As there's no commercial

Re: [U-Boot] [linux-sunxi] Re: [PATCH 1/2] sunxi: power: add AXP803 support

2017-01-05 Thread Icenowy Zheng
2017年1月6日 05:59于 Maxime Ripard 写道: > > On Fri, Dec 23, 2016 at 04:31:32PM +0800, Icenowy Zheng wrote: > > The A64 uses the AXP803 as its PMIC. > > > > Signed-off-by: Icenowy Zheng > > --- > >  arch/arm/mach-sunxi/Makefile   |   3 + > > 

Re: [U-Boot] [RFC PATCH 1/4] sunxi: add DDR2 support to H3-like DRAM controller

2017-01-05 Thread Maxime Ripard
On Thu, Dec 29, 2016 at 03:00:58AM +0800, Icenowy Zheng wrote: > H3-like DRAM controller needs some special code to operate a DDR2 DRAM > chip. Add the logic to probe such a chip. > > As there's no commercial boards available now with H3 and DDR2 DRAM, the > patch is developed and tested on a V3s

Re: [U-Boot] [PATCH 05/12] aspeed/ast2500: Device Tree and bindings for some of the clocks

2017-01-05 Thread Maxim Sloyko
On Wed, Jan 4, 2017 at 7:26 PM, Tom Rini wrote: > On Wed, Jan 04, 2017 at 05:18:42PM -0800, Maxim Sloyko wrote: >> On Wed, Jan 4, 2017 at 12:58 PM, Tom Rini wrote: >> > On Wed, Jan 04, 2017 at 11:46:49AM -0800, Maxim Sloyko wrote: >> > >> >> Signed-off-by:

Re: [U-Boot] [PATCH] sunxi: H3/A64: fix non-ODT setting

2017-01-05 Thread Maxime Ripard
On Thu, Dec 29, 2016 at 02:50:49AM +0800, Icenowy Zheng wrote: > From: Andre Przywara > > According to Jens disabling the on-die-termination should set bit 5, > not bit 1 in the respective register. Fix this. > > Reported-by: Jens Kuske >

Re: [U-Boot] [PATCH 2/2] sunxi: enable DLDO4 and DC1SW for Pine64+

2017-01-05 Thread Maxime Ripard
On Fri, Dec 23, 2016 at 04:31:33PM +0800, Icenowy Zheng wrote: > Pine64+ uses DLDO4 for wireless network, and DC1SW for wired network. > > Enable these two regulators, in order to provide net support in U-Boot > and Linux. > > Signed-off-by: Icenowy Zheng > --- >

Re: [U-Boot] [PATCH 1/2] sunxi: power: add AXP803 support

2017-01-05 Thread Maxime Ripard
On Fri, Dec 23, 2016 at 04:31:32PM +0800, Icenowy Zheng wrote: > The A64 uses the AXP803 as its PMIC. > > Signed-off-by: Icenowy Zheng > --- > arch/arm/mach-sunxi/Makefile | 3 + > arch/arm/mach-sunxi/pmic_bus.c | 6 +- > arch/arm/mach-sunxi/rsb.c | 2 +- >

Re: [U-Boot] [PATCH] armv8: fsl-lsch3: enable snoopable sata read and write

2017-01-05 Thread york sun
On 01/04/2017 08:47 PM, Y.T. Tang wrote: > Hi York, > > For chasis2 platforms, like ls1043a and ls1046a, similar patch has been > merged already. > Ah! I see them in a wider range. You have them under #elif defined(CONFIG_FSL_LSCH2). It isn't visible in this patch. York

Re: [U-Boot] [PATCH] arm: layerscape: Enable UUID & GPT partition for NXP's ARM SoC

2017-01-05 Thread Igor Grinberg
On 01/05/17 18:25, york sun wrote: > On 01/05/2017 01:51 AM, Igor Grinberg wrote: >> On 01/04/17 23:41, york sun wrote: >>> On 12/25/2016 11:29 PM, Igor Grinberg wrote: Hi Prabhakar Kushwaha, On 12/26/16 08:45, Prabhakar Kushwaha wrote: > Enable UUID and GPT partition support

Re: [U-Boot] [PATCH] arm: layerscape: Enable UUID & GPT partition for NXP's ARM SoC

2017-01-05 Thread york sun
On 01/05/2017 01:51 AM, Igor Grinberg wrote: > On 01/04/17 23:41, york sun wrote: >> On 12/25/2016 11:29 PM, Igor Grinberg wrote: >>> Hi Prabhakar Kushwaha, >>> >>> On 12/26/16 08:45, Prabhakar Kushwaha wrote: Enable UUID and GPT partition support for NXP's ARM based SoCs i.e. LS1012A,

Re: [U-Boot] [GIT PULL] Please pull u-boot-mmc master

2017-01-05 Thread Tom Rini
On Tue, Jan 03, 2017 at 10:17:18AM +0900, Jaehoon Chung wrote: > Dear Tom, > > Could you pull these patches on your master branch? > There is a patch relevant to PMIC for PR. > I considered to make the pmic branch, but just included this patch in this PR. > (If you want to split the PR, I will

[U-Boot] [PATCH] mx6ullevk: Add missing MAINTAINERS for mx6ull_14x14_evk_plugin_defconfig

2017-01-05 Thread Jagan Teki
Add 'Peng Fan' as MAINTAINERS of configs/mx6ull_14x14_evk_plugin_defconfig which is missing in below commit "imx: mx6ull_14x14_evk: add plugin defconfig" (sha1: b90ebf49bb8f74afe68f696f59a0e24cc79f2031) Cc: Stefano Babic Cc: Peng Fan Signed-off-by: Jagan Teki

Re: [U-Boot] [PATCH v4] BOARD: MCCMON6: Provide support for iMX6q based mccmon6 board

2017-01-05 Thread Stefano Babic
Hi Lukasz, On 02/01/2017 15:51, Lukasz Majewski wrote: > This patch provides u-boot support for Liebherr (LWN) mccmon6 board. > > Signed-off-by: Lukasz Majewski > --- > Changes for v4: > - Update board/liebherr/mccmon6/MAINTAINERS entry to quiet buildman warnings > > Changes for

[U-Boot] am335x based board nand boot crashes to ubi0 error

2017-01-05 Thread matti kaasinen
Hi! I would need help related to nand boot with am335x based board. Board boots from mmc (sd card), but not from nand flash. I have been using yocto/poky build system with meta-ti layer that brings up u-boot-ti-staging. Current u-boot version is 2016.05 and linux-ti-staging-rt-4.4. I have used

Re: [U-Boot] [U-Boot, 22/24] powerpc: E6500: Move macro CONFIG_E6500 to Kconfig

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:48AM -0800, York Sun wrote: > Use Kconfig option E6500 and clean up existing usage. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [U-Boot, 24/24] powerpc: mpc85xx: Move macro CONFIG_SYS_PPC64 to Kconfig

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:50AM -0800, York Sun wrote: > Use Kconfig option SYS_PPC64 instead. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot

Re: [U-Boot] [U-Boot, 23/24] powerpc: mpc85xx: Move CONFIG_SYS_FSL_QORIQ_CHASSIS* to Kconfig

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:49AM -0800, York Sun wrote: > Use Kconfig option to select chassis version. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___

Re: [U-Boot] [U-Boot, 21/24] powerpc: mpc85xx: Remove unused ifdef in config header

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:47AM -0800, York Sun wrote: > After most config options are moved to Kconfig, the unused ifdef > or elif can be removed. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [U-Boot, 20/24] ddr: fsl: Move CONFIG_SYS_FSL_DDR_VER to Kconfig

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:46AM -0800, York Sun wrote: > Use Kconfig to select DDR version instead of using config header. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [U-Boot, 17/24] powerpc: mpc85xx: Move CONFIG_SYS_FSL_ERRATUM_* to Kconfig

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:43AM -0800, York Sun wrote: > Use Kconfig to select errata workaround. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot

Re: [U-Boot] [U-Boot, 18/24] ddr: fsl: Move macro CONFIG_NUM_DDR_CONTROLLERS to Kconfig

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:44AM -0800, York Sun wrote: > Use option NUM_DDR_CONTROLLERS in ddr Kconfig and clean up existing > usage in ls102xa and fsl-layerscape. Remove all powerpc macros in > config header and board header files. > > Signed-off-by: York Sun Applied to

Re: [U-Boot] [U-Boot, 16/24] mmc: move CONFIG_SYS_FSL_ERRATUM_ESDHC* to Kconfig

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:42AM -0800, York Sun wrote: > Add option SYS_FSL_ERRATUM_ESDHC111, SYS_FSL_ERRATUM_ESDHC13, > SYS_FSL_ERRATUM_ESDHC135, SYS_FSL_ERRATUM_ESDHC_A001 to mmc Kconfig. > Move existing macros to related Kconfig. > > Signed-off-by: York Sun Applied to

Re: [U-Boot] [U-Boot, 12/24] powerpc: T2081QDS: Remove macro T2081QDS

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:38AM -0800, York Sun wrote: > Use TARGET_T2081QDS from Kconfig instead. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot

Re: [U-Boot] [U-Boot, 15/24] arm: layerscape: Move CONFIG_SYS_FSL_ERRATUM_* to Kconfig

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:41AM -0800, York Sun wrote: > Use Kconfig to select errata workaround. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot

Re: [U-Boot] [U-Boot, 14/24] fsl_ddr: Move DDR config options to driver Kconfig

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:40AM -0800, York Sun wrote: > Create driver/ddr/fsl/Kconfig and move existing options. Clean up > existing macros. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [U-Boot, 13/24] powerpc: T104xQDS: Remove macro CONFIG_T104xD4QDS

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:39AM -0800, York Sun wrote: > Remove this macro. It was added by e622d9ed but actually wasn't used. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [U-Boot, 11/24] powerpc: T2080RDB: Remove macro CONFIG_T2080RDB

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:37AM -0800, York Sun wrote: > Use TARGET_T2080RDB from Kconfig instead. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot

Re: [U-Boot] [U-Boot, 09/24] powerpc: T1040QDS: Remove macro CONFIG_T1040QDS

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:35AM -0800, York Sun wrote: > Use TARGET_T1040QDS from Kconfig instead. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature ___ U-Boot

Re: [U-Boot] [U-Boot, 06/24] powerpc: mpc85xx: Remove variant SoCs T1020/T1022/T1013/T1014

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:32AM -0800, York Sun wrote: > Remove these SoCs from Kconfig because they don't have individual > configuration. Clean up existing macros. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital

Re: [U-Boot] [U-Boot, 05/24] crypto: Move CONFIG_SYS_FSL_SEC_LE and _BE to Kconfig

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:31AM -0800, York Sun wrote: > Use Kconfig option to set little- or big-endian access to secure > boot and trust architecture. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [U-Boot, 03/24] powerpc: mpc85xx: Move CONFIG_SYS_PPC_E500_DEBUG_TLB to Kconfig

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:29AM -0800, York Sun wrote: > Use Kconfig SYS_PPC_E500_DEBUG_TLB and clean up existing macros. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] [U-Boot, 04/24] crypto: Move SYS_FSL_SEC_COMPAT into driver Kconfig

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:30AM -0800, York Sun wrote: > Instead of define CONFIG_SYS_FSL_SEC_COMPAT in header files for PowerPC > and ARM SoCs, move it to Kconfig under the driver. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc

Re: [U-Boot] [U-Boot, 02/24] powerpc: mpc85xx: Move CONFIG_SYS_NUM_TLBCAMS to Kconfig

2017-01-05 Thread Tom Rini
On Wed, Dec 28, 2016 at 08:43:28AM -0800, York Sun wrote: > Use Kconfig option for SYS_NUM_TLBCAMS and clean up existing macros. > > Signed-off-by: York Sun Applied to u-boot/master, thanks! -- Tom signature.asc Description: Digital signature

Re: [U-Boot] Pull request, u-boot-tegra/master

2017-01-05 Thread Tom Rini
On Wed, Jan 04, 2017 at 10:05:55AM -0700, Tom Warren wrote: > Tom, > > Please pull u-boot-tegra/master into U-Boot/master. Thanks! > > All Tegra builds are OK, and Stephen's automated test system reports that > all tests pass. > > The following changes since commit

Re: [U-Boot] [PATCH 1/4] mmc: fsl_esdhc: make GPIO support optional

2017-01-05 Thread Y.B. Lu
> -Original Message- > From: Jaehoon Chung [mailto:jh80.ch...@samsung.com] > Sent: Thursday, January 05, 2017 8:33 AM > To: york sun; Y.B. Lu > Cc: u-boot@lists.denx.de > Subject: Re: [PATCH 1/4] mmc: fsl_esdhc: make GPIO support optional > > Hi, > > On 01/05/2017 04:52 AM, york sun

[U-Boot] [PATCH v6 6/9] rockchip: Enable networking support on rock2 and firefly

2017-01-05 Thread Romain Perier
From: Sjoerd Simons Enable the various configuration option required to get the ethernet interface up and running on Radxa Rock2 and Firefly. Signed-off-by: Sjoerd Simons Signed-off-by: Romain Perier

[U-Boot] [PATCH v6 8/9] rockchip: Add PXE and DHCP to the default boot targets

2017-01-05 Thread Romain Perier
From: Sjoerd Simons Now that at least on the firefly board we have network support, enable PXE and DHCP boot targets by default. Signed-off-by: Sjoerd Simons Acked-by: Simon Glass Acked-by: Joe Hershberger

[U-Boot] [PATCH v6 9/9] rockchip: Drop Ethernet from the TODO

2017-01-05 Thread Romain Perier
From: Sjoerd Simons Now that ethernet support works, it can be dropped from the rockchip TODO Signed-off-by: Sjoerd Simons Acked-by: Simon Glass Acked-by: Joe Hershberger Signed-off-by:

[U-Boot] [PATCH v6 4/9] net: designware: Export the operation functions

2017-01-05 Thread Romain Perier
From: Simon Glass Export all functions so that drivers can use them, or not, as the need arises. Signed-off-by: Simon Glass Signed-off-by: Romain Perier Acked-by: Joe Hershberger --- Changes in v6: -

[U-Boot] [PATCH v6 5/9] net: gmac_rockchip: Add Rockchip GMAC driver

2017-01-05 Thread Romain Perier
From: Sjoerd Simons Add a new driver for the GMAC ethernet interface present in Rockchip RK3288 SOCs. This driver subclasses the generic design-ware driver to add the glue needed specifically for Rockchip. Signed-off-by: Sjoerd Simons

[U-Boot] [PATCH v6 3/9] net: designware: Split the link init into a separate function

2017-01-05 Thread Romain Perier
From: Simon Glass With rockchip we need to make adjustments after the link speed is set but before enabling received/transmit. In preparation for this, split these two pieces into separate functions. Signed-off-by: Simon Glass Signed-off-by: Romain Perier

[U-Boot] [PATCH v6 2/9] net: designware: Adjust dw_adjust_link() to return an error

2017-01-05 Thread Romain Perier
From: Simon Glass This function can fail, so return the error if there is one. Signed-off-by: Simon Glass Signed-off-by: Romain Perier Acked-by: Joe Hershberger --- Changes in v6: - Changed Acked-by

[U-Boot] [PATCH v6 0/9] rockchip: Add gmac Ethernet support

2017-01-05 Thread Romain Perier
>From Romain: This is a resent of Simon's v4 series. I have changed what was suggested by David Wu about the driver name (rename gmac_rk3288 to gmac_rockchip). I have also tested the whole series on a rock2 square board, updated the configuration files for rock2 and firefly boards and added some

[U-Boot] [PATCH v5 7/9] rockchip: evb-rk3339: Enable DHCP

2017-01-05 Thread Romain Perier
From: Simon Glass This is the only RK3399 device without DHCP. Enable it so that we can use a common BOOT_TARGET_DEVICES setting. It is likely useful to be able to use USB networking, at least. Full networking can be enabled when a suitable platform needs it. Signed-off-by:

[U-Boot] [PATCH v5 0/9] rockchip: Add gmac Ethernet support

2017-01-05 Thread Romain Perier
>From Simon: This v3 patch is an update on Sjoerd's original v2 series from Feburary. I have dealt with the changes requested at the time, and adjusted the way that the speed change is handled. Tested on firefly-rk3288, rock2. Original cover letter: To add support I've taken a slightly different

[U-Boot] [PATCH v6 1/9] net: designware: Export various functions/struct to allow subclassing

2017-01-05 Thread Romain Perier
From: Sjoerd Simons To allow other DM drivers to subclass the designware driver various functions and structures need to be exported. Export these. Signed-off-by: Sjoerd Simons Signed-off-by: Romain Perier

[U-Boot] [PATCH v5 6/9] rockchip: Enable networking support on rock2 and firefly

2017-01-05 Thread Romain Perier
From: Sjoerd Simons Enable the various configuration option required to get the ethernet interface up and running on Radxa Rock2 and Firefly. Signed-off-by: Sjoerd Simons Reviewed-by: Simon Glass Acked-by: Joe

[U-Boot] [PATCH v5 4/9] net: designware: Export the operation functions

2017-01-05 Thread Romain Perier
From: Simon Glass Export all functions so that drivers can use them, or not, as the need arises. Signed-off-by: Simon Glass Acked-by: Joe Hershberger Acked-by: Romain Perier --- Changes in v5: - Add

[U-Boot] [PATCH v5 9/9] rockchip: Drop Ethernet from the TODO

2017-01-05 Thread Romain Perier
From: Sjoerd Simons Now that ethernet support works, it can be dropped from the rockchip TODO Signed-off-by: Sjoerd Simons Acked-by: Simon Glass Acked-by: Joe Hershberger Signed-off-by:

Re: [U-Boot] [PATCH 1/4] mmc: fsl_esdhc: make GPIO support optional

2017-01-05 Thread Y.B. Lu
> -Original Message- > From: york sun > Sent: Thursday, January 05, 2017 3:52 AM > To: Y.B. Lu > Cc: u-boot@lists.denx.de; Jaehoon Chung > Subject: Re: [PATCH 1/4] mmc: fsl_esdhc: make GPIO support optional > > On 12/06/2016 08:08 PM, Yangbo Lu wrote: > > There would be compiling error as

[U-Boot] [PATCH 1/2] SECURE_BOOT: Update bootscript and its address for LS Chasis 3

2017-01-05 Thread Udit Agarwal
Update bootscript and its addresses for Layerscape Chasis 3 based platforms instead of individual SoCs. Signed-off-by: Sumit Garg Signed-off-by: Udit Agarwal --- arch/arm/include/asm/fsl_secure_boot.h | 12 ++-- 1 file changed, 6

Re: [U-Boot] [PATCH V2 0/7] dm: universal_c210: support the DM_PMIC

2017-01-05 Thread Jaehoon Chung
Hi guys, discard this patches..there are some build issue. I will resend the V3 within this week. Sorry for spamming. Best Regards, Jaehoon Chung On 01/05/2017 07:16 PM, Jaehoon Chung wrote: > This patchset is for supporting pmic driver-mode on universal_c210 board. > It's using i2c-s3c24x0.c

[U-Boot] [PATCH V2 1/7] config: s5pc210_universal: enable SYS_I2C_S3C24X0

2017-01-05 Thread Jaehoon Chung
Enable CONFIG_SYS_I2C_S3C24X0 for i2c Signed-off-by: Jaehoon Chung --- include/configs/s5pc210_universal.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/configs/s5pc210_universal.h b/include/configs/s5pc210_universal.h index 1bfefe9..dd3bdc6 100644 ---

Re: [U-Boot] [PATCH V2 0/7] dm: universal_c210: support the DM_PMIC

2017-01-05 Thread Lukasz Majewski
Hi Jaehoon > Remove the soft_i2c codes in universal.c. > It seems a deadcode because of no usage. The soft_i2c was needed to control the fuel gauge (not sure if on c210 you have it mounted), which at Trats was connected via simple gpios (not the one muxed with HW I2C). BTW: I do see that now

[U-Boot] [PATCH V2 3/7] ARM: dts: exynos4: use the node's name for i2c

2017-01-05 Thread Jaehoon Chung
Use the node's name for i2c. Signed-off-by: Jaehoon Chung --- arch/arm/dts/exynos4.dtsi | 27 +++ 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/arch/arm/dts/exynos4.dtsi b/arch/arm/dts/exynos4.dtsi index 7de227c..a5a00c8 100644

[U-Boot] [PATCH V2 5/7] configs: s5pc210_universal: enable the DM_PMIC and MAX8998

2017-01-05 Thread Jaehoon Chung
Enable the CONFIG_DM_PMIC and CONFIG_DM_PMIC_MAX8998. s5pc210_universal board is using max8998 pmic. To use the i2c/pmic driver model, enable these configurations. Signed-off-by: Jaehoon Chung --- configs/s5pc210_universal_defconfig | 2 ++ 1 file changed, 2

[U-Boot] [PATCH V2 4/7] ARM: dts: exnyos4210-universl_c210: add i2c_5 and pmic nodes

2017-01-05 Thread Jaehoon Chung
Add the i2c_5 node and pmic as its child node. Signed-off-by: Jaehoon Chung --- arch/arm/dts/exynos4210-universal_c210.dts | 164 + 1 file changed, 164 insertions(+) diff --git a/arch/arm/dts/exynos4210-universal_c210.dts

[U-Boot] [PATCH V2 6/7] board: samsung: universal_210: use the driver model for max8998

2017-01-05 Thread Jaehoon Chung
Revmoe the "ifndef CONFIG_DM_I2C". Intead, use the driver model for max8998. Signed-off-by: Jaehoon Chung --- board/samsung/universal_c210/universal.c | 169 +-- 1 file changed, 94 insertions(+), 75 deletions(-) diff --git

[U-Boot] [PATCH V2 2/7] i2c: s3c24x0: fix the compiler error for exynos4

2017-01-05 Thread Jaehoon Chung
If CONFIG_SYS_I2C_S3C24X0_SLAVE isn't defined, then complie error should be occurred. This patch is for preventing it. Signed-off-by: Jaehoon Chung --- drivers/i2c/s3c24x0_i2c.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git

[U-Boot] [PATCH V2 1/7] i2c: Kconfig: Add SYS_I2C_S3C24X0 entry

2017-01-05 Thread Jaehoon Chung
Adding Kconfig for SYS_I2C_S3C24X0. Signed-off-by: Jaehoon Chung --- drivers/i2c/Kconfig | 6 ++ 1 file changed, 6 insertions(+) diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig index 051f911..e191b75 100644 --- a/drivers/i2c/Kconfig +++ b/drivers/i2c/Kconfig

[U-Boot] [PATCH V2 0/7] dm: universal_c210: support the DM_PMIC

2017-01-05 Thread Jaehoon Chung
This patchset is for supporting pmic driver-mode on universal_c210 board. It's using i2c-s3c24x0.c file. (Fixes some complier error issue.) Remove the soft_i2c codes in universal.c. It seems a deadcode because of no usage. *dm tree i2c [ + ]|-- i2c@138b pmic[ + ]|

Re: [U-Boot] [PATCH 0/7] dm: universal_c210: support the DM_PMIC

2017-01-05 Thread Jaehoon Chung
+CC'd Simon. To Simon, Sorry i missed CC'd. If you want to CC'd, i will resend the patches.. Let me know, plz. Best Regards, Jaehoon Chung On 01/05/2017 05:16 PM, Jaehoon Chung wrote: > This patchset is for supporting pmic driver-mode on universal_c210 board. > It's using i2c-s3c24x0.c file.

[U-Boot] [PATCH 6/7] board: samsung: universal_210: use the driver model for max8998

2017-01-05 Thread Jaehoon Chung
Revmoe the "ifndef CONFIG_DM_I2C". Intead, use the driver model for max8998. Signed-off-by: Jaehoon Chung --- board/samsung/universal_c210/universal.c | 169 +-- 1 file changed, 94 insertions(+), 75 deletions(-) diff --git

[U-Boot] [PATCH 1/7] i2c: Kconfig: Add SYS_I2C_S3C24X0 entry

2017-01-05 Thread Jaehoon Chung
Adding Kconfig for SYS_I2C_S3C24X0. Signed-off-by: Jaehoon Chung --- drivers/i2c/Kconfig | 6 ++ 1 file changed, 6 insertions(+) diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig index 051f911..a2d7a38 100644 --- a/drivers/i2c/Kconfig +++ b/drivers/i2c/Kconfig

[U-Boot] [PATCH 3/7] ARM: dts: exynos4: use the node's name for i2c

2017-01-05 Thread Jaehoon Chung
Use the node's name for i2c. Signed-off-by: Jaehoon Chung --- arch/arm/dts/exynos4.dtsi | 27 +++ 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/arch/arm/dts/exynos4.dtsi b/arch/arm/dts/exynos4.dtsi index 7de227c..a5a00c8 100644

[U-Boot] [PATCH 0/7] dm: universal_c210: support the DM_PMIC

2017-01-05 Thread Jaehoon Chung
This patchset is for supporting pmic driver-mode on universal_c210 board. It's using i2c-s3c24x0.c file. (Fixes some complier error issue.) Remove the soft_i2c codes in universal.c. It seems a deadcode because of no usage. *dm tree i2c [ + ]|-- i2c@138b pmic[ + ]|

[U-Boot] [PATCH 5/7] configs: s5pc210_universal: enable the DM_PMIC and MAX8998

2017-01-05 Thread Jaehoon Chung
Enable the CONFIG_DM_PMIC and CONFIG_DM_PMIC_MAX8998. s5pc210_universal board is using max8998 pmic. To use the i2c/pmic driver model, enable these configurations. Signed-off-by: Jaehoon Chung --- configs/s5pc210_universal_defconfig | 2 ++ 1 file changed, 2

[U-Boot] [PATCH 2/7] i2c: s3c24x0: fix the compiler error for exynos4

2017-01-05 Thread Jaehoon Chung
If CONFIG_SYS_I2C_S3C24X0_SLAVE isn't defined, then complie error should be occurred. This patch is for preventing it. Signed-off-by: Jaehoon Chung --- drivers/i2c/s3c24x0_i2c.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git

[U-Boot] [PATCH 7/7] board: samsung: universal_c210: remove the codes relevant to soft_i2c

2017-01-05 Thread Jaehoon Chung
Removes the codes of soft_i2c. There is no usasge for universal_c210, also didn't define CONFIG_SOFT_I2C_GPIO_SCL. This code seems a dead code. Signed-off-by: Jaehoon Chung --- board/samsung/universal_c210/universal.c | 11 --- 1 file changed, 11 deletions(-)

Re: [U-Boot] [PATCH v2 2/2] lib: net_utils: enforce '.' as octet separator in string_to_ip

2017-01-05 Thread Chris Packham
On Wed, Jan 4, 2017 at 11:09 PM, Wolfgang Denk wrote: > Dear Chris Packham, > > In message <20170104003626.4211-2-judge.pack...@gmail.com> you wrote: >> Ensure '.' is used to separate octets. If another character is seen >> reject the string outright and return 0.0.0.0. > > What is