mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-12-27 12:21:22 -05:00
The power domain driver shares the APMU clock controller's registers. Instantiate the power domain driver through the APMU clock driver using the auxiliary bus. Also create a separate Kconfig entry for the PXA1908 clock driver to allow (de)selecting the driver at will and selecting CONFIG_AUXILIARY_BUS. Signed-off-by: Duje Mihanović <duje@dujemihanovic.xyz> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
11 lines
276 B
Plaintext
11 lines
276 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
config COMMON_CLK_PXA1908
|
|
bool "Clock driver for Marvell PXA1908"
|
|
depends on ARCH_MMP || COMPILE_TEST
|
|
depends on OF
|
|
default y if ARCH_MMP && ARM64
|
|
select AUXILIARY_BUS
|
|
help
|
|
This driver supports the Marvell PXA1908 SoC clocks.
|