diff options
| author | Tom Rini <[email protected]> | 2025-05-22 08:41:25 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-05-22 08:41:25 -0600 |
| commit | df5dcf7b7eb66f74262c5e501f813aac759557f2 (patch) | |
| tree | 671da9049e216362e75b517ce1460fe3ebeb91c3 /common | |
| parent | 8f85a7345ed5df70a155f0630da72970eb01d87a (diff) | |
| parent | 159b6f0e119962ce5da645f548cefe9196c8778e (diff) | |
Merge tag 'u-boot-imx-master-20250522' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/26275
- Fix boot regression on imx8mn_bsh_smm_s2/s2pro.
- Fix reset on imx6ulz_smm_m2.
- Adjust DDR initialization on imx6ulz_smm_m2.
- Fix CAAM startup error.
Diffstat (limited to 'common')
| -rw-r--r-- | common/spl/Kconfig | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index aa3a85eea54..77cf04d38ed 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -974,6 +974,21 @@ config SPL_NAND_SUPPORT This enables the drivers in drivers/mtd/nand/raw as part of an SPL build. +config SPL_NAND_RAW_U_BOOT_USE_SECTOR + bool "NAND raw mode: by sector" + depends on SPL_NAND_SUPPORT + select SPL_LOAD_BLOCK + help + Use sector number for specifying U-Boot location on NAND in + raw mode. + +config SPL_NAND_RAW_U_BOOT_SECTOR + hex "Address on the NAND to load U-Boot from" + depends on SPL_NAND_RAW_U_BOOT_USE_SECTOR + help + Address on the NAND to load U-Boot from, when the NAND is being used + in raw mode. Units: NAND disk sectors (1 sector = 512 bytes). + config SPL_NAND_RAW_ONLY bool "Support to boot only raw u-boot.bin images" depends on SPL_NAND_SUPPORT |
