Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 1 | if ARCH_BCMSTB |
| 2 | |
| 3 | config 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 Fitzsimmons | 3f20321 | 2018-08-22 18:37:55 -0400 | [diff] [blame] | 10 | |
| 11 | config 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 Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 18 | |
| 19 | config SYS_CPU |
| 20 | default "armv7" |
| 21 | |
| 22 | config SYS_BOARD |
| 23 | default "bcmstb" |
| 24 | |
| 25 | config SYS_VENDOR |
| 26 | default "broadcom" |
| 27 | |
| 28 | config SYS_SOC |
| 29 | default "bcmstb" |
| 30 | |
| 31 | config SYS_CONFIG_NAME |
Thomas Fitzsimmons | 3f20321 | 2018-08-22 18:37:55 -0400 | [diff] [blame] | 32 | default "bcm7445" if TARGET_BCM7445 |
| 33 | default "bcm7260" if TARGET_BCM7260 |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 34 | |
| 35 | config SYS_FDT_SAVE_ADDRESS |
| 36 | hex "Address to which the prior stage provided DTB will be copied" |
| 37 | default 0x1f00000 |
| 38 | |
| 39 | config BCMSTB_SDHCI_INDEX |
| 40 | int "Index of preferred BCMSTB SDHCI alias in DTB" |
| 41 | default 1 |
| 42 | |
| 43 | endif |