Remove ns16550 configuration from header files. Document
DM_SERIAL-required prior stage device tree configuration.
---
configs/bcm7260_defconfig | 4 ++--
configs/bcm7445_defconfig | 4 ++--
doc/README.bcm7xxx| 6 ++
include/configs/bcm7260.h | 2 --
include/configs/bcm7445.h | 2
This does not work on some 64-bit machines since only a 32-bit address for
the framebuffer is supported in the VESA structure.
This series corrects this and makes a few other minor, video-related
improvements.
Simon Glass (11):
efi: video: Move payload code into a function
efi: video: Return
The current vesa structure only provides a 32-bit value for the frame
buffer. Many modern machines use an address outside the range.
It is still useful to have this common struct, but add a separate
frame-buffer address as well.
Add a comment for vesa_setup_video_priv() while we are here.
Signed
It is not yet clear how to read the timer via EFI. The current value seems
much too high on a Framework laptop I tried. Adjust it to a lower
hard-coded value for now.
Signed-off-by: Simon Glass
---
drivers/timer/tsc_timer.c | 4
1 file changed, 4 insertions(+)
diff --git a/drivers/timer/t
At present it is not possible for the video driver to use a pre-allocated
frame buffer (such as is done with EFI) with the copy framebuffer. This
can be useful to speed up the display.
Adjust the implementation so that copy_size can be set to the required
size, with this being allocated if the nor
Add these options to provide some performance measurement, see cache
status and slightly speed up the appallingly slow console.
Signed-off-by: Simon Glass
---
configs/efi-x86_app64_defconfig | 3 +++
1 file changed, 3 insertions(+)
diff --git a/configs/efi-x86_app64_defconfig b/configs/efi-x86
Add support for this to EFI in case it becomes useful. At present it just
slows things down. Enable CONFIG_VIDEO_COPY to turn it on.
Signed-off-by: Simon Glass
---
arch/x86/dts/efi-x86_app.dts | 1 +
drivers/video/efi.c | 11 +++
2 files changed, 12 insertions(+)
diff --git a
There are two functions for positioning the cursor on the console. Remove
one of them.
Signed-off-by: Simon Glass
---
drivers/video/vidconsole-uclass.c | 44 +++
1 file changed, 10 insertions(+), 34 deletions(-)
diff --git a/drivers/video/vidconsole-uclass.c
b/driv
It is better to clear the console device rather than the video device,
since the console has the text display. We also need to reset the cursor
position with the console, but not with the video device.
Add a new function to handle this and update the 'cls' command to use it.
Signed-off-by: Simon
The cls command is broken. Previous discussion about this was at [1] and
[2]. For now, add a note to the source code.
[1] https://patchwork.ozlabs.org/project/uboot/patch/
20221022092058.106052-1-heinrich.schucha...@canonical.com/
[2] https://patchwork.ozlabs.org/project/uboot/patch/
Add the timer and vendor/model information.
Signed-off-by: Simon Glass
---
arch/x86/lib/bdinfo.c | 4
1 file changed, 4 insertions(+)
diff --git a/arch/x86/lib/bdinfo.c b/arch/x86/lib/bdinfo.c
index 0cb79b01bd3..896de37dce4 100644
--- a/arch/x86/lib/bdinfo.c
+++ b/arch/x86/lib/bdinfo.c
@@
Put this into a function, as we have done for the app implementation.
Comment both functions. FOr now the app still does not access it
correctly.
Signed-off-by: Simon Glass
---
drivers/video/efi.c | 83 +++--
1 file changed, 57 insertions(+), 26 deletions
The mode info is currently not initialised for the app. Fix this by
returning it from the function.
Signed-off-by: Simon Glass
---
drivers/video/efi.c | 7 +--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/video/efi.c b/drivers/video/efi.c
index fc37a68b376..0479f207
Rockchip SoCs typically use U-Boot TPL to initialize DRAM, then jumps
back to boot-rom to load the next stage of the boot flow, U-Boot SPL.
For RK356x there is currently no support to initialize DRAM using U-Boot
TPL and instead an external TPL binary must be used to generate a
working u-boot-rock
The external-tpl entry can be used when an external TPL binary must be
used instead of normal U-Boot TPL.
Signed-off-by: Jonas Karlman
---
tools/binman/entries.rst | 12
tools/binman/etype/external_tpl.py | 18 ++
tools/binman/ftest.py
Rockchip SoCs typically use U-Boot TPL to initialize DRAM, then jumps
back to boot-rom to load the next stage of the boot flow, U-Boot SPL.
For RK356x there is currently no support to initialize DRAM using U-Boot
TPL and instead an external TPL binary must be used to generate a
working u-boot-rock
This reverts commit 31500e7bcfaca08ab7c2879f502a6cf852410244.
[why]
External TPL binary is now expected to be provided using EXTERNAL_TPL
when building RK356x targets.
Signed-off-by: Jonas Karlman
---
configs/evb-rk3568_defconfig | 1 -
1 file changed, 1 deletion(-)
diff --git a/configs/evb-rk
For EFI, the distro boot scripts search in three different directories
for the .dtb file. The SOC-based filename fallback is supported only for
32-bit ARM.
Adjust the code to mirror this behaviour.
Also some boards can use a prior-stage FDT if one is not found in the
normal way. Support this and
On Mon, Feb 6, 2023 at 1:52 AM Jonas Karlman wrote:
>
> Rockchip SoCs typically use U-Boot TPL to initialize DRAM, then jumps
> back to boot-rom to load the next stage of the boot flow, U-Boot SPL.
>
> For RK356x there is currently no support to initialize DRAM using U-Boot
> TPL and instead an ex
Hi Simon and Quentin,
On 2023-02-04 23:23, Simon Glass wrote:
> Hi Quentin,
>
> On Tue, 31 Jan 2023 at 03:54, Quentin Schulz
> wrote:
>>
>> Hi Kever,
>>
>> On 1/31/23 03:53, Kever Yang wrote:
>>> Hi
>>>
>>> I think I do this modify for those soc not have TPL, or else it
>>> will cause the C
Hi Jagan,
On 2023-02-05 21:28, Jagan Teki wrote:
> On Mon, Feb 6, 2023 at 1:52 AM Jonas Karlman wrote:
>>
>> Rockchip SoCs typically use U-Boot TPL to initialize DRAM, then jumps
>> back to boot-rom to load the next stage of the boot flow, U-Boot SPL.
>>
>> For RK356x there is currently no suppor
Am 5. Februar 2023 20:46:16 MEZ schrieb Simon Glass :
>This does not work on some 64-bit machines since only a 32-bit address for
>the framebuffer is supported in the VESA structure.
"This" requires some preceding sentence. Please, describe what problem you want
to solve.
Best regards
Heinri
Am 5. Februar 2023 20:46:27 MEZ schrieb Simon Glass :
>The cls command is broken. Previous discussion about this was at [1] and
>[2]. For now, add a note to the source code.
>
>[1] https://patchwork.ozlabs.org/project/uboot/patch/
> 20221022092058.106052-1-heinrich.schucha...@canonical.com
Am 5. Februar 2023 03:08:54 MEZ schrieb Simon Glass :
>This function does not behave as expected when unknown escape sequences
>are sent to it:
>
>- it fails to store (and thus echo) the last character of the invalid
> sequence
What would be the benefit of echoing it? Is there any reason to as
Currently, only the 1st SATA port is powered up (by GPIO1 12).
Add GPIO1 13 in board initialization to power up the 2nd SATA port.
Note that this patch depends on the initial add-support patch:
https://patchwork.ozlabs.org/project/uboot/patch/20230201231306.7010-1-mibo...@gmail.com/
Signed-off-by
Talks are a great way to learn about U-Boot and have been lost now that
the Denx Wiki has gone away.
These are stored at elinux.org so link to that .
Signed-off-by: Simon Glass
---
doc/index.rst | 1 +
doc/learn/index.rst | 9 +
doc/learn/talks.rst | 11 +++
3 files cha
Quite a few CONFIG options without an SPL equivalent are used as if they
have one. For example, we see CONFIG_IS_ENABLED(IOMMU) when there is no
SPL_IOMMU Kconfig option.
This series adds new features to moveconfig to detect and remove these
problems. It includes additions to the Kconfig for optio
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
(no changes since v1)
boot/Kconfig | 4
1 file changed, 4 insertions(+)
diff --git a/boot/Kconfig b/boot/Kconfig
index bfe69d98cb7..db6e2709c03 100644
--- a/boot/Kconfig
+++ b/boot/Kconfig
@
Allow this to be enabled separately in U-Boot proper and in SPL, since
it is not needed in SPL.
Signed-off-by: Simon Glass
---
(no changes since v1)
boot/Kconfig | 13 +
boot/Makefile | 3 ++-
2 files changed, 15 insertions(+), 1 deletion(-)
diff --git a/boot/Kconfig b/boot/Kcon
Fix a typo in a comment.
Signed-off-by: Simon Glass
---
(no changes since v1)
arch/x86/lib/fsp/fsp_dram.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/lib/fsp/fsp_dram.c b/arch/x86/lib/fsp/fsp_dram.c
index 2bd408d0c56..cc889a688d8 100644
--- a/arch/x86/lib/fsp/f
This adds quite a few more features, all designed to detect problems with
Kconfig options and their use. It can find options mentioned in the source
code which are not in the Kconfig and vice versa. It can convert SPL
usages of non-SPL Kconfig options (i.e. changing CONFIG_IS_ENABLED() to
IS_ENABLE
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
(no changes since v1)
boot/Kconfig | 4
1 file changed, 4 insertions(+)
diff --git a/boot/Kconfig b/boot/Kconfig
index fdcfbae7b2c..bfe69d98cb7 100644
--- a/boot/Kconfig
+++ b/boot/Kconfig
@
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
(no changes since v1)
net/Kconfig | 4
1 file changed, 4 insertions(+)
diff --git a/net/Kconfig b/net/Kconfig
index 4215889127c..fbe6b35077f 100644
--- a/net/Kconfig
+++ b/net/Kconfig
@@ -34
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/mtd/spi/Kconfig | 4
1 file changed, 4 insertions(+)
diff --git a/drivers/mtd/spi/Kconfig b/drivers/mtd/spi/Kconfig
index a9617c6c58c..949404c4a96 100644
--- a/
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/core/Kconfig | 4
1 file changed, 4 insertions(+)
diff --git a/drivers/core/Kconfig b/drivers/core/Kconfig
index 6fc8854b574..22381500afe 100644
--- a/drivers/c
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/button/Kconfig | 4
1 file changed, 4 insertions(+)
diff --git a/drivers/button/Kconfig b/drivers/button/Kconfig
index 8ce2de37d62..60645a7745a 100644
--- a/dri
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/iommu/Kconfig | 4
1 file changed, 4 insertions(+)
diff --git a/drivers/iommu/Kconfig b/drivers/iommu/Kconfig
index dabc1f900d5..bbacd14a56c 100644
--- a/driver
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
(no changes since v1)
cmd/Kconfig | 4
1 file changed, 4 insertions(+)
diff --git a/cmd/Kconfig b/cmd/Kconfig
index b697469a4cb..82321bd3293 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -68
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
(no changes since v1)
lib/Kconfig | 4
1 file changed, 4 insertions(+)
diff --git a/lib/Kconfig b/lib/Kconfig
index 549bd357785..999ae99bf68 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -78
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/virtio/Kconfig | 4
1 file changed, 4 insertions(+)
diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig
index 852f6735b60..410cdf39b67 100644
--- a/dri
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
(no changes since v1)
lib/Kconfig | 6 ++
1 file changed, 6 insertions(+)
diff --git a/lib/Kconfig b/lib/Kconfig
index 999ae99bf68..a6c269a8535 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
Changes in v2:
- Correct the tag
drivers/pinctrl/mvebu/Kconfig | 4
1 file changed, 4 insertions(+)
diff --git a/drivers/pinctrl/mvebu/Kconfig b/drivers/pinctrl/mvebu/Kconfig
index 7c51d138c
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/reset/Kconfig | 4
1 file changed, 4 insertions(+)
diff --git a/drivers/reset/Kconfig b/drivers/reset/Kconfig
index e4039d74744..e2affe20e34 100644
--- a/driver
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/reset/Kconfig | 4
1 file changed, 4 insertions(+)
diff --git a/drivers/reset/Kconfig b/drivers/reset/Kconfig
index e2affe20e34..64c3ea332b4 100644
--- a/driver
This is implicitly used in the source and seems useful, so add it.
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/core/Kconfig | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/core/Kconfig b/drivers/core/Kconfig
index 22381500afe..f1ef5cd35f3 100644
--- a/drivers/co
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_ARCH_ZYNQ defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
board/xilinx/common/board.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/xilinx/common/board.c b/board/
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_ATMEL_PIO4 defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/pinctrl/pinctrl-at91-pio4.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pinctrl/pinctrl-at9
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_A003399_NOR_WORKAROUND defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/misc/fsl_ifc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/misc/fsl_ifc.c b/dri
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_AHCI defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
board/compulab/cm_fx6/cm_fx6.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/compulab/cm_fx6/cm_fx6.c b/board
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_ALLEYCAT_5 defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
arch/arm/mach-mvebu/arm64-common.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-mvebu/arm
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_BOOTSTAGE_REPORT defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
arch/mips/lib/bootm.c | 2 +-
arch/x86/lib/bootm.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/a
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_BOOTZ defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
arch/arm/mach-stm32mp/cmd_stm32prog/cmd_stm32prog.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mac
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_BCB defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
include/bcb.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/bcb.h b/include/bcb.h
index 897e83d371f..5ed
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_BOOTSTAGE_FDT defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
arch/mips/lib/bootm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/mips/lib/bootm.c b/arch/mips/lib/
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_ARMADA_8K defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
arch/arm/mach-mvebu/arm64-common.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm/mach-mvebu/arm6
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_CMD_EFICONFIG defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
cmd/bootmenu.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmd/bootmenu.c b/cmd/bootmenu.c
index 42
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_CMD_FDT defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
boot/bootm.c | 2 +-
boot/image-fdt.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/boot/bootm.c b/boot/
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_HASH defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
common/hash.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/hash.c b/common/hash.c
index 9e53545dbde..2c
This converts 7 usages of this option to the non-SPL form, since there is
no SPL_CMD_CLK defined in Kconfig
Signed-off-by: Simon Glass
Reviewed-by: Sean Anderson
---
(no changes since v1)
drivers/clk/clk_k210.c| 6 +++---
drivers/clk/imx/clk-imx8.c| 2 +-
drivers/clk/imx/clk-imx8.
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_BOOTI defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
boot/bootm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/boot/bootm.c b/boot/bootm.c
index 15fce8ad95e..e671
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_NVEDIT_EFI defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
cmd/nvedit.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/nvedit.c b/cmd/nvedit.c
index e2a5f0089e9.
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_SHA1SUM defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
common/hash.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/hash.c b/common/hash.c
index 2ce79b9908b.
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_MBR defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
disk/part_dos.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/disk/part_dos.c b/disk/part_dos.c
index a94702c5f3
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_NET defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
arch/arm/mach-rockchip/misc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-rockchip/misc.c b/arch
This converts 3 usages of this option to the non-SPL form, since there is
no SPL_CMD_NVME defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
include/configs/apple.h | 2 +-
include/configs/qemu-arm.h| 2 +-
include/configs/rockchip-common.h | 2 +-
3 file
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_FRU defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
board/xilinx/common/board.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/xilinx/common/board.c b/board/xi
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_VIRTIO defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
include/configs/qemu-arm.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/configs/qemu-arm.h b/include
This converts 3 usages of this option to the non-SPL form, since there is
no SPL_CMD_TFTPPUT defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
cmd/net.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/cmd/net.c b/cmd/net.c
index 4227321871c..d5e2
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_STBOARD defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
board/st/stm32mp1/stm32mp1.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/st/stm32mp1/stm32mp1.c b/bo
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_CMD_SF defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
include/configs/rockchip-common.h | 2 +-
include/environment/distro/sf.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
This converts 6 usages of this option to the non-SPL form, since there is
no SPL_CMD_PXE defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
include/configs/am335x_evm.h | 2 +-
include/configs/imx8mm-cl-iot-gate.h | 2 +-
include/configs/imx8mp_rsb3720.h | 2 +-
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_CMD_BOOTM_PRE_LOAD defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
boot/bootm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/boot/bootm.c b/boot/bootm.c
index e67
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_PSTORE defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
boot/image-fdt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/boot/image-fdt.c b/boot/image-fdt.c
index 408a
This converts 7 usages of this option to the non-SPL form, since there is
no SPL_CMD_DHCP defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
include/configs/am335x_evm.h | 2 +-
include/configs/imx8mm-cl-iot-gate.h | 2 +-
include/configs/imx8mp_rsb3720.h | 2 +
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_STM32PROG defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
board/st/common/stm32mp_mtdparts.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/st/common/stm32mp_m
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_CMD_SCSI defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
include/configs/qemu-arm.h| 2 +-
include/configs/rockchip-common.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
This converts 6 usages of this option to the non-SPL form, since there is
no SPL_CMD_MMC defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
include/configs/am62ax_evm.h | 4 ++--
include/configs/imx8mm-cl-iot-gate.h | 2 +-
include/configs/imx8mp_rsb3720.h | 2
This converts 8 usages of this option to the non-SPL form, since there is
no SPL_CMD_USB defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
include/configs/am335x_evm.h | 2 +-
include/configs/apple.h | 2 +-
include/configs/imx8mm-cl-iot-gate.h | 2 +-
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_CMD_ERASEENV defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
include/env_internal.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/env_internal.h b/include/env_i
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_DEBUG_UART_ZYNQ defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/serial/serial_zynq.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/serial/serial_zynq.c
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_EFI_SECURE_BOOT defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
cmd/eficonfig.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/eficonfig.c b/cmd/eficonfig.c
index 46
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_EFI_DEVICE_PATH_UTIL defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
lib/efi_loader/efi_root_node.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/efi_loader/efi_roo
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_ENV_WRITEABLE_LIST defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
lib/hashtable.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/hashtable.c b/lib/hashtable.c
index
This converts 4 usages of this option to the non-SPL form, since there is
no SPL_ENV_VARS_UBOOT_RUNTIME_CONFIG defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
board/xilinx/versal-net/board.c | 2 +-
board/xilinx/versal/board.c | 2 +-
board/xilinx/zynq/board.c
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_FS_EROFS defined in Kconfig
Signed-off-by: Simon Glass
Reviewed-by: Huang Jianan
---
(no changes since v1)
fs/erofs/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/erofs/Makefile b/
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_SANDBOX defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/pinctrl/pinctrl-single.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pinctrl/pinctrl-single.c
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_MTD defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
arch/arm/mach-stm32mp/cmd_stm32prog/stm32prog.c | 2 +-
board/st/common/stm32mp_dfu.c | 2 +-
2 files changed, 2 insert
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_SAVE_PREV_BL_FDT_ADDR defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
arch/arm/lib/save_prev_bl_data.c | 2 +-
common/board_r.c | 2 +-
2 files changed, 2 insertions(+), 2 d
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_TARGET_PG_WCOM_SELI8 defined in Kconfig
Signed-off-by: Simon Glass
Aleksandar Gerasimovski
---
(no changes since v1)
board/keymile/pg-wcom-ls102xa/pg-wcom-ls102xa.c | 2 +-
1 file changed, 1 insertion(+), 1 deleti
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_TEE defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
include/tee.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/tee.h b/include/tee.h
index 13f6096b9a6..ab0c583
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_UDP_FUNCTION_FASTBOOT defined in Kconfig
Signed-off-by: Simon Glass
Reviewed-by: Mattijs Korpershoek
---
(no changes since v1)
cmd/fastboot.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_USB_DWC3_MESON_G12A defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
arch/arm/mach-meson/board-g12a.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-meson/b
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_VIDEO defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
cmd/cls.c | 2 +-
common/fdt_simplefb.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmd/cls.c b/
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_USB_MUSB_HOST defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/phy/phy-ab8500-usb.c| 2 +-
drivers/usb/musb-new/omap2430.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_VIDEO_BPP32 defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/video/video-uclass.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/video/video-uclass.c b/dr
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_ZYNQMP_FIRMWARE defined in Kconfig
Signed-off-by: Simon Glass
---
Changes in v2:
- Rebase to previous series
- Drop patch to add a Kconfig for SPL_EFI_LOADER et al
- Drop patch to add a Kconfig for SPL_GENERATE_ACPI
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_WATCHDOG_AUTOSTART defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
board/kontron/sl28/sl28.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/kontron/sl28/sl28.c b/b
This converts 4 usages of this option to the non-SPL form, since there is
no SPL_XEN_SERIAL defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
drivers/xen/events.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/xen/events.c b/drivers/xe
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_USB_DWC3_MESON_GXL defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
arch/arm/mach-meson/board-axg.c | 2 +-
arch/arm/mach-meson/board-gx.c | 2 +-
2 files changed, 2 insertions(+), 2 deleti
This converts 3 usages of this option to the non-SPL form, since there is
no SPL_USB_GADGET_DWC2_OTG defined in Kconfig
Signed-off-by: Simon Glass
---
(no changes since v1)
arch/arm/mach-meson/board-axg.c | 2 +-
arch/arm/mach-meson/board-g12a.c | 2 +-
arch/arm/mach-meson/board-gx.c | 2 +-
1 - 100 of 229 matches
Mail list logo