mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 16:38:12 +00:00
ec8f24b7fa
Add SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any form These files fall under the project license, GPL v2 only. The resulting SPDX license identifier is: GPL-2.0-only Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
38 lines
1.2 KiB
Text
38 lines
1.2 KiB
Text
# SPDX-License-Identifier: GPL-2.0-only
|
|
menu "Broadcom SoC drivers"
|
|
|
|
config BCM2835_POWER
|
|
bool "BCM2835 power domain driver"
|
|
depends on ARCH_BCM2835 || (COMPILE_TEST && OF)
|
|
default y if ARCH_BCM2835
|
|
select PM_GENERIC_DOMAINS if PM
|
|
select RESET_CONTROLLER
|
|
help
|
|
This enables support for the BCM2835 power domains and reset
|
|
controller. Any usage of power domains by the Raspberry Pi
|
|
firmware means that Linux usage of the same power domain
|
|
must be accessed using the RASPBERRYPI_POWER driver
|
|
|
|
config RASPBERRYPI_POWER
|
|
bool "Raspberry Pi power domain driver"
|
|
depends on ARCH_BCM2835 || (COMPILE_TEST && OF)
|
|
depends on RASPBERRYPI_FIRMWARE=y
|
|
select PM_GENERIC_DOMAINS if PM
|
|
help
|
|
This enables support for the RPi power domains which can be enabled
|
|
or disabled via the RPi firmware.
|
|
|
|
config SOC_BRCMSTB
|
|
bool "Broadcom STB SoC drivers"
|
|
depends on ARM || ARM64 || BMIPS_GENERIC || COMPILE_TEST
|
|
select SOC_BUS
|
|
help
|
|
Enables drivers for the Broadcom Set-Top Box (STB) series of chips.
|
|
This option alone enables only some support code, while the drivers
|
|
can be enabled individually within this menu.
|
|
|
|
If unsure, say N.
|
|
|
|
source "drivers/soc/bcm/brcmstb/Kconfig"
|
|
|
|
endmenu
|