-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
uboot: enable extra drivers and emmc extcsd commands
- Loading branch information
Showing
1 changed file
with
96 additions
and
0 deletions.
There are no files selected for viewing
96 changes: 96 additions & 0 deletions
96
patches/u-boot/0006-configs-lx2160-cex7-enable-additional-drivers.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
From 9f64e0b7828602683f618793e795350128f4760b Mon Sep 17 00:00:00 2001 | ||
From: Josua Mayer <josua@solid-run.com> | ||
Date: Sat, 26 Oct 2024 13:50:39 +0200 | ||
Subject: [PATCH] configs: lx2160-cex7: enable additional drivers | ||
|
||
--- | ||
configs/lx2160acex7_tfa_SECURE_BOOT_defconfig | 11 +++++++++++ | ||
configs/lx2160acex7_tfa_defconfig | 3 +++ | ||
2 files changed, 14 insertions(+) | ||
|
||
diff --git a/configs/lx2160acex7_tfa_SECURE_BOOT_defconfig b/configs/lx2160acex7_tfa_SECURE_BOOT_defconfig | ||
index 12f236aad06..d55bdb24a4b 100644 | ||
--- a/configs/lx2160acex7_tfa_SECURE_BOOT_defconfig | ||
+++ b/configs/lx2160acex7_tfa_SECURE_BOOT_defconfig | ||
@@ -35,8 +35,10 @@ CONFIG_CMD_GPIO=y | ||
CONFIG_CMD_GPT=y | ||
CONFIG_CMD_I2C=y | ||
CONFIG_CMD_MMC=y | ||
+CONFIG_CMD_OPTEE_RPMB=y | ||
CONFIG_CMD_PCI=y | ||
CONFIG_CMD_USB=y | ||
+CONFIG_CMD_WDT=y | ||
CONFIG_CMD_CACHE=y | ||
CONFIG_OF_CONTROL=y | ||
CONFIG_ENV_OVERWRITE=y | ||
@@ -44,6 +46,7 @@ CONFIG_NET_RANDOM_ETHADDR=y | ||
CONFIG_DM=y | ||
CONFIG_SATA=y | ||
CONFIG_SATA_CEVA=y | ||
+CONFIG_FSL_CAAM=y | ||
CONFIG_DYNAMIC_DDR_CLK_FREQ=y | ||
CONFIG_DDR_ECC=y | ||
CONFIG_ECC_INIT_VIA_DDRCONTROLLER=y | ||
@@ -51,12 +54,15 @@ CONFIG_MPC8XXX_GPIO=y | ||
CONFIG_DM_I2C=y | ||
CONFIG_I2C_SET_DEFAULT_BUS_NUM=y | ||
CONFIG_SYS_I2C_EEPROM_ADDR=0x57 | ||
+CONFIG_SUPPORT_EMMC_RPMB=y | ||
+CONFIG_SUPPORT_EMMC_BOOT=y | ||
CONFIG_MMC_HS400_SUPPORT=y | ||
CONFIG_FSL_ESDHC=y | ||
CONFIG_MTD=y | ||
CONFIG_DM_SPI_FLASH=y | ||
CONFIG_SPI_FLASH_STMICRO=y | ||
CONFIG_SPI_FLASH_MT35XU=y | ||
+CONFIG_SPI_FLASH_WINBOND=y | ||
# CONFIG_SPI_FLASH_USE_4K_SECTORS is not set | ||
CONFIG_PHYLIB=y | ||
CONFIG_PHY_ATHEROS=y | ||
@@ -76,11 +82,16 @@ CONFIG_DM_SERIAL=y | ||
CONFIG_PL01X_SERIAL=y | ||
CONFIG_SPI=y | ||
CONFIG_DM_SPI=y | ||
+CONFIG_FSL_DSPI=y | ||
CONFIG_NXP_FSPI=y | ||
+CONFIG_TEE=y | ||
+CONFIG_OPTEE=y | ||
CONFIG_USB=y | ||
CONFIG_USB_XHCI_HCD=y | ||
CONFIG_USB_XHCI_DWC3=y | ||
CONFIG_RSA=y | ||
CONFIG_SPL_RSA=y | ||
CONFIG_RSA_SOFTWARE_EXP=y | ||
+CONFIG_WDT=y | ||
+CONFIG_WDT_SBSA=y | ||
CONFIG_EFI_LOADER_BOUNCE_BUFFER=y | ||
diff --git a/configs/lx2160acex7_tfa_defconfig b/configs/lx2160acex7_tfa_defconfig | ||
index 9f24e12a85d..8fd603cb87e 100644 | ||
--- a/configs/lx2160acex7_tfa_defconfig | ||
+++ b/configs/lx2160acex7_tfa_defconfig | ||
@@ -60,12 +60,14 @@ CONFIG_DM_I2C=y | ||
CONFIG_I2C_SET_DEFAULT_BUS_NUM=y | ||
CONFIG_SYS_I2C_EEPROM_ADDR=0x57 | ||
CONFIG_SUPPORT_EMMC_RPMB=y | ||
+CONFIG_SUPPORT_EMMC_BOOT=y | ||
CONFIG_MMC_HS400_SUPPORT=y | ||
CONFIG_FSL_ESDHC=y | ||
CONFIG_MTD=y | ||
CONFIG_DM_SPI_FLASH=y | ||
CONFIG_SPI_FLASH_STMICRO=y | ||
CONFIG_SPI_FLASH_MT35XU=y | ||
+CONFIG_SPI_FLASH_WINBOND=y | ||
# CONFIG_SPI_FLASH_USE_4K_SECTORS is not set | ||
CONFIG_PHYLIB=y | ||
CONFIG_PHY_ATHEROS=y | ||
@@ -85,6 +87,7 @@ CONFIG_DM_SERIAL=y | ||
CONFIG_PL01X_SERIAL=y | ||
CONFIG_SPI=y | ||
CONFIG_DM_SPI=y | ||
+CONFIG_FSL_DSPI=y | ||
CONFIG_NXP_FSPI=y | ||
CONFIG_TEE=y | ||
CONFIG_OPTEE=y | ||
-- | ||
2.43.0 | ||
|