blob: 0a56c3c7fa258d52266f3431c56c495ed6d3ccb9 [file] [log] [blame]
Thomas Fitzsimmons894c3ad2018-06-08 17:59:45 -04001if 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.
Thomas Fitzsimmons3f203212018-08-22 18:37:55 -040010
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.
Thomas Fitzsimmons894c3ad2018-06-08 17:59:45 -040018
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
Thomas Fitzsimmons3f203212018-08-22 18:37:55 -040032 default "bcm7445" if TARGET_BCM7445
33 default "bcm7260" if TARGET_BCM7260
Thomas Fitzsimmons894c3ad2018-06-08 17:59:45 -040034
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