Commit 99e89377 authored by davidcunado-arm's avatar davidcunado-arm Committed by GitHub
Browse files

Merge pull request #695 from soby-mathew/sm/AArch32_fixes

Fixes for AArch32 port of TF
parents f6ace15f 9e3b4cbb
...@@ -419,9 +419,11 @@ void print_entry_point_info(const entry_point_info_t *ep_info) ...@@ -419,9 +419,11 @@ void print_entry_point_info(const entry_point_info_t *ep_info)
PRINT_IMAGE_ARG(1); PRINT_IMAGE_ARG(1);
PRINT_IMAGE_ARG(2); PRINT_IMAGE_ARG(2);
PRINT_IMAGE_ARG(3); PRINT_IMAGE_ARG(3);
#ifndef AARCH32
PRINT_IMAGE_ARG(4); PRINT_IMAGE_ARG(4);
PRINT_IMAGE_ARG(5); PRINT_IMAGE_ARG(5);
PRINT_IMAGE_ARG(6); PRINT_IMAGE_ARG(6);
PRINT_IMAGE_ARG(7); PRINT_IMAGE_ARG(7);
#endif
#undef PRINT_IMAGE_ARG #undef PRINT_IMAGE_ARG
} }
...@@ -86,6 +86,8 @@ static void cm_init_context_common(cpu_context_t *ctx, const entry_point_info_t ...@@ -86,6 +86,8 @@ static void cm_init_context_common(cpu_context_t *ctx, const entry_point_info_t
/* Clear any residual register values from the context */ /* Clear any residual register values from the context */
memset(ctx, 0, sizeof(*ctx)); memset(ctx, 0, sizeof(*ctx));
reg_ctx = get_regs_ctx(ctx);
/* /*
* Base the context SCR on the current value, adjust for entry point * Base the context SCR on the current value, adjust for entry point
* specific requirements * specific requirements
...@@ -121,8 +123,6 @@ static void cm_init_context_common(cpu_context_t *ctx, const entry_point_info_t ...@@ -121,8 +123,6 @@ static void cm_init_context_common(cpu_context_t *ctx, const entry_point_info_t
if (GET_M32(ep->spsr) == MODE32_hyp) if (GET_M32(ep->spsr) == MODE32_hyp)
scr |= SCR_HCE_BIT; scr |= SCR_HCE_BIT;
reg_ctx = get_regs_ctx(ctx);
write_ctx_reg(reg_ctx, CTX_SCR, scr); write_ctx_reg(reg_ctx, CTX_SCR, scr);
write_ctx_reg(reg_ctx, CTX_LR, ep->pc); write_ctx_reg(reg_ctx, CTX_LR, ep->pc);
write_ctx_reg(reg_ctx, CTX_SPSR, ep->spsr); write_ctx_reg(reg_ctx, CTX_SPSR, ep->spsr);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment