Kconfig 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. #
  2. # Renesas SH and SH Mobile PINCTRL drivers
  3. #
  4. if ARCH_SHMOBILE || SUPERH
  5. config PINCTRL_SH_PFC
  6. # XXX move off the gpio dependency
  7. depends on GENERIC_GPIO
  8. select GPIO_SH_PFC if ARCH_REQUIRE_GPIOLIB
  9. select PINMUX
  10. select PINCONF
  11. def_bool y
  12. help
  13. This enables pin control drivers for SH and SH Mobile platforms
  14. config GPIO_SH_PFC
  15. bool "SuperH PFC GPIO support"
  16. depends on PINCTRL_SH_PFC && GPIOLIB
  17. help
  18. This enables support for GPIOs within the SoC's pin function
  19. controller.
  20. config PINCTRL_PFC_R8A7740
  21. def_bool y
  22. depends on ARCH_R8A7740
  23. select PINCTRL_SH_PFC
  24. config PINCTRL_PFC_R8A7779
  25. def_bool y
  26. depends on ARCH_R8A7779
  27. select PINCTRL_SH_PFC
  28. config PINCTRL_PFC_SH7203
  29. def_bool y
  30. depends on CPU_SUBTYPE_SH7203
  31. depends on GENERIC_GPIO
  32. select PINCTRL_SH_PFC
  33. config PINCTRL_PFC_SH7264
  34. def_bool y
  35. depends on CPU_SUBTYPE_SH7264
  36. depends on GENERIC_GPIO
  37. select PINCTRL_SH_PFC
  38. config PINCTRL_PFC_SH7269
  39. def_bool y
  40. depends on CPU_SUBTYPE_SH7269
  41. depends on GENERIC_GPIO
  42. select PINCTRL_SH_PFC
  43. config PINCTRL_PFC_SH7372
  44. def_bool y
  45. depends on ARCH_SH7372
  46. select PINCTRL_SH_PFC
  47. config PINCTRL_PFC_SH73A0
  48. def_bool y
  49. depends on ARCH_SH73A0
  50. select PINCTRL_SH_PFC
  51. config PINCTRL_PFC_SH7720
  52. def_bool y
  53. depends on CPU_SUBTYPE_SH7720
  54. depends on GENERIC_GPIO
  55. select PINCTRL_SH_PFC
  56. config PINCTRL_PFC_SH7722
  57. def_bool y
  58. depends on CPU_SUBTYPE_SH7722
  59. depends on GENERIC_GPIO
  60. select PINCTRL_SH_PFC
  61. config PINCTRL_PFC_SH7723
  62. def_bool y
  63. depends on CPU_SUBTYPE_SH7723
  64. depends on GENERIC_GPIO
  65. select PINCTRL_SH_PFC
  66. config PINCTRL_PFC_SH7724
  67. def_bool y
  68. depends on CPU_SUBTYPE_SH7724
  69. depends on GENERIC_GPIO
  70. select PINCTRL_SH_PFC
  71. config PINCTRL_PFC_SH7734
  72. def_bool y
  73. depends on CPU_SUBTYPE_SH7734
  74. depends on GENERIC_GPIO
  75. select PINCTRL_SH_PFC
  76. config PINCTRL_PFC_SH7757
  77. def_bool y
  78. depends on CPU_SUBTYPE_SH7757
  79. depends on GENERIC_GPIO
  80. select PINCTRL_SH_PFC
  81. config PINCTRL_PFC_SH7785
  82. def_bool y
  83. depends on CPU_SUBTYPE_SH7785
  84. depends on GENERIC_GPIO
  85. select PINCTRL_SH_PFC
  86. config PINCTRL_PFC_SH7786
  87. def_bool y
  88. depends on CPU_SUBTYPE_SH7786
  89. depends on GENERIC_GPIO
  90. select PINCTRL_SH_PFC
  91. config PINCTRL_PFC_SHX3
  92. def_bool y
  93. depends on CPU_SUBTYPE_SHX3
  94. depends on GENERIC_GPIO
  95. select PINCTRL_SH_PFC
  96. endif