Kconfig 954 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # SPI driver configuration options
  2. # Copyright (c) 2015-2016 Intel Corporation
  3. # SPDX-License-Identifier: Apache-2.0
  4. #
  5. # SPI Drivers
  6. #
  7. menuconfig SPI
  8. bool "SPI hardware bus support"
  9. help
  10. Enable support for the SPI hardware bus.
  11. if SPI
  12. config SPI_ASYNC
  13. bool "Enable Asynchronous call support"
  14. select POLL
  15. help
  16. This option enables the asynchronous API calls.
  17. config SPI_SLAVE
  18. bool "Enable Slave support [EXPERIMENTAL]"
  19. help
  20. Enables Driver SPI slave operations. Slave support depends
  21. on the driver and the hardware it runs on.
  22. config SPI_INIT_PRIORITY
  23. int "Init priority"
  24. default 70
  25. help
  26. Device driver initialization priority.
  27. config SPI_COMPLETION_TIMEOUT_TOLERANCE
  28. int "Completion timeout tolerance (ms)"
  29. default 200
  30. help
  31. The tolerance value in ms for the SPI completion timeout logic.
  32. module = SPI
  33. module-str = spi
  34. source "subsys/logging/Kconfig.template.log_config"
  35. source "drivers/spi/Kconfig.acts"
  36. endif # SPI