| /optee_os/core/kernel/ |
| H A D | tpm.c | 30 const uint32_t *property = NULL; in read_dt_tpm_log_info() local 44 property = fdt_getprop(fdt, node, dt_tpm_event_log_addr, &len_prop); in read_dt_tpm_log_info() 46 if (!property || len_prop != sizeof(uint32_t) * 2) in read_dt_tpm_log_info() 49 log_addr = reg_pair_to_64(fdt32_to_cpu(property[0]), in read_dt_tpm_log_info() 50 fdt32_to_cpu(property[1])); in read_dt_tpm_log_info() 64 property = fdt_getprop(fdt, node, "tpm_event_log_size", &len_prop); in read_dt_tpm_log_info() 66 if (!property || len_prop != sizeof(uint32_t)) in read_dt_tpm_log_info() 69 *size = fdt32_to_cpu(property[0]); in read_dt_tpm_log_info()
|
| /optee_os/core/pta/ |
| H 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/core/arch/arm/dts/ |
| H A D | stm32mp15xx-dkx.dtsi | 176 /delete-property/dmas; 177 /delete-property/dma-names; 254 /delete-property/dmas; 255 /delete-property/dma-names; 434 /delete-property/dmas; 435 /delete-property/dma-names; 585 /delete-property/dmas; 586 /delete-property/dma-names; 600 /delete-property/dmas; 601 /delete-property/dma-names; [all …]
|
| H 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;
|
| H A D | stm32mp15xx-dhcor-avenger96.dtsi | 208 /delete-property/dmas; 209 /delete-property/dma-names; 218 /delete-property/dmas; 219 /delete-property/dma-names; 372 /delete-property/dmas; 373 /delete-property/dma-names; 381 /delete-property/dmas; 382 /delete-property/dma-names; 392 /delete-property/dmas; 393 /delete-property/dma-names; [all …]
|
| H 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;
|
| H A D | stm32mp157c-ed1.dts | 190 /delete-property/dmas; 191 /delete-property/dma-names; 412 /delete-property/dmas; 413 /delete-property/dma-names; 424 /delete-property/dmas; 425 /delete-property/dma-names;
|
| H A D | stm32mp15xx-dhcom-som.dtsi | 267 /delete-property/dmas; 268 /delete-property/dma-names; 558 /delete-property/dmas; 559 /delete-property/dma-names;
|
| H A D | stm32mp15xx-dhcor-som.dtsi | 98 /delete-property/dmas; 99 /delete-property/dma-names;
|
| H A D | fsl-lx2160a.dtsi | 1272 /* iommu-map property is fixed up by u-boot */
|
| /optee_os/core/lib/libfdt/include/ |
| H 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/core/lib/libfdt/ |
| H 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()
|
| H A D | fdt_ro.c | 709 int fdt_stringlist_count(const void *fdt, int nodeoffset, const char *property) in fdt_stringlist_count() argument 714 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_count() 734 int fdt_stringlist_search(const void *fdt, int nodeoffset, const char *property, in fdt_stringlist_search() argument 740 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_search() 765 const char *property, int idx, in fdt_stringlist_get() argument 771 list = fdt_getprop(fdt, nodeoffset, property, &length); in fdt_stringlist_get()
|
| /optee_os/lib/libutils/ext/include/ |
| H A D | arm64_bti.S | 15 .pushsection .note.gnu.property, "a"
|
| /optee_os/ldelf/ |
| H A D | ldelf.ld.S | 33 .note.gnu.property : { *(.note.gnu.property) }
|
| /optee_os/core/drivers/clk/sam/ |
| H A D | at91_cpu_opp.c | 70 const char *property = "opp-hz"; in dt_get_opp_hz() local 74 p = fdt_getprop(fdt, node, property, &len); in dt_get_opp_hz()
|
| /optee_os/ta/arch/riscv/ |
| H A D | ta.ld.S | 26 .note.gnu.property : { *(.note.gnu.property) }
|
| /optee_os/ta/arch/arm/ |
| H A D | ta.ld.S | 28 .note.gnu.property : { *(.note.gnu.property) }
|
| /optee_os/core/arch/riscv/kernel/ |
| H A D | kern.ld.S | 144 .note.gnu.property : { *(.note.gnu.property) }
|
| /optee_os/core/include/tee/ |
| H A D | tadb.h | 47 TEE_Result tee_tadb_ta_create(const struct tee_tadb_property *property,
|
| /optee_os/scripts/ |
| H A D | sign_helper_kms.py | 38 @property
|
| /optee_os/core/arch/arm/kernel/ |
| H A D | kern.ld.S | 145 .note.gnu.property : { *(.note.gnu.property) }
|
| H A D | secure_partition.c | 385 static TEE_Result sp_dt_get_u64(const void *fdt, int node, const char *property, in sp_dt_get_u64() argument 391 p = fdt_getprop(fdt, node, property, &len); in sp_dt_get_u64() 403 static TEE_Result sp_dt_get_u32(const void *fdt, int node, const char *property, in sp_dt_get_u32() argument 409 p = fdt_getprop(fdt, node, property, &len); in sp_dt_get_u32() 421 static TEE_Result sp_dt_get_u16(const void *fdt, int node, const char *property, in sp_dt_get_u16() argument 427 p = fdt_getprop(fdt, node, property, &len); in sp_dt_get_u16() 440 const char *property, TEE_UUID *uuid) in sp_dt_get_uuid() argument 447 p = fdt_getprop(fdt, node, property, &len); in sp_dt_get_uuid()
|
| /optee_os/core/tee/ |
| H 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()
|
| /optee_os/lib/libmbedtls/mbedtls/ |
| H A D | LICENSE | 430 patents or other property right claims or to contest validity of any
|