Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1menu "Broadcom SoC drivers"
2
3config 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
15config RASPBERRYPI_POWER
16 bool "Raspberry Pi power domain driver"
17 depends on ARCH_BCM2835 || (COMPILE_TEST && OF)
18 depends on RASPBERRYPI_FIRMWARE=y
19 select PM_GENERIC_DOMAINS if PM
20 help
21 This enables support for the RPi power domains which can be enabled
22 or disabled via the RPi firmware.
23
24config SOC_BRCMSTB
25 bool "Broadcom STB SoC drivers"
26 depends on ARM || ARM64 || BMIPS_GENERIC || COMPILE_TEST
27 select SOC_BUS
28 help
29 Enables drivers for the Broadcom Set-Top Box (STB) series of chips.
30 This option alone enables only some support code, while the drivers
31 can be enabled individually within this menu.
32
33 If unsure, say N.
34
35source "drivers/soc/bcm/brcmstb/Kconfig"
36
37endmenu