cxl/doe: Request exclusive DOE access
authorIra Weiny <ira.weiny@intel.com>
Mon, 26 Sep 2022 21:57:11 +0000 (14:57 -0700)
committerDan Williams <dan.j.williams@intel.com>
Mon, 14 Nov 2022 18:07:22 +0000 (10:07 -0800)
The PCIE Data Object Exchange (DOE) mailbox is a protocol run over
configuration cycles.  It assumes one initiator at a time.  While the
kernel has control of the mailbox user space writes could interfere with
the kernel access.

Mark DOE mailbox config space exclusive when iterated by the CXL driver.

Signed-off-by: Ira Weiny <ira.weiny@intel.com>
Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Link: https://lore.kernel.org/r/20220926215711.2893286-3-ira.weiny@intel.com
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
drivers/cxl/pci.c
include/uapi/linux/pci_regs.h

index faeb5d9d7a7ab3a753081872cbe1ec5c35b477be..621a0522b55416e0d41d64729a9e46d1295c124f 100644 (file)
@@ -418,6 +418,11 @@ static void devm_cxl_pci_create_doe(struct cxl_dev_state *cxlds)
                        continue;
                }
 
+               if (!pci_request_config_region_exclusive(pdev, off,
+                                                        PCI_DOE_CAP_SIZEOF,
+                                                        dev_name(dev)))
+                       pci_err(pdev, "Failed to exclude DOE registers\n");
+
                if (xa_insert(&cxlds->doe_mbs, off, doe_mb, GFP_KERNEL)) {
                        dev_err(dev, "xa_insert failed to insert MB @ %x\n",
                                off);
index 57b8e2ffb1dd37fc99a356588d34f782e053bafe..82a03ea954affa2986091ee8b179b342cd2087c3 100644 (file)
 #define  PCI_DOE_STATUS_DATA_OBJECT_READY      0x80000000  /* Data Object Ready */
 #define PCI_DOE_WRITE          0x10    /* DOE Write Data Mailbox Register */
 #define PCI_DOE_READ           0x14    /* DOE Read Data Mailbox Register */
+#define PCI_DOE_CAP_SIZEOF     0x18    /* Size of DOE register block */
 
 /* DOE Data Object - note not actually registers */
 #define PCI_DOE_DATA_OBJECT_HEADER_1_VID               0x0000ffff