Home
last modified time | relevance | path

Searched refs:pldinf (Results 1 – 1 of 1) sorted by relevance

/trusted-firmware-m-3.7.0/secure_fw/spm/include/load/
Dspm_load_api.h27 #define LOAD_INFSZ_BYTES(pldinf) \ argument
28 (sizeof(*(pldinf)) + LOAD_INFO_EXT_LENGTH * sizeof(uintptr_t) + \
29 (pldinf)->ndeps * sizeof(uint32_t) + \
30 (pldinf)->nservices * sizeof(struct service_load_info_t) + \
31 (pldinf)->nassets * sizeof(struct asset_desc_t) + \
32 (pldinf)->nirqs * sizeof(struct irq_load_info_t))
35 #define LOAD_ALLOCED_STACK_ADDR(pldinf) (*((uintptr_t *)(pldinf + 1))) argument
37 #define LOAD_INFO_DEPS(pldinf) \ argument
38 ((const uint32_t *)((uintptr_t)(pldinf + 1) + LOAD_INFO_EXT_LENGTH * sizeof(uintptr_t)))
39 #define LOAD_INFO_SERVICE(pldinf) \ argument
[all …]