nt9856x/BSP/u-boot/arch/arm/mach-novatek/nvt_na51068_a32/Kconfig
2023-03-28 15:07:53 +08:00

39 lines
962 B
Plaintext
Executable File

if TARGET_NA51068
config SYS_CONFIG_NAME
string "Board configuration name"
default "nvt-na51068-evb"
help
This option contains information about board configuration name.
Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
will be used for board configuration.
#config SYS_TEXT_BASE
# default 0x00000000
config SYS_BOARD
default "nvt-na51068"
help
This option contains information about board name.
Based on this option board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD> will
be used.
config SYS_SOC
default "nvt-na51068_a32"
config NVT_NAND_TYPE
int "0: ONFINAND, 1: SPINAND, 2:SPINOR"
depends on (NVT_SPI_NAND || NVT_SPI_NOR)
default 1
config NVT_NAND_ECC
int "0: RS-ECC, 1: On-Die ECC"
depends on (NVT_SPI_NAND || NVT_SPI_NONE)
default 1
# To include novatek board common config
source "board/novatek/common/Kconfig"
# To include novatek board specific config
source "board/novatek/nvt-na51068/Kconfig"
endif