Home
last modified time | relevance | path

Searched refs:error (Results 1 – 25 of 218) sorted by relevance

123456789

/tf-a-ffa_el3_spmc/make_helpers/
A Dbuild_env.mk17 DEL := $$(error "Replace DEL with call to SHELL_DELETE.")
18 MD := $$(error "Replace MD with call to MAKE_PREREQ_DIR.")
19 MKDIR := $$(error "Replace MKDIR with call to MAKE_PREREQ_DIR.")
20 RD := $$(error "Replace RD with call to SHELL_REMOVE_DIR.")
21 RM := $$(error "Replace RM with call to SHELL_DELETE.")
54 $(error "SHELL_COPY not defined for build environment.")
57 $(error "SHELL_COPY_TREE not defined for build environment.")
60 $(error "SHELL_DELETE_ALL not defined for build environment.")
63 $(error "SHELL_DELETE not defined for build environment.")
66 $(error "MAKE_PREREQ_DIR not defined for build environment.")
[all …]
A Dplat_helpers.mk15 $(error "Error: Unknown platform. Please use PLAT=<platform name> to specify the platform")
32 $(error "Error: Invalid platform. The following platforms are available: ${PLATFORM_LIST}")
/tf-a-ffa_el3_spmc/drivers/auth/cryptocell/712/
A Dcryptocell_plat_helpers.c33 CCError_t error; in cc_get_rotpk_hash() local
40 error = NVM_GetLCS(PLAT_CRYPTOCELL_BASE, &lcs); in cc_get_rotpk_hash()
41 if (error != CC_OK) in cc_get_rotpk_hash()
59 error = NVM_ReadHASHPubKey(PLAT_CRYPTOCELL_BASE, in cc_get_rotpk_hash()
62 if (error != CC_OK) in cc_get_rotpk_hash()
77 CCError_t error = CC_FAIL; in plat_get_nv_ctr() local
80 error = NVM_GetSwVersion(PLAT_CRYPTOCELL_BASE, in plat_get_nv_ctr()
83 error = NVM_GetSwVersion(PLAT_CRYPTOCELL_BASE, in plat_get_nv_ctr()
87 return (error != CC_OK); in plat_get_nv_ctr()
101 CCError_t error = CC_FAIL; in plat_set_nv_ctr() local
[all …]
/tf-a-ffa_el3_spmc/drivers/auth/cryptocell/713/
A Dcryptocell_plat_helpers.c25 CCError_t error; in cc_get_rotpk_hash() local
34 error = CC_BsvLcsGet(PLAT_CRYPTOCELL_BASE, &lcs); in cc_get_rotpk_hash()
35 if (error != CC_OK) in cc_get_rotpk_hash()
43 error = CC_BsvPubKeyHashGet(PLAT_CRYPTOCELL_BASE, in cc_get_rotpk_hash()
47 if (error == CC_BSV_HASH_NOT_PROGRAMMED_ERR) { in cc_get_rotpk_hash()
52 if (error == CC_OK) { in cc_get_rotpk_hash()
73 CCError_t error = CC_FAIL; in plat_get_nv_ctr() local
76 error = CC_BsvSwVersionGet(PLAT_CRYPTOCELL_BASE, in plat_get_nv_ctr()
83 return (error != CC_OK); in plat_get_nv_ctr()
97 CCError_t error = CC_FAIL; in plat_set_nv_ctr() local
[all …]
A Dcryptocell_crypto.c79 CCError_t error; in verify_signature() local
195 error = CC_BsvSha256((uintptr_t)PLAT_CRYPTOCELL_BASE, in verify_signature()
197 if (error != CC_OK) in verify_signature()
201 error = CC_BsvRsaPssVerify((uintptr_t)PLAT_CRYPTOCELL_BASE, NBuff, in verify_signature()
204 if ((error != CC_OK) || (is_verified != CC_TRUE)) in verify_signature()
226 CCError_t error; in verify_hash() local
258 error = CC_BsvSha256((uintptr_t)PLAT_CRYPTOCELL_BASE, data_ptr, in verify_hash()
260 if (error != CC_OK) in verify_hash()
/tf-a-ffa_el3_spmc/lib/xlat_tables_v2/
A Dro_xlat_tables.mk8 $(error "Debugfs requires functionality from the dynamic translation \
14 $(error "RESET_TO_SP_MIN requires functionality from the dynamic \
20 $(error "Tegra requires functionality from the dynamic translation \
24 $(error "RESET_TO_BL31 requires functionality from the dynamic \
29 $(error "Trusty requires functionality from the dynamic translation \
33 $(error "SPM_MM requires functionality to change memory region \
38 $(error "SPMC requires functionality to change memory region \
/tf-a-ffa_el3_spmc/drivers/nxp/sd/
A Dsd_mmc.c356 int error; in mmc_switch_to_high_frquency() local
369 return error; in mmc_switch_to_high_frquency()
373 return error; in mmc_switch_to_high_frquency()
382 return error; in mmc_switch_to_high_frquency()
387 return error; in mmc_switch_to_high_frquency()
875 int error = 0; in change_state_to_transfer_state() local
884 return error; in change_state_to_transfer_state()
888 return error; in change_state_to_transfer_state()
1144 int error = 0; in esdhc_emmc_init() local
1391 return error; in esdhc_read()
[all …]
/tf-a-ffa_el3_spmc/plat/renesas/common/
A Dplat_pm.c200 int32_t error; in rcar_system_reset() local
202 error = rcar_iic_dvfs_send(PMIC, REG_KEEP10, KEEP10_MAGIC); in rcar_system_reset()
203 if (error) { in rcar_system_reset()
204 ERROR("Failed send KEEP10 magic ret=%d\n", error); in rcar_system_reset()
208 error = rcar_iic_dvfs_receive(PMIC, BKUP_MODE_CNT, &mode); in rcar_system_reset()
209 if (error) { in rcar_system_reset()
210 ERROR("Failed receive BKUP_Mode_Cnt ret=%d\n", error); in rcar_system_reset()
215 error = rcar_iic_dvfs_send(PMIC, BKUP_MODE_CNT, mode); in rcar_system_reset()
216 if (error) { in rcar_system_reset()
217 ERROR("Failed send KEEPON_DDRx ret=%d\n", error); in rcar_system_reset()
/tf-a-ffa_el3_spmc/docs/components/
A Dras.rst34 error record registers from lower ELs.
49 Registering RAS error records
62 - A handler to probe error records for errors;
63 - When the probing identifies an error, a handler to handle it;
76 which are later passed to probe and error handlers.
78 For memory-mapped error records:
104 The error handler must have the following prototype:
140 - Set ``probe_data`` to the index of the error record upon detecting an error.
208 to through platform-supplied error records, probe them, and when an error is
209 identified, look up and invoke the corresponding error handler.
[all …]
/tf-a-ffa_el3_spmc/drivers/mtd/spi-mem/
A Dspi_mem.c109 bool error = false; in spi_mem_check_bus_ops() local
113 error = true; in spi_mem_check_bus_ops()
118 error = true; in spi_mem_check_bus_ops()
123 error = true; in spi_mem_check_bus_ops()
128 error = true; in spi_mem_check_bus_ops()
133 error = true; in spi_mem_check_bus_ops()
136 return error ? -EINVAL : 0; in spi_mem_check_bus_ops()
/tf-a-ffa_el3_spmc/include/lib/xlat_tables/aarch32/
A Dxlat_tables_aarch32.h15 #error "PAGE_SIZE is not defined."
28 #error "Invalid granule size. AArch32 supports 4KB pages only."
/tf-a-ffa_el3_spmc/services/std_svc/spm/spm_mm/
A Dspm_mm.mk8 $(error "Error: SPD and SPM_MM are incompatible build options.")
11 $(error "Error: SPM_MM is only supported on aarch64.")
/tf-a-ffa_el3_spmc/plat/brcm/board/stingray/include/
A Dboard_info.h18 #error "IHOST_REG_TYPE not valid"
32 #error "VDDC_REG_TYPE not valid"
/tf-a-ffa_el3_spmc/include/common/tbbr/
A Dcot_def.h39 #error "Invalid value for TF_MBEDTLS_KEY_SIZE"
52 #error "Invalid value for TF_MBEDTLS_HASH_ALG_ID"
/tf-a-ffa_el3_spmc/plat/renesas/rcar/
A Dplatform.mk10 $(error "Error: Unknown LSI. Please use LSI=<LSI name> to specify the LSI")
31 $(error "Error: ${LSI_CUT} is not supported.")
46 $(error "Error: ${LSI_CUT} is not supported.")
67 $(error "Error: ${LSI_CUT} is not supported.")
84 $(error "Error: ${LSI_CUT} is not supported.")
101 $(error "Error: ${LSI_CUT} is not supported.")
116 $(error "Error: ${LSI_CUT} is not supported.")
137 $(error "Error: ${LSI} is not supported.")
238 …$(error "Error: When you want RCAR_SYSTEM_SUSPEND to be enable, please also set PMIC_ROHM_BD9571 t…
300 …$(error "Error: When you want RCAR_SYSTEM_RESET_KEEPON_DDR to be enable, please also set PMIC_ROHM…
[all …]
/tf-a-ffa_el3_spmc/plat/marvell/armada/a8k/common/ble/
A Dble.mk31 …$(if $(value MV_DDR_PATH),,$(error "Platform '$(PLAT)' for BLE requires MV_DDR_PATH. Please set MV…
32 …$(if $(wildcard $(value MV_DDR_PATH)/*),,$(error "'MV_DDR_PATH=$(value MV_DDR_PATH)' was specified…
33 …$(if $(shell git -C $(value MV_DDR_PATH) rev-parse --show-cdup 2>&1),$(error "'MV_DDR_PATH=$(value…
/tf-a-ffa_el3_spmc/lib/cpus/aarch64/
A Dcortex_a76ae.S13 #error "Cortex-A76AE must be compiled with HW_ASSISTED_COHERENCY enabled"
18 #error "Cortex-A76AE supports only AArch64. Compile with CTX_INCLUDE_AARCH32_REGS=0"
A Dcortex_a510.S16 #error "Cortex A510 must be compiled with HW_ASSISTED_COHERENCY enabled"
21 #error "Cortex A510 supports only AArch64. Compile with CTX_INCLUDE_AARCH32_REGS=0"
A Dcortex_demeter.S16 #error "Cortex Demeter must be compiled with HW_ASSISTED_COHERENCY enabled"
21 #error "Cortex Demeter supports only AArch64. Compile with CTX_INCLUDE_AARCH32_REGS=0"
A Dcortex_makalu.S16 #error "Cortex Makalu must be compiled with HW_ASSISTED_COHERENCY enabled"
21 #error "Cortex Makalu supports only AArch64. Compile with CTX_INCLUDE_AARCH32_REGS=0"
A Dcortex_makalu_elp_arm.S16 #error "Cortex Makalu ELP must be compiled with HW_ASSISTED_COHERENCY enabled"
21 #error "Cortex Makalu ELP supports only AArch64. Compile with CTX_INCLUDE_AARCH32_REGS=0"
A Dcortex_x2.S16 #error "Cortex X2 must be compiled with HW_ASSISTED_COHERENCY enabled"
21 #error "Cortex X2 supports only AArch64. Compile with CTX_INCLUDE_AARCH32_REGS=0"
/tf-a-ffa_el3_spmc/drivers/auth/cryptocell/
A Dcryptocell_crypto.mk19 $(error Error: CCSBROM_LIB_PATH not set)
28 $(error Error: CRYPTOCELL_VERSION set to invalid version)
/tf-a-ffa_el3_spmc/plat/marvell/armada/a3k/common/
A Da3700_common.mk76 $(if $(wildcard $(value WTP)/*),,$(error "'WTP=$(value WTP)' was specified, but '$(value WTP)' dire…
77 $(if $(shell git -C $(value WTP) rev-parse --show-cdup 2>&1),$(error "'WTP=$(value WTP)' was specif…
143 …$(if $(CRYPTOPP_LIBDIR),,$(error "Platform '$(PLAT)' for WTP image tool requires CRYPTOPP_PATH or …
144 …$(if $(CRYPTOPP_INCDIR),,$(error "Platform '$(PLAT)' for WTP image tool requires CRYPTOPP_PATH or …
145 …$(if $(wildcard $(CRYPTOPP_LIBDIR)/*),,$(error "Either 'CRYPTOPP_PATH' or 'CRYPTOPP_LIB' was set t…
146 …$(if $(wildcard $(CRYPTOPP_INCDIR)/*),,$(error "Either 'CRYPTOPP_PATH' or 'CRYPTOPP_INCDIR' was se…
159 …$(if $(value MV_DDR_PATH),,$(error "Platform '${PLAT}' for ddr tool requires MV_DDR_PATH. Please s…
160 …$(if $(wildcard $(value MV_DDR_PATH)/*),,$(error "'MV_DDR_PATH=$(value MV_DDR_PATH)' was specified…
161 …$(if $(shell git -C $(value MV_DDR_PATH) rev-parse --show-cdup 2>&1),$(error "'MV_DDR_PATH=$(value…
236 …$(error "Platform '${PLAT}' for target '$@' requires WTP. Please set WTP to point to the right dir…
/tf-a-ffa_el3_spmc/drivers/arm/css/scmi/
A Dscmi_common.c177 goto error; in scmi_init()
183 goto error; in scmi_init()
191 goto error; in scmi_init()
197 goto error; in scmi_init()
207 error: in scmi_init()

Completed in 31 milliseconds

123456789