/optee_os-3.20.0/core/kernel/ |
A D | tpm.c | 29 const uint32_t *property = NULL; in read_dt_tpm_log_info() local 43 property = fdt_getprop(fdt, node, dt_tpm_event_log_addr, &len_prop); in read_dt_tpm_log_info() 45 if (!property || len_prop != sizeof(uint32_t) * 2) in read_dt_tpm_log_info() 48 log_addr = fdt32_to_cpu(property[1]); in read_dt_tpm_log_info() 60 property = fdt_getprop(fdt, node, "tpm_event_log_size", &len_prop); in read_dt_tpm_log_info() 62 if (!property || len_prop != sizeof(uint32_t)) in read_dt_tpm_log_info() 65 *size = fdt32_to_cpu(property[0]); in read_dt_tpm_log_info()
|
/optee_os-3.20.0/core/pta/ |
A D | secstor_ta_mgmt.c | 49 struct tee_tadb_property property; in install_ta() local 93 memset(&property, 0, sizeof(property)); in install_ta() 94 COMPILE_TIME_ASSERT(sizeof(property.uuid) == sizeof(bs_ta.uuid)); in install_ta() 95 tee_uuid_from_octets(&property.uuid, bs_ta.uuid); in install_ta() 96 property.version = bs_ta.ta_version; in install_ta() 97 property.custom_size = 0; in install_ta() 98 property.bin_size = nw_size - offs; in install_ta() 99 DMSG("Installing %pUl", (void *)&property.uuid); in install_ta() 101 res = tee_tadb_ta_create(&property, &ta); in install_ta()
|
/optee_os-3.20.0/core/arch/arm/dts/ |
A D | stm32mp15xx-dhcom-pdk2.dtsi | 156 /delete-property/dmas; 157 /delete-property/dma-names; 167 /delete-property/dmas; 168 /delete-property/dma-names; 267 /delete-property/dmas; 268 /delete-property/dma-names; 283 /delete-property/dmas; 284 /delete-property/dma-names; 292 /delete-property/dmas; 293 /delete-property/dma-names;
|
A D | stm32mp15xx-dkx.dtsi | 170 /delete-property/dmas; 247 /delete-property/dmas; 426 /delete-property/dmas; 571 /delete-property/dmas; 586 /delete-property/dmas; 601 /delete-property/dmas; 616 /delete-property/dmas; 631 /delete-property/dmas; 640 /delete-property/dmas; 659 /delete-property/dmas; [all …]
|
A D | stm32mp15xx-dhcor-avenger96.dtsi | 207 /delete-property/dmas; 208 /delete-property/dma-names; 217 /delete-property/dmas; 218 /delete-property/dma-names; 371 /delete-property/dmas; 372 /delete-property/dma-names; 380 /delete-property/dmas; 381 /delete-property/dma-names; 391 /delete-property/dmas; 392 /delete-property/dma-names; [all …]
|
A D | stm32mp157c-ev1.dts | 298 /delete-property/dmas; 299 /delete-property/dma-names; 313 /delete-property/dmas; 314 /delete-property/dma-names; 328 /delete-property/dmas; 329 /delete-property/dma-names;
|
A D | stm32mp157c-ed1.dts | 163 /delete-property/dmas; 164 /delete-property/dma-names; 387 /delete-property/dmas; 388 /delete-property/dma-names; 399 /delete-property/dmas; 400 /delete-property/dma-names;
|
A D | stm32mp15xx-dhcom-som.dtsi | 250 /delete-property/dmas; 251 /delete-property/dma-names; 541 /delete-property/dmas; 542 /delete-property/dma-names;
|
A D | stm32mp15xx-dhcor-som.dtsi | 81 /delete-property/dmas; 82 /delete-property/dma-names;
|
A D | fsl-lx2160a.dtsi | 1266 /* iommu-map property is fixed up by u-boot */
|
/optee_os-3.20.0/core/lib/libfdt/include/ |
A D | libfdt.h | 137 static inline void fdt32_st(void *property, uint32_t value) in fdt32_st() argument 139 uint8_t *bp = property; in fdt32_st() 161 static inline void fdt64_st(void *property, uint64_t value) in fdt64_st() argument 163 uint8_t *bp = property; in fdt64_st() 605 #define fdt_for_each_property_offset(property, fdt, node) \ argument 606 for (property = fdt_first_property_offset(fdt, node); \ 607 property >= 0; \ 608 property = fdt_next_property_offset(fdt, property)) 1087 int fdt_stringlist_count(const void *fdt, int nodeoffset, const char *property); 1108 int fdt_stringlist_search(const void *fdt, int nodeoffset, const char *property, [all …]
|
/optee_os-3.20.0/core/lib/libfdt/ |
A D | fdt_overlay.c | 428 int property) in overlay_fixup_phandle() argument 434 value = fdt_getprop_by_offset(fdto, property, in overlay_fixup_phandle() 512 int property; in overlay_fixup_phandles() local 526 fdt_for_each_property_offset(property, fdto, fixups_off) { in overlay_fixup_phandles() 529 ret = overlay_fixup_phandle(fdt, fdto, symbols_off, property); in overlay_fixup_phandles() 559 int property; in overlay_apply_node() local 562 fdt_for_each_property_offset(property, fdto, node) { in overlay_apply_node() 568 prop = fdt_getprop_by_offset(fdto, property, &name, in overlay_apply_node()
|
A D | fdt_ro.c | 699 int fdt_stringlist_count(const void *fdt, int nodeoffset, const char *property) in fdt_stringlist_count() argument 704 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_count() 724 int fdt_stringlist_search(const void *fdt, int nodeoffset, const char *property, in fdt_stringlist_search() argument 730 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_search() 755 const char *property, int idx, in fdt_stringlist_get() argument 761 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_get()
|
/optee_os-3.20.0/lib/libutils/ext/include/ |
A D | arm64_bti.S | 15 .pushsection .note.gnu.property, "a"
|
/optee_os-3.20.0/ldelf/ |
A D | ldelf.ld.S | 33 .note.gnu.property : { *(.note.gnu.property) }
|
/optee_os-3.20.0/core/include/ |
A D | tpm2.h | 125 uint32_t property; member 190 enum tpm2_result tpm2_get_capability(uint32_t capability, uint32_t property,
|
/optee_os-3.20.0/core/arch/riscv/kernel/ |
A D | kern.ld.S | 128 .note.gnu.property : { *(.note.gnu.property) }
|
/optee_os-3.20.0/ta/arch/arm/ |
A D | ta.ld.S | 29 .note.gnu.property : { *(.note.gnu.property) }
|
/optee_os-3.20.0/core/include/tee/ |
A D | tadb.h | 47 TEE_Result tee_tadb_ta_create(const struct tee_tadb_property *property,
|
/optee_os-3.20.0/core/drivers/tpm2/ |
A D | tpm2_chip.c | 58 static enum tpm2_result tpm2_get_tpm_property(uint32_t property, uint32_t *val) in tpm2_get_tpm_property() argument 72 ret = tpm2_get_capability(TPM2_CAP_TPM_PROPERTIES, property, 1, prop, in tpm2_get_tpm_property()
|
A D | tpm2_cmd.c | 151 enum tpm2_result tpm2_get_capability(uint32_t capability, uint32_t property, in tpm2_get_capability() argument 172 tpm2_cmd_add_u32(buf, buf_len, property); in tpm2_get_capability()
|
/optee_os-3.20.0/scripts/ |
A D | sign_helper_kms.py | 38 @property
|
/optee_os-3.20.0/core/arch/arm/kernel/ |
A D | kern.ld.S | 157 .note.gnu.property : { *(.note.gnu.property) }
|
A D | secure_partition.c | 364 static TEE_Result sp_dt_get_u64(const void *fdt, int node, const char *property, in sp_dt_get_u64() argument 370 p = fdt_getprop(fdt, node, property, &len); in sp_dt_get_u64() 379 static TEE_Result sp_dt_get_u32(const void *fdt, int node, const char *property, in sp_dt_get_u32() argument 385 p = fdt_getprop(fdt, node, property, &len); in sp_dt_get_u32() 395 const char *property, TEE_UUID *uuid) in sp_dt_get_uuid() argument 402 p = fdt_getprop(fdt, node, property, &len); in sp_dt_get_uuid()
|
/optee_os-3.20.0/core/tee/ |
A D | tadb.c | 372 TEE_Result tee_tadb_ta_create(const struct tee_tadb_property *property, in tee_tadb_ta_create() argument 379 if (is_null_uuid(&property->uuid)) in tee_tadb_ta_create() 413 ta->entry.prop = *property; in tee_tadb_ta_create()
|