-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
configs: lx2160a: Add default config for lx2160a using StMM in OP-TEE
Previous patches allow UEFI secure variables to be stored in an RPMB device using OPTEE. Add a config for the lx2160a hardware so the feature gets at least compiled. Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org> Remove superfluous differences to lx2160ardb_tfa_defconfig. Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
- Loading branch information
Showing
2 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
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
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,85 @@ | ||
CONFIG_ARM=y | ||
CONFIG_GIC_V3_ITS=y | ||
CONFIG_TARGET_LX2160ARDB=y | ||
CONFIG_TFABOOT=y | ||
CONFIG_SYS_TEXT_BASE=0x82000000 | ||
CONFIG_SYS_MALLOC_F_LEN=0x6000 | ||
CONFIG_ENV_SIZE=0x2000 | ||
CONFIG_ENV_OFFSET=0x500000 | ||
CONFIG_ENV_SECT_SIZE=0x20000 | ||
CONFIG_DM_GPIO=y | ||
CONFIG_EMC2305=y | ||
CONFIG_FSPI_AHB_EN_4BYTE=y | ||
CONFIG_NR_DRAM_BANKS=3 | ||
CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT=y | ||
CONFIG_SEC_FIRMWARE_ARMV8_PSCI=y | ||
CONFIG_AHCI=y | ||
CONFIG_FIT_VERBOSE=y | ||
CONFIG_OF_BOARD_SETUP=y | ||
CONFIG_OF_STDOUT_VIA_ALIAS=y | ||
CONFIG_BOOTDELAY=10 | ||
CONFIG_USE_BOOTARGS=y | ||
CONFIG_BOOTARGS="console=ttyAMA0,115200 root=/dev/ram0 earlycon=pl011,mmio32,0x21c0000 ramdisk_size=0x2000000 default_hugepagesz=1024m hugepagesz=1024m hugepages=2 pci=pcie_bus_perf" | ||
# CONFIG_USE_BOOTCOMMAND is not set | ||
CONFIG_MISC_INIT_R=y | ||
CONFIG_CMD_GREPENV=y | ||
CONFIG_CMD_NVEDIT_EFI=y | ||
CONFIG_CMD_EEPROM=y | ||
CONFIG_CMD_DM=y | ||
CONFIG_CMD_GPT=y | ||
CONFIG_CMD_I2C=y | ||
CONFIG_CMD_MMC=y | ||
CONFIG_CMD_PCI=y | ||
CONFIG_CMD_USB=y | ||
CONFIG_CMD_CACHE=y | ||
CONFIG_CMD_EFIDEBUG=y | ||
CONFIG_MP=y | ||
CONFIG_OF_CONTROL=y | ||
CONFIG_OF_BOARD_FIXUP=y | ||
CONFIG_DEFAULT_DEVICE_TREE="fsl-lx2160a-rdb" | ||
CONFIG_ENV_IS_IN_MMC=y | ||
CONFIG_ENV_IS_IN_SPI_FLASH=y | ||
CONFIG_ENV_ADDR=0x20500000 | ||
CONFIG_NET_RANDOM_ETHADDR=y | ||
CONFIG_DM=y | ||
CONFIG_SATA_CEVA=y | ||
CONFIG_FSL_CAAM=y | ||
CONFIG_DM_I2C=y | ||
CONFIG_I2C_SET_DEFAULT_BUS_NUM=y | ||
CONFIG_I2C_DEFAULT_BUS_NUMBER=0 | ||
CONFIG_DM_MMC=y | ||
CONFIG_SUPPORT_EMMC_RPMB=y | ||
CONFIG_FSL_ESDHC=y | ||
CONFIG_MTD=y | ||
CONFIG_DM_SPI_FLASH=y | ||
CONFIG_SPI_FLASH_SPANSION=y | ||
CONFIG_SPI_FLASH_STMICRO=y | ||
# CONFIG_SPI_FLASH_USE_4K_SECTORS is not set | ||
CONFIG_PHYLIB=y | ||
CONFIG_PHY_AQUANTIA=y | ||
CONFIG_PHY_ATHEROS=y | ||
CONFIG_PHY_CORTINA=y | ||
CONFIG_DM_ETH=y | ||
CONFIG_DM_MDIO=y | ||
CONFIG_E1000=y | ||
CONFIG_FSL_LS_MDIO=y | ||
CONFIG_PCI=y | ||
CONFIG_DM_PCI=y | ||
CONFIG_DM_PCI_COMPAT=y | ||
CONFIG_PCIE_LAYERSCAPE=y | ||
CONFIG_PCIE_LAYERSCAPE_GEN4=y | ||
CONFIG_DM_RTC=y | ||
CONFIG_RTC_PCF2127=y | ||
CONFIG_DM_SCSI=y | ||
CONFIG_DM_SERIAL=y | ||
CONFIG_SPI=y | ||
CONFIG_DM_SPI=y | ||
CONFIG_NXP_FSPI=y | ||
CONFIG_TEE=y | ||
CONFIG_OPTEE=y | ||
CONFIG_USB=y | ||
CONFIG_DM_USB=y | ||
CONFIG_USB_XHCI_HCD=y | ||
CONFIG_USB_XHCI_DWC3=y | ||
CONFIG_EFI_LOADER_BOUNCE_BUFFER=y | ||
CONFIG_EFI_MM_COMM_TEE=y |