Home
last modified time | relevance | path

Searched refs:property (Results 1 – 25 of 27) sorted by relevance

12

/optee_os-3.20.0/core/kernel/
A Dtpm.c29 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 Dsecstor_ta_mgmt.c49 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 Dstm32mp15xx-dhcom-pdk2.dtsi156 /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 Dstm32mp15xx-dkx.dtsi170 /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 Dstm32mp15xx-dhcor-avenger96.dtsi207 /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 Dstm32mp157c-ev1.dts298 /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 Dstm32mp157c-ed1.dts163 /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 Dstm32mp15xx-dhcom-som.dtsi250 /delete-property/dmas;
251 /delete-property/dma-names;
541 /delete-property/dmas;
542 /delete-property/dma-names;
A Dstm32mp15xx-dhcor-som.dtsi81 /delete-property/dmas;
82 /delete-property/dma-names;
A Dfsl-lx2160a.dtsi1266 /* iommu-map property is fixed up by u-boot */
/optee_os-3.20.0/core/lib/libfdt/include/
A Dlibfdt.h137 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 Dfdt_overlay.c428 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 Dfdt_ro.c699 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 Darm64_bti.S15 .pushsection .note.gnu.property, "a"
/optee_os-3.20.0/ldelf/
A Dldelf.ld.S33 .note.gnu.property : { *(.note.gnu.property) }
/optee_os-3.20.0/core/include/
A Dtpm2.h125 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 Dkern.ld.S128 .note.gnu.property : { *(.note.gnu.property) }
/optee_os-3.20.0/ta/arch/arm/
A Dta.ld.S29 .note.gnu.property : { *(.note.gnu.property) }
/optee_os-3.20.0/core/include/tee/
A Dtadb.h47 TEE_Result tee_tadb_ta_create(const struct tee_tadb_property *property,
/optee_os-3.20.0/core/drivers/tpm2/
A Dtpm2_chip.c58 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 Dtpm2_cmd.c151 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 Dsign_helper_kms.py38 @property
/optee_os-3.20.0/core/arch/arm/kernel/
A Dkern.ld.S157 .note.gnu.property : { *(.note.gnu.property) }
A Dsecure_partition.c364 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 Dtadb.c372 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()

Completed in 68 milliseconds

12