Re: [PATCH 29/88] i2c: Rename I2C_MUX_PCA954x

2023-01-23 Thread Luca Ceresoli
Hi Simon, On Mon, 23 Jan 2023 14:59:32 -0700 Simon Glass wrote: > CONFIG options must not use lower-case letter. Convert this to upper case. > > Signed-off-by: Simon Glass > --- ... > configs/avnet_ultrazedev_cc_v1_0_ultrazedev_som_v1_0_defconfig | 2 +- FYI, this board has been removed from

[PATCH v6 3/3] ARM: tegra: include timer as default option

2023-01-23 Thread Svyatoslav Ryhel
Enable TIMER as default option for all Tegra devices and enable TEGRA_TIMER for TEGRA_ARMV7_COMMON. Additionally enable SPL_TIMER if build as SPL part and drop deprecated configs from common header. Signed-off-by: Svyatoslav Ryhel Reviewed-by: Simon Glass --- arch/arm/Kconfig | 1

[PATCH v6 1/3] ARM: tegra: remap clock_osc_freq for all Tegra family

2023-01-23 Thread Svyatoslav Ryhel
Enum clock_osc_freq was designed to use only with T20. This patch remaps it to use additional frequencies, added in T30+ SoC while maintaining backwards compatibility with T20. Tested-by: Andreas Westman Dorcsak # ASUS TF600T T30 Tested-by: Jonas Schwöbel # Surface RT T30 Tested-by: Robert Eckel

[PATCH v6 2/3] drivers: timer: add timer driver for ARMv7 based Tegra devices

2023-01-23 Thread Svyatoslav Ryhel
Add timer support for T20/T30/T114 and T124 based devices. Driver is based on DM, has device tree support and can be used on SPL and early boot stage. Arm64 Tegra according to comment in tegra-common.h uses architected timer. Tested-by: Andreas Westman Dorcsak # ASUS TF600T T30 Tested-by: Jonas

[PATCH v6 0/3] Timer support for ARM Tegra

2023-01-23 Thread Svyatoslav Ryhel
- ARM: tegra: remap clock_osc_freq for all Tegra family Enum clock_osc_freq was designed to use only with T20. This patch remaps it to use additional frequencies, added in T30+ SoC while maintaining backwards compatibility with T20. - drivers: timer: add timer driver for ARMv7 based Tegra devices

[PATCH v5 2/4] eficonfig: refactor change boot order implementation

2023-01-23 Thread Masahisa Kojima
This commit removes the change boot order specific menu implementation. The change boot order implementation calls eficonfig_process_common() same as other menus. The change boot order menu requires own item_data_print and item_choice implementation, but display_statusline function can be a same f

[PATCH v5 3/4] eficonfig: add vertical scroll support

2023-01-23 Thread Masahisa Kojima
The current eficonfig menu does not support vertical scroll, so it can not display the menu entries greater than the console row size. This commit add the vertial scroll support. The console size is retrieved by SIMPLE_TEXT_OUTPUT_PROTOCOL.QueryMode() service, then calculates the row size for menu

[PATCH v5 4/4] eficonfig: increase the number of menu entries

2023-01-23 Thread Masahisa Kojima
Current eficonfig has the maximum number of menu entries and it is 99. If there are more EFI load options and files in the system, eficonfig can not handle it. This commit increases this maximum number of menu entries to INT_MAX. Signed-off-by: Masahisa Kojima Reviewed-by: Ilias Apalodimas ---

[PATCH v5 1/4] eficonfig: refactor eficonfig_process_common function

2023-01-23 Thread Masahisa Kojima
Current change boot order implementation does not call eficonfig_process_common() and call own menu functions for display_statusline, item_data_print and item_choice. Change boot order functionality should call eficonfig_process_common() to improve maintenanceability. This commit is a preparation

[PATCH v5 0/4] eficonfig: add vertical scroll support and refactoring

2023-01-23 Thread Masahisa Kojima
This series aims to add the vertical scroll for the eficonfig menu. Before adding scroll support, this series does the refactoring of change boot order implementation since it has own menu handling and it should be removed to improve maintainability. The eficonfig menu handles file selection for E

Re: [PATCH v1 1/2] cmd: exit: add continue on key press command

2023-01-23 Thread Svyatoslav Ryhel
Hello Simon! Thanks for your review. Heinrich Schuchardt made a valid remark that command with such functionality already exists. It is called - pause - and my commit fully duplicates it. Pause command was merged 2022.09 while I have made this command approx. a year ago in my fork and did not che

Re: [PATCH v1 1/2] cmd: exit: add continue on key press command

2023-01-23 Thread Svyatoslav Ryhel
вт, 24 січ. 2023 р. о 00:43 Heinrich Schuchardt пише: > > > > Am 23. Januar 2023 23:25:41 MEZ schrieb Simon Glass : > >On Mon, 23 Jan 2023 at 13:04, Svyatoslav Ryhel wrote: > >> > >> This command stops performing script until any > >> key is pressed. It is useful for keeping logs > >> on screen u

Re: [PATCH 76/88] ppc: Makefile: Drop unused ppc4xx code

2023-01-23 Thread Stefan Roese
On 1/23/23 23:00, Simon Glass wrote: CONFIG_UBOOT_PAD_TO is not defined anywhere. Drop this dead code. Signed-off-by: Simon Glass --- Makefile | 11 --- 1 file changed, 11 deletions(-) diff --git a/Makefile b/Makefile index 5c5b3d2d651..fccc5a9e094 100644 --- a/Makefile +++ b/Makef

Re: [PATCH 12/88] arm: mvebu: Drop reference to CONFIG_ARMADA_39X

2023-01-23 Thread Stefan Roese
On 1/23/23 22:59, Simon Glass wrote: This is not defined anywhere. Drop it. Signed-off-by: Simon Glass --- arch/arm/mach-mvebu/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-mvebu/Makefile b/arch/arm/mach-mvebu/Makefile index 1a9dfc047c9..207ee1b6

Re: [PATCH 11/88] arm: mvebu: Correct reference to ARMADA_370

2023-01-23 Thread Stefan Roese
Hi Simon, On 1/23/23 22:59, Simon Glass wrote: Presumably this should be ARMADA_3700. Fix it. No. Please see below. Signed-off-by: Simon Glass --- arch/arm/mach-mvebu/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-mvebu/Makefile b/arch/arm/mac

Re: [PATCH 72/88] sh4: Drop unused kona_i2c driver

2023-01-23 Thread Heiko Schocher
Hello Simon, On 23.01.23 23:00, Simon Glass wrote: > This is not used. Drop the driver and Kconfig option. > > Signed-off-by: Simon Glass > --- > > drivers/i2c/Makefile | 1 - > drivers/i2c/kona_i2c.c | 728 - > 2 files changed, 729 deletions(-) > d

Re: [PATCH 29/88] i2c: Rename I2C_MUX_PCA954x

2023-01-23 Thread Heiko Schocher
Hello Simon, On 23.01.23 22:59, Simon Glass wrote: > CONFIG options must not use lower-case letter. Convert this to upper case. > > Signed-off-by: Simon Glass > --- > > arch/arm/mach-mvebu/Kconfig| 2 +- > configs/SBx81LIFKW_defconfig

Re: [PATCH v2 2/4] sunxi: binman: Move BL31 and SCP firmware addresses to Kconfig

2023-01-23 Thread Samuel Holland
Hi Simon, On 1/23/23 12:42, Simon Glass wrote: > HI Samuel, > > On Sun, 22 Jan 2023 at 14:16, Samuel Holland wrote: >> >> This is easier to read than the #ifdef staircase, provides better >> visibility into the memory map (alongside the other Kconfig >> definitions), and allows these addresses t

[PATCH v2 1/1] include: configs: am62x_evm: Add .env file for Am62x

2023-01-23 Thread Nikhil M Jain
Use .env file for setting board related environment variables, in place of am62x_evm.h file. Except for BOOTENV settings, as config_distro_boot.env file doesn't exist. Signed-off-by: Nikhil M Jain --- board/ti/am62x/am62x.env| 103 include/configs/am62x_e

[PATCH v2 0/1] Use .env file for environment variables

2023-01-23 Thread Nikhil M Jain
Add .env file for setting up environment variable fot AM62x. Nikhil M Jain (1): include: configs: am62x_evm: Add .env file for Am62x board/ti/am62x/am62x.env| 103 include/configs/am62x_evm.h | 43 --- 2 files changed, 103 insertions(+), 43

Re: [PATCH v4 3/4] eficonfig: add vertical scroll support

2023-01-23 Thread Masahisa Kojima
Hi Ilias, On Tue, 24 Jan 2023 at 00:07, Ilias Apalodimas wrote: > > On Fri, Jan 20, 2023 at 05:43:57PM +0900, Masahisa Kojima wrote: > > The current eficonfig menu does not support vertical scroll, > > so it can not display the menu entries greater than > > the console row size. > > > > This comm

Re: [PATCH 3/5] usb: dwc3-generic: Add dependency on SIMPLE_BUS

2023-01-23 Thread Kunihiko Hayashi
Hi Marek, On 2023/01/24 0:49, Marek Vasut wrote: On 1/23/23 06:01, Kunihiko Hayashi wrote: Hi Marek, Hello Hayashi-san, [...] On the other hand, the PXS2 controller for example is not a bus: arch/arm/dts/uniphier-pxs2.dtsi: 596 _usb0: usb@65a0 { 597 compatible = "socionext,uniphie

Re: [PATCH] arch/riscv/dts: Fix uart reg-shift on fu540/fu740 SiFive devices

2023-01-23 Thread Alexander von Gluck IV
January 23, 2023 8:08 PM, "Alexander von Gluck IV" wrote: > * Not specifying reg-shift creates a situation where the register > shift is unknown and can only be decoded via special compat > cases. > * The device tree specification states: > "...reg-shift. If unspecified, the default value is 0."

[PATCH] arch/riscv/dts: Fix uart reg-shift on fu540/fu740 SiFive devices

2023-01-23 Thread Alexander von Gluck IV
* Not specifying reg-shift creates a situation where the register shift is unknown and can only be decoded via special compat cases. * The device tree specification states: "...reg-shift. If unspecified, the default value is 0." https://devicetree-specification.readthedocs.io/en/latest/ch

Re: [PATCH v3 12/70] dm: part: Update test to use mmc2

2023-01-23 Thread Tom Rini
On Tue, Jan 17, 2023 at 10:47:22AM -0700, Simon Glass wrote: > At present this test sets up a partition table on mmc1. But this is used > by the bootstd tests, so it is not possible to run those after this test > has run, without restarting the Python test harness. > > This is inconvenient when r

Re: [PATCH v2 00/17] Basic StarFive JH7110 RISC-V SoC support

2023-01-23 Thread Heinrich Schuchardt
On 1/18/23 09:11, Yanhong Wang wrote: This series of patches base on the latest branch/master, and add support for the StarFive JH7110 RISC-V SoC and VisionFive V2 board. In order for this to be achieved, the respective DT nodes have been added, and the required defconfigs have been added to

[PATCH 1/1] efi_loader: fix comment in ESRT code

2023-01-23 Thread Heinrich Schuchardt
There is no variable num_pages in function efi_esrt_allocate_install(). Signed-off-by: Heinrich Schuchardt --- lib/efi_loader/efi_esrt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/efi_loader/efi_esrt.c b/lib/efi_loader/efi_esrt.c index dcc08a6d3a..7f46d651e6 100644 -

Re: [PATCH] tools: mkimage: Allow changing U-Boot image magic

2023-01-23 Thread Hauke Mehrtens
On 1/23/23 19:49, Simon Glass wrote: Hi, On Sun, 22 Jan 2023 at 07:20, Hauke Mehrtens wrote: Extend mkimage with a new optional option -M to specify a special U-Boot image magic number. OpenWrt ships images for about 30 different boards with vendor boot loaders which are expecting the mkimage

Re: [PATCH v1 1/2] cmd: exit: add continue on key press command

2023-01-23 Thread Heinrich Schuchardt
Am 23. Januar 2023 23:25:41 MEZ schrieb Simon Glass : >On Mon, 23 Jan 2023 at 13:04, Svyatoslav Ryhel wrote: >> >> This command stops performing script until any >> key is pressed. It is useful for keeping logs >> on screen until user decides to continue. >> >> Co-developed-by: Jonas Schwöbel

[PATCH] usb: host: ehci-generic: Handle DM_RESET=n case

2023-01-23 Thread Marek Vasut
In case CONFIG_DM_RESET=n, reset_get_bulk() returns -ENOTSUPP. Do not fail in that case either. This is a valid use case, e.g. in case the reset driver is a no-op and would only waste space in the build. Fixes: 81755b8c20f ("usb: host: ehci-generic: Make resets and clocks optional") Signed-off-by:

[PATCH 80/88] rmobile: Drop unused ehci-rmobile driver

2023-01-23 Thread Simon Glass
This is not used. Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- .../mach-rmobile/include/mach/ehci-rmobile.h | 146 -- drivers/usb/host/Makefile | 1 - drivers/usb/host/ehci-rmobile.c | 129 3 files chang

[PATCH 85/88] watchdog: Rename WDT_MPC8xx

2023-01-23 Thread Simon Glass
CONFIG options must not use lower-case letter. Convert this to upper case. Signed-off-by: Simon Glass --- arch/powerpc/Kconfig | 2 +- drivers/watchdog/Kconfig | 2 +- drivers/watchdog/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/powerpc/Kconfig b/a

[PATCH 88/88] fdt: Drop use of non-existent OF_PLATDATA option

2023-01-23 Thread Simon Glass
These are only present in SPL. Drop the references to non-SPL versions. Signed-off-by: Simon Glass --- dts/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dts/Kconfig b/dts/Kconfig index bc5f22029ff..44cc6bf1f6f 100644 --- a/dts/Kconfig +++ b/dts/Kconfig @@ -21,8

[PATCH 44/88] imx: Rename CONFIG_MXS to CFG_MXS

2023-01-23 Thread Simon Glass
This is not a Kconfig option so we should not be setting it in the Makefile. Rename it to use a CFS_ prefix, since this is still used in mxsimage.c In general tools should support all the features without reference to CONFIG options, but this is left to the maintainer to look at. Signed-off-by: S

[PATCH 36/88] m68k: Rename MCF5441x

2023-01-23 Thread Simon Glass
CONFIG options must not use lower-case letter. Convert this to upper case. Signed-off-by: Simon Glass --- arch/m68k/Kconfig | 4 ++-- arch/m68k/Makefile | 4 ++-- arch/m68k/cpu/mcf5445x/cpu_init.c | 12 ++-- arch/m68k/cpu/mcf5445x/dspi.c | 4

[PATCH 04/88] nand: Drop CONFIG_NAND_SPEAR

2023-01-23 Thread Simon Glass
This is not used anymore. Drop it. Signed-off-by: Simon Glass --- drivers/mtd/nand/raw/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/mtd/nand/raw/Makefile b/drivers/mtd/nand/raw/Makefile index 7320d581e2f..4c59903aa8c 100644 --- a/drivers/mtd/nand/raw/Makefile +++ b/driver

[PATCH 12/88] arm: mvebu: Drop reference to CONFIG_ARMADA_39X

2023-01-23 Thread Simon Glass
This is not defined anywhere. Drop it. Signed-off-by: Simon Glass --- arch/arm/mach-mvebu/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-mvebu/Makefile b/arch/arm/mach-mvebu/Makefile index 1a9dfc047c9..207ee1b6b89 100644 --- a/arch/arm/mach-mvebu/Make

[PATCH 11/88] arm: mvebu: Correct reference to ARMADA_370

2023-01-23 Thread Simon Glass
Presumably this should be ARMADA_3700. Fix it. Signed-off-by: Simon Glass --- arch/arm/mach-mvebu/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-mvebu/Makefile b/arch/arm/mach-mvebu/Makefile index a23511b113b..1a9dfc047c9 100644 --- a/arch/arm/mach-mv

[PATCH 29/88] i2c: Rename I2C_MUX_PCA954x

2023-01-23 Thread Simon Glass
CONFIG options must not use lower-case letter. Convert this to upper case. Signed-off-by: Simon Glass --- arch/arm/mach-mvebu/Kconfig| 2 +- configs/SBx81LIFKW_defconfig | 2 +- configs/SBx81LIFXCAT_defconfig

[PATCH 15/88] cmd: Add an option to enable the ini command

2023-01-23 Thread Simon Glass
This command has no Kconfig option at present, but seems useful enough to keep around. Add one. Signed-off-by: Simon Glass --- cmd/Kconfig | 7 +++ 1 file changed, 7 insertions(+) diff --git a/cmd/Kconfig b/cmd/Kconfig index b3c1fcaf6e6..8b8619a18f4 100644 --- a/cmd/Kconfig +++ b/cmd/Kconf

[PATCH 35/88] m68k: Rename MCF532x

2023-01-23 Thread Simon Glass
CONFIG options must not use lower-case letter. Convert this to upper case. Signed-off-by: Simon Glass --- arch/m68k/Kconfig | 6 +++--- arch/m68k/Makefile| 2 +- arch/m68k/cpu/mcf532x/cpu.c | 2 +- arch/m68k/cpu/mcf532x/cpu_init.c | 4 +

[PATCH 26/88] freescale: Drop unused pixis code

2023-01-23 Thread Simon Glass
Drop this unused code. Signed-off-by: Simon Glass --- board/freescale/common/Makefile | 1 - board/freescale/common/pixis.c | 470 board/freescale/common/pixis.h | 54 3 files changed, 525 deletions(-) delete mode 100644 board/freescale/common/pixis.c

[PATCH 09/88] sandbox: Drop reference to CONFIG_ARCH_DEVICE_TREE

2023-01-23 Thread Simon Glass
This is not used anywhere. Drop it. Signed-off-by: Simon Glass --- arch/sandbox/config.mk | 2 -- 1 file changed, 2 deletions(-) diff --git a/arch/sandbox/config.mk b/arch/sandbox/config.mk index 1284ef390b5..2d184c5f652 100644 --- a/arch/sandbox/config.mk +++ b/arch/sandbox/config.mk @@ -44,8

[PATCH 07/88] Makefile: Drop CONFIG_AIS_CONFIG_FILE

2023-01-23 Thread Simon Glass
This is not defined anywhere. Drop it. Signed-off-by: Simon Glass --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index eb354c045c0..da395274225 100644 --- a/Makefile +++ b/Makefile @@ -1527,8 +1527,7 @@ MKIMAGEFLAGS_u-boot.ubl = -n $(UBL_C

[PATCH 17/88] Correct CONFIG_CONTROLCENTERDC

2023-01-23 Thread Simon Glass
This option does not exist but presumably means to point to CONFIG_TARGET_CONTROLCENTERDC. Fix it. Signed-off-by: Simon Glass --- board/gdsys/common/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/gdsys/common/Makefile b/board/gdsys/common/Makefile index dd6d5

[PATCH 14/88] rockchip: Correct a reference to CONFIG_BOOT_MODE_REG

2023-01-23 Thread Simon Glass
This option does not exist and should refer to CONFIG_ROCKCHIP_BOOT_MODE_REG instead. Fix it. Signed-off-by: Simon Glass --- arch/arm/mach-rockchip/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-rockchip/Makefile b/arch/arm/mach-rockchip/Makefile inde

[PATCH 32/88] video: Drop unused lg4573 driver

2023-01-23 Thread Simon Glass
This is not used since this commit: 3cf02f5ffa4 imx6: remove not longer supported aristainetos boards Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- drivers/video/Makefile | 1 - drivers/video/lg4573.c | 331 - 2 files changed,

[PATCH 16/88] cmd: Drop mfsl command

2023-01-23 Thread Simon Glass
This is not used anywhere. Drop it. Signed-off-by: Simon Glass --- cmd/Makefile | 1 - cmd/mfsl.c | 387 --- 2 files changed, 388 deletions(-) delete mode 100644 cmd/mfsl.c diff --git a/cmd/Makefile b/cmd/Makefile index 0b6a96c1d91..4adc7530

[PATCH 59/88] power: Drop unused muic_max8997 driver

2023-01-23 Thread Simon Glass
This is not used. Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- drivers/power/pmic/Makefile | 1 - drivers/power/pmic/muic_max8997.c | 74 --- 2 files changed, 75 deletions(-) delete mode 100644 drivers/power/pmic/muic_max8997.c diff --g

[PATCH 06/88] gpio: Drop adi_gpio2

2023-01-23 Thread Simon Glass
Drop this unused driver. Signed-off-by: Simon Glass --- drivers/gpio/Makefile| 1 - drivers/gpio/adi_gpio2.c | 425 --- 2 files changed, 426 deletions(-) delete mode 100644 drivers/gpio/adi_gpio2.c diff --git a/drivers/gpio/Makefile b/drivers/gpio/Mak

Re: [PATCH 29/88] i2c: Rename I2C_MUX_PCA954x

2023-01-23 Thread Chris Packham
Hi Simon On 24/01/23 10:59, Simon Glass wrote: > CONFIG options must not use lower-case letter. Convert this to upper case. > > Signed-off-by: Simon Glass > --- > > configs/SBx81LIFKW_defconfig | 2 +- > configs/SBx81LIFXCAT_defconfig

Re: [PATCH] test: bootdev: Do not require USB to compile test

2023-01-23 Thread Simon Glass
On Mon, 23 Jan 2023 at 15:07, Linus Walleij wrote: > > This test will block compilation of the entire test suite > on platforms without USB support. Make the extern > "usb_started" conditional on USB host or gadget and > define a dummy flag if neither is enabled. > > Cc: Simon Glass > Signed-off-

Re: [PATCH 1/1] doc: rework doc/mkeficapsule.1

2023-01-23 Thread Simon Glass
Hi Heinrich, On Mon, 23 Jan 2023 at 11:50, Heinrich Schuchardt wrote: > > On 1/23/23 19:42, Simon Glass wrote: > > Hi Heinrich, > > > > On Mon, 23 Jan 2023 at 04:24, Heinrich Schuchardt > > wrote: > >> > >> * Indicate the location of the directory for EFI capsules. > >> * Improve the readability

Re: [PATCH v1 1/2] cmd: exit: add continue on key press command

2023-01-23 Thread Simon Glass
On Mon, 23 Jan 2023 at 13:04, Svyatoslav Ryhel wrote: > > This command stops performing script until any > key is pressed. It is useful for keeping logs > on screen until user decides to continue. > > Co-developed-by: Jonas Schwöbel > Signed-off-by: Jonas Schwöbel > Signed-off-by: Svyatoslav Ryh

Re: [PATCH v3 2/6] tpm: Support boot measurements

2023-01-23 Thread Simon Glass
Hi Ilias, On Mon, 16 Jan 2023 at 03:51, Ilias Apalodimas wrote: > > Hi Simon, > > [...] > > > > >> > > > > [..] > > > > > > > >> +static int tcg2_log_init(struct udevice *dev, struct tcg2_event_log > > > >> *elog) > > > >> +{ > > > >> + struct tcg_efi_spec_id_event *ev; > > > > We cannot a

[PATCH 02/88] treewide: Correct invalid Kconfig syntax and warnings

2023-01-23 Thread Simon Glass
In several places a 'select' is used to select a choice, which is not supported by Kconfig. In other places, the filename for the 'source' command is not in quites. Fix these two problems throughout the tree, so that kconfiglib does not show any more warnings. Signed-off-by: Simon Glass --- ar

[PATCH 65/88] rmobile: Drop CONFIG_SH73A0 and associated code

2023-01-23 Thread Simon Glass
This option does not exist, so the code attached to it is not used. Drop it. Signed-off-by: Simon Glass --- arch/arm/mach-rmobile/Makefile|1 - arch/arm/mach-rmobile/cpu_info-sh73a0.c | 43 - arch/arm/mach-rmobile/cpu_info.c |1 - arch/arm/mach-rmobi

[PATCH 40/88] ppc: Rename MPC83xx

2023-01-23 Thread Simon Glass
CONFIG options must not use lower-case letter. Convert this to upper case. Signed-off-by: Simon Glass --- api/api_platform-powerpc.c | 2 +- arch/Kconfig | 2 +- arch/powerpc/Kconfig | 8 arch/powerpc/cpu/Makefile

[PATCH 82/88] usb: Drop unused sl811-hcd driver

2023-01-23 Thread Simon Glass
This is not used. Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- drivers/usb/host/Makefile| 1 - drivers/usb/host/sl811-hcd.c | 714 --- drivers/usb/host/sl811.h | 104 - 3 files changed, 819 deletions(-) delete mode 100644 driv

[PATCH 87/88] freescale: Drop unused zm7300 driver

2023-01-23 Thread Simon Glass
This is not used anymore. Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- board/freescale/common/Makefile | 1 - board/freescale/common/zm7300.c | 232 board/freescale/common/zm7300.h | 21 --- 3 files changed, 254 deletions(-) delete mode

[PATCH 20/88] Makefile: Avoid use of invalid CONFIG_ option

2023-01-23 Thread Simon Glass
This appears in a comment but is not a real option. Drop it. Signed-off-by: Simon Glass --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index da395274225..92a95361982 100644 --- a/Makefile +++ b/Makefile @@ -1082,7 +1082,7 @@ expect = $(forea

[PATCH 76/88] ppc: Makefile: Drop unused ppc4xx code

2023-01-23 Thread Simon Glass
CONFIG_UBOOT_PAD_TO is not defined anywhere. Drop this dead code. Signed-off-by: Simon Glass --- Makefile | 11 --- 1 file changed, 11 deletions(-) diff --git a/Makefile b/Makefile index 5c5b3d2d651..fccc5a9e094 100644 --- a/Makefile +++ b/Makefile @@ -1647,17 +1647,6 @@ OBJCOPYFLAGS_u

[PATCH 13/88] ppc: Drop bat_rw

2023-01-23 Thread Simon Glass
Drop this unused driver. Signed-off-by: Simon Glass --- arch/powerpc/lib/Makefile | 1 - arch/powerpc/lib/bat_rw.c | 244 -- 2 files changed, 245 deletions(-) delete mode 100644 arch/powerpc/lib/bat_rw.c diff --git a/arch/powerpc/lib/Makefile b/arch/power

[PATCH 75/88] sh4: Drop unused twl6030 driver

2023-01-23 Thread Simon Glass
This is not used. Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- drivers/input/Makefile | 1 - drivers/input/twl6030.c | 47 - 2 files changed, 48 deletions(-) delete mode 100644 drivers/input/twl6030.c diff --git a/drivers/input/M

[PATCH 25/88] misc: Drop mc9sdz60 driver

2023-01-23 Thread Simon Glass
Drop this unused driver. Signed-off-by: Simon Glass --- drivers/misc/Makefile | 1 - drivers/misc/mc9sdz60.c | 34 -- 2 files changed, 35 deletions(-) delete mode 100644 drivers/misc/mc9sdz60.c diff --git a/drivers/misc/Makefile b/drivers/misc/Makefile index

[PATCH 08/88] misc: Drop ali512x

2023-01-23 Thread Simon Glass
Drop this unused driver. Signed-off-by: Simon Glass --- drivers/misc/Makefile | 1 - drivers/misc/ali512x.c | 401 - 2 files changed, 402 deletions(-) delete mode 100644 drivers/misc/ali512x.c diff --git a/drivers/misc/Makefile b/drivers/misc/Makefil

[PATCH 03/88] power: Drop fg_max77693

2023-01-23 Thread Simon Glass
This is not used in U-Boot. Drop it. Signed-off-by: Simon Glass --- drivers/power/mfd/Makefile | 1 - drivers/power/mfd/fg_max77693.c | 137 2 files changed, 138 deletions(-) delete mode 100644 drivers/power/mfd/fg_max77693.c diff --git a/drivers/power/

[PATCH 49/88] mtd: Drop unused nand_plat driver

2023-01-23 Thread Simon Glass
This is not used since this commit: 936478e797a SPARC: Remove Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- drivers/mtd/nand/raw/Makefile| 1 - drivers/mtd/nand/raw/nand_plat.c | 65 2 files changed, 66 deletions(-) delete mode 10

[PATCH 10/88] Rename ARCH_NPCM7xx

2023-01-23 Thread Simon Glass
CONFIG options must not use lower-case letter. Convert this to upper case. Signed-off-by: Simon Glass --- arch/arm/dts/Makefile | 2 +- arch/arm/mach-npcm/Kconfig | 4 ++-- arch/arm/mach-npcm/Makefile| 2 +- arch/arm/mach-npcm/npcm7xx/Kconfig | 2 +- drivers/clk/nuv

[PATCH] test: bootdev: Do not require USB to compile test

2023-01-23 Thread Linus Walleij
This test will block compilation of the entire test suite on platforms without USB support. Make the extern "usb_started" conditional on USB host or gadget and define a dummy flag if neither is enabled. Cc: Simon Glass Signed-off-by: Linus Walleij --- test/boot/bootdev.c | 4 1 file change

[PATCH 70/88] sysreset: at91: Correct Makefile rule for SYSRESET_AT91

2023-01-23 Thread Simon Glass
The SPL_TPL part is in the wrong place. Fix it. Signed-off-by: Simon Glass Fixes: 71d4393f846 ("sysreset: Add Atmel/Microchip sysreset driver") --- drivers/sysreset/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/sysreset/Makefile b/drivers/sysreset/Makefile

[PATCH 74/88] freescale: Drop CONFIG_TARGET_MPC8536DS et al

2023-01-23 Thread Simon Glass
This option as well as CONFIG_TARGET_P1022DS and CONFIG_TARGET_P5020DS are not defined anywhere. Drop them. Signed-off-by: Simon Glass --- board/freescale/common/Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/board/freescale/common/Makefile b/board/freescale/common/Makefile inde

[PATCH 60/88] freescale: Drop unused pq-mds-pib driver

2023-01-23 Thread Simon Glass
This is not used. Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- board/freescale/common/Makefile | 1 - board/freescale/common/pq-mds-pib.c | 60 - board/freescale/common/pq-mds-pib.h | 9 - 3 files changed, 70 deletions(-) delete mode

[PATCH 79/88] usb: Drop unused fotg210 gadget

2023-01-23 Thread Simon Glass
This is not used and appears to be associated with the faraday board which has been removed. Drop the driver and Kconfig options. Signed-off-by: Simon Glass --- drivers/usb/gadget/Makefile | 3 +- drivers/usb/gadget/fotg210.c | 964 -- drivers/usb/gadget

[PATCH 77/88] armada: usb: net: Drop unused USB drivers

2023-01-23 Thread Simon Glass
These are not used. Drop the drivers and Kconfig option. Also drop an old declaration in the netdev.h header. Signed-off-by: Simon Glass --- drivers/usb/host/Makefile | 1 - drivers/usb/host/ehci-armada100.c | 48 --- drivers/usb/host/utmi-armada100.c | 80 -

[PATCH 71/88] gdsys: Drop unused fpga file

2023-01-23 Thread Simon Glass
This is not used since CONFIG_SYS_FPGA_COMMON is not defined anywhere. Drop the code and the Makefile rule. Signed-off-by: Simon Glass --- board/gdsys/common/Makefile | 1 - board/gdsys/common/fpga.c | 28 2 files changed, 29 deletions(-) delete mode 100644 boar

[PATCH 73/88] compulab: Drop CONFIG_TARGET_MCM_IMX8M_MINI

2023-01-23 Thread Simon Glass
This option is not defined anywhere. Drop it. Signed-off-by: Simon Glass --- board/compulab/imx8mm-cl-iot-gate/ddr/Makefile | 4 1 file changed, 4 deletions(-) diff --git a/board/compulab/imx8mm-cl-iot-gate/ddr/Makefile b/board/compulab/imx8mm-cl-iot-gate/ddr/Makefile index 5914796628d..

[PATCH 68/88] arm: Rename STM32MP13x

2023-01-23 Thread Simon Glass
CONFIG options must not use lower-case letter. Convert this and related ones to upper case. Signed-off-by: Simon Glass --- arch/arm/dts/Makefile | 2 +- arch/arm/mach-stm32mp/Kconfig | 4 ++-- arch/arm/mach-stm32mp/Kconfig.13x | 4 ++-- arch/arm/mac

[PATCH 69/88] arm: Rename STM32MP15x

2023-01-23 Thread Simon Glass
CONFIG options must not use lower-case letter. Convert this and related ones to upper case. Signed-off-by: Simon Glass --- arch/arm/dts/Makefile | 2 +- arch/arm/dts/stm32mp15-u-boot.dtsi | 2 +- arch/arm/dts/stm32mp157a-dk1-u-boot.dtsi | 4 ++-- ar

[PATCH 67/88] Drop ubsha1 tool

2023-01-23 Thread Simon Glass
This seems to have been used by ppc4xx which was removed a while back. The Kconfig does not exist so it is never built. Drop it. Signed-off-by: Simon Glass --- Makefile | 3 -- tools/.gitignore | 1 - tools/Makefile | 6 tools/ubsha1.c | 83 --

[PATCH 62/88] rtc: Drop old and unused drivers

2023-01-23 Thread Simon Glass
These drivers are not used and have not been converted to driver model. Drop them and references to the non-existent CONFIG options they use. Signed-off-by: Simon Glass --- drivers/rtc/Makefile | 14 -- drivers/rtc/at91sam9_rtt.c | 78 --- drivers/rtc/ds1302.c | 329 --

[PATCH 66/88] sh4: Drop unused pci_sh7780 driver

2023-01-23 Thread Simon Glass
This is not used. Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- arch/sh/include/asm/pci.h | 2 - drivers/pci/Makefile | 1 - drivers/pci/pci_sh7780.c | 92 --- 3 files changed, 95 deletions(-) delete mode 100644 drivers/pci/pci_s

[PATCH 64/88] mtd: Drop unused scf0403_lcd driver

2023-01-23 Thread Simon Glass
This is not used since this commit: 76386d6195a arm: Remove cm_t35 board Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- drivers/video/Makefile | 1 - drivers/video/scf0403_lcd.c | 297 include/scf0403_lcd.h | 10 -- 3 f

[PATCH 56/88] power: Drop unused bat_trats driver and battery code

2023-01-23 Thread Simon Glass
This driver and bat_trats2 are not used. Drop them and the entire battery directory, since there is nothing left. Signed-off-by: Simon Glass --- drivers/power/Makefile | 1 - drivers/power/battery/Makefile | 7 --- drivers/power/battery/bat_trats.c | 91 --

[PATCH 63/88] mtd: Drop unused CONFIG_S32V234

2023-01-23 Thread Simon Glass
This option does not exist, so the Makefile rule does nothing. Drop it. Signed-off-by: Simon Glass --- arch/arm/cpu/armv8/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/cpu/armv8/Makefile b/arch/arm/cpu/armv8/Makefile index 2e4bf9e038c..bba4f570dbb 100644 --- a/arch/arm/cp

[PATCH 78/88] usb: Drop unused ehci-faraday driver

2023-01-23 Thread Simon Glass
This is not used. Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- common/usb_hub.c| 18 drivers/usb/host/Makefile | 1 - drivers/usb/host/ehci-faraday.c | 144 drivers/usb/host/ehci-hcd.c | 5 -- include/usb

[PATCH 81/88] usb: Drop unused ehci-vct driver

2023-01-23 Thread Simon Glass
This is not used. Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- drivers/usb/host/Makefile | 1 - drivers/usb/host/ehci-vct.c | 44 - 2 files changed, 45 deletions(-) delete mode 100644 drivers/usb/host/ehci-vct.c diff --git a/drivers

[PATCH 61/88] rmobile: Drop CONFIG_RMOBILE

2023-01-23 Thread Simon Glass
This has been renamed to CONFIG_ARCH_RMOBILE but this one was left behind. It doesn't point to a directory that exists, so just drop it. Signed-off-by: Simon Glass --- arch/arm/cpu/armv7/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/cpu/armv7/Makefile b/arch/arm/cpu/armv7

[PATCH 57/88] power: Drop unused fg_max17042 driver and fuel gauge code

2023-01-23 Thread Simon Glass
This driver is not used. Drop it and the entire fuel_gauge directory, since there is nothing left. Signed-off-by: Simon Glass --- drivers/power/Makefile | 1 - drivers/power/fuel_gauge/Makefile | 6 - drivers/power/fuel_gauge/fg_max17042.c | 287

[PATCH 58/88] power: Drop unused muic_max77693 driver and mfd code

2023-01-23 Thread Simon Glass
This driver is not used and has lain unconverted since: fc47cf9d054 arm: exynos: i2c: Convert exynos boards to use DM_I2C Drop it and the entire mfd directory, since there is nothing left. Signed-off-by: Simon Glass --- drivers/power/Makefile| 1 - drivers/power/mfd/Makefile

[PATCH 54/88] gpio: Drop unused pca9698 driver

2023-01-23 Thread Simon Glass
This is not used. Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- arch/mips/mach-octeon/octeon_fdt.c | 43 +- board/gdsys/a38x/hre.c | 1 - drivers/gpio/Makefile | 1 - drivers/gpio/pca9698.c | 127

[PATCH 55/88] samsung: Rename PINCTRL_EXYNOS78x0

2023-01-23 Thread Simon Glass
CONFIG options must not use lower-case letter. Convert this to upper case. Signed-off-by: Simon Glass --- arch/arm/mach-exynos/Kconfig| 6 +++--- drivers/pinctrl/exynos/Kconfig | 2 +- drivers/pinctrl/exynos/Makefile | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ar

[PATCH 53/88] ppc: Drop unused CONFIG_P2020DS

2023-01-23 Thread Simon Glass
This option does not exist, so the Makefile rule does nothing. Drop it. Signed-off-by: Simon Glass --- board/freescale/common/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/board/freescale/common/Makefile b/board/freescale/common/Makefile index fc51d6d3e18..9d5f38bb225 100644 --- a

[PATCH 47/88] mtd: Drop unused fsmc_nand driver

2023-01-23 Thread Simon Glass
This is not used since this commit: 570c3dcfc15 arm: Remove spear600 boards and the rest of SPEAr support Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- drivers/mtd/nand/raw/Makefile| 1 - drivers/mtd/nand/raw/fsmc_nand.c | 470 --- inc

[PATCH 52/88] mtd: Drop unused CONFIG_ONENAND_U_BOOT

2023-01-23 Thread Simon Glass
This option does not exist, so the Makefile rule does nothing. Drop it. Signed-off-by: Simon Glass --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 59377362f75..59b5b108168 100644 --- a/Makefile +++ b/Makefile @@ -956,7 +956,6 @@ endif # Always append I

[PATCH 50/88] Makefile: Drop CONFIG_OF_EARLY_FLATTREE

2023-01-23 Thread Simon Glass
This option does not exist, so drop the dead code. Signed-off-by: Simon Glass --- Makefile | 4 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index 92a95361982..59377362f75 100644 --- a/Makefile +++ b/Makefile @@ -2003,10 +2003,6 @@ dtbs: prepare3 scripts_dtc dtbs_insta

[PATCH 48/88] mtd: Drop unused kb9202_nand driver

2023-01-23 Thread Simon Glass
This is not used since time out of mind. Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- drivers/mtd/nand/raw/Makefile | 1 - drivers/mtd/nand/raw/kb9202_nand.c | 134 - 2 files changed, 135 deletions(-) delete mode 100644 drivers/mtd/nand

[PATCH 51/88] omap: Drop unused CONFIG_OMAP_USB_PHY

2023-01-23 Thread Simon Glass
This option does not exist, so the Makefile rule does nothing. Drop it. Signed-off-by: Simon Glass --- drivers/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/Makefile b/drivers/Makefile index 83b14ef1fd3..15d19d0c8a3 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -

[PATCH 45/88] nand: Drop unused actl_nand driver

2023-01-23 Thread Simon Glass
This is not used since this commit: ed7fe2bee12 ppc: Remove xpedite boards Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- board/xes/common/Makefile| 1 - board/xes/common/actl_nand.c | 49 2 files changed, 50 deletions(-) delet

[PATCH 46/88] mtd: Drop unused fsl_upm driver

2023-01-23 Thread Simon Glass
This is not used since this commit: 8d1e3cb1400 powerpc: mpc83xx: remove MPC8360ERDK, EMPC8360EMDS support Drop the driver and Kconfig option. Signed-off-by: Simon Glass --- drivers/mtd/nand/raw/Makefile | 1 - drivers/mtd/nand/raw/fsl_upm.c | 187 - incl

  1   2   3   >