aboutsummaryrefslogtreecommitdiff
path: root/external
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2019-06-03 14:50:50 +1000
committerStewart Smith <stewart@linux.ibm.com>2019-06-04 10:29:05 +1000
commit16b7ae64103797b0ecab1dbb7c45df23b14810b9 (patch)
treea3330ee950c4f93c9c7afe278cf1425f66366b95 /external
parent9cae036fafea468219892406a846639f2715854d (diff)
downloadskiboot-16b7ae64103797b0ecab1dbb7c45df23b14810b9.zip
skiboot-16b7ae64103797b0ecab1dbb7c45df23b14810b9.tar.gz
skiboot-16b7ae64103797b0ecab1dbb7c45df23b14810b9.tar.bz2
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 <stewart@linux.ibm.com> Enthusiasticly-Acked-by: Oliver O'Halloran <oohall@gmail.com> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'external')
-rwxr-xr-xexternal/xscom-utils/adu_scoms.py6
-rw-r--r--external/xscom-utils/getscom.c7
2 files changed, 1 insertions, 12 deletions
diff --git a/external/xscom-utils/adu_scoms.py b/external/xscom-utils/adu_scoms.py
index bb077db..a1b7d89 100755
--- a/external/xscom-utils/adu_scoms.py
+++ b/external/xscom-utils/adu_scoms.py
@@ -176,11 +176,7 @@ class GetSCom(object):
c_id = val >> 44
id = c_id & 0xff
- if id == 0xf9:
- name = "P7 processor"
- elif id == 0xe8:
- name = "P7+ processor"
- elif id == 0xef:
+ if id == 0xef:
name = "P8E (Murano) processor"
elif id == 0xea:
name = "P8 (Venice) processor"
diff --git a/external/xscom-utils/getscom.c b/external/xscom-utils/getscom.c
index 8c96634..dab4994 100644
--- a/external/xscom-utils/getscom.c
+++ b/external/xscom-utils/getscom.c
@@ -47,12 +47,6 @@ static void print_chip_info(uint32_t chip_id)
cfam_id = f000f >> 44;
switch(cfam_id & 0xff) {
- case 0xf9:
- name = "P7 processor";
- break;
- case 0xe8:
- name = "P7+ processor";
- break;
case 0xef:
name = "P8E (Murano) processor";
break;
@@ -79,7 +73,6 @@ static void print_chip_info(uint32_t chip_id)
printf("%08x | DD%lx.%lx | %s\n",
chip_id, (cfam_id >> 16) & 0xf, (cfam_id >> 8) & 0xf, name);
-
}
extern const char version[];