diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2021-09-21 20:48:03 +0200 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2021-10-26 18:06:05 -0700 |
commit | b14cbdfd467d1e505ad8e03f94e18b3cffc37043 (patch) | |
tree | d65fbf4a0d28b1472af318f55ba3fb671eb082d5 /arch/arm | |
parent | f2b883bbdd08b32f4c52cc95bccb4defae6ebf74 (diff) | |
download | linux-stable-b14cbdfd467d1e505ad8e03f94e18b3cffc37043.tar.gz linux-stable-b14cbdfd467d1e505ad8e03f94e18b3cffc37043.tar.bz2 linux-stable-b14cbdfd467d1e505ad8e03f94e18b3cffc37043.zip |
clk: ux500: Add driver for the reset portions of PRCC
The Ux500 PRCC (peripheral reset and clock controller) can also
control reset of the IP blocks, not just clocks. As the PRCC is probed
as a clock controller and we have other platforms implementing combined
clock and reset controllers, follow this pattern and implement the PRCC
rest controller as part of the clock driver.
The reset controller needs to be selected from the machine as Ux500 has
traditionally selected its mandatory subsystem prerequisites from there.
Cc: Philipp Zabel <p.zabel@pengutronix.de>
Cc: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/20210921184803.1757916-2-linus.walleij@linaro.org
Acked-by: Ulf Hansson <ulf.hansson@linaro.org>
[sboyd@kernel.org: Dropped allocation error message]
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-ux500/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-ux500/Kconfig b/arch/arm/mach-ux500/Kconfig index c1086ebe0050..24ed7f4a87a4 100644 --- a/arch/arm/mach-ux500/Kconfig +++ b/arch/arm/mach-ux500/Kconfig @@ -29,6 +29,7 @@ menuconfig ARCH_U8500 select REGULATOR_DB8500_PRCMU select REGULATOR_FIXED_VOLTAGE select SOC_BUS + select RESET_CONTROLLER help Support for ST-Ericsson's Ux500 architecture |