Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. menu "Broadcom SoC drivers"
  3. config BCM2835_POWER
  4. bool "BCM2835 power domain driver"
  5. depends on ARCH_BCM2835 || (COMPILE_TEST && OF)
  6. default y if ARCH_BCM2835
  7. select PM_GENERIC_DOMAINS if PM
  8. select RESET_CONTROLLER
  9. help
  10. This enables support for the BCM2835 power domains and reset
  11. controller. Any usage of power domains by the Raspberry Pi
  12. firmware means that Linux usage of the same power domain
  13. must be accessed using the RASPBERRYPI_POWER driver
  14. config RASPBERRYPI_POWER
  15. bool "Raspberry Pi power domain driver"
  16. depends on ARCH_BCM2835 || (COMPILE_TEST && OF)
  17. depends on RASPBERRYPI_FIRMWARE=y
  18. select PM_GENERIC_DOMAINS if PM
  19. help
  20. This enables support for the RPi power domains which can be enabled
  21. or disabled via the RPi firmware.
  22. config SOC_BCM63XX
  23. bool "Broadcom 63xx SoC drivers"
  24. depends on BMIPS_GENERIC || COMPILE_TEST
  25. help
  26. Enables drivers for the Broadcom 63xx series of chips.
  27. Drivers can be enabled individually within this menu.
  28. If unsure, say N.
  29. config SOC_BRCMSTB
  30. bool "Broadcom STB SoC drivers"
  31. depends on ARM || ARM64 || BMIPS_GENERIC || COMPILE_TEST
  32. select SOC_BUS
  33. help
  34. Enables drivers for the Broadcom Set-Top Box (STB) series of chips.
  35. This option alone enables only some support code, while the drivers
  36. can be enabled individually within this menu.
  37. If unsure, say N.
  38. source "drivers/soc/bcm/bcm63xx/Kconfig"
  39. source "drivers/soc/bcm/brcmstb/Kconfig"
  40. endmenu