From eebee394a618240123974e78a90f8b6e1ff54443 Mon Sep 17 00:00:00 2001 From: Vasant Hegde Date: Wed, 5 Feb 2020 16:28:05 +0530 Subject: hdata: Fix SP attention area address SP attention area is aligned. We were sending wrong address. Hence `attn` on FSP based system is failing. Align SP attention area so that FSP can locate attention data. Fixes: 518e554 (spira: fix endian conversions in spira data structures) CC: Nicholas Piggin Signed-off-by: Vasant Hegde Signed-off-by: Oliver O'Halloran --- hdata/spira.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'hdata/spira.c') diff --git a/hdata/spira.c b/hdata/spira.c index 7c5918d..76c3d60 100644 --- a/hdata/spira.c +++ b/hdata/spira.c @@ -11,6 +11,7 @@ #include #include #include +#include #include "hdata.h" #include "hostservices.h" @@ -58,7 +59,7 @@ extern struct hsr_data_area cpu_ctl_hsr_area; */ #define CPU_CTL_INIT_DATA_OFF (CPU_CTL_OFF) #define CPU_CTL_SPAT_AREA_OFF (CPU_CTL_INIT_DATA_OFF + sizeof(struct cpu_ctl_init_data) + SKIBOOT_BASE) -#define CPU_CTL_SP_ATTN_AREA1_OFF (CPU_CTL_SPAT_AREA_OFF + sizeof(struct sp_addr_table)) +#define CPU_CTL_SP_ATTN_AREA1_OFF (ALIGN_UP((CPU_CTL_SPAT_AREA_OFF + sizeof(struct sp_addr_table)), ATTN_AREA_SZ)) #define CPU_CTL_SP_ATTN_AREA2_OFF (CPU_CTL_SP_ATTN_AREA1_OFF + sizeof(struct sp_attn_area)) #define CPU_CTL_HSR_AREA_OFF (CPU_CTL_SP_ATTN_AREA2_OFF + sizeof(struct sp_attn_area)) -- cgit v1.1