[PATCH 3/3 Xenial SRU] cxl: Increase timeout for detection of AFU mmio hang
Tim Gardner
tim.gardner at canonical.com
Fri May 20 15:56:18 UTC 2016
From: Frederic Barrat <fbarrat at linux.vnet.ibm.com>
BugLink: http://bugs.launchpad.net/bugs/1584066
PSL designers recommend a larger value for the mmio hang pulse, 256 us
instead of 1 us. The CAIA architecture states that it needs to be
smaller than 1/2 of the RTOS timeout set in the PHB for outbound
non-posted transactions, which is still (easily) the case here.
Signed-off-by: Frederic Barrat <fbarrat at linux.vnet.ibm.com>
Acked-by: Ian Munsie <imunsie at au1.ibm.com>
Tested-by: Frank Haverkamp <haver at linux.vnet.ibm.com>
Tested-by: Manoj Kumar <manoj at linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe at ellerman.id.au>
(cherry picked from linux-next commit 4aec6ec0da9c72c0fa1a5b0d1133707481347bb3)
Signed-off-by: Tim Gardner <tim.gardner at canonical.com>
---
drivers/misc/cxl/pci.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/misc/cxl/pci.c b/drivers/misc/cxl/pci.c
index 6a91565..b5d3ec5 100644
--- a/drivers/misc/cxl/pci.c
+++ b/drivers/misc/cxl/pci.c
@@ -394,8 +394,10 @@ static int init_implementation_adapter_regs(struct cxl *adapter, struct pci_dev
return -ENODEV;
}
+ psl_dsnctl = 0x0000900000000000ULL; /* pteupd ttype, scdone */
+ psl_dsnctl |= (0x2ULL << (63-38)); /* MMIO hang pulse: 256 us */
/* Tell PSL where to route data to */
- psl_dsnctl = 0x0000900002000000ULL | (chipid << (63-5));
+ psl_dsnctl |= (chipid << (63-5));
psl_dsnctl |= (capp_unit_id << (63-13));
cxl_p1_write(adapter, CXL_PSL_DSNDCTL, psl_dsnctl);
--
1.9.1
More information about the kernel-team
mailing list