1# SPDX-License-Identifier: GPL-2.0 2# common clock support for ROCKCHIP SoC family. 3 4config COMMON_CLK_ROCKCHIP 5 bool "Rockchip clock controller common support" 6 depends on ARCH_ROCKCHIP 7 default ARCH_ROCKCHIP 8 help 9 Say y here to enable common clock controller for Rockchip platforms. 10 11if COMMON_CLK_ROCKCHIP 12config CLK_PX30 13 bool "Rockchip PX30 clock controller support" 14 default y 15 help 16 Build the driver for PX30 Clock Driver. 17 18config CLK_RV110X 19 bool "Rockchip RV110x clock controller support" 20 default y 21 help 22 Build the driver for RV110x Clock Driver. 23 24config CLK_RK3036 25 bool "Rockchip RK3036 clock controller support" 26 default y 27 help 28 Build the driver for RK3036 Clock Driver. 29 30config CLK_RK312X 31 bool "Rockchip RK312x clock controller support" 32 default y 33 help 34 Build the driver for RK312x Clock Driver. 35 36config CLK_RK3188 37 bool "Rockchip RK3188 clock controller support" 38 default y 39 help 40 Build the driver for RK3188 Clock Driver. 41 42config CLK_RK322X 43 bool "Rockchip RK322x clock controller support" 44 default y 45 help 46 Build the driver for RK322x Clock Driver. 47 48config CLK_RK3288 49 bool "Rockchip RK3288 clock controller support" 50 depends on ARM 51 default y 52 help 53 Build the driver for RK3288 Clock Driver. 54 55config CLK_RK3308 56 bool "Rockchip RK3308 clock controller support" 57 default y 58 help 59 Build the driver for RK3308 Clock Driver. 60 61config CLK_RK3328 62 bool "Rockchip RK3328 clock controller support" 63 default y 64 help 65 Build the driver for RK3328 Clock Driver. 66 67config CLK_RK3368 68 bool "Rockchip RK3368 clock controller support" 69 default y 70 help 71 Build the driver for RK3368 Clock Driver. 72 73config CLK_RK3399 74 tristate "Rockchip RK3399 clock controller support" 75 default y 76 help 77 Build the driver for RK3399 Clock Driver. 78endif 79