[U-Boot] Antwort: [PATCH 1/2] Convert CONFIG_BOOTCOUNT_LIMIT to Kconfig

2018-02-11 Thread Hannes Schmelzer
> > This converts the following to Kconfig: >CONFIG_BOOTCOUNT_LIMIT > > Signed-off-by: Lukasz Majewski > --- > > configs/brppt1_mmc_defconfig | 1 + > configs/brppt1_nand_defconfig| 1 + > configs/brppt1_spi_defconfig | 1 + >

[U-Boot] [PATCH v3] sandbox: Add 64-bit sandbox

2018-02-11 Thread Mario Six
From: Mario Six To debug device tree issues involving 32- and 64-bit platforms, it is useful to have a generic 64-bit platform available. Add a version of the sandbox that uses 64-bit integers for its physical addresses as well as a modified device tree. Signed-off-by: Mario Six

Re: [U-Boot] [PATCH] efi_stub: Fix GDT_NOTSYS check

2018-02-11 Thread Bin Meng
Hi Alexander, On Tue, Dec 5, 2017 at 7:20 AM, Bin Meng wrote: > On Mon, Dec 4, 2017 at 11:33 PM, Alexander Graf wrote: >> The get_codeseg32() wants to know if a passed in descriptor has >> flag GDT_NOTSYS set (desc & GDT_NOTSYS), not whether desc and >>

Re: [U-Boot] [PATCH 8/8] Migrate generic bootcount to Kconfig

2018-02-11 Thread Alex Kiernan
On Sun, Feb 11, 2018 at 9:44 PM, Lukasz Majewski wrote: > On Sun, 11 Feb 2018 21:04:46 + > Alex Kiernan wrote: > >> >> That said, squashing in that change doesn't obviously break anything >> for me, and is probably a step in the right direction. >> >>

[U-Boot] [RFC PATCH 1/3] ARM: omap3: beagle: Set 'mtdids' and 'mtdparts' in board file

2018-02-11 Thread Derald D. Woods
BeagleBoard 'xM' does not really have NAND. CONFIG_MTDIDS_DEFAULT and CONFIG_MTDPARTS_DEFAULT can/should be empty for 'xM'. This commit sets the defined values if they exist. Signed-off-by: Derald D. Woods --- board/ti/beagle/beagle.c | 8 1 file changed, 8

[U-Boot] [RFC PATCH 3/3] ARM: omap3: evm: Sync with omap3_beagle configuration

2018-02-11 Thread Derald D. Woods
This commit does the following for OMAP3 EVM: - Track omap3_beagle changes where possible - Remove CONFIG_SYS_MPUCLK and CONFIG_MTD which are not needed for the default board configuration to work. - Remove CONFIG_SPL_SYS_MALLOC_SIMPLE and CONFIG_SYS_MALLOC_F_LEN from default config.

[U-Boot] [RFC PATCH 0/3] ARM: omap3: beagle, evm: synchronize common setup

2018-02-11 Thread Derald D. Woods
This short series is an attempt to make this set of boards use the same default configuration items where possible. This was prompted by an investigation into enabling SERIAL_SEARCH_ALL on omap3_evm. This feature now works for omap3_evm after this series. The 'RFC' is because of changes in the

[U-Boot] [RFC PATCH 2/3] ARM: omap3: beagle: Enable DM_SERIAL, update distro usage and NAND layout

2018-02-11 Thread Derald D. Woods
This commit does the following for BeagleBoard{-xM}: - Enable DM_SERIAL which also enables SPL_DM_SERIAL - Misc. config updates in support of DM_SERIAL - Use CONFIG_ENV_IS_IN_FAT because BeagleBoard-xM has no NAND - Use updated NAND layout (BeagleBoard): device nand0 , # parts = 6

Re: [U-Boot] [PATCH] common: build ymodem and s_record only on need

2018-02-11 Thread Jun Nie
2018-02-12 8:54 GMT+08:00 André Przywara : > Hi, > > On 11/02/18 09:53, Jun Nie wrote: >> Build ymodem and s_record only on need to shrink >> spl image size. >> >> Signed-off-by: Jun Nie >> --- >> common/Makefile | 4 ++-- >> 1 file changed, 2

Re: [U-Boot] [PATCH v2 01/11] sunxi: Add MFD_SUN6I_PRCM kconfig entry

2018-02-11 Thread Chen-Yu Tsai
On Sun, Feb 11, 2018 at 6:18 PM, Jagan Teki wrote: > Add simple and meaningful kconfig option for prcm.c > instead of using MACH type on Makefile. > > PRCM (Power/Reset/Clock Management) is considered as a > Multi-Functional Device, so used the same on Kconfig

[U-Boot] [RFC PATCH] net: mii command: disable build for 64-bit Allwinner boards

2018-02-11 Thread Andre Przywara
The current master fails to build some Allwinner H5 boards, due to exceeding the U-Boot proper size limit we currently have still in place. This affects: - nanopi_neo2_defconfig - nanopi_neo_plus2_defconfig - orangepi_pc2_defconfig - orangepi_prime_defconfig - orangepi_zero_plus2_defconfig To

Re: [U-Boot] [PATCH] common: build ymodem and s_record only on need

2018-02-11 Thread André Przywara
Hi, On 11/02/18 09:53, Jun Nie wrote: > Build ymodem and s_record only on need to shrink > spl image size. > > Signed-off-by: Jun Nie > --- > common/Makefile | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/common/Makefile b/common/Makefile >

Re: [U-Boot] [PATCH v2 3/4] Convert socfpga: select CONFIG_HW_WATCHDOG support for ARCH_SOCFPGA

2018-02-11 Thread Tom Rini
On Mon, Feb 12, 2018 at 12:34:10AM +0100, Lukasz Majewski wrote: > Hi Simon, > > > On 09.02.2018 23:14, Lukasz Majewski wrote: > > > All Socfpga boards from ./include/configs/socfpga_* define > > > CONFIG_HW_WATCHDOG. > > > To ease CONFIG_HW_WATCHDOG conversion to Kconfig select it in > > >

Re: [U-Boot] [PATCH v2 3/4] Convert socfpga: select CONFIG_HW_WATCHDOG support for ARCH_SOCFPGA

2018-02-11 Thread Lukasz Majewski
Hi Simon, > On 09.02.2018 23:14, Lukasz Majewski wrote: > > All Socfpga boards from ./include/configs/socfpga_* define > > CONFIG_HW_WATCHDOG. > > To ease CONFIG_HW_WATCHDOG conversion to Kconfig select it in > > config ARCH_SOCFPGA (arch/arm/Kconfig) section. > > I do have board configs where

Re: [U-Boot] [PATCH 8/8] Migrate generic bootcount to Kconfig

2018-02-11 Thread Lukasz Majewski
On Sun, 11 Feb 2018 21:04:46 + Alex Kiernan wrote: > On Sun, Feb 11, 2018 at 7:36 PM, Lukasz Majewski > wrote: > > Hi Alex, > > > >> Make generate boot counter selected in the same way as other boot > >> count drivers > >> > >> Signed-off-by: Alex

Re: [U-Boot] [PATCH 8/8] Migrate generic bootcount to Kconfig

2018-02-11 Thread Alex Kiernan
On Sun, Feb 11, 2018 at 7:36 PM, Lukasz Majewski wrote: > Hi Alex, > >> Make generate boot counter selected in the same way as other boot >> count drivers >> >> Signed-off-by: Alex Kiernan >> --- >> >> drivers/bootcount/Kconfig | 11 +++ >>

Re: [U-Boot] Build system: Don't check for CONFIG_SYS_TEXT_BASE being set

2018-02-11 Thread Tom Rini
On Tue, Jan 30, 2018 at 06:23:13PM +0300, Alexey Brodkin wrote: > CONFIG_SYS_TEXT_BASE must be set anyways and then it is used in many > places in the same Makefile without any checks so there's no point in > keeping this check araound just in one place. > > Signed-off-by: Alexey Brodkin

Re: [U-Boot] Remove more checks for CONFIG_SYS_TEXT_BASE being set

2018-02-11 Thread Tom Rini
On Thu, Feb 01, 2018 at 08:20:59PM +0300, Alexey Brodkin wrote: > Now when Blackfin is gone CONFIG_SYS_TEXT_BASE is supposed to be > set for each and every board which makes checks for this macro being set > completely redundant. > > Note there're still checks for CONFIG_SYS_TEXT_BASE in quite a

Re: [U-Boot] [PATCH 8/8] Migrate generic bootcount to Kconfig

2018-02-11 Thread Lukasz Majewski
Hi Alex, > Make generate boot counter selected in the same way as other boot > count drivers > > Signed-off-by: Alex Kiernan > --- > > drivers/bootcount/Kconfig | 11 +++ > drivers/bootcount/Makefile | 2 +- > 2 files changed, 12 insertions(+), 1 deletion(-)

Re: [U-Boot] [PATCH 2/2] Convert CONFIG_SYS_BOOTCOUNT_SINGLEWORD to Kconfig

2018-02-11 Thread Alex Kiernan
On Fri, Feb 9, 2018 at 10:53 PM, Lukasz Majewski wrote: > This converts the following to Kconfig: >CONFIG_SYS_BOOTCOUNT_SINGLEWORD > > Signed-off-by: Lukasz Majewski > --- > > configs/highbank_defconfig | 1 + > drivers/bootcount/Kconfig | 6 ++ >

Re: [U-Boot] [PATCH 1/2] Convert CONFIG_BOOTCOUNT_LIMIT to Kconfig

2018-02-11 Thread Alex Kiernan
On Fri, Feb 9, 2018 at 10:50 PM, Lukasz Majewski wrote: > This converts the following to Kconfig: >CONFIG_BOOTCOUNT_LIMIT > > Signed-off-by: Lukasz Majewski > --- > > README | 10 -- > configs/am335x_baltos_defconfig

Re: [U-Boot] [PATCH v2 3/4] Convert socfpga: select CONFIG_HW_WATCHDOG support for ARCH_SOCFPGA

2018-02-11 Thread Goldschmidt Simon
On 09.02.2018 23:14, Lukasz Majewski wrote: All Socfpga boards from ./include/configs/socfpga_* define CONFIG_HW_WATCHDOG. To ease CONFIG_HW_WATCHDOG conversion to Kconfig select it in config ARCH_SOCFPGA (arch/arm/Kconfig) section. I do have board configs where the internal watchdog is not

Re: [U-Boot] [PATCH 4/8] Convert CONFIG_BOOTCOUNT_ENV to Kconfig

2018-02-11 Thread Lukasz Majewski
On Sun, 11 Feb 2018 12:06:49 + Alex Kiernan wrote: > This converts the following to Kconfig: > CONFIG_BOOTCOUNT_ENV > > Signed-off-by: Alex Kiernan > --- > > README | 11 --- >

Re: [U-Boot] [PATCH 3/8] Convert CONFIG_BOOTCOUNT_AM33XX to Kconfig

2018-02-11 Thread Lukasz Majewski
On Sun, 11 Feb 2018 12:06:48 + Alex Kiernan wrote: > This converts the following to Kconfig: > CONFIG_BOOTCOUNT_AM33XX > > Signed-off-by: Alex Kiernan > --- > > drivers/bootcount/Kconfig | 9 + > drivers/bootcount/Makefile

Re: [U-Boot] [PATCH 2/8] Prepare for multiple bootcount drivers

2018-02-11 Thread Lukasz Majewski
On Sun, 11 Feb 2018 12:06:47 + Alex Kiernan wrote: > Signed-off-by: Alex Kiernan > --- > > drivers/bootcount/Kconfig | 25 +++-- > 1 file changed, 11 insertions(+), 14 deletions(-) > > diff --git

Re: [U-Boot] [PATCH 1/8] Merge CONFIG_BOOTCOUNT and CONFIG_BOOTCOUNT_LIMIT

2018-02-11 Thread Lukasz Majewski
On Sun, 11 Feb 2018 12:06:46 + Alex Kiernan wrote: > CONFIG_BOOTCOUNT was only used in mx53ppd, merge it with > CONFIG_BOOTCOUNT_LIMIT > > Signed-off-by: Alex Kiernan > --- > > configs/mx53ppd_defconfig | 1 - > drivers/bootcount/Kconfig |

Re: [U-Boot] [PATCH 7/8] Integrate AT91 bootcount driver

2018-02-11 Thread Lukasz Majewski
On Sun, 11 Feb 2018 12:06:52 + Alex Kiernan wrote: > Integrate Boot counter for Atmel AT91SAM9XE into Kconfig > > Signed-off-by: Alex Kiernan > --- > > drivers/bootcount/Kconfig | 5 + > drivers/bootcount/Makefile | 2 +- > 2 files

Re: [U-Boot] [PATCH 6/8] Convert CONFIG_BOOTCOUNT_I2C to Kconfig

2018-02-11 Thread Lukasz Majewski
On Sun, 11 Feb 2018 12:06:51 + Alex Kiernan wrote: > This converts the following to Kconfig: > CONFIG_BOOTCOUNT_I2C > > Signed-off-by: Alex Kiernan > --- > > README | 6 -- > configs/ids8313_defconfig| 1 + >

Re: [U-Boot] [PATCH 5/8] Convert CONFIG_BOOTCOUNT_RAM to Kconfig

2018-02-11 Thread Lukasz Majewski
On Sun, 11 Feb 2018 12:06:50 + Alex Kiernan wrote: > This converts the following to Kconfig: > CONFIG_BOOTCOUNT_RAM > > Signed-off-by: Alex Kiernan > --- > > README | 2 -- >

[U-Boot] [PATCH v2] Fix --noheader on fw_printenv

2018-02-11 Thread Alex Kiernan
The single argument `--noheader' is expecting isn't taken from getopt parsing, but instead from the remaining argv arguments. Signed-off-by: Alex Kiernan --- Changes in v2: - Simplified commit message, improved error message tools/env/fw_env.c | 2 +-

Re: [U-Boot] configs: Migrate CONFIG_SYS_TEXT_BASE

2018-02-11 Thread Tom Rini
On Sat, Feb 03, 2018 at 12:10:38PM -0500, Tom Rini wrote: > On the NIOS2 and Xtensa architectures, we do not have > CONFIG_SYS_TEXT_BASE set. This is a strict migration of the current > values into the defconfig and removing them from the headers. > > I did not attempt to add more default

[U-Boot] [PATCH 0/8] Convert bootcount drivers to Kconfig

2018-02-11 Thread Alex Kiernan
This patch set converts bootcount drivers to Kconfig, it also merges CONFIG_BOOTCOUNT and CONFIG_BOOTCOUNT_LIMIT. Green Travis build: https://travis-ci.org/akiernan/u-boot/builds/340059775 This patch has been applied on top of u-boot/master: SHA1: 1811a928c6c7604d6d05a84b4d552a7c31b4994e This

Re: [U-Boot] [PATCH v4 04/34] musb: sunxi: Add fifo config

2018-02-11 Thread Marek Vasut
On 02/11/2018 11:59 AM, Jagan Teki wrote: > On Tue, Feb 6, 2018 at 8:11 PM, Marek Vasut wrote: >> On 02/06/2018 03:25 PM, Jagan Teki wrote: >>> Unlike other Allwinner SOC's H3/H5/V3s OTG support 4 endpoints >>> with relevant fifo configs, rest all have 5 endpoints. >>> So add the

Re: [U-Boot] [PATCH v4 03/34] musb: sunxi: Use simple way to fill musb_hdrc pdata

2018-02-11 Thread Marek Vasut
On 02/11/2018 11:44 AM, Jagan Teki wrote: > On Tue, Feb 6, 2018 at 8:09 PM, Marek Vasut wrote: >> On 02/06/2018 03:25 PM, Jagan Teki wrote: >>> Filling musb_hdrc pdata using structure will unnecessary >>> add extra ifdefs, so fill them inside probe call for >>> better code

Re: [U-Boot] [PATCH v4 01/34] usb: sunxi: Simplify ccm reg base code

2018-02-11 Thread Marek Vasut
On 02/11/2018 11:39 AM, Jagan Teki wrote: > On Tue, Feb 6, 2018 at 8:07 PM, Marek Vasut wrote: >> On 02/06/2018 03:25 PM, Jagan Teki wrote: >>> Move struct sunxi_ccm_reg pointer to private structure >>> so-that accessing ccm reg base become more proper way >>> and avoid local

[U-Boot] [PATCH 7/8] Integrate AT91 bootcount driver

2018-02-11 Thread Alex Kiernan
Integrate Boot counter for Atmel AT91SAM9XE into Kconfig Signed-off-by: Alex Kiernan --- drivers/bootcount/Kconfig | 5 + drivers/bootcount/Makefile | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/bootcount/Kconfig

[U-Boot] [PATCH 3/8] Convert CONFIG_BOOTCOUNT_AM33XX to Kconfig

2018-02-11 Thread Alex Kiernan
This converts the following to Kconfig: CONFIG_BOOTCOUNT_AM33XX Signed-off-by: Alex Kiernan --- drivers/bootcount/Kconfig | 9 + drivers/bootcount/Makefile| 1 - include/configs/am335x_evm.h | 1 - include/configs/am335x_sl50.h | 1 -

[U-Boot] [PATCH 5/8] Convert CONFIG_BOOTCOUNT_RAM to Kconfig

2018-02-11 Thread Alex Kiernan
This converts the following to Kconfig: CONFIG_BOOTCOUNT_RAM Signed-off-by: Alex Kiernan --- README | 2 -- configs/km_kirkwood_128m16_defconfig | 1 + configs/km_kirkwood_defconfig| 1 + configs/km_kirkwood_pci_defconfig| 1 +

[U-Boot] [PATCH 4/8] Convert CONFIG_BOOTCOUNT_ENV to Kconfig

2018-02-11 Thread Alex Kiernan
This converts the following to Kconfig: CONFIG_BOOTCOUNT_ENV Signed-off-by: Alex Kiernan --- README | 11 --- configs/draco_defconfig| 1 + configs/etamin_defconfig | 1 + configs/pxm2_defconfig

[U-Boot] [PATCH 8/8] Migrate generic bootcount to Kconfig

2018-02-11 Thread Alex Kiernan
Make generate boot counter selected in the same way as other boot count drivers Signed-off-by: Alex Kiernan --- drivers/bootcount/Kconfig | 11 +++ drivers/bootcount/Makefile | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git

[U-Boot] [PATCH 2/8] Prepare for multiple bootcount drivers

2018-02-11 Thread Alex Kiernan
Signed-off-by: Alex Kiernan --- drivers/bootcount/Kconfig | 25 +++-- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/drivers/bootcount/Kconfig b/drivers/bootcount/Kconfig index da2ccab..26fec89 100644 --- a/drivers/bootcount/Kconfig

[U-Boot] [PATCH 6/8] Convert CONFIG_BOOTCOUNT_I2C to Kconfig

2018-02-11 Thread Alex Kiernan
This converts the following to Kconfig: CONFIG_BOOTCOUNT_I2C Signed-off-by: Alex Kiernan --- README | 6 -- configs/ids8313_defconfig| 1 + drivers/bootcount/Kconfig| 9 + include/configs/ids8313.h| 1 -

[U-Boot] [PATCH 1/8] Merge CONFIG_BOOTCOUNT and CONFIG_BOOTCOUNT_LIMIT

2018-02-11 Thread Alex Kiernan
CONFIG_BOOTCOUNT was only used in mx53ppd, merge it with CONFIG_BOOTCOUNT_LIMIT Signed-off-by: Alex Kiernan --- configs/mx53ppd_defconfig | 1 - drivers/bootcount/Kconfig | 9 + 2 files changed, 1 insertion(+), 9 deletions(-) diff --git

[U-Boot] [PATCH] SPL: Add signature verification when loading image

2018-02-11 Thread Jun Nie
Add signature verification when loading FIT image in SPL. Signed-off-by: Jun Nie --- common/image-fit.c | 56 +++- common/spl/spl_fit.c | 12 +++ include/image.h | 2 ++ 3 files changed, 48 insertions(+), 22

Re: [U-Boot] [PATCH v4 04/34] musb: sunxi: Add fifo config

2018-02-11 Thread Jagan Teki
On Tue, Feb 6, 2018 at 8:11 PM, Marek Vasut wrote: > On 02/06/2018 03:25 PM, Jagan Teki wrote: >> Unlike other Allwinner SOC's H3/H5/V3s OTG support 4 endpoints >> with relevant fifo configs, rest all have 5 endpoints. >> So add the fifo configs and defer them based on udevice_id

Re: [U-Boot] [PATCH v4 03/34] musb: sunxi: Use simple way to fill musb_hdrc pdata

2018-02-11 Thread Jagan Teki
On Tue, Feb 6, 2018 at 8:09 PM, Marek Vasut wrote: > On 02/06/2018 03:25 PM, Jagan Teki wrote: >> Filling musb_hdrc pdata using structure will unnecessary >> add extra ifdefs, so fill them inside probe call for >> better code understanding and get rid ifdefs using >> devicetree

Re: [U-Boot] [PATCH v4 01/34] usb: sunxi: Simplify ccm reg base code

2018-02-11 Thread Jagan Teki
On Tue, Feb 6, 2018 at 8:07 PM, Marek Vasut wrote: > On 02/06/2018 03:25 PM, Jagan Teki wrote: >> Move struct sunxi_ccm_reg pointer to private structure >> so-that accessing ccm reg base become more proper way >> and avoid local initialization in each function. >> >> Signed-off-by:

[U-Boot] [PATCH v2 09/11] sunxi: Add DRAM_SUN8I_A23 kconfig entry

2018-02-11 Thread Jagan Teki
Add proper and simple kconfig option for dram_sun8i_a23.c instead of using MACH type on Makefile. Signed-off-by: Jagan Teki --- arch/arm/mach-sunxi/Kconfig | 7 +++ arch/arm/mach-sunxi/Makefile | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git

[U-Boot] [PATCH v2 04/11] sunxi: Add SUNXI_RSB kconfig entry

2018-02-11 Thread Jagan Teki
Add simple and meaningful kconfig option for rsb.c instead of using MACH type on Makefile. Signed-off-by: Jagan Teki --- arch/arm/mach-sunxi/Kconfig | 10 ++ arch/arm/mach-sunxi/Makefile | 3 +-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH v2 07/11] sunxi: Add DRAM_SUN4I kconfig entry

2018-02-11 Thread Jagan Teki
Add proper and simple kconfig option for dram_sun4i.c instead of using MACH type on Makefile. Signed-off-by: Jagan Teki --- arch/arm/mach-sunxi/Kconfig | 9 + arch/arm/mach-sunxi/Makefile | 4 +--- 2 files changed, 10 insertions(+), 3 deletions(-) diff

[U-Boot] [PATCH v2 11/11] sunxi: Add DRAM_SUN8I_A83T kconfig entry

2018-02-11 Thread Jagan Teki
Add proper and simple kconfig option for dram_sun8i_a83t.c instead of using MACH type on Makefile. Signed-off-by: Jagan Teki --- arch/arm/mach-sunxi/Kconfig | 7 +++ arch/arm/mach-sunxi/Makefile | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git

[U-Boot] [PATCH v2 06/11] sunxi: add DRAM_SUN6I kconfig

2018-02-11 Thread Jagan Teki
Add proper and simple kconfig option for dram_sun6i.c instead of using MACH type on Makefile. Signed-off-by: Jagan Teki --- arch/arm/mach-sunxi/Kconfig | 7 +++ arch/arm/mach-sunxi/Makefile | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git

[U-Boot] [PATCH v2 10/11] sunxi: Add DRAM_SUN8I_A33 kconfig entry

2018-02-11 Thread Jagan Teki
Add proper and simple kconfig option for dram_sun8i_a33.c instead of using MACH type on Makefile. Signed-off-by: Jagan Teki --- arch/arm/mach-sunxi/Kconfig | 7 +++ arch/arm/mach-sunxi/Makefile | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git

[U-Boot] [PATCH v2 05/11] sunxi: Add PMIC_AXP kconfig entry

2018-02-11 Thread Jagan Teki
Add simple and meaningful kconfig option for pmic_bus.c instead of using MACH type on Makefile. Signed-off-by: Jagan Teki --- arch/arm/mach-sunxi/Kconfig | 6 ++ arch/arm/mach-sunxi/Makefile | 7 +-- drivers/power/Kconfig| 5 + 3 files changed,

[U-Boot] [PATCH v2 08/11] sunxi: Add DRAM_SUN9I kconfig entry

2018-02-11 Thread Jagan Teki
Add proper and simple kconfig option for dram_sun9i.c instead of using MACH type on Makefile. Signed-off-by: Jagan Teki --- arch/arm/mach-sunxi/Kconfig | 7 +++ arch/arm/mach-sunxi/Makefile | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git

[U-Boot] [PATCH v2 02/11] sunxi: Add I2C_SUN6I_P2WI kconfig entry

2018-02-11 Thread Jagan Teki
Add simple and meaningful kconfig option for p2wi.c instead of using MACH type on Makefile. p2wi is an I2C controller, so used the same on kconfig definition. Signed-off-by: Jagan Teki --- arch/arm/mach-sunxi/Kconfig | 12 arch/arm/mach-sunxi/Makefile

[U-Boot] [PATCH v2 03/11] sunxi: Use MFD_SUN6I_PRCM if used

2018-02-11 Thread Jagan Teki
MFD_SUN6I_PRCM is also used for SUN8I and SUN9I, so select the same on respective MACH types. Signed-off-by: Jagan Teki --- arch/arm/mach-sunxi/Kconfig | 2 ++ arch/arm/mach-sunxi/Makefile | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git

[U-Boot] [PATCH v2 01/11] sunxi: Add MFD_SUN6I_PRCM kconfig entry

2018-02-11 Thread Jagan Teki
Add simple and meaningful kconfig option for prcm.c instead of using MACH type on Makefile. PRCM (Power/Reset/Clock Management) is considered as a Multi-Functional Device, so used the same on Kconfig definition. Signed-off-by: Jagan Teki ---

[U-Boot] [PATCH v2 00/11] arm: sunxi: Use proper and meaningful Kconfig entries

2018-02-11 Thread Jagan Teki
Current arch/arm/mach-sunxi/Makefile has improper build options which relies mostly on MACH_ options. This series get rid of those and added proper Kconfig options. All Kconfig entry name are re-used from Linux so-that future dm conversion on these can be meaningful. Changes for v2: - Renamed

[U-Boot] [PATCH] common: build ymodem and s_record only on need

2018-02-11 Thread Jun Nie
Build ymodem and s_record only on need to shrink spl image size. Signed-off-by: Jun Nie --- common/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/Makefile b/common/Makefile index c7bde23..8e1569f 100644 --- a/common/Makefile +++