Kconfig 984 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # Kconfig - SE configuration options
  2. #
  3. # Copyright (c) 2015 Intel Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. menuconfig SE
  8. bool "SE device drivers"
  9. default n
  10. help
  11. Enable input device driver configuration
  12. if SE
  13. config LOG_SE_DEV_LEVEL
  14. int
  15. prompt "INPUT Device drivers log level"
  16. range 0 4
  17. default 0
  18. help
  19. Sets log level for PWM Device driver.
  20. Levels are:
  21. - 0 OFF, do not write
  22. - 1 ERROR, only write SYS_LOG_ERR
  23. - 2 WARNING, write SYS_LOG_WRN in addition to previous level
  24. - 3 INFO, write SYS_LOG_INF in addition to previous levels
  25. - 4 DEBUG, write SYS_LOG_DBG in addition to previous levels
  26. config AES_ACTS
  27. bool "Actions hardware aes"
  28. default n
  29. help
  30. Enable support for Actions hardware aes.
  31. if AES_ACTS
  32. config AES_DMA
  33. bool "AES encrypt by dma"
  34. default n
  35. help
  36. Enable DMA for hardware aes.
  37. endif # AES_ACTS
  38. config CRC_ACTS
  39. bool "Actions hardware crc"
  40. default n
  41. help
  42. Enable support for Actions hardware crc.
  43. endif # SE