Merge tag 'u-boot-imx-20211020' of https://source.denx.de/u-boot/custodians/u-boot-imx
[platform/kernel/u-boot.git] / drivers / mtd / Kconfig
index 0050fb2..a9c8c48 100644 (file)
@@ -4,6 +4,12 @@ config MTD_PARTITIONS
        bool
 
 config MTD
+       bool "Enable MTD layer"
+       help
+         Enable the MTD stack, necessary to interact with NAND, NOR,
+         SPI-NOR, SPI-NAND, OneNAND, etc.
+
+config DM_MTD
        bool "Enable Driver Model for MTD drivers"
        depends on DM
        help
@@ -16,11 +22,12 @@ config MTD_NOR_FLASH
        help
          Enable support for parallel NOR flash.
 
-config MTD_DEVICE
-       bool "Enable MTD Device for NAND and ONENAND devices"
+config SYS_MTDPARTS_RUNTIME
+       bool "Allow MTDPARTS to be configured at runtime"
+       depends on MTD
        help
-         Adds the MTD device infrastructure from the Linux kernel.
-         Needed for mtdparts command support.
+         This option allows to call the function board_mtdparts_default to
+         dynamically build the variables mtdids and mtdparts at runtime.
 
 config FLASH_CFI_DRIVER
        bool "Enable CFI Flash driver"
@@ -34,7 +41,8 @@ config FLASH_CFI_DRIVER
 
 config CFI_FLASH
        bool "Enable Driver Model for CFI Flash driver"
-       depends on MTD
+       depends on DM_MTD
+       select FLASH_CFI_DRIVER
        help
          The Common Flash Interface specification was developed by Intel,
          AMD and other flash manufactures. It provides a universal method
@@ -73,7 +81,7 @@ config SYS_FLASH_CFI
 
 config ALTERA_QSPI
        bool "Altera Generic Quad SPI Controller"
-       depends on MTD
+       depends on DM_MTD
        help
          This enables access to Altera EPCQ/EPCS flash chips using the
          Altera Generic Quad SPI Controller. The controller converts SPI
@@ -82,20 +90,42 @@ config ALTERA_QSPI
 
 config FLASH_PIC32
        bool "Microchip PIC32 Flash driver"
-       depends on MACH_PIC32 && MTD
+       depends on MACH_PIC32 && DM_MTD
        help
          This enables access to Microchip PIC32 internal non-CFI flash
          chips through PIC32 Non-Volatile-Memory Controller.
 
 config RENESAS_RPC_HF
-       bool "Renesas RCar Gen3 RPC Hyperflash driver"
-       depends on RCAR_GEN3 && MTD
+       bool "Renesas RCar Gen3 RPC HyperFlash driver"
+       depends on RCAR_GEN3 && DM_MTD
        help
-         This enables access to Hyperflash memory through the Renesas
+         This enables access to HyperFlash memory through the Renesas
          RCar Gen3 RPC controller.
 
+config HBMC_AM654
+       bool "HyperBus controller driver for AM65x SoC"
+       depends on SYSCON
+       help
+        This is the driver for HyperBus controller on TI's AM65x and
+        other SoCs
+
+config STM32_FLASH
+       bool "STM32 MCU Flash driver"
+       depends on ARCH_STM32
+       help
+        This is the driver of embedded flash for some STMicroelectronics
+        STM32 MCU.
+
 source "drivers/mtd/nand/Kconfig"
 
+config SYS_NAND_MAX_CHIPS
+       int "NAND max chips"
+       depends on MTD_RAW_NAND || CMD_ONENAND || TARGET_S5PC210_UNIVERSAL || \
+               SPL_OMAP3_ID_NAND
+       default 1
+       help
+         The maximum number of NAND chips per device to be supported.
+
 source "drivers/mtd/spi/Kconfig"
 
 source "drivers/mtd/ubi/Kconfig"