Kconfig 358 B

1234567891011121314151617181920212223242526
  1. # SPDX-License-Identifier: BSD-2-Clause
  2. menu "GPIO Support"
  3. config FDT_GPIO
  4. bool "FDT based GPIO drivers"
  5. depends on FDT
  6. select GPIO
  7. default n
  8. if FDT_GPIO
  9. config FDT_GPIO_SIFIVE
  10. bool "SiFive GPIO FDT driver"
  11. default n
  12. config FDT_GPIO_STARFIVE
  13. bool "StarFive GPIO FDT driver"
  14. default n
  15. endif
  16. config GPIO
  17. bool "GPIO support"
  18. default n
  19. endmenu