| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | # Kconfig - SE configuration options## Copyright (c) 2015 Intel Corporation## SPDX-License-Identifier: Apache-2.0#menuconfig SE	bool "SE device drivers"	default n	help	  Enable input device driver configurationif SEconfig LOG_SE_DEV_LEVEL	int	prompt "INPUT Device drivers log level"	range 0 4	default 0	help	  Sets log level for PWM Device driver.	  Levels are:	  - 0 OFF, do not write	  - 1 ERROR, only write SYS_LOG_ERR	  - 2 WARNING, write SYS_LOG_WRN in addition to previous level	  - 3 INFO, write SYS_LOG_INF in addition to previous levels	  - 4 DEBUG, write SYS_LOG_DBG in addition to previous levelsconfig AES_ACTS	bool "Actions hardware aes"	default n	help	  Enable support for Actions hardware aes.if AES_ACTS	config AES_DMA	bool "AES encrypt by dma"	default n	help	  Enable DMA for hardware aes.endif # AES_ACTSconfig CRC_ACTS	bool "Actions hardware crc"	default n	help	  Enable support for Actions hardware crc.endif # SE
 |