mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-25 03:55:09 +08:00
fb8b9d23f1
As part of converting RISC-V SOC_FOO symbols to ARCH_FOO to match the use of such symbols on other architectures, convert the SiFive clk drivers to use the new symbol. Signed-off-by: Conor Dooley <conor.dooley@microchip.com> Link: https://lore.kernel.org/r/20230406-groovy-trustable-15853ac0a130@spud Signed-off-by: Stephen Boyd <sboyd@kernel.org>
24 lines
573 B
Plaintext
24 lines
573 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
menuconfig CLK_SIFIVE
|
|
bool "SiFive SoC driver support"
|
|
depends on ARCH_SIFIVE || COMPILE_TEST
|
|
default ARCH_SIFIVE
|
|
help
|
|
SoC drivers for SiFive Linux-capable SoCs.
|
|
|
|
if CLK_SIFIVE
|
|
|
|
config CLK_SIFIVE_PRCI
|
|
bool "PRCI driver for SiFive SoCs"
|
|
default ARCH_SIFIVE
|
|
select RESET_CONTROLLER
|
|
select RESET_SIMPLE
|
|
select CLK_ANALOGBITS_WRPLL_CLN28HPC
|
|
help
|
|
Supports the Power Reset Clock interface (PRCI) IP block found in
|
|
FU540/FU740 SoCs. If this kernel is meant to run on a SiFive FU540/
|
|
FU740 SoCs, enable this driver.
|
|
|
|
endif
|