|
@@ -294,6 +294,13 @@ static const struct ipath_cregs ipath_pe_cregs = {
|
|
|
#define IPATH_GPIO_SCL (1ULL << \
|
|
|
(_IPATH_GPIO_SCL_NUM+INFINIPATH_EXTC_GPIOOE_SHIFT))
|
|
|
|
|
|
+/*
|
|
|
+ * Rev2 silicon allows suppressing check for ArmLaunch errors.
|
|
|
+ * this can speed up short packet sends on systems that do
|
|
|
+ * not guaranteee write-order.
|
|
|
+ */
|
|
|
+#define INFINIPATH_XGXS_SUPPRESS_ARMLAUNCH_ERR (1ULL<<63)
|
|
|
+
|
|
|
/**
|
|
|
* ipath_pe_handle_hwerrors - display hardware errors.
|
|
|
* @dd: the infinipath device
|
|
@@ -571,9 +578,12 @@ static void ipath_pe_init_hwerrors(struct ipath_devdata *dd)
|
|
|
if (!dd->ipath_boardrev) // no PLL for Emulator
|
|
|
val &= ~INFINIPATH_HWE_SERDESPLLFAILED;
|
|
|
|
|
|
- /* workaround bug 9460 in internal interface bus parity checking */
|
|
|
- val &= ~INFINIPATH_HWE_PCIEBUSPARITYRADM;
|
|
|
-
|
|
|
+ if (dd->ipath_minrev < 2) {
|
|
|
+ /* workaround bug 9460 in internal interface bus parity
|
|
|
+ * checking. Fixed (HW bug 9490) in Rev2.
|
|
|
+ */
|
|
|
+ val &= ~INFINIPATH_HWE_PCIEBUSPARITYRADM;
|
|
|
+ }
|
|
|
dd->ipath_hwerrmask = val;
|
|
|
}
|
|
|
|
|
@@ -583,8 +593,8 @@ static void ipath_pe_init_hwerrors(struct ipath_devdata *dd)
|
|
|
*/
|
|
|
static int ipath_pe_bringup_serdes(struct ipath_devdata *dd)
|
|
|
{
|
|
|
- u64 val, tmp, config1;
|
|
|
- int ret = 0, change = 0;
|
|
|
+ u64 val, tmp, config1, prev_val;
|
|
|
+ int ret = 0;
|
|
|
|
|
|
ipath_dbg("Trying to bringup serdes\n");
|
|
|
|
|
@@ -641,6 +651,7 @@ static int ipath_pe_bringup_serdes(struct ipath_devdata *dd)
|
|
|
val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_scratch);
|
|
|
|
|
|
val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_xgxsconfig);
|
|
|
+ prev_val = val;
|
|
|
if (((val >> INFINIPATH_XGXS_MDIOADDR_SHIFT) &
|
|
|
INFINIPATH_XGXS_MDIOADDR_MASK) != 3) {
|
|
|
val &=
|
|
@@ -648,11 +659,9 @@ static int ipath_pe_bringup_serdes(struct ipath_devdata *dd)
|
|
|
INFINIPATH_XGXS_MDIOADDR_SHIFT);
|
|
|
/* MDIO address 3 */
|
|
|
val |= 3ULL << INFINIPATH_XGXS_MDIOADDR_SHIFT;
|
|
|
- change = 1;
|
|
|
}
|
|
|
if (val & INFINIPATH_XGXS_RESET) {
|
|
|
val &= ~INFINIPATH_XGXS_RESET;
|
|
|
- change = 1;
|
|
|
}
|
|
|
if (((val >> INFINIPATH_XGXS_RX_POL_SHIFT) &
|
|
|
INFINIPATH_XGXS_RX_POL_MASK) != dd->ipath_rx_pol_inv ) {
|
|
@@ -661,9 +670,19 @@ static int ipath_pe_bringup_serdes(struct ipath_devdata *dd)
|
|
|
INFINIPATH_XGXS_RX_POL_SHIFT);
|
|
|
val |= dd->ipath_rx_pol_inv <<
|
|
|
INFINIPATH_XGXS_RX_POL_SHIFT;
|
|
|
- change = 1;
|
|
|
}
|
|
|
- if (change)
|
|
|
+ if (dd->ipath_minrev >= 2) {
|
|
|
+ /* Rev 2. can tolerate multiple writes to PBC, and
|
|
|
+ * allowing them can provide lower latency on some
|
|
|
+ * CPUs, but this feature is off by default, only
|
|
|
+ * turned on by setting D63 of XGXSconfig reg.
|
|
|
+ * May want to make this conditional more
|
|
|
+ * fine-grained in future. This is not exactly
|
|
|
+ * related to XGXS, but where the bit ended up.
|
|
|
+ */
|
|
|
+ val |= INFINIPATH_XGXS_SUPPRESS_ARMLAUNCH_ERR;
|
|
|
+ }
|
|
|
+ if (val != prev_val)
|
|
|
ipath_write_kreg(dd, dd->ipath_kregs->kr_xgxsconfig, val);
|
|
|
|
|
|
val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_serdesconfig0);
|
|
@@ -717,9 +736,25 @@ static void ipath_pe_quiet_serdes(struct ipath_devdata *dd)
|
|
|
ipath_write_kreg(dd, dd->ipath_kregs->kr_serdesconfig0, val);
|
|
|
}
|
|
|
|
|
|
-/* this is not yet needed on this chip, so just return 0. */
|
|
|
static int ipath_pe_intconfig(struct ipath_devdata *dd)
|
|
|
{
|
|
|
+ u64 val;
|
|
|
+ u32 chiprev;
|
|
|
+
|
|
|
+ /*
|
|
|
+ * If the chip supports added error indication via GPIO pins,
|
|
|
+ * enable interrupts on those bits so the interrupt routine
|
|
|
+ * can count the events. Also set flag so interrupt routine
|
|
|
+ * can know they are expected.
|
|
|
+ */
|
|
|
+ chiprev = dd->ipath_revision >> INFINIPATH_R_CHIPREVMINOR_SHIFT;
|
|
|
+ if ((chiprev & INFINIPATH_R_CHIPREVMINOR_MASK) > 1) {
|
|
|
+ /* Rev2+ reports extra errors via internal GPIO pins */
|
|
|
+ dd->ipath_flags |= IPATH_GPIO_ERRINTRS;
|
|
|
+ val = ipath_read_kreg64(dd, dd->ipath_kregs->kr_gpio_mask);
|
|
|
+ val |= IPATH_GPIO_ERRINTR_MASK;
|
|
|
+ ipath_write_kreg( dd, dd->ipath_kregs->kr_gpio_mask, val);
|
|
|
+ }
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -1082,6 +1117,45 @@ static void ipath_pe_put_tid(struct ipath_devdata *dd, u64 __iomem *tidptr,
|
|
|
mmiowb();
|
|
|
spin_unlock_irqrestore(&dd->ipath_tid_lock, flags);
|
|
|
}
|
|
|
+/**
|
|
|
+ * ipath_pe_put_tid_2 - write a TID in chip, Revision 2 or higher
|
|
|
+ * @dd: the infinipath device
|
|
|
+ * @tidptr: pointer to the expected TID (in chip) to udpate
|
|
|
+ * @tidtype: 0 for eager, 1 for expected
|
|
|
+ * @pa: physical address of in memory buffer; ipath_tidinvalid if freeing
|
|
|
+ *
|
|
|
+ * This exists as a separate routine to allow for selection of the
|
|
|
+ * appropriate "flavor". The static calls in cleanup just use the
|
|
|
+ * revision-agnostic form, as they are not performance critical.
|
|
|
+ */
|
|
|
+static void ipath_pe_put_tid_2(struct ipath_devdata *dd, u64 __iomem *tidptr,
|
|
|
+ u32 type, unsigned long pa)
|
|
|
+{
|
|
|
+ u32 __iomem *tidp32 = (u32 __iomem *)tidptr;
|
|
|
+
|
|
|
+ if (pa != dd->ipath_tidinvalid) {
|
|
|
+ if (pa & ((1U << 11) - 1)) {
|
|
|
+ dev_info(&dd->pcidev->dev, "BUG: physaddr %lx "
|
|
|
+ "not 4KB aligned!\n", pa);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ pa >>= 11;
|
|
|
+ /* paranoia check */
|
|
|
+ if (pa & (7<<29))
|
|
|
+ ipath_dev_err(dd,
|
|
|
+ "BUG: Physical page address 0x%lx "
|
|
|
+ "has bits set in 31-29\n", pa);
|
|
|
+
|
|
|
+ if (type == 0)
|
|
|
+ pa |= dd->ipath_tidtemplate;
|
|
|
+ else /* for now, always full 4KB page */
|
|
|
+ pa |= 2 << 29;
|
|
|
+ }
|
|
|
+ if (dd->ipath_kregbase)
|
|
|
+ writel(pa, tidp32);
|
|
|
+ mmiowb();
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* ipath_pe_clear_tid - clear all TID entries for a port, expected and eager
|
|
@@ -1203,7 +1277,7 @@ int __attribute__((weak)) ipath_unordered_wc(void)
|
|
|
|
|
|
/**
|
|
|
* ipath_init_pe_get_base_info - set chip-specific flags for user code
|
|
|
- * @dd: the infinipath device
|
|
|
+ * @pd: the infinipath port
|
|
|
* @kbase: ipath_base_info pointer
|
|
|
*
|
|
|
* We set the PCIE flag because the lower bandwidth on PCIe vs
|
|
@@ -1212,6 +1286,7 @@ int __attribute__((weak)) ipath_unordered_wc(void)
|
|
|
static int ipath_pe_get_base_info(struct ipath_portdata *pd, void *kbase)
|
|
|
{
|
|
|
struct ipath_base_info *kinfo = kbase;
|
|
|
+ struct ipath_devdata *dd;
|
|
|
|
|
|
if (ipath_unordered_wc()) {
|
|
|
kinfo->spi_runtime_flags |= IPATH_RUNTIME_FORCE_WC_ORDER;
|
|
@@ -1220,8 +1295,20 @@ static int ipath_pe_get_base_info(struct ipath_portdata *pd, void *kbase)
|
|
|
else
|
|
|
ipath_cdbg(PROC, "Not Intel processor, WC ordered\n");
|
|
|
|
|
|
- kinfo->spi_runtime_flags |= IPATH_RUNTIME_PCIE;
|
|
|
+ if (pd == NULL)
|
|
|
+ goto done;
|
|
|
+
|
|
|
+ dd = pd->port_dd;
|
|
|
+
|
|
|
+ if (dd != NULL && dd->ipath_minrev >= 2) {
|
|
|
+ ipath_cdbg(PROC, "IBA6120 Rev2, allow multiple PBC write\n");
|
|
|
+ kinfo->spi_runtime_flags |= IPATH_RUNTIME_PBC_REWRITE;
|
|
|
+ ipath_cdbg(PROC, "IBA6120 Rev2, allow loose DMA alignment\n");
|
|
|
+ kinfo->spi_runtime_flags |= IPATH_RUNTIME_LOOSE_DMA_ALIGN;
|
|
|
+ }
|
|
|
|
|
|
+done:
|
|
|
+ kinfo->spi_runtime_flags |= IPATH_RUNTIME_PCIE;
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -1244,7 +1331,10 @@ void ipath_init_iba6120_funcs(struct ipath_devdata *dd)
|
|
|
dd->ipath_f_quiet_serdes = ipath_pe_quiet_serdes;
|
|
|
dd->ipath_f_bringup_serdes = ipath_pe_bringup_serdes;
|
|
|
dd->ipath_f_clear_tids = ipath_pe_clear_tids;
|
|
|
- dd->ipath_f_put_tid = ipath_pe_put_tid;
|
|
|
+ if (dd->ipath_minrev >= 2)
|
|
|
+ dd->ipath_f_put_tid = ipath_pe_put_tid_2;
|
|
|
+ else
|
|
|
+ dd->ipath_f_put_tid = ipath_pe_put_tid;
|
|
|
dd->ipath_f_cleanup = ipath_setup_pe_cleanup;
|
|
|
dd->ipath_f_setextled = ipath_setup_pe_setextled;
|
|
|
dd->ipath_f_get_base_info = ipath_pe_get_base_info;
|