From a448c4e2f6c3962b1690e367d1a2a8e03180b320 Mon Sep 17 00:00:00 2001 From: Vasant Hegde Date: Tue, 28 Jan 2020 21:25:48 +0530 Subject: [PATCH] hdata: Update MPIPL support IPL parameter We used bit 4 of `sys_attributes` attribute for MPIPL supported flag. Unfortunately we forgot to update HDAT spec. Now bit 4 is used for different purpose. Hence use bit 5 for MPIPL. Fortunately we don't have any released firmware with MPIPL supported yet. Hence its safe to make this change. Signed-off-by: Vasant Hegde Signed-off-by: Oliver O'Halloran --- hdata/spira.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hdata/spira.h b/hdata/spira.h index 2c2872260951..8744d0a595cd 100644 --- a/hdata/spira.h +++ b/hdata/spira.h @@ -352,7 +352,7 @@ struct iplparams_sysparams { __be32 sys_eco_mode; #define SYS_ATTR_MULTIPLE_TPM PPC_BIT32(0) #define SYS_ATTR_RISK_LEVEL PPC_BIT32(3) -#define SYS_ATTR_MPIPL_SUPPORTED PPC_BIT32(4) +#define SYS_ATTR_MPIPL_SUPPORTED PPC_BIT32(5) __be32 sys_attributes; __be32 mem_scrubbing; __be16 cur_spl_value;