mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 17:42:03 +02:00
Add a clock driver for the UltraRISC DP1000 SoC. The clock tree is driven by a SYSPLL and provides fixed-factor clocks for the subsystem and PCIe, divider-based root clocks for GMAC and the UART, I2C, and SPI blocks, and per-instance gate clocks for UART0-3, I2C0-3, and SPI0-1. Signed-off-by: Jia Wang <wangjia@ultrarisc.com> Reviewed-by: Brian Masney <bmasney@redhat.com> Signed-off-by: Brian Masney <bmasney@redhat.com>
19 lines
544 B
Plaintext
19 lines
544 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
config CLK_ULTRARISC
|
|
tristate
|
|
depends on OF
|
|
depends on ARCH_ULTRARISC || COMPILE_TEST
|
|
|
|
config CLK_ULTRARISC_DP1000
|
|
tristate "UltraRISC DP1000 clock controller"
|
|
select CLK_ULTRARISC
|
|
depends on OF && HAS_IOMEM
|
|
depends on ARCH_ULTRARISC || COMPILE_TEST
|
|
default ARCH_ULTRARISC
|
|
help
|
|
This driver provides the clock controller for the UltraRISC
|
|
DP1000 SoC. It exposes the PLL output, derived fixed-factor
|
|
clocks, programmable divider clocks, and peripheral gate
|
|
clocks to Linux consumers.
|