Lines Matching defs:entrypoint
25 * entrypoint. Returns 0 if the entrypoint is valid, or -1 otherwise.
27 int arm_validate_ns_entrypoint(uintptr_t entrypoint)
30 * Check if the non secure entrypoint lies within the non
33 if ((entrypoint >= ARM_NS_DRAM1_BASE) &&
34 (entrypoint < (ARM_NS_DRAM1_BASE + ARM_NS_DRAM1_SIZE))) {
38 if ((entrypoint >= ARM_DRAM2_BASE) &&
39 (entrypoint < (ARM_DRAM2_BASE + ARM_DRAM2_SIZE))) {
47 int arm_validate_psci_entrypoint(uintptr_t entrypoint)
49 return (arm_validate_ns_entrypoint(entrypoint) == 0) ? PSCI_E_SUCCESS :