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 SYS_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
35source "board/freescale/common/Kconfig"
36
37endif
38
39if TARGET_LS1028ARDB
40
41config SYS_BOARD
42	default "ls1028a"
43
44config SYS_VENDOR
45	default "freescale"
46
47config SYS_SOC
48	default "fsl-layerscape"
49
50config SYS_CONFIG_NAME
51	default "ls1028ardb"
52
53config EMMC_BOOT
54	bool "Support for booting from EMMC"
55
56config SYS_TEXT_BASE
57	default 0x96000000 if SD_BOOT || EMMC_BOOT
58	default 0x82000000 if TFABOOT
59	default 0x20100000
60
61source "board/freescale/common/Kconfig"
62
63endif
64