Kconfig 998 B

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