Input: xpad - add support for Xbox1 PDP Camo series gamepad
[linux/fpc-iii.git] / drivers / clk / sunxi-ng / Kconfig
blob4e8e9bc8f3e5664de753944828669abb3bf3e9db
1 config SUNXI_CCU
2         bool "Clock support for Allwinner SoCs"
3         depends on ARCH_SUNXI || COMPILE_TEST
4         select RESET_CONTROLLER
5         default ARCH_SUNXI
7 if SUNXI_CCU
9 # Base clock types
11 config SUNXI_CCU_DIV
12         bool
13         select SUNXI_CCU_MUX
15 config SUNXI_CCU_FRAC
16         bool
18 config SUNXI_CCU_GATE
19         bool
21 config SUNXI_CCU_MUX
22         bool
24 config SUNXI_CCU_MULT
25         bool
26         select SUNXI_CCU_MUX
28 config SUNXI_CCU_PHASE
29         bool
31 # Multi-factor clocks
33 config SUNXI_CCU_NK
34         bool
35         select SUNXI_CCU_GATE
37 config SUNXI_CCU_NKM
38         bool
39         select RATIONAL
40         select SUNXI_CCU_GATE
42 config SUNXI_CCU_NKMP
43         bool
44         select RATIONAL
45         select SUNXI_CCU_GATE
47 config SUNXI_CCU_NM
48         bool
49         select RATIONAL
50         select SUNXI_CCU_FRAC
51         select SUNXI_CCU_GATE
53 config SUNXI_CCU_MP
54         bool
55         select SUNXI_CCU_GATE
56         select SUNXI_CCU_MUX
58 # SoC Drivers
60 config SUN6I_A31_CCU
61         bool "Support for the Allwinner A31/A31s CCU"
62         select SUNXI_CCU_DIV
63         select SUNXI_CCU_NK
64         select SUNXI_CCU_NKM
65         select SUNXI_CCU_NM
66         select SUNXI_CCU_MP
67         select SUNXI_CCU_PHASE
68         default MACH_SUN6I
70 config SUN8I_A23_CCU
71         bool "Support for the Allwinner A23 CCU"
72         select SUNXI_CCU_DIV
73         select SUNXI_CCU_MULT
74         select SUNXI_CCU_NK
75         select SUNXI_CCU_NKM
76         select SUNXI_CCU_NKMP
77         select SUNXI_CCU_NM
78         select SUNXI_CCU_MP
79         select SUNXI_CCU_PHASE
80         default MACH_SUN8I
82 config SUN8I_A33_CCU
83         bool "Support for the Allwinner A33 CCU"
84         select SUNXI_CCU_DIV
85         select SUNXI_CCU_MULT
86         select SUNXI_CCU_NK
87         select SUNXI_CCU_NKM
88         select SUNXI_CCU_NKMP
89         select SUNXI_CCU_NM
90         select SUNXI_CCU_MP
91         select SUNXI_CCU_PHASE
92         default MACH_SUN8I
94 config SUN8I_H3_CCU
95         bool "Support for the Allwinner H3 CCU"
96         select SUNXI_CCU_DIV
97         select SUNXI_CCU_NK
98         select SUNXI_CCU_NKM
99         select SUNXI_CCU_NKMP
100         select SUNXI_CCU_NM
101         select SUNXI_CCU_MP
102         select SUNXI_CCU_PHASE
103         default MACH_SUN8I
105 endif