1config CLK_SUNXI 2 bool "Clock support for Allwinner SoCs" 3 depends on CLK && ARCH_SUNXI 4 select DM_RESET 5 default y 6 help 7 This enables support for common clock driver API on Allwinner 8 SoCs. 9 10if CLK_SUNXI 11 12config CLK_SUN4I_A10 13 bool "Clock driver for Allwinner A10/A20" 14 default MACH_SUN4I || MACH_SUN7I 15 help 16 This enables common clock driver support for platforms based 17 on Allwinner A10/A20 SoC. 18 19config CLK_SUN5I_A10S 20 bool "Clock driver for Allwinner A10s/A13" 21 default MACH_SUN5I 22 help 23 This enables common clock driver support for platforms based 24 on Allwinner A10s/A13 SoC. 25 26config CLK_SUN6I_A31 27 bool "Clock driver for Allwinner A31/A31s" 28 default MACH_SUN6I 29 help 30 This enables common clock driver support for platforms based 31 on Allwinner A31/A31s SoC. 32 33config CLK_SUN8I_A23 34 bool "Clock driver for Allwinner A23/A33" 35 default MACH_SUN8I_A23 || MACH_SUN8I_A33 36 help 37 This enables common clock driver support for platforms based 38 on Allwinner A23/A33 SoC. 39 40config CLK_SUN8I_A83T 41 bool "Clock driver for Allwinner A83T" 42 default MACH_SUN8I_A83T 43 help 44 This enables common clock driver support for platforms based 45 on Allwinner A83T SoC. 46 47config CLK_SUN8I_R40 48 bool "Clock driver for Allwinner R40" 49 default MACH_SUN8I_R40 50 help 51 This enables common clock driver support for platforms based 52 on Allwinner R40 SoC. 53 54config CLK_SUN8I_V3S 55 bool "Clock driver for Allwinner V3S" 56 default MACH_SUN8I_V3S 57 help 58 This enables common clock driver support for platforms based 59 on Allwinner V3S SoC. 60 61config CLK_SUN9I_A80 62 bool "Clock driver for Allwinner A80" 63 default MACH_SUN9I 64 help 65 This enables common clock driver support for platforms based 66 on Allwinner A80 SoC. 67 68config CLK_SUN8I_H3 69 bool "Clock driver for Allwinner H3/H5" 70 default MACH_SUNXI_H3_H5 71 help 72 This enables common clock driver support for platforms based 73 on Allwinner H3/H5 SoC. 74 75config CLK_SUN50I_H6 76 bool "Clock driver for Allwinner H6" 77 default MACH_SUN50I_H6 78 help 79 This enables common clock driver support for platforms based 80 on Allwinner H6 SoC. 81 82config CLK_SUN50I_A64 83 bool "Clock driver for Allwinner A64" 84 default MACH_SUN50I 85 help 86 This enables common clock driver support for platforms based 87 on Allwinner A64 SoC. 88 89endif # CLK_SUNXI 90