Re: [PATCH v1] net: nuvoton: fix build broken for use phy_get_interface_by_name

2022-11-20 Thread Jim Liu
Hi Ramon My upstream topic status is Awaiting Upstream. What could I do to make it merge fast? Best regards, Jim On Sun, Sep 18, 2022 at 2:07 PM Ramon Fried wrote: > > On Tue, Sep 13, 2022 at 9:25 AM Jim Liu wrote: > > > > The original patch is use phy_get_interface_by_name to set interface.

Re: [PATCH 1/1] disk: fix blk_get_device_part_str()

2022-11-20 Thread Heiko Schocher
Hello Heinrich, On 20.11.22 13:13, Heinrich Schuchardt wrote: > blk_get_device_part_str() should always initialize all info fields > including sys_ind. As a side effect the code is simplified. > > Replace '(0 ==' by '(!' to conform with Linux coding style. > > Fixes: 4d907025d6a5 ("sandbox:

Re: [PATCH] riscv: use imply instead of select for SPL_SEPARATE_BSS

2022-11-20 Thread Sean Anderson
On 11/16/22 02:08, Zong Li wrote: Use imply instead of select, then it can still be disabled by board-specific defconfig, or be set to n manually. Signed-off-by: Zong Li --- arch/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/Kconfig b/arch/Kconfig index

Re: [PATCH] riscv: use imply instead of select for SPL_SEPARATE_BSS

2022-11-20 Thread Bin Meng
On Wed, Nov 16, 2022 at 3:09 PM Zong Li wrote: > > Use imply instead of select, then it can still be disabled by > board-specific defconfig, or be set to n manually. > > Signed-off-by: Zong Li > --- > arch/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by: Bin Meng

Re: [PATCH] riscv: use imply instead of select for SPL_SEPARATE_BSS

2022-11-20 Thread Rick Chen
> From: Zong Li > Sent: Wednesday, November 16, 2022 3:09 PM > To: s...@chromium.org; michal.si...@amd.com; sean.ander...@seco.com; Leo > Yu-Chi Liang(梁育齊) ; Rick Jian-Zhi Chen(陳建志) > ; u-boot@lists.denx.de > Cc: Zong Li > Subject: [PATCH] riscv: use imply instead of select for

Re: [PATCH 1/1] cli: always show cursor

2022-11-20 Thread Pali Rohár
On Saturday 22 October 2022 11:20:58 Heinrich Schuchardt wrote: > We may enter the command line interface in a state where on the remote > console the cursor is not shown. Send an escape sequence to enable it. > > Signed-off-by: Heinrich Schuchardt > --- > common/main.c | 4 > 1 file

Re: [PATCH] Prevent buffer overflow on USB control endpoint

2022-11-20 Thread Szymon Heidrich
On 20/11/2022 18:25, Marek Vasut wrote: > On 11/20/22 16:29, Szymon Heidrich wrote: >> On 20/11/2022 15:43, Marek Vasut wrote: >>> On 11/17/22 12:50, Fabio Estevam wrote: [Adding Lukasz and Marek] On Thu, Nov 17, 2022 at 6:50 AM Szymon Heidrich wrote: > > Assure that

Re: [PATCH] Prevent buffer overflow on USB control endpoint

2022-11-20 Thread Szymon Heidrich
On 20/11/2022 15:43, Marek Vasut wrote: > On 11/17/22 12:50, Fabio Estevam wrote: >> [Adding Lukasz and Marek] >> >> On Thu, Nov 17, 2022 at 6:50 AM Szymon Heidrich >> wrote: >>> >>> Assure that the control endpoint buffer of size USB_BUFSIZ (4096) >>> can not be overflown during handling of USB

Re: [PATCH] Prevent buffer overflow on USB control endpoint

2022-11-20 Thread Marek Vasut
On 11/20/22 16:29, Szymon Heidrich wrote: On 20/11/2022 15:43, Marek Vasut wrote: On 11/17/22 12:50, Fabio Estevam wrote: [Adding Lukasz and Marek] On Thu, Nov 17, 2022 at 6:50 AM Szymon Heidrich wrote: Assure that the control endpoint buffer of size USB_BUFSIZ (4096) can not be overflown

Re: [PATCH] Revert "cli_readline: Only insert printable chars"

2022-11-20 Thread Pali Rohár
On Tuesday 01 November 2022 21:07:24 Simon Glass wrote: > On Tue, 1 Nov 2022 at 17:42, Pali Rohár wrote: > > > > This reverts commit d2e64d29c44dee6d455f7705dd1cf1af8674ad9a. > > > > This commit broke support for pound sign (£) and euro sign (€) keys on > > Nokia N900 keypad. > > > >

Re: [PATCH 1/3] arm32: Fix relocation of env_addr if POSITION_INDEPENDENT=y

2022-11-20 Thread Fabio Estevam
On Sun, Nov 20, 2022 at 1:57 PM Pali Rohár wrote: > > Apply commit 534f0fbd6520 ("arm64: Fix relocation of env_addr if > POSITION_INDEPENDENT=y") also for 32-bit ARM. > > This change fixes crashing of U-Boot on ARMv7 (Omap3 / Cortex-A8) Nokia N900 > phone (real HW). Note that qemu emulator of

[PATCH 1/3] arm32: Fix relocation of env_addr if POSITION_INDEPENDENT=y

2022-11-20 Thread Pali Rohár
Apply commit 534f0fbd6520 ("arm64: Fix relocation of env_addr if POSITION_INDEPENDENT=y") also for 32-bit ARM. This change fixes crashing of U-Boot on ARMv7 (Omap3 / Cortex-A8) Nokia N900 phone (real HW). Note that qemu emulator of this board with same u-boot.bin binary has not triggered this

[PATCH 2/3] Nokia RX-51: Document debugging options and compile command

2022-11-20 Thread Pali Rohár
Add example command how to compile U-Boot and add new documentation section describing how to enable early debug UART and verbose log output for N900. Signed-off-by: Pali Rohár --- doc/board/nokia/rx51.rst | 32 1 file changed, 32 insertions(+) diff --git

[PATCH 3/3] Nokia RX-51: Do not overwrite standard $loadaddr variable

2022-11-20 Thread Pali Rohár
Instead of overwriting $loadaddr variable, use custom temporary $fileloadaddr variable. So scripts can access default/original address stored in $loadaddr at build time. Signed-off-by: Pali Rohár --- include/configs/nokia_rx51.h | 9 + 1 file changed, 5 insertions(+), 4 deletions(-)

[PATCH 0/3] Nokia RX-51: Fixes for U-Boot v2023.01-rc1

2022-11-20 Thread Pali Rohár
This patch series fixes U-Boot v2023.01-rc1 on Nokia N900 and extend documentation for debugging purposes. The main issue is broken POSITION_INDEPENDENT=y for (probably all) 32-bit ARM boards. Pali Rohár (3): arm32: Fix relocation of env_addr if POSITION_INDEPENDENT=y Nokia RX-51: Document

Re: [PATCH 2/2] Nokia RX-51: Remove CONFIG_PREBOOT from defconfig

2022-11-20 Thread Pali Rohár
On Tuesday 01 November 2022 19:29:01 Tom Rini wrote: > On Tue, Nov 01, 2022 at 11:58:48PM +0100, Pali Rohár wrote: > > On Sunday 09 October 2022 15:03:03 Pali Rohár wrote: > > > On Wednesday 27 July 2022 15:08:05 Tom Rini wrote: > > > > On Wed, Jul 27, 2022 at 09:01:15PM +0200, Pali Rohár wrote: >

Re: [maemo-leste] Broken u-boot on n900 hw (possibly CONFIG_POSITION_INDEPENDENT)

2022-11-20 Thread Pali Rohár
On Sunday 20 November 2022 10:33:35 Tom Rini wrote: > On Sat, Nov 19, 2022 at 10:13:01PM +0100, Pali Rohár wrote: > > On Wednesday 09 November 2022 21:33:28 Pali Rohár wrote: > > > On Wednesday 02 November 2022 01:08:26 Pali Rohár wrote: > > > > On Friday 21 October 2022 21:09:55 Pali Rohár wrote:

Re: [PATCH v3 1/2] x86: fsp: Depend on DM_RTC

2022-11-20 Thread Bin Meng
Hi Sean, On Fri, Nov 18, 2022 at 5:16 AM Sean Anderson wrote: > > On 10/26/22 12:01, Sean Anderson wrote: > > On 10/26/22 11:58, Sean Anderson wrote: > >> On 10/25/22 20:52, Bin Meng wrote: > >>> Hi Sean, > >>> > >>> On Wed, Oct 26, 2022 at 7:35 AM Simon Glass wrote: > > Hi, > >

Re: [maemo-leste] Broken u-boot on n900 hw (possibly CONFIG_POSITION_INDEPENDENT)

2022-11-20 Thread Tom Rini
On Sat, Nov 19, 2022 at 10:13:01PM +0100, Pali Rohár wrote: > On Wednesday 09 November 2022 21:33:28 Pali Rohár wrote: > > On Wednesday 02 November 2022 01:08:26 Pali Rohár wrote: > > > On Friday 21 October 2022 21:09:55 Pali Rohár wrote: > > > > On Thursday 20 October 2022 22:06:58 Pali Rohár

Re: [PATCH] Enforce buffer boundaries on RNDIS USB Gadget

2022-11-20 Thread Fabio Estevam
Szymon, On Thu, Nov 17, 2022 at 4:46 PM Szymon Heidrich wrote: > > Prevent access to arbitrary memory locations in gen_ndis_set_resp > via manipulation of buf->InformationBufferOffset. Lack of validation > of BufOffset could be exploited to dump arbitrary memory contents > via NDIS packet

Re: [PATCH] Prevent buffer overflow on USB control endpoint

2022-11-20 Thread Marek Vasut
On 11/17/22 12:50, Fabio Estevam wrote: [Adding Lukasz and Marek] On Thu, Nov 17, 2022 at 6:50 AM Szymon Heidrich wrote: Assure that the control endpoint buffer of size USB_BUFSIZ (4096) can not be overflown during handling of USB control transfer requests with wLength greater than

[PoC 156/241] global: Migrate CONFIG_PPC_SPINTABLE_COMPATIBLE to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/powerpc/cpu/mpc85xx/cpu_init.c | 4 ++-- arch/powerpc/cpu/mpc85xx/release.S| 6 +++--- arch/powerpc/include/asm/config_mpc85xx.h | 2 +- scripts/config_whitelist.txt | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git

[PoC 180/241] global: Migrate CONFIG_SH_ETHER_CACHE_INVALIDATE to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- drivers/net/sh_eth.c | 2 +- include/configs/alt.h| 2 +- include/configs/condor.h | 2 +- include/configs/gose.h | 2 +- include/configs/grpeach.h| 2 +- include/configs/koelsch.h| 2 +- include/configs/lager.h | 2 +-

[PoC 151/241] global: Migrate CONFIG_PME_PLAT_CLK_DIV to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/powerpc/cpu/mpc85xx/speed.c | 6 +++--- arch/powerpc/include/asm/config_mpc85xx.h | 8 scripts/config_whitelist.txt | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/arch/powerpc/cpu/mpc85xx/speed.c

[PoC 159/241] global: Migrate CONFIG_QBMAN_CLK_DIV to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/powerpc/cpu/mpc85xx/speed.c | 6 +++--- arch/powerpc/include/asm/config_mpc85xx.h | 2 +- scripts/config_whitelist.txt | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/powerpc/cpu/mpc85xx/speed.c

[PoC 153/241] global: Migrate CONFIG_POWER_LTC3676_I2C_ADDR to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- board/gateworks/gw_ventana/gw_ventana_spl.c | 4 ++-- drivers/power/pmic/pmic_ltc3676.c | 2 +- include/configs/gw_ventana.h| 2 +- scripts/config_whitelist.txt| 6 ++ 4 files changed, 6 insertions(+), 8 deletions(-) diff

[PoC 152/241] global: Migrate CONFIG_POSTBOOTMENU to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- cmd/bootmenu.c | 4 ++-- include/configs/nokia_rx51.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/bootmenu.c b/cmd/bootmenu.c index 3340be16325b..e5a10f5d5c4d 100644 --- a/cmd/bootmenu.c +++ b/cmd/bootmenu.c @@ -577,8

[PoC 179/241] global: Migrate CONFIG_SH_ETHER_ALIGNE_SIZE to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- drivers/net/sh_eth.c | 4 ++-- drivers/net/sh_eth.h | 16 include/configs/alt.h| 2 +- include/configs/condor.h | 2 +- include/configs/gose.h | 2 +- include/configs/grpeach.h| 2 +-

[PoC 171/241] global: Migrate CONFIG_SAR_REG to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/mach-kirkwood/include/mach/kw88f6281.h | 2 +- arch/arm/mach-kirkwood/include/mach/soc.h | 2 +- arch/arm/mach-mvebu/cpu.c | 4 ++-- arch/arm/mach-mvebu/include/mach/soc.h | 12 ++-- scripts/config_whitelist.txt

[PoC 232/241] global: Migrate CONFIG_VAR_SIZE_SPL to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/exynos5420-common.h | 2 +- scripts/config_whitelist.txt| 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/exynos5420-common.h b/include/configs/exynos5420-common.h index 791ad154242e..0eefa1867a3b 100644

[PoC 228/241] global: Migrate CONFIG_USB_EXT2_BOOT to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/p1_p2_rdb_pc.h | 2 +- scripts/config_whitelist.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/p1_p2_rdb_pc.h b/include/configs/p1_p2_rdb_pc.h index 2dc271771615..19e20de248a2 100644 ---

[PoC 240/241] global: Migrate CONFIG_X86_REFCODE_RUN_ADDR to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/x86/cpu/broadwell/refcode.c | 4 ++-- include/configs/x86-chromebook.h | 2 +- scripts/config_whitelist.txt | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/x86/cpu/broadwell/refcode.c b/arch/x86/cpu/broadwell/refcode.c index

[PoC 236/241] global: Migrate CONFIG_WATCHDOG_RC to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/powerpc/cpu/mpc85xx/cpu.c | 2 +- include/configs/kmcent2.h | 2 +- scripts/config_whitelist.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/powerpc/cpu/mpc85xx/cpu.c b/arch/powerpc/cpu/mpc85xx/cpu.c index

[PoC 234/241] global: Migrate CONFIG_VSC7385_IMAGE to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- board/freescale/mpc837xerdb/mpc837xerdb.c | 6 +++--- board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c | 2 +- include/configs/MPC837XERDB.h | 4 ++-- include/configs/p1_p2_rdb_pc.h | 2 +- scripts/config_whitelist.txt| 4 ++--

[PoC 231/241] global: Migrate CONFIG_U_BOOT_HDR_SIZE to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- board/freescale/common/fsl_chain_of_trust.c | 2 +- drivers/mtd/nand/raw/fsl_ifc_spl.c | 2 +- include/configs/T104xRDB.h | 4 ++-- include/configs/ls1021atsn.h| 6 +++--- include/configs/ls1021atwr.h| 6 +++---

[PoC 230/241] global: Migrate CONFIG_USB_ISP1301_I2C_ADDR to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- drivers/usb/host/ohci-lpc32xx.c | 2 +- include/configs/devkit3250.h| 2 +- scripts/config_whitelist.txt| 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/usb/host/ohci-lpc32xx.c b/drivers/usb/host/ohci-lpc32xx.c index

[PoC 241/241] Empty config_whitelist.txt

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- scripts/config_whitelist.txt | 258 --- 1 file changed, 258 deletions(-) diff --git a/scripts/config_whitelist.txt b/scripts/config_whitelist.txt index 1a57607fccf7..e69de29bb2d1 100644 --- a/scripts/config_whitelist.txt +++

[PoC 227/241] global: Migrate CONFIG_USB_BOOTING to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/mach-exynos/spl_boot.c | 6 +++--- include/configs/exynos5-common.h | 2 +- scripts/config_whitelist.txt | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/arm/mach-exynos/spl_boot.c b/arch/arm/mach-exynos/spl_boot.c index

[PoC 239/241] global: Migrate CONFIG_X86_REFCODE_ADDR to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/x86/cpu/broadwell/refcode.c | 2 +- arch/x86/dts/u-boot.dtsi | 2 +- include/configs/x86-chromebook.h | 2 +- scripts/config_whitelist.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/x86/cpu/broadwell/refcode.c

[PoC 238/241] global: Migrate CONFIG_X86_MRC_ADDR to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/x86/cpu/intel_common/mrc.c | 2 +- arch/x86/dts/u-boot.dtsi | 2 +- include/configs/x86-chromebook.h | 2 +- scripts/config_whitelist.txt | 3 ++- tools/binman/binman.rst | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git

[PoC 235/241] global: Migrate CONFIG_WATCHDOG_PRESC to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/powerpc/cpu/mpc85xx/cpu.c | 2 +- include/configs/kmcent2.h | 2 +- scripts/config_whitelist.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/powerpc/cpu/mpc85xx/cpu.c b/arch/powerpc/cpu/mpc85xx/cpu.c index

[PoC 237/241] global: Migrate CONFIG_X86EMU_RAW_IO to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- drivers/bios_emulator/besys.c | 18 +- include/configs/conga-qeval20-qa3-e3845.h | 2 +- include/configs/dfi-bt700.h | 2 +- include/configs/minnowmax.h | 2 +- include/configs/som-db5800-som-6867.h | 2

[PoC 223/241] global: Migrate CONFIG_UEC_ETH to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/powerpc/cpu/mpc83xx/cpu.c | 2 +- arch/powerpc/cpu/mpc8xxx/cpu.c | 2 +- board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c | 2 +- drivers/qe/uec.c| 16 include/configs/km/km-mpc83xx.h

[PoC 222/241] global: Migrate CONFIG_UBOOT_SECTOR_START to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/xpress.h | 4 ++-- scripts/config_whitelist.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/configs/xpress.h b/include/configs/xpress.h index 2b57ba34be9c..fc1b08360ce5 100644 --- a/include/configs/xpress.h +++

[PoC 233/241] global: Migrate CONFIG_VERY_BIG_RAM to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/include/asm/arch-ls102xa/config.h | 2 +- arch/xtensa/include/asm/config.h | 2 +- drivers/ram/mpc83xx_sdram.c| 2 +- include/configs/P2041RDB.h | 2 +- include/configs/T102xRDB.h | 2 +-

[PoC 226/241] global: Migrate CONFIG_USBD_HS to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- README | 2 +- drivers/serial/usbtty.c| 12 ++-- drivers/serial/usbtty.h| 2 +- drivers/usb/gadget/ep0.c | 2 +- include/configs/apalis_imx6.h | 2 +-

[PoC 229/241] global: Migrate CONFIG_USB_FAT_BOOT to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/p1_p2_rdb_pc.h | 2 +- scripts/config_whitelist.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/p1_p2_rdb_pc.h b/include/configs/p1_p2_rdb_pc.h index 19e20de248a2..9790b0ac896c 100644 ---

[PoC 225/241] global: Migrate CONFIG_USART_ID to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- drivers/serial/atmel_usart.c| 2 +- include/configs/corvus.h| 2 +- include/configs/sam9x60_curiosity.h | 2 +- include/configs/sam9x60ek.h | 2 +- include/configs/smartweb.h | 2 +- include/configs/taurus.h| 2 +-

[PoC 224/241] global: Migrate CONFIG_USART_BASE to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- drivers/serial/atmel_usart.c| 10 +- include/configs/corvus.h| 2 +- include/configs/sam9x60_curiosity.h | 2 +- include/configs/sam9x60ek.h | 2 +- include/configs/smartweb.h | 2 +- include/configs/taurus.h

[PoC 218/241] global: Migrate CONFIG_UBIFS_VOLUME to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/x530.h | 2 +- scripts/config_whitelist.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/x530.h b/include/configs/x530.h index f20a85cfa19a..6f8a393d0782 100644 --- a/include/configs/x530.h +++

[PoC 217/241] global: Migrate CONFIG_TSEC_TBICR_SETTINGS to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- drivers/net/tsec.c | 8 include/configs/P1010RDB.h | 2 +- scripts/config_whitelist.txt | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/net/tsec.c b/drivers/net/tsec.c index 734e10c563e0..7ad690a1c875 100644 ---

[PoC 220/241] global: Migrate CONFIG_UBOOTPATH to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/MPC837XERDB.h | 4 ++-- include/configs/MPC8548CDS.h | 4 ++-- include/configs/P1010RDB.h | 4 ++-- include/configs/P2041RDB.h | 4 ++-- include/configs/T102xRDB.h | 4 ++-- include/configs/T104xRDB.h | 4 ++--

[PoC 221/241] global: Migrate CONFIG_UBOOT_SECTOR_COUNT to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/xpress.h | 4 ++-- scripts/config_whitelist.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/configs/xpress.h b/include/configs/xpress.h index f8ee40a9543b..2b57ba34be9c 100644 --- a/include/configs/xpress.h +++

[PoC 215/241] global: Migrate CONFIG_TSEC4 to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- board/freescale/common/pixis.c | 2 +- board/freescale/mpc8548cds/mpc8548cds.c | 2 +- drivers/net/tsec.c | 2 +- include/configs/MPC8548CDS.h| 4 ++-- scripts/config_whitelist.txt| 4 ++-- 5 files changed, 7

[PoC 219/241] global: Migrate CONFIG_UBI_PART to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/x530.h | 2 +- scripts/config_whitelist.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/x530.h b/include/configs/x530.h index 6f8a393d0782..777b757babee 100644 --- a/include/configs/x530.h +++

[PoC 216/241] global: Migrate CONFIG_TSECV2 to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/powerpc/include/asm/config_mpc85xx.h | 18 +- arch/powerpc/include/asm/immap_85xx.h | 4 ++-- scripts/config_whitelist.txt | 4 ++-- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git

[PoC 214/241] global: Migrate CONFIG_TSEC3 to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- board/freescale/common/pixis.c | 2 +- board/freescale/mpc8548cds/mpc8548cds.c | 2 +- board/freescale/p1010rdb/p1010rdb.c | 2 +- board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c | 2 +- drivers/net/tsec.c | 2 +-

[PoC 213/241] global: Migrate CONFIG_TSEC2 to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- board/freescale/common/pixis.c | 2 +- board/freescale/mpc8548cds/mpc8548cds.c | 2 +- board/freescale/p1010rdb/p1010rdb.c | 2 +- board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c | 2 +- drivers/net/tsec.c | 2 +-

[PoC 211/241] global: Migrate CONFIG_TPM_TIS_BASE_ADDRESS to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- README| 2 +- include/configs/efi-x86_app.h | 2 +- include/configs/x86-common.h | 2 +- scripts/config_whitelist.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README b/README index 57ca5733dd64..aeb94d003f6a

[PoC 212/241] global: Migrate CONFIG_TSEC1 to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- board/freescale/common/pixis.c | 2 +- board/freescale/mpc8548cds/mpc8548cds.c | 2 +- board/freescale/p1010rdb/p1010rdb.c | 2 +- board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c | 2 +- drivers/net/tsec.c | 2 +-

[PoC 209/241] global: Migrate CONFIG_TESTPIN_REG to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- board/keymile/km83xx/km83xx.c | 2 +- include/configs/kmcoge5ne.h | 2 +- scripts/config_whitelist.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/board/keymile/km83xx/km83xx.c b/board/keymile/km83xx/km83xx.c index

[PoC 210/241] global: Migrate CONFIG_THOR_RESET_OFF to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- drivers/usb/gadget/f_thor.c | 4 ++-- drivers/usb/gadget/f_thor.h | 2 +- include/configs/xilinx_versal.h | 2 +- include/configs/xilinx_versal_net.h | 2 +- include/configs/xilinx_zynqmp.h | 2 +- include/configs/zynq-common.h | 2 +-

[PoC 208/241] global: Migrate CONFIG_TESTPIN_MASK to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- board/keymile/km83xx/km83xx.c | 2 +- include/configs/kmcoge5ne.h | 2 +- scripts/config_whitelist.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/board/keymile/km83xx/km83xx.c b/board/keymile/km83xx/km83xx.c index

[PoC 206/241] global: Migrate CONFIG_TEGRA_VDD_CORE_TPS62361B_SET3 to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/mach-tegra/tegra30/cpu.c | 2 +- include/configs/cardhu.h | 2 +- scripts/config_whitelist.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-tegra/tegra30/cpu.c b/arch/arm/mach-tegra/tegra30/cpu.c index

[PoC 207/241] global: Migrate CONFIG_TEGRA_VDD_CORE_TPS62366A_SET1 to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/mach-tegra/tegra30/cpu.c | 2 +- include/configs/beaver.h | 2 +- scripts/config_whitelist.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-tegra/tegra30/cpu.c b/arch/arm/mach-tegra/tegra30/cpu.c index

[PoC 204/241] global: Migrate CONFIG_TEGRA_UARTA_GPU to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/mach-tegra/board.c | 2 +- include/configs/trimslice.h | 2 +- scripts/config_whitelist.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-tegra/board.c b/arch/arm/mach-tegra/board.c index b4e30de509b7..e4f5540cab52

[PoC 205/241] global: Migrate CONFIG_TEGRA_UARTA_SDIO1 to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/mach-tegra/board.c | 2 +- include/configs/colibri_t20.h | 2 +- scripts/config_whitelist.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-tegra/board.c b/arch/arm/mach-tegra/board.c index e4f5540cab52..45bc1b8c9673

[PoC 203/241] global: Migrate CONFIG_TEGRA_SPI to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/mach-tegra/board2.c| 2 +- include/configs/tegra-common-post.h | 2 +- scripts/config_whitelist.txt| 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-tegra/board2.c b/arch/arm/mach-tegra/board2.c index

[PoC 202/241] global: Migrate CONFIG_TEGRA_SLINK_CTRLS to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/beaver.h | 2 +- include/configs/cardhu.h | 2 +- include/configs/tec-ng.h | 2 +- scripts/config_whitelist.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/configs/beaver.h b/include/configs/beaver.h index

[PoC 201/241] global: Migrate CONFIG_TEGRA_ENABLE_UARTD to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/mach-tegra/board.c | 2 +- include/configs/cei-tk1-som.h | 2 +- include/configs/dalmore.h | 2 +- include/configs/harmony.h | 2 +- include/configs/jetson-tk1.h | 2 +- include/configs/medcom-wide.h | 2 +- include/configs/plutux.h | 2 +-

[PoC 200/241] global: Migrate CONFIG_TEGRA_ENABLE_UARTA to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/mach-tegra/board.c | 2 +- include/configs/apalis-tk1.h | 2 +- include/configs/apalis_t30.h | 2 +- include/configs/beaver.h | 2 +- include/configs/cardhu.h | 2 +- include/configs/colibri_t20.h | 2 +- include/configs/colibri_t30.h | 2 +-

[PoC 199/241] global: Migrate CONFIG_TEGRA_BOARD_STRING to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/mach-tegra/board2.c | 2 +- include/configs/beaver.h | 2 +- include/configs/cardhu.h | 2 +- include/configs/cei-tk1-som.h | 2 +- include/configs/dalmore.h | 2 +- include/configs/harmony.h | 2 +- include/configs/jetson-tk1.h | 2 +-

[PoC 198/241] global: Migrate CONFIG_STD_DEVICES_SETTINGS to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/bayleybay.h | 2 +- include/configs/cherryhill.h | 2 +- include/configs/chromebook_coral.h| 4 ++-- include/configs/chromebook_samus.h| 4 ++-- include/configs/conga-qeval20-qa3-e3845.h | 2 +-

[PoC 195/241] global: Migrate CONFIG_SPI_N25Q256A_RESET to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/socfpga_sr1500.h | 2 +- scripts/config_whitelist.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/socfpga_sr1500.h b/include/configs/socfpga_sr1500.h index 70df27241ca6..30663c08f2e2 100644 ---

[PoC 197/241] global: Migrate CONFIG_STANDALONE_LOAD_ADDR to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- README| 2 +- arch/arc/config.mk| 2 +- arch/arm/config.mk| 6 +++--- arch/arm/include/asm/arch-fsl-layerscape/config.h | 2 +- arch/m68k/config.mk

[PoC 192/241] global: Migrate CONFIG_SPI_FLASH_QUAD to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/alt.h| 2 +- include/configs/porter.h | 2 +- include/configs/silk.h | 2 +- include/configs/stout.h | 2 +- scripts/config_whitelist.txt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git

[PoC 187/241] global: Migrate CONFIG_SMDK5420 to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/smdk5420.h | 8 scripts/config_whitelist.txt | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/configs/smdk5420.h b/include/configs/smdk5420.h index 0392530c0adf..e182625dd633 100644 ---

[PoC 189/241] global: Migrate CONFIG_SOCRATES to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/socrates.h | 2 +- scripts/config_whitelist.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/socrates.h b/include/configs/socrates.h index eb5c14fff28e..ddbd257d08a5 100644 --- a/include/configs/socrates.h

[PoC 184/241] global: Migrate CONFIG_SH_ETHER_USE_PORT to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- README | 2 +- drivers/net/sh_eth.c | 8 include/configs/alt.h| 2 +- include/configs/condor.h | 2 +- include/configs/gose.h | 2 +- include/configs/grpeach.h| 2 +- include/configs/koelsch.h| 2 +-

[PoC 185/241] global: Migrate CONFIG_SH_QSPI_BASE to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/blanche.h| 2 +- scripts/config_whitelist.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/blanche.h b/include/configs/blanche.h index dc74ed3e79d6..5bc3df06aa11 100644 --- a/include/configs/blanche.h +++

[PoC 182/241] global: Migrate CONFIG_SH_ETHER_PHY_ADDR to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- README | 2 +- drivers/net/sh_eth.c | 8 include/configs/alt.h| 2 +- include/configs/condor.h | 2 +- include/configs/gose.h | 2 +- include/configs/grpeach.h| 2 +- include/configs/koelsch.h| 2 +-

[PoC 188/241] global: Migrate CONFIG_SMP_PEN_ADDR to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/cpu/armv7/nonsec_virt.S | 4 ++-- board/samsung/arndale/arndale.c | 4 ++-- include/configs/arndale.h| 2 +- include/configs/km/pg-wcom-ls102xa.h | 2 +- include/configs/ls1021aiot.h | 2 +- include/configs/ls1021aqds.h |

[PoC 172/241] global: Migrate CONFIG_SCIF_A to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- drivers/serial/serial_sh.c | 2 +- drivers/serial/serial_sh.h | 8 include/configs/stout.h | 2 +- scripts/config_whitelist.txt | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/serial/serial_sh.c

[PoC 169/241] global: Migrate CONFIG_SANDBOX_SPI_MAX_CS to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/sandbox/include/asm/config.h | 4 ++-- arch/sandbox/include/asm/state.h | 2 +- drivers/spi/sandbox_spi.c | 2 +- scripts/config_whitelist.txt | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/sandbox/include/asm/config.h

[PoC 175/241] global: Migrate CONFIG_SERIAL_BOOT to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/m68k/cpu/mcf5445x/cpu_init.c | 2 +- arch/m68k/cpu/mcf5445x/start.S| 10 +- include/configs/stmark2.h | 2 +- scripts/config_whitelist.txt | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git

[PoC 150/241] global: Migrate CONFIG_PL01x_PORTS to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- README| 2 +- drivers/serial/serial_pl01x.c | 2 +- include/configs/lx2160a_common.h | 2 +- include/configs/mxs.h | 2 +- include/configs/s5p4418_nanopi2.h | 2 +- include/configs/synquacer.h | 2 +-

[PoC 191/241] global: Migrate CONFIG_SPI_BOOTING to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/mach-exynos/spl_boot.c | 6 +++--- include/configs/exynos5-dt-common.h | 2 +- scripts/config_whitelist.txt| 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/arm/mach-exynos/spl_boot.c b/arch/arm/mach-exynos/spl_boot.c

[PoC 181/241] global: Migrate CONFIG_SH_ETHER_CACHE_WRITEBACK to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- README | 2 +- drivers/net/sh_eth.c | 2 +- include/configs/alt.h| 2 +- include/configs/condor.h | 2 +- include/configs/gose.h | 2 +- include/configs/grpeach.h| 2 +- include/configs/koelsch.h| 2 +-

[PoC 183/241] global: Migrate CONFIG_SH_ETHER_PHY_MODE to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- drivers/net/sh_eth.c | 2 +- include/configs/alt.h| 2 +- include/configs/condor.h | 2 +- include/configs/gose.h | 2 +- include/configs/grpeach.h| 2 +- include/configs/koelsch.h| 2 +- include/configs/lager.h | 2 +-

[PoC 190/241] global: Migrate CONFIG_SPI_ADDR to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/mt7629.h | 4 ++-- scripts/config_whitelist.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/include/configs/mt7629.h b/include/configs/mt7629.h index d7700673f6f7..6fc851f2079c 100644 --- a/include/configs/mt7629.h +++

[PoC 193/241] global: Migrate CONFIG_SPI_FLASH_SIZE to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/beaver.h | 2 +- include/configs/cardhu.h | 2 +- include/configs/cei-tk1-som.h | 2 +- include/configs/dalmore.h | 2 +- include/configs/jetson-tk1.h | 2 +- include/configs/nyan-big.h| 2 +- include/configs/p2371-.h | 2 +-

[PoC 148/241] global: Migrate CONFIG_PHY_IRAM_BASE to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/mach-exynos/lowlevel_init.c | 6 +++--- include/configs/exynos5420-common.h | 2 +- scripts/config_whitelist.txt | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/arm/mach-exynos/lowlevel_init.c

[PoC 196/241] global: Migrate CONFIG_STACKBASE to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/tegra-common.h| 2 +- include/configs/tegra114-common.h | 2 +- include/configs/tegra124-common.h | 2 +- include/configs/tegra20-common.h | 2 +- include/configs/tegra30-common.h | 2 +- scripts/config_whitelist.txt | 2 +- 6 files changed,

[PoC 194/241] global: Migrate CONFIG_SPI_HALF_DUPLEX to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/mxs.h| 2 +- scripts/config_whitelist.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/mxs.h b/include/configs/mxs.h index 17b4295d2d6d..8d917dc12d2d 100644 --- a/include/configs/mxs.h +++

[PoC 186/241] global: Migrate CONFIG_SLIC to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c | 2 +- include/configs/p1_p2_rdb_pc.h | 4 ++-- scripts/config_whitelist.txt| 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c

[PoC 178/241] global: Migrate CONFIG_SET_DFU_ALT_BUF_LEN to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- board/samsung/common/misc.c | 2 +- include/configs/odroid.h | 2 +- include/configs/odroid_xu3.h | 2 +- scripts/config_whitelist.txt | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/board/samsung/common/misc.c b/board/samsung/common/misc.c

[PoC 177/241] global: Migrate CONFIG_SETUP_INITRD_TAG to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/legoev3.h| 2 +- scripts/config_whitelist.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/legoev3.h b/include/configs/legoev3.h index 3a0622ab0b3b..15864f20350d 100644 --- a/include/configs/legoev3.h +++

[PoC 147/241] global: Migrate CONFIG_PHY_INTERFACE_MODE to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- include/configs/socfpga_sr1500.h | 2 +- scripts/config_whitelist.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/socfpga_sr1500.h b/include/configs/socfpga_sr1500.h index 432144cb40ce..70df27241ca6 100644 ---

[PoC 146/241] global: Migrate CONFIG_PHY_ID to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- board/egnite/ethernut5/ethernut5.c | 2 +- include/configs/ethernut5.h| 2 +- scripts/config_whitelist.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/board/egnite/ethernut5/ethernut5.c b/board/egnite/ethernut5/ethernut5.c

[PoC 143/241] global: Migrate CONFIG_PEN_ADDR_BIG_ENDIAN to CFG

2022-11-20 Thread Tom Rini
Signed-off-by: Tom Rini --- arch/arm/cpu/armv7/nonsec_virt.S | 2 +- include/configs/ls1021aiot.h | 2 +- include/configs/ls1021aqds.h | 2 +- include/configs/ls1021atwr.h | 2 +- scripts/config_whitelist.txt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git

  1   2   3   >