Home
last modified time | relevance | path

Searched refs:h (Results 1 – 25 of 180) sorted by relevance

12345678

/trusted-firmware-a-3.7.0/include/common/
Dparam_header.h22 (_p)->h.type = (uint8_t)(_type); \
23 (_p)->h.version = (uint8_t)(_ver); \
24 (_p)->h.size = (uint16_t)sizeof(*(_p)); \
25 (_p)->h.attr = (uint32_t)(_attr) ; \
30 ._p.h.type = (uint8_t)(_type), \
31 ._p.h.version = (uint8_t)(_ver), \
32 ._p.h.size = (uint16_t)sizeof(_p_type), \
33 ._p.h.attr = (uint32_t)(_attr)
/trusted-firmware-a-3.7.0/include/lib/psci/
Dpsci_lib.h46 param_header_t h; member
60 .h.type = (uint8_t)PARAM_PSCI_LIB_ARGS, \
61 .h.version = (uint8_t)VERSION_1, \
62 .h.size = (uint16_t)sizeof(_name), \
63 .h.attr = 0U, \
69 && ((_p)->h.type == PARAM_PSCI_LIB_ARGS) \
70 && ((_p)->h.version == VERSION_1) \
71 && ((_p)->h.size == sizeof(*(_p))) \
72 && ((_p)->h.attr == 0) \
/trusted-firmware-a-3.7.0/bl2/
Dbl2_image_load_v2.c39 assert(bl2_load_info->h.type == PARAM_BL_LOAD_INFO); in bl2_load_images()
40 assert(bl2_load_info->h.version >= VERSION_2); in bl2_load_images()
49 if ((bl2_node_info->image_info->h.attr & in bl2_load_images()
66 if ((bl2_node_info->image_info->h.attr & in bl2_load_images()
97 assert(bl2_to_next_bl_params->h.type == PARAM_BL_PARAMS); in bl2_load_images()
98 assert(bl2_to_next_bl_params->h.version >= VERSION_2); in bl2_load_images()
/trusted-firmware-a-3.7.0/plat/socionext/synquacer/
Dsq_spm.c40 .h.type = PARAM_SP_IMAGE_BOOT_INFO,
41 .h.version = VERSION_1,
42 .h.size = sizeof(spm_mm_boot_info_t),
43 .h.attr = 0,
/trusted-firmware-a-3.7.0/include/lib/
Dutils_def.h37 #define GENMASK_32(h, l) \ argument
38 (((0xFFFFFFFF) << (l)) & (0xFFFFFFFF >> (32 - 1 - (h))))
40 #define GENMASK_64(h, l) \ argument
41 ((~0 << (l)) & (~0 >> (64 - 1 - (h))))
43 #define GENMASK_32(h, l) \ argument
44 (((~UINT32_C(0)) << (l)) & (~UINT32_C(0) >> (32 - 1 - (h))))
46 #define GENMASK_64(h, l) \ argument
47 (((~UINT64_C(0)) << (l)) & (~UINT64_C(0) >> (64 - 1 - (h))))
/trusted-firmware-a-3.7.0/lib/fconf/
Dfconf.c25 .h.type = (uint8_t)PARAM_IMAGE_BINARY, in fconf_load_config()
26 .h.version = (uint8_t)VERSION_2, in fconf_load_config()
27 .h.size = (uint16_t)sizeof(image_info_t), in fconf_load_config()
28 .h.attr = 0 in fconf_load_config()
/trusted-firmware-a-3.7.0/include/export/
DREADME11 includes must use relative paths with "../double_quotes.h" notation.
13 - They must not rely on any type definitions other that <stdint.h> types defined
15 should still not #include <stdint.h>. Instead, wrapper headers including
16 export headers need to ensure that they #include <stdint.h> earlier in their
28 - Their names should always end in "_exp.h".
32 the right manner. (The wrapper header for include/export/x/y/z_exp.h should
33 normally be placed at include/x/y/z.h.)
/trusted-firmware-a-3.7.0/include/export/common/
Dbl_common_exp.h41 param_header_t h; member
60 param_header_t h; member
89 param_header_t h; member
/trusted-firmware-a-3.7.0/plat/arm/board/tc/
Dtc_plat.c105 .h.type = PARAM_SP_IMAGE_BOOT_INFO,
106 .h.version = VERSION_1,
107 .h.size = sizeof(spm_mm_boot_info_t),
108 .h.attr = 0,
/trusted-firmware-a-3.7.0/plat/arm/css/sgi/
Dsgi_plat.c125 .h.type = PARAM_SP_IMAGE_BOOT_INFO,
126 .h.version = VERSION_1,
127 .h.size = sizeof(spm_mm_boot_info_t),
128 .h.attr = 0,
Dsgi_plat_v2.c127 .h.type = PARAM_SP_IMAGE_BOOT_INFO,
128 .h.version = VERSION_1,
129 .h.size = sizeof(spm_mm_boot_info_t),
130 .h.attr = 0,
/trusted-firmware-a-3.7.0/plat/intel/soc/stratix10/
Dbl31_plat_setup.c68 if (params_from_bl2->h.type == PARAM_BL_PARAMS && in bl31_early_platform_setup2()
69 params_from_bl2->h.version >= VERSION_2) { in bl31_early_platform_setup2()
83 assert(arg_from_bl2->h.type == PARAM_BL31); in bl31_early_platform_setup2()
84 assert(arg_from_bl2->h.version >= VERSION_1); in bl31_early_platform_setup2()
89 SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE); in bl31_early_platform_setup2()
/trusted-firmware-a-3.7.0/plat/intel/soc/n5x/
Dbl31_plat_setup.c61 if (params_from_bl2->h.type == PARAM_BL_PARAMS && in bl31_early_platform_setup2()
62 params_from_bl2->h.version >= VERSION_2) { in bl31_early_platform_setup2()
76 assert(arg_from_bl2->h.type == PARAM_BL31); in bl31_early_platform_setup2()
77 assert(arg_from_bl2->h.version >= VERSION_1); in bl31_early_platform_setup2()
82 SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE); in bl31_early_platform_setup2()
/trusted-firmware-a-3.7.0/plat/intel/soc/agilex/
Dbl31_plat_setup.c80 if (params_from_bl2->h.type == PARAM_BL_PARAMS && in bl31_early_platform_setup2()
81 params_from_bl2->h.version >= VERSION_2) { in bl31_early_platform_setup2()
95 assert(arg_from_bl2->h.type == PARAM_BL31); in bl31_early_platform_setup2()
96 assert(arg_from_bl2->h.version >= VERSION_1); in bl31_early_platform_setup2()
101 SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE); in bl31_early_platform_setup2()
/trusted-firmware-a-3.7.0/plat/marvell/armada/common/
Dmarvell_bl31_setup.c83 SET_SECURITY_STATE(bl32_image_ep_info.h.attr, SECURE); in marvell_bl31_early_platform_setup()
99 SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE); in marvell_bl31_early_platform_setup()
115 assert(params_from_bl2->h.type == PARAM_BL_PARAMS); in marvell_bl31_early_platform_setup()
116 assert(params_from_bl2->h.version >= VERSION_2); in marvell_bl31_early_platform_setup()
/trusted-firmware-a-3.7.0/include/export/lib/bl_aux_params/
Dbl_aux_params_exp.h72 struct bl_aux_param_header h; member
85 struct bl_aux_param_header h; member
/trusted-firmware-a-3.7.0/lib/el3_runtime/aarch32/
Dcontext_mgmt.c66 security_state = GET_SECURITY_STATE(ep->h.attr); in cm_setup_context()
102 (EP_GET_EE(ep->h.attr) >> EP_EE_SHIFT)); in cm_setup_context()
104 sctlr = (EP_GET_EE(ep->h.attr) != 0U) ? SCTLR_EE_BIT : 0U; in cm_setup_context()
167 ctx = cm_get_context_by_index(cpu_idx, GET_SECURITY_STATE(ep->h.attr)); in cm_init_context_by_index()
179 ctx = cm_get_context(GET_SECURITY_STATE(ep->h.attr)); in cm_init_my_context()
/trusted-firmware-a-3.7.0/common/
Ddesc_image_load.c148 if ((EP_GET_EXE(desc_ptr->ep_info.h.attr) == EXECUTABLE) && in get_next_bl_params_from_mem_params_desc()
149 (EP_GET_FIRST_EXE(desc_ptr->ep_info.h.attr) == EP_FIRST_EXE)) { in get_next_bl_params_from_mem_params_desc()
171 assert(EP_GET_EXE(desc_ptr->ep_info.h.attr) == EXECUTABLE); in get_next_bl_params_from_mem_params_desc()
323 if (v2->h.version == PARAM_VERSION_1) { in bl31_params_parse_helper()
325 param_header_t h; in bl31_params_parse_helper() member
332 assert(v1->h.type == PARAM_BL31); in bl31_params_parse_helper()
341 assert(v2->h.version == PARAM_VERSION_2); in bl31_params_parse_helper()
342 assert(v2->h.type == PARAM_BL_PARAMS); in bl31_params_parse_helper()
/trusted-firmware-a-3.7.0/fdts/
Dstm32mp13-fw-config.dtsi6 #include <common/tbbr/tbbr_img_def.h>
7 #include <dt-bindings/soc/stm32mp13-tzc400.h>
9 #include <platform_def.h>
/trusted-firmware-a-3.7.0/include/lib/el3_runtime/aarch64/
Dcontext.h470 #define get_el3state_ctx(h) (&((cpu_context_t *) h)->el3state_ctx) argument
472 # define get_fpregs_ctx(h) (&((cpu_context_t *) h)->fpregs_ctx) argument
474 #define get_el1_sysregs_ctx(h) (&((cpu_context_t *) h)->el1_sysregs_ctx) argument
476 # define get_el2_sysregs_ctx(h) (&((cpu_context_t *) h)->el2_sysregs_ctx) argument
478 #define get_gpregs_ctx(h) (&((cpu_context_t *) h)->gpregs_ctx) argument
479 #define get_cve_2018_3639_ctx(h) (&((cpu_context_t *) h)->cve_2018_3639_ctx) argument
481 # define get_pauth_ctx(h) (&((cpu_context_t *) h)->pauth_ctx) argument
/trusted-firmware-a-3.7.0/plat/qemu/common/
Dqemu_spm.c36 .h.type = PARAM_SP_IMAGE_BOOT_INFO,
37 .h.version = VERSION_1,
38 .h.size = sizeof(spm_mm_boot_info_t),
39 .h.attr = 0,
/trusted-firmware-a-3.7.0/plat/mediatek/include/
Dplat.ld.rodata.inc10 #include <lib/mtk_init/mtk_init.h>
27 #include <vendor_pubsub_events.h>
/trusted-firmware-a-3.7.0/plat/brcm/common/
Dbrcm_bl31_setup.c107 SET_SECURITY_STATE(bl32_image_ep_info.h.attr, SECURE); in brcm_bl31_early_platform_setup()
124 SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE); in brcm_bl31_early_platform_setup()
155 assert(params_from_bl2->h.type == PARAM_BL_PARAMS); in brcm_bl31_early_platform_setup()
156 assert(params_from_bl2->h.version >= VERSION_2); in brcm_bl31_early_platform_setup()
166 bl_params->image_info->h.attr != IMAGE_ATTRIB_SKIP_LOADING) in brcm_bl31_early_platform_setup()
/trusted-firmware-a-3.7.0/plat/amlogic/gxbb/
Dgxbb_bl31_setup.c54 param_header_t h; member
81 assert(from_bl2->h.type == PARAM_BL31); in bl31_early_platform_setup2()
82 assert(from_bl2->h.version >= VERSION_1); in bl31_early_platform_setup2()
/trusted-firmware-a-3.7.0/include/lib/el3_runtime/aarch32/
Dcontext.h58 #define get_regs_ctx(h) (&((cpu_context_t *) h)->regs_ctx) argument

12345678