Kconfig 520 字节
Newer Older
1 2 3
config SUNXI_CCU
	bool "Clock support for Allwinner SoCs"
	default ARCH_SUNXI
4 5 6 7 8

if SUNXI_CCU

# Base clock types

M
Maxime Ripard 已提交
9 10 11 12
config SUNXI_CCU_DIV
	bool
	select SUNXI_CCU_MUX

13 14 15
config SUNXI_CCU_FRAC
	bool

16 17 18
config SUNXI_CCU_GATE
	bool

19 20 21
config SUNXI_CCU_MUX
	bool

22 23 24
config SUNXI_CCU_PHASE
	bool

25 26
# Multi-factor clocks

27 28 29 30
config SUNXI_CCU_NK
	bool
	select SUNXI_CCU_GATE

31 32 33 34 35 36
config SUNXI_CCU_NM
	bool
	select RATIONAL
	select SUNXI_CCU_FRAC
	select SUNXI_CCU_GATE

37 38 39 40 41
config SUNXI_CCU_MP
	bool
	select SUNXI_CCU_GATE
	select SUNXI_CCU_MUX

42
endif