| /optee_os/ta/mk/ |
| H A D | build-user-ta.mk | 8 ta-target := $(strip $(if $(CFG_USER_TA_TARGET_$(sm)), \ 10 $(default-user-ta-target))) 12 ifeq ($(ta-target),ta_arm32) 15 ifeq ($(ta-target),ta_arm64) 19 ta-dev-kit-dir$(sm) := $(out-dir)/export-$(ta-target) 31 CROSS_COMPILE_$(sm) := $(CROSS_COMPILE_$(ta-target)) 32 COMPILER_$(sm) := $(COMPILER_$(ta-target)) 35 cppflags$(sm) := $(cppflags$(ta-target)) $(CPPFLAGS_$(ta-target)) \ 40 cflags$(sm) := $(cflags$(ta-target)) $(CFLAGS_$(ta-target)) 41 aflags$(sm) := $(aflags$(ta-target)) [all …]
|
| /optee_os/mk/ |
| H A D | clang.mk | 6 clang-target := $(patsubst %-,%,$(notdir $(lastword $(CROSS_COMPILE_$(sm))))) 7 ifeq ($(clang-target),aarch64-linux) 8 clang-target := aarch64-linux-gnu 10 ifneq ($(clang-target),) 11 clang-target-opt := --target=$(clang-target) 15 CC$(sm) := $(ccache-cmd)$(OPTEE_CLANG_COMPILER_PATH)clang $(clang-target-opt) 19 CPP$(sm) := $(ccache-cmd)$(OPTEE_CLANG_COMPILER_PATH)clang $(clang-target-opt) -E
|
| /optee_os/scripts/ |
| H A D | notify_maintainers.py | 48 target = None 52 _, target = content.split(":", 1) 53 target = target.strip() 55 if target and target.upper() == "THE REST":
|
| /optee_os/core/lib/libfdt/ |
| H A D | fdt_overlay.c | 556 static int overlay_apply_node(void *fdt, int target, in overlay_apply_node() argument 575 ret = fdt_setprop(fdt, target, name, prop, prop_len); in overlay_apply_node() 585 nnode = fdt_add_subnode(fdt, target, name); in overlay_apply_node() 587 nnode = fdt_subnode_offset(fdt, target, name); in overlay_apply_node() 624 int target; in overlay_merge() local 638 target = overlay_get_target(fdt, fdto, fragment, NULL); in overlay_merge() 639 if (target < 0) in overlay_merge() 640 return target; in overlay_merge() 642 ret = overlay_apply_node(fdt, target, fdto, overlay); in overlay_merge() 696 int root_sym, ov_sym, prop, path_len, fragment, target; in overlay_symbol_update() local [all …]
|
| /optee_os/ |
| H A D | Makefile | 83 $(call force,default-user-ta-target,$(firstword $(ta-targets))) 87 define build-ta-target 88 ta-target := $(1) 91 $(foreach t, $(ta-targets), $(eval $(call build-ta-target, $(t))))
|
| H A D | CHANGELOG.md | 512 # OP-TEE - version 3.14.0 (target date: 2021-07-16)
|
| /optee_os/core/kernel/ |
| H A D | delay.c | 52 uint64_t target = timeout_init_us(us); in udelay() local 54 while (!timeout_elapsed(target)) in udelay()
|
| /optee_os/core/drivers/bnxt/ |
| H A D | bnxt.c | 66 vaddr_t target = 0; in bnxt_write32_multiple() local 80 target = bnxt_indirect_tgt_addr(dst); in bnxt_write32_multiple() 82 io_write32(target, *(uint32_t *)src); in bnxt_write32_multiple() 83 target += sizeof(uint32_t); in bnxt_write32_multiple()
|
| /optee_os/core/drivers/ |
| H A D | aplic_msi.c | 30 vaddr_t target = 0; in aplic_set_target() local 39 target = aplic->aplic_base + APLIC_TARGET_BASE + in aplic_set_target() 41 io_write32(target, val); in aplic_set_target()
|
| H A D | aplic_direct.c | 66 vaddr_t target = 0; in aplic_set_target() local 73 target = aplic->aplic_base + APLIC_TARGET_BASE + in aplic_set_target() 75 io_write32(target, val); in aplic_set_target()
|
| H A D | gic.c | 668 uint32_t target = 0; in gic_it_set_cpu_mask() local 679 target = io_read32(itargetsr); in gic_it_set_cpu_mask() 681 target &= ~(ITARGETSR_FIELD_MASK << target_shift); in gic_it_set_cpu_mask() 682 target |= cpu_mask << target_shift; in gic_it_set_cpu_mask() 683 DMSG("cpu_mask: writing %#"PRIx32" to %#" PRIxVA, target, itargetsr); in gic_it_set_cpu_mask() 684 io_write32(itargetsr, target); in gic_it_set_cpu_mask() 886 uint32_t target = io_read32(gd->gicd_base + GICD_ITARGETSR(reg_idx)); in gic_it_get_target() local 889 return (target & target_mask) >> target_shift; in gic_it_get_target()
|
| /optee_os/lib/libmbedtls/ |
| H A D | sub.mk | 156 srcs-$(sm-$(ta-target)) += $(addprefix mbedtls/library/, $(SRCS_X509)) 157 srcs-$(sm-$(ta-target)) += $(addprefix mbedtls/library/, $(SRCS_TLS)) 158 srcs-$(sm-$(ta-target)) += $(addprefix mbedtls/library/, $(SRCS_PSA))
|
| /optee_os/ta/ |
| H A D | ta.mk | 4 sm := $(ta-target) 70 ifeq ($(ta-target),ta_arm32) 135 ifeq ($(ta-target),ta_arm32) 185 ifeq ($(ta-target),ta_arm32)
|
| /optee_os/core/lib/libtomcrypt/src/misc/ |
| H A D | crc32.c | 22 #error The existing CRC32 implementation only works properly when the endianness of the target plat…
|
| /optee_os/lib/libmbedtls/mbedtls/library/ |
| H A D | aesce.c | 85 # pragma clang attribute push (__attribute__((target("aes"))), apply_to=function) 89 # pragma clang attribute push (__attribute__((target("aes"))), apply_to=function) 93 # pragma GCC target ("+crypto")
|
| H A D | sha256.c | 86 # pragma clang attribute push (__attribute__((target("sha2"))), apply_to=function) 92 # pragma clang attribute push (__attribute__((target("crypto"))), apply_to=function) 102 # pragma GCC target ("arch=armv8-a+crypto")
|
| H A D | aesni.c | 37 #pragma GCC target ("pclmul,sse2,aes") 40 #pragma clang attribute push (__attribute__((target("pclmul,sse2,aes"))), apply_to=function)
|
| H A D | sha512.c | 76 # pragma clang attribute push (__attribute__((target("sha3"))), apply_to=function) 83 # pragma clang attribute push (__attribute__((target("sha3"))), apply_to=function) 91 # pragma GCC target ("arch=armv8.2-a+sha3")
|
| /optee_os/lib/libutils/compiler-rt/lib/builtins/ |
| H A D | int_lib.h | 70 #error Unsupported target
|
| /optee_os/lib/libmbedtls/mbedtls/ |
| H A D | README.md | 79 * If not cross-compiling, running `make` with any target, or just `make`, will automatically genera… 107 In order to build for a Windows platform, you should use `WINDOWS_BUILD=1` if the target is Windows… 217 its include directories to your target (transitively, in the case of `PUBLIC` or
|
| H A D | ChangeLog | 574 which mainly causes failures when building Windows target using 1008 size and improving performance (depending on compiler and target 1057 for a target CPU that supports the requisite instructions (for example 1059 compilers still require MBEDTLS_HAVE_ASM and a 64-bit target.) 1180 compiler target flags on the command line; the library now sets target 1503 disables the target export/installation and package configuration. 2458 mbedcrypto, mbedx509 and apidoc CMake target names. This can be used by 2459 external CMake projects that include this one to avoid CMake target name 2460 clashes. The default value of this variable is "", so default target names 3546 the target system cannot be deduced automatically, by setting the option [all …]
|