File tree Expand file tree Collapse file tree 5 files changed +647
-0
lines changed Expand file tree Collapse file tree 5 files changed +647
-0
lines changed Original file line number Diff line number Diff line change @@ -311,6 +311,7 @@ source "drivers/clk/mvebu/Kconfig"
311311source "drivers/clk/qcom/Kconfig"
312312source "drivers/clk/renesas/Kconfig"
313313source "drivers/clk/samsung/Kconfig"
314+ source "drivers/clk/sifive/Kconfig"
314315source "drivers/clk/sprd/Kconfig"
315316source "drivers/clk/sunxi-ng/Kconfig"
316317source "drivers/clk/tegra/Kconfig"
Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ obj-$(CONFIG_COMMON_CLK_QCOM) += qcom/
9494obj-y += renesas/
9595obj-$(CONFIG_ARCH_ROCKCHIP) += rockchip/
9696obj-$(CONFIG_COMMON_CLK_SAMSUNG) += samsung/
97+ obj-$(CONFIG_CLK_SIFIVE) += sifive/
9798obj-$(CONFIG_ARCH_SIRF) += sirf/
9899obj-$(CONFIG_ARCH_SOCFPGA) += socfpga/
99100obj-$(CONFIG_PLAT_SPEAR) += spear/
Original file line number Diff line number Diff line change 1+ # SPDX-License-Identifier: GPL-2.0
2+
3+ menuconfig CLK_SIFIVE
4+ bool "SiFive SoC driver support"
5+ help
6+ SoC drivers for SiFive Linux-capable SoCs.
7+
8+ if CLK_SIFIVE
9+
10+ config CLK_SIFIVE_FU540_PRCI
11+ bool "PRCI driver for SiFive FU540 SoCs"
12+ select CLK_ANALOGBITS_WRPLL_CLN28HPC
13+ help
14+ Supports the Power Reset Clock interface (PRCI) IP block found in
15+ FU540 SoCs. If this kernel is meant to run on a SiFive FU540 SoC,
16+ enable this driver.
17+
18+ endif
Original file line number Diff line number Diff line change 1+ obj-$(CONFIG_CLK_SIFIVE_FU540_PRCI) += fu540-prci.o
You can’t perform that action at this time.
0 commit comments