Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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
  6. if SUNXI_CCU
  7. config SUN50I_A64_CCU
  8. bool "Support for the Allwinner A64 CCU"
  9. default ARM64 && ARCH_SUNXI
  10. depends on (ARM64 && ARCH_SUNXI) || COMPILE_TEST
  11. config SUN50I_H6_CCU
  12. bool "Support for the Allwinner H6 CCU"
  13. default ARM64 && ARCH_SUNXI
  14. depends on (ARM64 && ARCH_SUNXI) || COMPILE_TEST
  15. config SUN50I_H6_R_CCU
  16. bool "Support for the Allwinner H6 PRCM CCU"
  17. default ARM64 && ARCH_SUNXI
  18. depends on (ARM64 && ARCH_SUNXI) || COMPILE_TEST
  19. config SUN4I_A10_CCU
  20. bool "Support for the Allwinner A10/A20 CCU"
  21. default MACH_SUN4I
  22. default MACH_SUN7I
  23. depends on MACH_SUN4I || MACH_SUN7I || COMPILE_TEST
  24. config SUN5I_CCU
  25. bool "Support for the Allwinner sun5i family CCM"
  26. default MACH_SUN5I
  27. depends on MACH_SUN5I || COMPILE_TEST
  28. config SUN6I_A31_CCU
  29. bool "Support for the Allwinner A31/A31s CCU"
  30. default MACH_SUN6I
  31. depends on MACH_SUN6I || COMPILE_TEST
  32. config SUN8I_A23_CCU
  33. bool "Support for the Allwinner A23 CCU"
  34. default MACH_SUN8I
  35. depends on MACH_SUN8I || COMPILE_TEST
  36. config SUN8I_A33_CCU
  37. bool "Support for the Allwinner A33 CCU"
  38. default MACH_SUN8I
  39. depends on MACH_SUN8I || COMPILE_TEST
  40. config SUN8I_A83T_CCU
  41. bool "Support for the Allwinner A83T CCU"
  42. default MACH_SUN8I
  43. config SUN8I_H3_CCU
  44. bool "Support for the Allwinner H3 CCU"
  45. default MACH_SUN8I || (ARM64 && ARCH_SUNXI)
  46. depends on MACH_SUN8I || (ARM64 && ARCH_SUNXI) || COMPILE_TEST
  47. config SUN8I_V3S_CCU
  48. bool "Support for the Allwinner V3s CCU"
  49. default MACH_SUN8I
  50. depends on MACH_SUN8I || COMPILE_TEST
  51. config SUN8I_DE2_CCU
  52. bool "Support for the Allwinner SoCs DE2 CCU"
  53. config SUN8I_R40_CCU
  54. bool "Support for the Allwinner R40 CCU"
  55. default MACH_SUN8I
  56. depends on MACH_SUN8I || COMPILE_TEST
  57. config SUN9I_A80_CCU
  58. bool "Support for the Allwinner A80 CCU"
  59. default MACH_SUN9I
  60. depends on MACH_SUN9I || COMPILE_TEST
  61. config SUN8I_R_CCU
  62. bool "Support for Allwinner SoCs' PRCM CCUs"
  63. default MACH_SUN8I || (ARCH_SUNXI && ARM64)
  64. endif