From 16b7ae64103797b0ecab1dbb7c45df23b14810b9 Mon Sep 17 00:00:00 2001 From: Stewart Smith Date: Mon, 3 Jun 2019 14:50:50 +1000 Subject: Remove POWER7 and POWER7+ support It's been a good long while since either OPAL POWER7 user touched a machine, and even longer since they'd have been okay using an old version rather than tracking master. There's also been no testing of OPAL on POWER7 systems for an awfully long time, so it's pretty safe to assume that it's very much bitrotted. It also saves a whole 14kb of xz compressed payload space. Signed-off-by: Stewart Smith Enthusiasticly-Acked-by: Oliver O'Halloran Signed-off-by: Stewart Smith --- hdata/pcia.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'hdata/pcia.c') diff --git a/hdata/pcia.c b/hdata/pcia.c index 9b210e4..0638327 100644 --- a/hdata/pcia.c +++ b/hdata/pcia.c @@ -158,9 +158,7 @@ static struct dt_node *add_core_node(struct dt_node *cpus, be32_to_cpu(t->pir), okay); dt_add_property_cells(cpu, "l2-cache", l2_phandle); - if (proc_gen == proc_gen_p7) - icp_compat = "IBM,power7-icp"; - else + if (proc_gen == proc_gen_p8) icp_compat = "IBM,power8-icp"; /* Get HW Chip ID */ @@ -182,7 +180,7 @@ static struct dt_node *add_core_node(struct dt_node *cpus, dt_add_property(cpu, "ibm,ppc-interrupt-server#s", iserv, 4 * threads); - /* Add the ICP node for this CPU for P7 / P8 */ + /* Add the ICP node for this CPU for P8 */ if (proc_gen <= proc_gen_p8) add_xics_icp(pcia, threads, icp_compat); -- cgit v1.1