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	default n
18
19config SYS_TEXT_BASE
20	default 0x96000000 if SD_BOOT || EMMC_BOOT
21	default 0x82000000 if TFABOOT
22	default 0x20100000
23
24if FSL_LS_PPA
25config SYS_LS_PPA_FW_ADDR
26	hex "PPA Firmware Addr"
27	default 0x20400000 if SYS_LS_PPA_FW_IN_XIP && ARCH_LS1028A
28	default 0x400000 if SYS_LS_PPA_FW_IN_MMC && ARCH_LS1028A
29if CHAIN_OF_TRUST
30config SYS_LS_PPA_ESBC_ADDR
31	hex "PPA header Addr"
32	default 0x20600000 if SYS_LS_PPA_FW_IN_XIP && ARCH_LS1028A
33endif
34endif
35
36source "board/freescale/common/Kconfig"
37
38endif
39
40if TARGET_LS1028ARDB
41
42config SYS_BOARD
43	default "ls1028a"
44
45config SYS_VENDOR
46	default "freescale"
47
48config SYS_SOC
49	default "fsl-layerscape"
50
51config SYS_CONFIG_NAME
52	default "ls1028ardb"
53
54config EMMC_BOOT
55	bool "Support for booting from EMMC"
56	default n
57
58config SYS_TEXT_BASE
59	default 0x96000000 if SD_BOOT || EMMC_BOOT
60	default 0x82000000 if TFABOOT
61	default 0x20100000
62
63source "board/freescale/common/Kconfig"
64
65endif
66