Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1# SPDX-License-Identifier: GPL-2.0
2
3menuconfig CLK_SIFIVE
4 bool "SiFive SoC driver support"
5 depends on ARCH_SIFIVE || COMPILE_TEST
6 default ARCH_SIFIVE
7 help
8 SoC drivers for SiFive Linux-capable SoCs.
9
10if CLK_SIFIVE
11
12config CLK_SIFIVE_PRCI
13 tristate "PRCI driver for SiFive SoCs"
14 default ARCH_SIFIVE
15 select RESET_CONTROLLER
16 select RESET_SIMPLE
17 select CLK_ANALOGBITS_WRPLL_CLN28HPC
18 help
19 Supports the Power Reset Clock interface (PRCI) IP block found in
20 FU540/FU740 SoCs. If this kernel is meant to run on a SiFive FU540/
21 FU740 SoCs, enable this driver.
22
23endif