Lines Matching defs:entrypoint
114 * entrypoint. Returns 0 if the entrypoint is valid, or -1 otherwise.
116 int arm_validate_ns_entrypoint(uintptr_t entrypoint)
119 * Check if the non secure entrypoint lies within the non
122 if ((entrypoint >= ARM_NS_DRAM1_BASE) && (entrypoint <
127 if ((entrypoint >= ARM_DRAM2_BASE) && (entrypoint <
136 int arm_validate_psci_entrypoint(uintptr_t entrypoint)
138 return (arm_validate_ns_entrypoint(entrypoint) == 0) ? PSCI_E_SUCCESS :