diff options
author | Marcin Niestroj <m.niestroj@grinn-global.com> | 2019-01-19 17:06:46 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2019-03-13 09:14:35 +0100 |
commit | e020fb5ad29ec8f17ca966f8d56000d7abc934ec (patch) | |
tree | b15677f8aadeb344597116b0f865f66f9d60aeb4 /configs/liteboard_defconfig | |
parent | 28a36fd8237132d5cbf1590a45752da7cc2e4047 (diff) | |
download | u-boot-e020fb5ad29ec8f17ca966f8d56000d7abc934ec.zip u-boot-e020fb5ad29ec8f17ca966f8d56000d7abc934ec.tar.gz u-boot-e020fb5ad29ec8f17ca966f8d56000d7abc934ec.tar.bz2 |
ARM: liteboard: move towards driver model and device-tree boot
This patch mostly enables DM drivers in board defconfig and all their
dependencies. Additionally we remove USB code that is on longer
executed after enabling CONFIG_DM_USB. Enable CONFIG_PINCTRL, so we
can get rid of ethernet pin configuration.
Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
Diffstat (limited to 'configs/liteboard_defconfig')
-rw-r--r-- | configs/liteboard_defconfig | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/configs/liteboard_defconfig b/configs/liteboard_defconfig index 61ba4ea..22e5baa 100644 --- a/configs/liteboard_defconfig +++ b/configs/liteboard_defconfig @@ -30,10 +30,19 @@ CONFIG_CMD_EXT4=y CONFIG_CMD_EXT4_WRITE=y CONFIG_CMD_FAT=y CONFIG_CMD_FS_GENERIC=y +CONFIG_OF_CONTROL=y +CONFIG_DEFAULT_DEVICE_TREE="imx6ul-liteboard" CONFIG_ENV_IS_IN_MMC=y +CONFIG_DM_GPIO=y +CONFIG_DM_I2C=y +CONFIG_DM_MMC=y CONFIG_FSL_ESDHC=y CONFIG_PHYLIB=y +CONFIG_DM_ETH=y CONFIG_MII=y +CONFIG_PINCTRL=y +CONFIG_PINCTRL_IMX6=y +CONFIG_DM_REGULATOR=y CONFIG_USB=y +CONFIG_DM_USB=y CONFIG_USB_STORAGE=y -CONFIG_OF_LIBFDT=y |