diff options
author | Ian Munsie <imunsie@au1.ibm.com> | 2016-05-23 19:04:26 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2016-06-07 14:51:36 +1000 |
commit | 1f379c76414da7209dbd4dbf855d2927074398c8 (patch) | |
tree | 6826eed3cb0008339476b4417f423e6797484d6a | |
parent | 92a27329d529757677d7eda5a04cf4a366a17495 (diff) | |
download | skiboot-1f379c76414da7209dbd4dbf855d2927074398c8.zip skiboot-1f379c76414da7209dbd4dbf855d2927074398c8.tar.gz skiboot-1f379c76414da7209dbd4dbf855d2927074398c8.tar.bz2 |
phb3: Mask off FIR bit indicating link speed change on p8+
This FIR bit is informational and should not take the system down.
Signed-off-by: Ian Munsie <imunsie@au1.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r-- | hw/phb3.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4178,7 +4178,7 @@ static void phb3_init_hw(struct phb3 *p, bool first_init) out_be64(p->regs + PHB_OUT_ERR_IRQ_ENABLE, 0x600c42fc042080f0); out_be64(p->regs + PHB_INA_ERR_IRQ_ENABLE, 0xc000a3a901826020); out_be64(p->regs + PHB_INB_ERR_IRQ_ENABLE, 0x0000600000800070); - out_be64(p->regs + PHB_LEM_ERROR_MASK, 0x42498e327f502eae); + out_be64(p->regs + PHB_LEM_ERROR_MASK, 0x42498e367f502eae); /* * Init_141 - Enable DMA address speculation |