| /rk3399_ARM-atf/include/common/ |
| H A D | param_header.h | 22 (_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)
|
| /rk3399_ARM-atf/include/lib/psci/ |
| H A D | psci_lib.h | 46 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) \
|
| /rk3399_ARM-atf/bl2/ |
| H A D | bl2_image_load_v2.c | 39 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()
|
| /rk3399_ARM-atf/plat/intel/soc/common/lib/sha/ |
| H A D | sha.c | 138 uint64_t a, b, c, d, e, f, g, h, t1, t2; in sha512_transform() local 145 e = state[4]; f = state[5]; g = state[6]; h = state[7]; in sha512_transform() 163 t1 = h + e1(e) + Ch(e, f, g) + sha512_K[i] + W[(i & 15)]; in sha512_transform() 164 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; in sha512_transform() 166 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2; in sha512_transform() 168 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2; in sha512_transform() 170 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; in sha512_transform() 172 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; in sha512_transform() 173 t1 = c + e1(h) + Ch(h, a, b) + sha512_K[i+5] + W[(i & 15) + 5]; in sha512_transform() 175 t1 = b + e1(g) + Ch(g, h, a) + sha512_K[i+6] + W[(i & 15) + 6]; in sha512_transform() [all …]
|
| /rk3399_ARM-atf/plat/socionext/synquacer/ |
| H A D | sq_spm.c | 40 .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,
|
| /rk3399_ARM-atf/include/lib/el3_runtime/aarch64/ |
| H A D | context.h | 11 #include <lib/el3_runtime/context_el2.h> 17 #include <lib/el3_runtime/context_el1.h> 20 #include <lib/el3_runtime/simd_ctx.h> 21 #include <lib/utils_def.h> 22 #include <platform_def.h> /* For CACHE_WRITEBACK_GRANULE */ 143 * SCTLR_EL1 and TCR_EL1 will be part of EL1 context structure (context_el1.h) 189 #include <stdint.h> 191 #include <assert.h> 192 #include <common/ep_info.h> 193 #include <lib/cassert.h> 340 get_el3state_ctx(h) global() argument 343 get_el2_sysregs_ctx(h) global() argument 345 get_el1_sysregs_ctx(h) global() argument 348 get_gpregs_ctx(h) global() argument 349 get_cve_2018_3639_ctx(h) global() argument 352 get_errata_speculative_at_ctx(h) global() argument 356 get_pauth_ctx(h) global() argument [all...] |
| /rk3399_ARM-atf/include/export/ |
| H A D | README | 11 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.)
|
| /rk3399_ARM-atf/lib/libfdt/ |
| H A D | Makefile.libfdt | 10 LIBFDT_INCLUDES = fdt.h libfdt.h libfdt_env.h
|
| /rk3399_ARM-atf/include/export/common/ |
| H A D | bl_common_exp.h | 41 param_header_t h; member 60 param_header_t h; member 89 param_header_t h; member
|
| /rk3399_ARM-atf/plat/intel/soc/n5x/ |
| H A D | bl31_plat_setup.c | 62 if (params_from_bl2->h.type == PARAM_BL_PARAMS && in bl31_early_platform_setup2() 63 params_from_bl2->h.version >= VERSION_2) { in bl31_early_platform_setup2() 77 assert(arg_from_bl2->h.type == PARAM_BL31); in bl31_early_platform_setup2() 78 assert(arg_from_bl2->h.version >= VERSION_1); in bl31_early_platform_setup2() 83 SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE); in bl31_early_platform_setup2()
|
| /rk3399_ARM-atf/plat/intel/soc/stratix10/ |
| H A D | bl31_plat_setup.c | 69 if (params_from_bl2->h.type == PARAM_BL_PARAMS && in bl31_early_platform_setup2() 70 params_from_bl2->h.version >= VERSION_2) { in bl31_early_platform_setup2() 84 assert(arg_from_bl2->h.type == PARAM_BL31); in bl31_early_platform_setup2() 85 assert(arg_from_bl2->h.version >= VERSION_1); in bl31_early_platform_setup2() 90 SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE); in bl31_early_platform_setup2()
|
| /rk3399_ARM-atf/plat/arm/board/tc/ |
| H A D | tc_plat.c | 120 .h.type = PARAM_SP_IMAGE_BOOT_INFO, 121 .h.version = VERSION_1, 122 .h.size = sizeof(spm_mm_boot_info_t), 123 .h.attr = 0,
|
| /rk3399_ARM-atf/common/ |
| H A D | desc_image_load.c | 150 if ((EP_GET_EXE(desc_ptr->ep_info.h.attr) == EXECUTABLE) && in get_next_bl_params_from_mem_params_desc() 151 (EP_GET_FIRST_EXE(desc_ptr->ep_info.h.attr) == EP_FIRST_EXE)) { in get_next_bl_params_from_mem_params_desc() 173 assert(EP_GET_EXE(desc_ptr->ep_info.h.attr) == EXECUTABLE); in get_next_bl_params_from_mem_params_desc() 344 if (v2->h.version == PARAM_VERSION_1) { in bl31_params_parse_helper() 346 param_header_t h; in bl31_params_parse_helper() member 353 assert(v1->h.type == PARAM_BL31); in bl31_params_parse_helper() 362 assert(v2->h.version == PARAM_VERSION_2); in bl31_params_parse_helper() 363 assert(v2->h.type == PARAM_BL_PARAMS); in bl31_params_parse_helper()
|
| /rk3399_ARM-atf/plat/arm/board/neoverse_rd/common/ |
| H A D | nrd_plat2.c | 129 .h.type = PARAM_SP_IMAGE_BOOT_INFO, 130 .h.version = VERSION_1, 131 .h.size = sizeof(spm_mm_boot_info_t), 132 .h.attr = 0,
|
| /rk3399_ARM-atf/plat/marvell/armada/common/ |
| H A D | marvell_bl31_setup.c | 83 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()
|
| /rk3399_ARM-atf/plat/qemu/common/ |
| H A D | qemu_spm.c | 36 .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,
|
| /rk3399_ARM-atf/fdts/ |
| H A D | stm32mp13-fw-config.dtsi | 6 #include <common/tbbr/tbbr_img_def.h> 7 #include <dt-bindings/soc/stm32mp13-tzc400.h> 9 #include <platform_def.h>
|
| /rk3399_ARM-atf/plat/brcm/common/ |
| H A D | brcm_bl31_setup.c | 107 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()
|
| /rk3399_ARM-atf/include/export/lib/bl_aux_params/ |
| H A D | bl_aux_params_exp.h | 72 struct bl_aux_param_header h; member 85 struct bl_aux_param_header h; member
|
| /rk3399_ARM-atf/plat/imx/common/ |
| H A D | imx_common.c | 37 if (v2->h.version != PARAM_VERSION_2) { in imx_bl31_params_parse() 41 if (v2->h.type != PARAM_BL_PARAMS) { in imx_bl31_params_parse()
|
| /rk3399_ARM-atf/plat/mediatek/include/ |
| H A D | plat.ld.rodata.inc | 10 #include <lib/mtk_init/mtk_init.h> 27 #include <vendor_pubsub_events.h>
|
| /rk3399_ARM-atf/lib/el3_runtime/aarch32/ |
| H A D | context_mgmt.c | 66 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() 166 ctx = cm_get_context(GET_SECURITY_STATE(ep->h.attr)); in cm_init_my_context()
|
| /rk3399_ARM-atf/plat/arm/board/a5ds/fdts/ |
| H A D | a5ds_fw_config.dts | 7 #include <common/tbbr/tbbr_img_def.h> 8 #include <platform_def.h>
|
| /rk3399_ARM-atf/plat/arm/board/fvp_ve/fdts/ |
| H A D | fvp_ve_fw_config.dts | 7 #include <common/tbbr/tbbr_img_def.h> 8 #include <platform_def.h>
|
| /rk3399_ARM-atf/plat/arm/board/automotive_rd/platform/rdaspen/fdts/ |
| H A D | rdaspen_fw_config.dts | 7 #include <common/tbbr/tbbr_img_def.h> 8 #include <platform_def.h>
|