Kconfig 693 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # GPIO configuration options
  2. # Copyright (c) 2015 Intel Corporation
  3. # SPDX-License-Identifier: Apache-2.0
  4. menuconfig GPIO
  5. bool "GPIO Drivers"
  6. select HAS_DTS_GPIO
  7. help
  8. Include GPIO drivers in system config
  9. if GPIO
  10. module = GPIO
  11. module-str = gpio
  12. source "subsys/logging/Kconfig.template.log_config"
  13. config GPIO_SHELL
  14. bool "Enable GPIO Shell"
  15. depends on SHELL
  16. help
  17. Enable GPIO Shell for testing.
  18. config EXTEND_GPIO_ET6416
  19. bool "Enable GPIO_ET6416"
  20. help
  21. Enable GPIO GPIO_ET6416.
  22. config EXTEND_GPIO_ET6416_SHELL
  23. bool "Enable GPIO_ET6416 shell dbg"
  24. depends on EXTEND_GPIO_ET6416
  25. help
  26. Enable GPIO GPIO_ET6416 shell dbg.
  27. source "drivers/gpio/Kconfig.acts"
  28. endif # GPIO