Kconfig.acts 854 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # Copyright (c) 2018 Intel Corporation
  2. # SPDX-License-Identifier: Apache-2.0
  3. menuconfig I2C_ACTS
  4. bool "actions I2C driver"
  5. select RING_BUFFER
  6. help
  7. Enable support for actions I2C driver
  8. menuconfig I2CMT_ACTS
  9. bool "actions I2CMT driver"
  10. select RBUF_LIB
  11. help
  12. Enable support for actions I2CMT driver
  13. if I2CMT_ACTS
  14. config I2CMT_LARK
  15. bool "I2CMT driver on SoC Lark"
  16. default n
  17. depends on SOC_SERIES_LARK
  18. help
  19. Enable I2CMT driver on SoC Lark
  20. config I2CMT_LEOPARD
  21. bool "I2CMT driver on SoC Leopard"
  22. default y
  23. depends on SOC_SERIES_LEOPARD
  24. help
  25. Enable I2CMT driver on SoC Leopard
  26. config I2CMT_0_MAX_TASK_LEN
  27. int "I2CMT0 max task len"
  28. default 256
  29. help
  30. Setting max task len limit for I2CMT0
  31. config I2CMT_1_MAX_TASK_LEN
  32. int "I2CMT1 max task len"
  33. default 256
  34. help
  35. Setting max task len limit for I2CMT1
  36. endif # I2CMT_ACTS