mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
56c4046038
This change allows more fine tuning of driver model based SPI support in SPL and TPL. It is now possible to explicitly enable/disable the DM_SPI support in SPL and TPL via Kconfig option. Before this change it was necessary to use: /* SPI Flash Configs */ #if defined(CONFIG_SPL_BUILD) #undef CONFIG_DM_SPI #undef CONFIG_DM_SPI_FLASH #undef CONFIG_SPI_FLASH_MTD #endif in the ./include/configs/<board>.h, which is error prone and shall be avoided when we strive to switch to Kconfig. The goal of this patch: Provide distinction for DM_SPI support in both U-Boot proper and SPL (TPL). Valid use case is when U-Boot proper wants to use DM_SPI, but SPL must still support non DM driver. Another use case is the conversion of non DM/DTS SPI driver to support DM/DTS. When such driver needs to work in both SPL and U-Boot proper, the distinction is needed in Kconfig (also if SPL version of the driver supports OF_PLATDATA). In the end of the day one would have to support following use cases (in single driver file - e.g. mxs_spi.c): - U-Boot proper driver supporting DT/DTS - U-Boot proper driver without DT/DTS support (deprecated) - SPL driver without DT/DTS support - SPL (and TPL) driver with DT/DTS (when the SoC has enough resources to run full blown DT/DTS) - SPL driver with DT/DTS and SPL_OF_PLATDATA (when one have constrained environment with no fitImage and OF_LIBFDT support). Some boards do require SPI support (with DM) in SPL (TPL) and some only have DM_SPI{_FLASH} defined to allow compiling SPL. This patch converts #ifdef CONFIG_DM_SPI* to #if CONFIG_IS_ENABLED(DM_SPI) and provides corresponding defines in Kconfig. Signed-off-by: Lukasz Majewski <lukma@denx.de> Tested-by: Adam Ford <aford173@gmail.com> #da850-evm Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com> [trini: Fixup a few platforms] Signed-off-by: Tom Rini <trini@konsulko.com>
95 lines
2.2 KiB
Text
95 lines
2.2 KiB
Text
CONFIG_X86=y
|
|
CONFIG_SYS_TEXT_BASE=0xffed0000
|
|
CONFIG_SYS_MALLOC_F_LEN=0x1a00
|
|
CONFIG_ENV_SIZE=0x1000
|
|
CONFIG_ENV_OFFSET=0x3F8000
|
|
CONFIG_ENV_SECT_SIZE=0x1000
|
|
CONFIG_SPL_DM_SPI=y
|
|
CONFIG_NR_DRAM_BANKS=8
|
|
CONFIG_DEBUG_UART_BOARD_INIT=y
|
|
CONFIG_DEBUG_UART_BASE=0x3f8
|
|
CONFIG_DEBUG_UART_CLOCK=1843200
|
|
CONFIG_SPL_TEXT_BASE=0xffe70000
|
|
CONFIG_VENDOR_GOOGLE=y
|
|
CONFIG_TARGET_CHROMEBOOK_SAMUS_TPL=y
|
|
CONFIG_DEBUG_UART=y
|
|
CONFIG_HAVE_MRC=y
|
|
CONFIG_HAVE_REFCODE=y
|
|
CONFIG_SMP=y
|
|
CONFIG_HAVE_VGA_BIOS=y
|
|
CONFIG_X86_OFFSET_U_BOOT=0xfff00000
|
|
CONFIG_BOOTSTAGE=y
|
|
CONFIG_BOOTSTAGE_REPORT=y
|
|
CONFIG_SHOW_BOOT_PROGRESS=y
|
|
CONFIG_USE_BOOTARGS=y
|
|
CONFIG_BOOTARGS="root=/dev/sdb3 init=/sbin/init rootwait ro"
|
|
CONFIG_SYS_CONSOLE_INFO_QUIET=y
|
|
CONFIG_MISC_INIT_R=y
|
|
CONFIG_DISPLAY_BOARDINFO_LATE=y
|
|
CONFIG_LAST_STAGE_INIT=y
|
|
CONFIG_BLOBLIST=y
|
|
CONFIG_BLOBLIST_SIZE=0x1000
|
|
CONFIG_BLOBLIST_ADDR=0xff7c0000
|
|
CONFIG_HANDOFF=y
|
|
CONFIG_SPL_SEPARATE_BSS=y
|
|
CONFIG_SPL_DM_SPI=y
|
|
CONFIG_SPL_DM_SPI_FLASH=y
|
|
CONFIG_SPL_NET_SUPPORT=y
|
|
CONFIG_SPL_PCI=y
|
|
CONFIG_SPL_PCH_SUPPORT=y
|
|
CONFIG_TPL_PCI=y
|
|
CONFIG_TPL_PCH_SUPPORT=y
|
|
CONFIG_TPL_DM_SPI=y
|
|
CONFIG_TPL_DM_SPI_FLASH=y
|
|
CONFIG_HUSH_PARSER=y
|
|
CONFIG_CMD_CPU=y
|
|
CONFIG_CMD_GPIO=y
|
|
CONFIG_CMD_I2C=y
|
|
CONFIG_CMD_PART=y
|
|
CONFIG_CMD_SATA=y
|
|
CONFIG_CMD_SPI=y
|
|
CONFIG_CMD_USB=y
|
|
# CONFIG_CMD_SETEXPR is not set
|
|
CONFIG_CMD_TIME=y
|
|
CONFIG_CMD_SOUND=y
|
|
CONFIG_CMD_BOOTSTAGE=y
|
|
CONFIG_CMD_TPM=y
|
|
CONFIG_CMD_TPM_TEST=y
|
|
CONFIG_CMD_EXT2=y
|
|
CONFIG_CMD_EXT4=y
|
|
CONFIG_CMD_EXT4_WRITE=y
|
|
CONFIG_CMD_FAT=y
|
|
CONFIG_CMD_FS_GENERIC=y
|
|
CONFIG_MAC_PARTITION=y
|
|
# CONFIG_SPL_MAC_PARTITION is not set
|
|
# CONFIG_SPL_DOS_PARTITION is not set
|
|
CONFIG_ISO_PARTITION=y
|
|
CONFIG_EFI_PARTITION=y
|
|
# CONFIG_SPL_EFI_PARTITION is not set
|
|
CONFIG_DEFAULT_DEVICE_TREE="chromebook_samus"
|
|
CONFIG_SYS_RELOC_GD_ENV_ADDR=y
|
|
# CONFIG_NET is not set
|
|
CONFIG_REGMAP=y
|
|
CONFIG_SYSCON=y
|
|
CONFIG_CPU=y
|
|
CONFIG_DM_I2C=y
|
|
CONFIG_SYS_I2C_DW=y
|
|
CONFIG_TPL_MISC=y
|
|
CONFIG_CROS_EC=y
|
|
CONFIG_CROS_EC_LPC=y
|
|
# CONFIG_SPL_PINCTRL is not set
|
|
# CONFIG_TPL_PINCTRL is not set
|
|
CONFIG_SYS_NS16550=y
|
|
CONFIG_SOUND=y
|
|
CONFIG_SOUND_I8254=y
|
|
CONFIG_SOUND_RT5677=y
|
|
CONFIG_SPI=y
|
|
CONFIG_TPL_SYSRESET=y
|
|
CONFIG_TPM_TIS_LPC=y
|
|
CONFIG_USB_STORAGE=y
|
|
CONFIG_USB_KEYBOARD=y
|
|
CONFIG_FRAMEBUFFER_SET_VESA_MODE=y
|
|
CONFIG_FRAMEBUFFER_VESA_MODE_11A=y
|
|
CONFIG_CONSOLE_SCROLL_LINES=5
|
|
CONFIG_TPM=y
|
|
# CONFIG_GZIP is not set
|