Kconfig 755 B

123456789101112131415161718192021222324252627282930313233343536
  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. This port may work on other BCM7xxx boards with
  10. configuration changes.
  11. config SYS_CPU
  12. default "armv7"
  13. config SYS_BOARD
  14. default "bcmstb"
  15. config SYS_VENDOR
  16. default "broadcom"
  17. config SYS_SOC
  18. default "bcmstb"
  19. config SYS_CONFIG_NAME
  20. default "bcm7445"
  21. config SYS_FDT_SAVE_ADDRESS
  22. hex "Address to which the prior stage provided DTB will be copied"
  23. default 0x1f00000
  24. config BCMSTB_SDHCI_INDEX
  25. int "Index of preferred BCMSTB SDHCI alias in DTB"
  26. default 1
  27. endif