aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ntb
diff options
context:
space:
mode:
authorDavid Bright <dab@FreeBSD.org>2021-09-27 13:18:46 +0000
committerDavid Bright <dab@FreeBSD.org>2021-09-27 19:13:03 +0000
commite3cf7ebc1d36d068f1d1a83ea73ce2eed547e3cb (patch)
tree1341c4c497ba6d9fbbfc4b8e311ac8361a67dcf1 /sys/dev/ntb
parentaa6cfcc820b438cec58fbe0af408d4457f8daf9d (diff)
downloadsrc-e3cf7ebc1d36d068f1d1a83ea73ce2eed547e3cb.tar.gz
src-e3cf7ebc1d36d068f1d1a83ea73ce2eed547e3cb.zip
ntb_hw_intel: fix xeon NTB gen3 bar disable logic
In NTB gen3 driver, it was supposed to disable NTB bar access by default, but due to incorrect register access method, the bar disable logic does not work as expected. Those registers should be modified through NTB bar0 rather than PCI configuration space. Besides, we'd better to protect ourselves from a bad buddy node so ingress disable logic should be implemented together. Submitted by: Austin Zhang (austin.zhang@dell.com) Reviewers: markj, mav, vangyzen, dab Differential Revision: https://reviews.freebsd.org/D31736 Sponsored by: Dell EMC MFC to: stable/12, stable/13 MFC after: 1 week
Diffstat (limited to 'sys/dev/ntb')
-rw-r--r--sys/dev/ntb/ntb_hw/ntb_hw_intel.c37
1 files changed, 17 insertions, 20 deletions
diff --git a/sys/dev/ntb/ntb_hw/ntb_hw_intel.c b/sys/dev/ntb/ntb_hw/ntb_hw_intel.c
index 06206f812d3f..00fcc4829b9c 100644
--- a/sys/dev/ntb/ntb_hw/ntb_hw_intel.c
+++ b/sys/dev/ntb/ntb_hw/ntb_hw_intel.c
@@ -2163,15 +2163,21 @@ xeon_gen3_setup_b2b_mw(struct ntb_softc *ntb)
intel_ntb_reg_write(8, XEON_GEN3_REG_IMBAR2XBASE, 0);
/*
- * If the value in EMBAR1LIMIT is set equal to the value in EMBAR1,
- * the memory window for EMBAR1 is disabled.
- * Note: It is needed to avoid malacious access.
+ * If the value in IMBAR1XLIMIT is set equal to the value in IMBAR1XBASE,
+ * the local memory window exposure from EMBAR1 is disabled.
+ * Note: It is needed to avoid malicious access.
*/
- reg = pci_read_config(ntb->device, XEON_GEN3_EXT_REG_BAR1BASE, 8);
- intel_ntb_reg_write(8, XEON_GEN3_REG_IMBAR1XLIMIT, reg);
+ intel_ntb_reg_write(8, XEON_GEN3_REG_IMBAR1XLIMIT, 0);
+ intel_ntb_reg_write(8, XEON_GEN3_REG_IMBAR2XLIMIT, 0);
- reg = pci_read_config(ntb->device, XEON_GEN3_EXT_REG_BAR2BASE, 8);
- intel_ntb_reg_write(8, XEON_GEN3_REG_IMBAR2XLIMIT, reg);
+ /* Config outgoing translation limits (whole bar size windows) */
+ reg = intel_ntb_reg_read(8, XEON_GEN3_REG_EMBAR1XBASE);
+ reg += ntb->bar_info[NTB_B2B_BAR_1].size;
+ intel_ntb_reg_write(8, XEON_GEN3_REG_EMBAR1XLIMIT, reg);
+
+ reg = intel_ntb_reg_read(8, XEON_GEN3_REG_EMBAR2XBASE);
+ reg += ntb->bar_info[NTB_B2B_BAR_2].size;
+ intel_ntb_reg_write(8, XEON_GEN3_REG_EMBAR2XLIMIT, reg);
return (0);
}
@@ -3226,7 +3232,10 @@ intel_ntb_mw_set_trans(device_t dev, unsigned idx, bus_addr_t addr, size_t size)
limit = 0;
if (bar_is_64bit(ntb, bar_num)) {
- base = intel_ntb_reg_read(8, base_reg) & BAR_HIGH_MASK;
+ if (ntb->type == NTB_XEON_GEN3)
+ base = addr;
+ else
+ base = intel_ntb_reg_read(8, base_reg) & BAR_HIGH_MASK;
if (limit_reg != 0 && size != mw_size)
limit = base + size;
@@ -3249,18 +3258,6 @@ intel_ntb_mw_set_trans(device_t dev, unsigned idx, bus_addr_t addr, size_t size)
intel_ntb_reg_write(8, xlat_reg, 0);
return (EIO);
}
-
- if (ntb->type == NTB_XEON_GEN3) {
- limit = base + size;
-
- /* set EMBAR1/2XLIMIT */
- if (!idx)
- intel_ntb_reg_write(8,
- XEON_GEN3_REG_EMBAR1XLIMIT, limit);
- else
- intel_ntb_reg_write(8,
- XEON_GEN3_REG_EMBAR2XLIMIT, limit);
- }
} else {
/* Configure 32-bit (split) BAR MW */
if (ntb->type == NTB_XEON_GEN3)