2016-06-29 19:05:23 +00:00
|
|
|
config SUNXI_CCU
|
|
|
|
bool "Clock support for Allwinner SoCs"
|
2016-09-08 21:28:29 +00:00
|
|
|
depends on ARCH_SUNXI || COMPILE_TEST
|
2017-03-27 09:57:53 +00:00
|
|
|
select RESET_CONTROLLER
|
2016-06-29 19:05:23 +00:00
|
|
|
default ARCH_SUNXI
|
2016-06-29 19:05:24 +00:00
|
|
|
|
|
|
|
if SUNXI_CCU
|
|
|
|
|
2016-07-06 06:31:34 +00:00
|
|
|
config SUN50I_A64_CCU
|
|
|
|
bool "Support for the Allwinner A64 CCU"
|
|
|
|
default ARM64 && ARCH_SUNXI
|
2017-03-02 17:43:57 +00:00
|
|
|
depends on (ARM64 && ARCH_SUNXI) || COMPILE_TEST
|
2016-07-06 06:31:34 +00:00
|
|
|
|
2016-10-04 08:09:58 +00:00
|
|
|
config SUN5I_CCU
|
|
|
|
bool "Support for the Allwinner sun5i family CCM"
|
|
|
|
default MACH_SUN5I
|
2017-03-02 17:43:57 +00:00
|
|
|
depends on MACH_SUN5I || COMPILE_TEST
|
2016-10-04 08:09:58 +00:00
|
|
|
|
2016-08-25 06:21:59 +00:00
|
|
|
config SUN6I_A31_CCU
|
|
|
|
bool "Support for the Allwinner A31/A31s CCU"
|
|
|
|
default MACH_SUN6I
|
2017-03-02 17:43:57 +00:00
|
|
|
depends on MACH_SUN6I || COMPILE_TEST
|
2016-08-25 06:21:59 +00:00
|
|
|
|
2016-08-31 14:55:00 +00:00
|
|
|
config SUN8I_A23_CCU
|
|
|
|
bool "Support for the Allwinner A23 CCU"
|
|
|
|
default MACH_SUN8I
|
2017-03-02 17:43:57 +00:00
|
|
|
depends on MACH_SUN8I || COMPILE_TEST
|
2016-08-31 14:55:00 +00:00
|
|
|
|
2016-08-24 12:10:15 +00:00
|
|
|
config SUN8I_A33_CCU
|
|
|
|
bool "Support for the Allwinner A33 CCU"
|
|
|
|
default MACH_SUN8I
|
2017-03-02 17:43:57 +00:00
|
|
|
depends on MACH_SUN8I || COMPILE_TEST
|
2016-08-24 12:10:15 +00:00
|
|
|
|
clk: sunxi-ng: Add driver for A83T CCU
The A83T clock control unit is a hybrid of some new style clock designs
from the A80, and old style layout from the other Allwinner SoCs.
Like the A80, the SoC does not have a low speed 32.768 kHz oscillator.
Unlike the A80, there is no clock input either. The only low speed clock
available is the internal oscillator which runs at around 16 MHz,
divided by 512, yielding a low speed clock around 31.250 kHz.
Also, the MMC2 module clock supports switching to a "new timing" mode.
This mode divides the clock output by half, and disables the CCU based
clock delays. The MMC controller must be configure to the same mode,
and then use its internal clock delays.
This driver does not support runtime switching of the timing modes.
Instead, the new timing mode is enforced at probe time. Consumers can
check which mode is active by trying to get the current phase delay
of the MMC2 phase clocks, which will return -ENOTSUPP if the new
timing mode is active.
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
2017-05-19 07:06:09 +00:00
|
|
|
config SUN8I_A83T_CCU
|
|
|
|
bool "Support for the Allwinner A83T CCU"
|
|
|
|
default MACH_SUN8I
|
|
|
|
|
2016-06-29 19:05:34 +00:00
|
|
|
config SUN8I_H3_CCU
|
|
|
|
bool "Support for the Allwinner H3 CCU"
|
2017-03-01 20:13:39 +00:00
|
|
|
default MACH_SUN8I || (ARM64 && ARCH_SUNXI)
|
2017-03-02 17:43:57 +00:00
|
|
|
depends on MACH_SUN8I || (ARM64 && ARCH_SUNXI) || COMPILE_TEST
|
2016-06-29 19:05:34 +00:00
|
|
|
|
2017-01-19 17:54:45 +00:00
|
|
|
config SUN8I_V3S_CCU
|
|
|
|
bool "Support for the Allwinner V3s CCU"
|
|
|
|
default MACH_SUN8I
|
2017-03-02 17:43:57 +00:00
|
|
|
depends on MACH_SUN8I || COMPILE_TEST
|
2017-01-19 17:54:45 +00:00
|
|
|
|
2017-05-14 16:30:34 +00:00
|
|
|
config SUN8I_DE2_CCU
|
|
|
|
bool "Support for the Allwinner SoCs DE2 CCU"
|
|
|
|
|
2017-08-15 05:55:29 +00:00
|
|
|
config SUN8I_R40_CCU
|
|
|
|
bool "Support for the Allwinner R40 CCU"
|
|
|
|
default MACH_SUN8I
|
|
|
|
depends on MACH_SUN8I || COMPILE_TEST
|
|
|
|
|
2017-01-28 12:22:34 +00:00
|
|
|
config SUN9I_A80_CCU
|
|
|
|
bool "Support for the Allwinner A80 CCU"
|
|
|
|
default MACH_SUN9I
|
2017-03-02 17:43:57 +00:00
|
|
|
depends on MACH_SUN9I || COMPILE_TEST
|
2017-01-28 12:22:34 +00:00
|
|
|
|
2017-04-04 09:50:57 +00:00
|
|
|
config SUN8I_R_CCU
|
|
|
|
bool "Support for Allwinner SoCs' PRCM CCUs"
|
|
|
|
default MACH_SUN8I || (ARCH_SUNXI && ARM64)
|
2017-01-28 12:22:34 +00:00
|
|
|
|
2016-06-29 19:05:24 +00:00
|
|
|
endif
|