diff options
author | Nicholas Piggin <npiggin@gmail.com> | 2018-07-05 04:47:00 -0400 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2018-07-15 21:37:21 -0400 |
commit | 2bf1071a8d50928a4ae366bb3108833166c2b70c (patch) | |
tree | ebffef07f7ebbb9bb1ba231c4cb8ff00cc6fd795 /arch/powerpc/kernel/dt_cpu_ftrs.c | |
parent | ce397d215ccd07b8ae3f71db689aedb85d56ab40 (diff) |
powerpc/64s: Remove POWER9 DD1 support
POWER9 DD1 was never a product. It is no longer supported by upstream
firmware, and it is not effectively supported in Linux due to lack of
testing.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Reviewed-by: Michael Ellerman <mpe@ellerman.id.au>
[mpe: Remove arch_make_huge_pte() entirely]
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'arch/powerpc/kernel/dt_cpu_ftrs.c')
-rw-r--r-- | arch/powerpc/kernel/dt_cpu_ftrs.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/powerpc/kernel/dt_cpu_ftrs.c b/arch/powerpc/kernel/dt_cpu_ftrs.c index 4be1c0de9406..98c373a4c1cf 100644 --- a/arch/powerpc/kernel/dt_cpu_ftrs.c +++ b/arch/powerpc/kernel/dt_cpu_ftrs.c | |||
@@ -701,9 +701,7 @@ static __init void cpufeatures_cpu_quirks(void) | |||
701 | /* | 701 | /* |
702 | * Not all quirks can be derived from the cpufeatures device tree. | 702 | * Not all quirks can be derived from the cpufeatures device tree. |
703 | */ | 703 | */ |
704 | if ((version & 0xffffff00) == 0x004e0100) | 704 | if ((version & 0xffffefff) == 0x004e0200) |
705 | cur_cpu_spec->cpu_features |= CPU_FTR_POWER9_DD1; | ||
706 | else if ((version & 0xffffefff) == 0x004e0200) | ||
707 | ; /* DD2.0 has no feature flag */ | 705 | ; /* DD2.0 has no feature flag */ |
708 | else if ((version & 0xffffefff) == 0x004e0201) | 706 | else if ((version & 0xffffefff) == 0x004e0201) |
709 | cur_cpu_spec->cpu_features |= CPU_FTR_POWER9_DD2_1; | 707 | cur_cpu_spec->cpu_features |= CPU_FTR_POWER9_DD2_1; |