aboutsummaryrefslogtreecommitdiff
path: root/core/cpufeatures.c
diff options
context:
space:
mode:
authorNicholas Piggin <npiggin@gmail.com>2019-01-16 13:58:40 +1000
committerStewart Smith <stewart@linux.ibm.com>2019-01-25 13:57:05 -0600
commit0b0d15e3c1701fd98bc72b69ae9ba43699aef68d (patch)
treeb9ae3aeef9e17ae29b70744bf1d5564c59bc5f6e /core/cpufeatures.c
parent3b4ae3a2e2a56e1166be9176445fe7fcdee1fca2 (diff)
downloadskiboot-0b0d15e3c1701fd98bc72b69ae9ba43699aef68d.zip
skiboot-0b0d15e3c1701fd98bc72b69ae9ba43699aef68d.tar.gz
skiboot-0b0d15e3c1701fd98bc72b69ae9ba43699aef68d.tar.bz2
Remove POWER9N DD1 support
This is not a shipping product and is no longer supported by Linux or other firmware components. Signed-off-by: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'core/cpufeatures.c')
-rw-r--r--core/cpufeatures.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/core/cpufeatures.c b/core/cpufeatures.c
index e9d2daf..1daa017 100644
--- a/core/cpufeatures.c
+++ b/core/cpufeatures.c
@@ -900,10 +900,7 @@ void dt_add_cpufeatures(struct dt_node *root)
cpu_name = "POWER9";
cpu_feature_isa = ISA_V3_0B;
- if (is_power9n(version) && (PVR_VERS_MAJ(version) == 1)) {
- /* P9N DD1 */
- cpu_feature_cpu = CPU_P9_DD1;
- } else if (is_power9n(version) &&
+ if (is_power9n(version) &&
(PVR_VERS_MAJ(version) == 2)) {
/* P9N DD2.x */
cpu_feature_cpu = CPU_P9_DD2;