Lines Matching defs:state
251 struct efi_arm_entry_state *state;
254 state = early_memremap_ro(cpu_state_table,
256 if (state == NULL) {
257 pr_warn("Unable to map CPU entry state table.\n");
261 if ((state->sctlr_before_ebs & 1) == 0)
263 else if ((state->sctlr_after_ebs & 1) == 0)
269 pr_info("CPSR at EFI stub entry : 0x%08x\n", state->cpsr_before_ebs);
270 pr_info("SCTLR at EFI stub entry : 0x%08x\n", state->sctlr_before_ebs);
271 pr_info("CPSR after ExitBootServices() : 0x%08x\n", state->cpsr_after_ebs);
272 pr_info("SCTLR after ExitBootServices(): 0x%08x\n", state->sctlr_after_ebs);
274 early_memunmap(state, sizeof(struct efi_arm_entry_state));