1if ARCH_BCMSTB
2
3config TARGET_BCM7445
4	bool "Broadcom 7445 TSBL"
5	depends on ARCH_BCMSTB
6	help
7	  Support for the Broadcom 7445 SoC.  This port assumes BOLT
8	  is acting as the second stage bootloader, and U-Boot is
9	  acting as the third stage bootloader (TSBL), loaded by BOLT.
10
11config TARGET_BCM7260
12	bool "Broadcom 7260 TSBL"
13	depends on ARCH_BCMSTB
14	help
15	  Support for the Broadcom 7260 SoC.  This port assumes BOLT
16	  is acting as the second stage bootloader, and U-Boot is
17	  acting as the third stage bootloader (TSBL), loaded by BOLT.
18
19config SYS_CPU
20	default "armv7"
21
22config SYS_BOARD
23	default "bcmstb"
24
25config SYS_VENDOR
26	default "broadcom"
27
28config SYS_SOC
29	default "bcmstb"
30
31config SYS_CONFIG_NAME
32	default "bcm7445" if TARGET_BCM7445
33	default "bcm7260" if TARGET_BCM7260
34
35config SYS_FDT_SAVE_ADDRESS
36	hex "Address to which the prior stage provided DTB will be copied"
37	default 0x1f00000
38
39config BCMSTB_SDHCI_INDEX
40	int "Index of preferred BCMSTB SDHCI alias in DTB"
41	default 1
42
43endif
44