Home
last modified time | relevance | path

Searched refs:enabled (Results 1 – 25 of 26) sorted by relevance

12

/optee_os-3.20.0/core/
A Dcrypto.mk200 _CFG_CORE_LTC_AES_DESC := $(call cfg-one-enabled, CFG_CRYPTO_XTS CFG_CRYPTO_CCM)
217 _CFG_CORE_LTC_AES_DESC := $(call cfg-one-enabled, _CFG_CORE_LTC_AES_DESC \
233 ltc-one-enabled = $(call cfg-one-enabled,$(foreach v,$(1),_CFG_CORE_LTC_$(v)))
234 _CFG_CORE_LTC_ACIPHER := $(call ltc-one-enabled, RSA DSA DH ECC)
236 $(filter y,$(call ltc-one-enabled, CCM GCM)))
237 _CFG_CORE_LTC_CIPHER := $(call ltc-one-enabled, AES_DESC DES)
238 _CFG_CORE_LTC_HASH := $(call ltc-one-enabled, MD5 SHA1 SHA224 SHA256 SHA384 \
240 _CFG_CORE_LTC_MAC := $(call ltc-one-enabled, HMAC CMAC CBC_MAC)
241 _CFG_CORE_LTC_CBC := $(call ltc-one-enabled, CBC CBC_MAC)
242 _CFG_CORE_LTC_ASN1 := $(call ltc-one-enabled, RSA DSA ECC)
[all …]
/optee_os-3.20.0/mk/
A Dcheckconf.mk101 cfg-one-enabled = $(if $(filter y, $(foreach var,$(1),$($(var)))),y,n)
106 cfg-all-enabled = $(if $(strip $(1)),$(if $(call _cfg-all-enabled,$(1)),y,n),n)
107 _cfg-all-enabled = \
111 $(call _cfg-all-enabled,$(filter-out $(firstword $(1)),$(1))), \
124 $(if $(filter y,$(call cfg-all-enabled,$(2))), \
139 $(if $(filter y,$(call cfg-one-enabled,$(2))), \
A Dconfig.mk222 _CFG_WITH_SECURE_STORAGE := $(call cfg-one-enabled,CFG_REE_FS CFG_RPMB_FS)
340 _CFG_CORE_STACK_PROTECTOR := $(call cfg-one-enabled, CFG_CORE_STACK_PROTECTOR \
343 _CFG_TA_STACK_PROTECTOR := $(call cfg-one-enabled, CFG_TA_STACK_PROTECTOR \
439 CFG_CORE_BGET_BESTFIT ?= $(call cfg-one-enabled, CFG_WITH_PAGER CFG_LOCKDEP)
518 _CFG_USE_DTB_OVERLAY := $(call cfg-one-enabled,CFG_EXTERNAL_DTB_OVERLAY \
639 CFG_SECSTOR_TA ?= $(call cfg-all-enabled,CFG_REE_FS CFG_WITH_USER_TA)
643 CFG_SECSTOR_TA_MGMT_PTA ?= $(call cfg-all-enabled,CFG_SECSTOR_TA)
869 CFG_DRIVERS_CLK_DT ?= $(call cfg-all-enabled,CFG_DRIVERS_CLK CFG_DT)
908 ifeq (y-y,$(CFG_VIRTUALIZATION)-$(call cfg-one-enabled, CFG_TA_BTI CFG_CORE_BTI))
/optee_os-3.20.0/core/drivers/crypto/se050/
A Dcrypto.mk68 se050-one-enabled = $(call cfg-one-enabled, \
75 $(call force,CFG_NXP_SE05X_ACIPHER_DRV,$(call se050-one-enabled,RSA ECC))
95 $(call force,CFG_NXP_SE05X_CIPHER_DRV,$(call se050-one-enabled,CTR))
/optee_os-3.20.0/core/drivers/crypto/caam/
A Dsub.mk11 subdirs-$(call cfg-one-enabled, CFG_NXP_CAAM_HASH_DRV CFG_NXP_CAAM_HMAC_DRV) += hash
12 subdirs-$(call cfg-one-enabled, CFG_NXP_CAAM_CIPHER_DRV CFG_NXP_CAAM_CMAC_DRV) += cipher
A Dcrypto.mk128 cryphw-one-enabled = $(call cfg-one-enabled, \
169 $(call force, CFG_NXP_CAAM_ACIPHER_DRV, $(call cryphw-one-enabled, RSA ECC DH DSA))
170 $(call force, CFG_CRYPTO_DRV_MAC, $(call cryphw-one-enabled, HMAC CMAC))
/optee_os-3.20.0/core/drivers/
A Datmel_wdt.c66 bool enabled; member
109 wdt->enabled = true; in atmel_wdt_enable()
123 wdt->enabled = false; in atmel_wdt_disable()
199 if (wdt->enabled) in atmel_wdt_pm()
203 if (wdt->enabled) in atmel_wdt_pm()
/optee_os-3.20.0/lib/libmbedtls/core/
A Dsub.mk3 srcs-$(call cfg-one-enabled, CFG_CRYPTO_MD5 CFG_CRYPTO_SHA1 CFG_CRYPTO_SHA224 \
24 srcs-$(call cfg-one-enabled, CFG_CRYPTO_RSA CFG_CRYPTO_DH \
/optee_os-3.20.0/core/lib/libtomcrypt/src/ciphers/
A Dsub.mk1 subdirs-$(call cfg-one-enabled, _CFG_CORE_LTC_AES _CFG_CORE_LTC_AES_DESC) += aes
/optee_os-3.20.0/core/arch/arm/plat-stm32mp1/
A Dconf.mk69 ifeq ($(call cfg-one-enabled,CFG_STM32MP15 CFG_STM32MP13),n)
70 $(error One of CFG_STM32MP15 CFG_STM32MP13 must be enabled)
72 ifeq ($(call cfg-all-enabled,CFG_STM32MP15 CFG_STM32MP13),y)
73 $(error Only one of CFG_STM32MP15 CFG_STM32MP13 must be enabled)
169 ifeq ($(call cfg-one-enabled, CFG_STM32_CRYP),y)
306 ifneq (y,$(call cfg-one-enabled,CFG_STM32MP15_HUK_BSEC_KEY CFG_STM32MP15_HUK_BSEC_DERIVE_UID))
314 ifeq ($(call cfg-all-enabled,CFG_STM32MP15 CFG_STM32MP13),y)
A Dscmi_server.c45 bool enabled; member
90 .enabled = (_init_enabled), \
445 return (int32_t)clock->enabled; in plat_scmi_clock_get_state()
460 if (!clock->enabled) { in plat_scmi_clock_set_state()
463 clock->enabled = true; in plat_scmi_clock_set_state()
466 if (clock->enabled) { in plat_scmi_clock_set_state()
469 clock->enabled = false; in plat_scmi_clock_set_state()
754 bool enabled = false; in pmic_get_state() local
760 enabled = stpmic1_is_regulator_enabled(voltd->priv_id); in pmic_get_state()
763 if (enabled) in pmic_get_state()
[all …]
/optee_os-3.20.0/core/pta/tests/
A Dsub.mk1 srcs-$(call cfg-all-enabled,CFG_REE_FS CFG_WITH_USER_TA) += fs_htree.c
/optee_os-3.20.0/core/pta/
A Dgprof.c101 sbuf->enabled = true; in gprof_start_pc_sampling()
127 if (sbuf->enabled) in gprof_stop_pc_sampling()
128 sbuf->enabled = false; in gprof_stop_pc_sampling()
/optee_os-3.20.0/core/tee/
A Dsub.mk45 ifeq ($(call cfg-one-enabled,CFG_WITH_USER_TA _CFG_WITH_SECURE_STORAGE),y)
/optee_os-3.20.0/core/arch/arm/
A Darm.mk57 arm64-platform-hard-float-enabled := y
59 arm32-platform-hard-float-enabled := y
288 ifeq ($(arm32-platform-hard-float-enabled),y)
305 ifeq ($(arm32-platform-hard-float-enabled),y)
335 ifeq ($(arm64-platform-hard-float-enabled),y)
/optee_os-3.20.0/core/include/kernel/
A Dtee_ta_manager.h59 bool enabled; /* Sampling enabled? */ member
/optee_os-3.20.0/core/arch/riscv/
A Driscv.mk51 ifneq (y,$(call cfg-one-enabled,CFG_RISCV_M_MODE M CFG_RISCV_S_MODE))
184 ifeq ($(rv64-platform-hard-float-enabled),y)
/optee_os-3.20.0/lib/libmbedtls/mbedtls/
A DChangeLog22 MBEDTLS_USE_PSA_CRYPTO is enabled, an opaque key (created with
175 MBEDTLS_ERROR_STRERROR_DUMMY is enabled.
393 MBEDTLS_PSA_CRYPTO_C became enabled by default.
963 MBEDTLS_SSL_HW_RECORD_ACCEL are enabled.
1351 from the default list (enabled by default). See
1423 they are enabled.
1682 enabled by default.
1690 the use of datagram packing (enabled by default).
2059 is not enabled. Set MBEDTLS_SSL_MIN_MAJOR_VERSION
2596 * Fix compilation without MBEDTLS_SELF_TEST enabled.
[all …]
A DREADME.md100 If you disabled the test suites, but kept the programs enabled, you can still run a much smaller se…
188 … `tests/scripts/key-exchanges.pl` test builds in configurations with a single key exchange enabled
/optee_os-3.20.0/core/lib/libtomcrypt/src/headers/
A Dtomcrypt_custom.h625 #error PK requires ASN.1 DER functionality, make sure LTC_DER is enabled
/optee_os-3.20.0/core/arch/arm/dts/
A Dat91-sama5d2_xplained.dts426 * the muxing is done when channel is enabled.
/optee_os-3.20.0/lib/libmbedtls/mbedtls/include/mbedtls/
A Dssl.h1842 int *enabled,
/optee_os-3.20.0/core/kernel/
A Dtee_ta_manager.c1069 if (!sbuf || !sbuf->enabled) in tee_ta_gprof_sample_pc()
/optee_os-3.20.0/lib/libutils/isoc/
A Dbget.doc165 Functions implemented by BGET (some are enabled by certain of the
/optee_os-3.20.0/lib/libmbedtls/mbedtls/library/
A Dssl_tls.c116 int *enabled, in mbedtls_ssl_get_peer_cid() argument
120 *enabled = MBEDTLS_SSL_CID_DISABLED; in mbedtls_ssl_get_peer_cid()
148 *enabled = MBEDTLS_SSL_CID_ENABLED; in mbedtls_ssl_get_peer_cid()

Completed in 61 milliseconds

12