1if TARGET_LS1028AQDS 2 3config SYS_BOARD 4 default "ls1028a" 5 6config SYS_VENDOR 7 default "freescale" 8 9config SYS_SOC 10 default "fsl-layerscape" 11 12config SYS_CONFIG_NAME 13 default "ls1028aqds" 14 15config EMMC_BOOT 16 bool "Support for booting from EMMC" 17 18config TEXT_BASE 19 default 0x96000000 if SD_BOOT || EMMC_BOOT 20 default 0x82000000 if TFABOOT 21 default 0x20100000 22 23if FSL_LS_PPA 24config SYS_LS_PPA_FW_ADDR 25 hex "PPA Firmware Addr" 26 default 0x20400000 if SYS_LS_PPA_FW_IN_XIP && ARCH_LS1028A 27 default 0x400000 if SYS_LS_PPA_FW_IN_MMC && ARCH_LS1028A 28if CHAIN_OF_TRUST 29config SYS_LS_PPA_ESBC_ADDR 30 hex "PPA header Addr" 31 default 0x20600000 if SYS_LS_PPA_FW_IN_XIP && ARCH_LS1028A 32endif 33endif 34 35endif 36 37if TARGET_LS1028ARDB 38 39config SYS_BOARD 40 default "ls1028a" 41 42config SYS_VENDOR 43 default "freescale" 44 45config SYS_SOC 46 default "fsl-layerscape" 47 48config SYS_CONFIG_NAME 49 default "ls1028ardb" 50 51config EMMC_BOOT 52 bool "Support for booting from EMMC" 53 54config TEXT_BASE 55 default 0x96000000 if SD_BOOT || EMMC_BOOT 56 default 0x82000000 if TFABOOT 57 default 0x20100000 58 59endif 60