diff options
author | Stewart Smith <stewart@linux.ibm.com> | 2019-06-03 14:50:50 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.ibm.com> | 2019-06-04 10:29:05 +1000 |
commit | 16b7ae64103797b0ecab1dbb7c45df23b14810b9 (patch) | |
tree | a3330ee950c4f93c9c7afe278cf1425f66366b95 /hw/nx-842.c | |
parent | 9cae036fafea468219892406a846639f2715854d (diff) | |
download | skiboot-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 'hw/nx-842.c')
-rw-r--r-- | hw/nx-842.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/hw/nx-842.c b/hw/nx-842.c index 8009f03..d4abe08 100644 --- a/hw/nx-842.c +++ b/hw/nx-842.c @@ -191,11 +191,7 @@ void nx_enable_842(struct dt_node *node, u32 gcid, u32 pb_base) u64 cfg_dma, cfg_842, cfg_ee; int rc; - if (dt_node_is_compatible(node, "ibm,power7-nx")) { - cfg_dma = pb_base + NX_P7_DMA_CFG; - cfg_842 = pb_base + NX_P7_842_CFG; - cfg_ee = pb_base + NX_P7_EE_CFG; - } else if (dt_node_is_compatible(node, "ibm,power8-nx")) { + if (dt_node_is_compatible(node, "ibm,power8-nx")) { cfg_dma = pb_base + NX_P8_DMA_CFG; cfg_842 = pb_base + NX_P8_842_CFG; cfg_ee = pb_base + NX_P8_EE_CFG; |