blob: 4ebe6aaa1980db02c9088e22a0854a09d4e104fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# SPDX-License-Identifier: GPL-2.0-only
menu "Clock support for SpacemiT platforms"
depends on ARCH_SPACEMIT || COMPILE_TEST
config SPACEMIT_CCU
tristate
select AUXILIARY_BUS
select MFD_SYSCON
config SPACEMIT_K1_CCU
tristate "Support for SpacemiT K1 SoC"
select SPACEMIT_CCU
help
Support for clock controller unit in SpacemiT K1 SoC.
config SPACEMIT_K3_CCU
tristate "Support for SpacemiT K3 SoC"
select SPACEMIT_CCU
help
Support for clock controller unit in SpacemiT K3 SoC.
endmenu
|