aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/cxgb4/t4_hw.c
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
committerGlenn Elliott <gelliott@cs.unc.edu>2012-03-04 19:47:13 -0500
commitc71c03bda1e86c9d5198c5d83f712e695c4f2a1e (patch)
treeecb166cb3e2b7e2adb3b5e292245fefd23381ac8 /drivers/net/cxgb4/t4_hw.c
parentea53c912f8a86a8567697115b6a0d8152beee5c8 (diff)
parent6a00f206debf8a5c8899055726ad127dbeeed098 (diff)
Merge branch 'mpi-master' into wip-k-fmlpwip-k-fmlp
Conflicts: litmus/sched_cedf.c
Diffstat (limited to 'drivers/net/cxgb4/t4_hw.c')
-rw-r--r--drivers/net/cxgb4/t4_hw.c429
1 files changed, 48 insertions, 381 deletions
diff --git a/drivers/net/cxgb4/t4_hw.c b/drivers/net/cxgb4/t4_hw.c
index 9e1a4b49b47a..d1ec111aebd8 100644
--- a/drivers/net/cxgb4/t4_hw.c
+++ b/drivers/net/cxgb4/t4_hw.c
@@ -120,30 +120,6 @@ static void t4_read_indirect(struct adapter *adap, unsigned int addr_reg,
120 } 120 }
121} 121}
122 122
123#if 0
124/**
125 * t4_write_indirect - write indirectly addressed registers
126 * @adap: the adapter
127 * @addr_reg: register holding the indirect addresses
128 * @data_reg: register holding the value for the indirect registers
129 * @vals: values to write
130 * @nregs: how many indirect registers to write
131 * @start_idx: address of first indirect register to write
132 *
133 * Writes a sequential block of registers that are accessed indirectly
134 * through an address/data register pair.
135 */
136static void t4_write_indirect(struct adapter *adap, unsigned int addr_reg,
137 unsigned int data_reg, const u32 *vals,
138 unsigned int nregs, unsigned int start_idx)
139{
140 while (nregs--) {
141 t4_write_reg(adap, addr_reg, start_idx++);
142 t4_write_reg(adap, data_reg, *vals++);
143 }
144}
145#endif
146
147/* 123/*
148 * Get the reply to a mailbox command and store it in @rpl in big-endian order. 124 * Get the reply to a mailbox command and store it in @rpl in big-endian order.
149 */ 125 */
@@ -207,7 +183,7 @@ static void dump_mbox(struct adapter *adap, int mbox, u32 data_reg)
207int t4_wr_mbox_meat(struct adapter *adap, int mbox, const void *cmd, int size, 183int t4_wr_mbox_meat(struct adapter *adap, int mbox, const void *cmd, int size,
208 void *rpl, bool sleep_ok) 184 void *rpl, bool sleep_ok)
209{ 185{
210 static int delay[] = { 186 static const int delay[] = {
211 1, 1, 3, 5, 10, 10, 20, 50, 100, 200 187 1, 1, 3, 5, 10, 10, 20, 50, 100, 200
212 }; 188 };
213 189
@@ -354,18 +330,6 @@ int t4_edc_read(struct adapter *adap, int idx, u32 addr, __be32 *data, u64 *ecc)
354 return 0; 330 return 0;
355} 331}
356 332
357/*
358 * Partial EEPROM Vital Product Data structure. Includes only the ID and
359 * VPD-R header.
360 */
361struct t4_vpd_hdr {
362 u8 id_tag;
363 u8 id_len[2];
364 u8 id_data[ID_LEN];
365 u8 vpdr_tag;
366 u8 vpdr_len[2];
367};
368
369#define EEPROM_STAT_ADDR 0x7bfc 333#define EEPROM_STAT_ADDR 0x7bfc
370#define VPD_BASE 0 334#define VPD_BASE 0
371#define VPD_LEN 512 335#define VPD_LEN 512
@@ -394,25 +358,38 @@ int t4_seeprom_wp(struct adapter *adapter, bool enable)
394static int get_vpd_params(struct adapter *adapter, struct vpd_params *p) 358static int get_vpd_params(struct adapter *adapter, struct vpd_params *p)
395{ 359{
396 int i, ret; 360 int i, ret;
397 int ec, sn, v2; 361 int ec, sn;
398 u8 vpd[VPD_LEN], csum; 362 u8 vpd[VPD_LEN], csum;
399 unsigned int vpdr_len; 363 unsigned int vpdr_len, kw_offset, id_len;
400 const struct t4_vpd_hdr *v;
401 364
402 ret = pci_read_vpd(adapter->pdev, VPD_BASE, sizeof(vpd), vpd); 365 ret = pci_read_vpd(adapter->pdev, VPD_BASE, sizeof(vpd), vpd);
403 if (ret < 0) 366 if (ret < 0)
404 return ret; 367 return ret;
405 368
406 v = (const struct t4_vpd_hdr *)vpd; 369 if (vpd[0] != PCI_VPD_LRDT_ID_STRING) {
407 vpdr_len = pci_vpd_lrdt_size(&v->vpdr_tag); 370 dev_err(adapter->pdev_dev, "missing VPD ID string\n");
408 if (vpdr_len + sizeof(struct t4_vpd_hdr) > VPD_LEN) { 371 return -EINVAL;
372 }
373
374 id_len = pci_vpd_lrdt_size(vpd);
375 if (id_len > ID_LEN)
376 id_len = ID_LEN;
377
378 i = pci_vpd_find_tag(vpd, 0, VPD_LEN, PCI_VPD_LRDT_RO_DATA);
379 if (i < 0) {
380 dev_err(adapter->pdev_dev, "missing VPD-R section\n");
381 return -EINVAL;
382 }
383
384 vpdr_len = pci_vpd_lrdt_size(&vpd[i]);
385 kw_offset = i + PCI_VPD_LRDT_TAG_SIZE;
386 if (vpdr_len + kw_offset > VPD_LEN) {
409 dev_err(adapter->pdev_dev, "bad VPD-R length %u\n", vpdr_len); 387 dev_err(adapter->pdev_dev, "bad VPD-R length %u\n", vpdr_len);
410 return -EINVAL; 388 return -EINVAL;
411 } 389 }
412 390
413#define FIND_VPD_KW(var, name) do { \ 391#define FIND_VPD_KW(var, name) do { \
414 var = pci_vpd_find_info_keyword(&v->id_tag, sizeof(struct t4_vpd_hdr), \ 392 var = pci_vpd_find_info_keyword(vpd, kw_offset, vpdr_len, name); \
415 vpdr_len, name); \
416 if (var < 0) { \ 393 if (var < 0) { \
417 dev_err(adapter->pdev_dev, "missing VPD keyword " name "\n"); \ 394 dev_err(adapter->pdev_dev, "missing VPD keyword " name "\n"); \
418 return -EINVAL; \ 395 return -EINVAL; \
@@ -432,11 +409,9 @@ static int get_vpd_params(struct adapter *adapter, struct vpd_params *p)
432 409
433 FIND_VPD_KW(ec, "EC"); 410 FIND_VPD_KW(ec, "EC");
434 FIND_VPD_KW(sn, "SN"); 411 FIND_VPD_KW(sn, "SN");
435 FIND_VPD_KW(v2, "V2");
436#undef FIND_VPD_KW 412#undef FIND_VPD_KW
437 413
438 p->cclk = simple_strtoul(vpd + v2, NULL, 10); 414 memcpy(p->id, vpd + PCI_VPD_LRDT_TAG_SIZE, id_len);
439 memcpy(p->id, v->id_data, ID_LEN);
440 strim(p->id); 415 strim(p->id);
441 memcpy(p->ec, vpd + ec, EC_LEN); 416 memcpy(p->ec, vpd + ec, EC_LEN);
442 strim(p->ec); 417 strim(p->ec);
@@ -908,7 +883,7 @@ struct intr_info {
908 * 883 *
909 * A table driven interrupt handler that applies a set of masks to an 884 * A table driven interrupt handler that applies a set of masks to an
910 * interrupt status word and performs the corresponding actions if the 885 * interrupt status word and performs the corresponding actions if the
911 * interrupts described by the mask have occured. The actions include 886 * interrupts described by the mask have occurred. The actions include
912 * optionally emitting a warning or alert message. The table is terminated 887 * optionally emitting a warning or alert message. The table is terminated
913 * by an entry specifying mask 0. Returns the number of fatal interrupt 888 * by an entry specifying mask 0. Returns the number of fatal interrupt
914 * conditions. 889 * conditions.
@@ -943,7 +918,7 @@ static int t4_handle_intr_status(struct adapter *adapter, unsigned int reg,
943 */ 918 */
944static void pcie_intr_handler(struct adapter *adapter) 919static void pcie_intr_handler(struct adapter *adapter)
945{ 920{
946 static struct intr_info sysbus_intr_info[] = { 921 static const struct intr_info sysbus_intr_info[] = {
947 { RNPP, "RXNP array parity error", -1, 1 }, 922 { RNPP, "RXNP array parity error", -1, 1 },
948 { RPCP, "RXPC array parity error", -1, 1 }, 923 { RPCP, "RXPC array parity error", -1, 1 },
949 { RCIP, "RXCIF array parity error", -1, 1 }, 924 { RCIP, "RXCIF array parity error", -1, 1 },
@@ -951,7 +926,7 @@ static void pcie_intr_handler(struct adapter *adapter)
951 { RFTP, "RXFT array parity error", -1, 1 }, 926 { RFTP, "RXFT array parity error", -1, 1 },
952 { 0 } 927 { 0 }
953 }; 928 };
954 static struct intr_info pcie_port_intr_info[] = { 929 static const struct intr_info pcie_port_intr_info[] = {
955 { TPCP, "TXPC array parity error", -1, 1 }, 930 { TPCP, "TXPC array parity error", -1, 1 },
956 { TNPP, "TXNP array parity error", -1, 1 }, 931 { TNPP, "TXNP array parity error", -1, 1 },
957 { TFTP, "TXFT array parity error", -1, 1 }, 932 { TFTP, "TXFT array parity error", -1, 1 },
@@ -963,7 +938,7 @@ static void pcie_intr_handler(struct adapter *adapter)
963 { TDUE, "Tx uncorrectable data error", -1, 1 }, 938 { TDUE, "Tx uncorrectable data error", -1, 1 },
964 { 0 } 939 { 0 }
965 }; 940 };
966 static struct intr_info pcie_intr_info[] = { 941 static const struct intr_info pcie_intr_info[] = {
967 { MSIADDRLPERR, "MSI AddrL parity error", -1, 1 }, 942 { MSIADDRLPERR, "MSI AddrL parity error", -1, 1 },
968 { MSIADDRHPERR, "MSI AddrH parity error", -1, 1 }, 943 { MSIADDRHPERR, "MSI AddrH parity error", -1, 1 },
969 { MSIDATAPERR, "MSI data parity error", -1, 1 }, 944 { MSIDATAPERR, "MSI data parity error", -1, 1 },
@@ -1015,7 +990,7 @@ static void pcie_intr_handler(struct adapter *adapter)
1015 */ 990 */
1016static void tp_intr_handler(struct adapter *adapter) 991static void tp_intr_handler(struct adapter *adapter)
1017{ 992{
1018 static struct intr_info tp_intr_info[] = { 993 static const struct intr_info tp_intr_info[] = {
1019 { 0x3fffffff, "TP parity error", -1, 1 }, 994 { 0x3fffffff, "TP parity error", -1, 1 },
1020 { FLMTXFLSTEMPTY, "TP out of Tx pages", -1, 1 }, 995 { FLMTXFLSTEMPTY, "TP out of Tx pages", -1, 1 },
1021 { 0 } 996 { 0 }
@@ -1032,7 +1007,7 @@ static void sge_intr_handler(struct adapter *adapter)
1032{ 1007{
1033 u64 v; 1008 u64 v;
1034 1009
1035 static struct intr_info sge_intr_info[] = { 1010 static const struct intr_info sge_intr_info[] = {
1036 { ERR_CPL_EXCEED_IQE_SIZE, 1011 { ERR_CPL_EXCEED_IQE_SIZE,
1037 "SGE received CPL exceeding IQE size", -1, 1 }, 1012 "SGE received CPL exceeding IQE size", -1, 1 },
1038 { ERR_INVALID_CIDX_INC, 1013 { ERR_INVALID_CIDX_INC,
@@ -1077,7 +1052,7 @@ static void sge_intr_handler(struct adapter *adapter)
1077 */ 1052 */
1078static void cim_intr_handler(struct adapter *adapter) 1053static void cim_intr_handler(struct adapter *adapter)
1079{ 1054{
1080 static struct intr_info cim_intr_info[] = { 1055 static const struct intr_info cim_intr_info[] = {
1081 { PREFDROPINT, "CIM control register prefetch drop", -1, 1 }, 1056 { PREFDROPINT, "CIM control register prefetch drop", -1, 1 },
1082 { OBQPARERR, "CIM OBQ parity error", -1, 1 }, 1057 { OBQPARERR, "CIM OBQ parity error", -1, 1 },
1083 { IBQPARERR, "CIM IBQ parity error", -1, 1 }, 1058 { IBQPARERR, "CIM IBQ parity error", -1, 1 },
@@ -1087,7 +1062,7 @@ static void cim_intr_handler(struct adapter *adapter)
1087 { TIEQOUTPARERRINT, "CIM TIEQ incoming parity error", -1, 1 }, 1062 { TIEQOUTPARERRINT, "CIM TIEQ incoming parity error", -1, 1 },
1088 { 0 } 1063 { 0 }
1089 }; 1064 };
1090 static struct intr_info cim_upintr_info[] = { 1065 static const struct intr_info cim_upintr_info[] = {
1091 { RSVDSPACEINT, "CIM reserved space access", -1, 1 }, 1066 { RSVDSPACEINT, "CIM reserved space access", -1, 1 },
1092 { ILLTRANSINT, "CIM illegal transaction", -1, 1 }, 1067 { ILLTRANSINT, "CIM illegal transaction", -1, 1 },
1093 { ILLWRINT, "CIM illegal write", -1, 1 }, 1068 { ILLWRINT, "CIM illegal write", -1, 1 },
@@ -1134,7 +1109,7 @@ static void cim_intr_handler(struct adapter *adapter)
1134 */ 1109 */
1135static void ulprx_intr_handler(struct adapter *adapter) 1110static void ulprx_intr_handler(struct adapter *adapter)
1136{ 1111{
1137 static struct intr_info ulprx_intr_info[] = { 1112 static const struct intr_info ulprx_intr_info[] = {
1138 { 0x1800000, "ULPRX context error", -1, 1 }, 1113 { 0x1800000, "ULPRX context error", -1, 1 },
1139 { 0x7fffff, "ULPRX parity error", -1, 1 }, 1114 { 0x7fffff, "ULPRX parity error", -1, 1 },
1140 { 0 } 1115 { 0 }
@@ -1149,7 +1124,7 @@ static void ulprx_intr_handler(struct adapter *adapter)
1149 */ 1124 */
1150static void ulptx_intr_handler(struct adapter *adapter) 1125static void ulptx_intr_handler(struct adapter *adapter)
1151{ 1126{
1152 static struct intr_info ulptx_intr_info[] = { 1127 static const struct intr_info ulptx_intr_info[] = {
1153 { PBL_BOUND_ERR_CH3, "ULPTX channel 3 PBL out of bounds", -1, 1128 { PBL_BOUND_ERR_CH3, "ULPTX channel 3 PBL out of bounds", -1,
1154 0 }, 1129 0 },
1155 { PBL_BOUND_ERR_CH2, "ULPTX channel 2 PBL out of bounds", -1, 1130 { PBL_BOUND_ERR_CH2, "ULPTX channel 2 PBL out of bounds", -1,
@@ -1171,7 +1146,7 @@ static void ulptx_intr_handler(struct adapter *adapter)
1171 */ 1146 */
1172static void pmtx_intr_handler(struct adapter *adapter) 1147static void pmtx_intr_handler(struct adapter *adapter)
1173{ 1148{
1174 static struct intr_info pmtx_intr_info[] = { 1149 static const struct intr_info pmtx_intr_info[] = {
1175 { PCMD_LEN_OVFL0, "PMTX channel 0 pcmd too large", -1, 1 }, 1150 { PCMD_LEN_OVFL0, "PMTX channel 0 pcmd too large", -1, 1 },
1176 { PCMD_LEN_OVFL1, "PMTX channel 1 pcmd too large", -1, 1 }, 1151 { PCMD_LEN_OVFL1, "PMTX channel 1 pcmd too large", -1, 1 },
1177 { PCMD_LEN_OVFL2, "PMTX channel 2 pcmd too large", -1, 1 }, 1152 { PCMD_LEN_OVFL2, "PMTX channel 2 pcmd too large", -1, 1 },
@@ -1193,7 +1168,7 @@ static void pmtx_intr_handler(struct adapter *adapter)
1193 */ 1168 */
1194static void pmrx_intr_handler(struct adapter *adapter) 1169static void pmrx_intr_handler(struct adapter *adapter)
1195{ 1170{
1196 static struct intr_info pmrx_intr_info[] = { 1171 static const struct intr_info pmrx_intr_info[] = {
1197 { ZERO_E_CMD_ERROR, "PMRX 0-length pcmd", -1, 1 }, 1172 { ZERO_E_CMD_ERROR, "PMRX 0-length pcmd", -1, 1 },
1198 { PMRX_FRAMING_ERROR, "PMRX framing error", -1, 1 }, 1173 { PMRX_FRAMING_ERROR, "PMRX framing error", -1, 1 },
1199 { OCSPI_PAR_ERROR, "PMRX ocspi parity error", -1, 1 }, 1174 { OCSPI_PAR_ERROR, "PMRX ocspi parity error", -1, 1 },
@@ -1212,7 +1187,7 @@ static void pmrx_intr_handler(struct adapter *adapter)
1212 */ 1187 */
1213static void cplsw_intr_handler(struct adapter *adapter) 1188static void cplsw_intr_handler(struct adapter *adapter)
1214{ 1189{
1215 static struct intr_info cplsw_intr_info[] = { 1190 static const struct intr_info cplsw_intr_info[] = {
1216 { CIM_OP_MAP_PERR, "CPLSW CIM op_map parity error", -1, 1 }, 1191 { CIM_OP_MAP_PERR, "CPLSW CIM op_map parity error", -1, 1 },
1217 { CIM_OVFL_ERROR, "CPLSW CIM overflow", -1, 1 }, 1192 { CIM_OVFL_ERROR, "CPLSW CIM overflow", -1, 1 },
1218 { TP_FRAMING_ERROR, "CPLSW TP framing error", -1, 1 }, 1193 { TP_FRAMING_ERROR, "CPLSW TP framing error", -1, 1 },
@@ -1231,7 +1206,7 @@ static void cplsw_intr_handler(struct adapter *adapter)
1231 */ 1206 */
1232static void le_intr_handler(struct adapter *adap) 1207static void le_intr_handler(struct adapter *adap)
1233{ 1208{
1234 static struct intr_info le_intr_info[] = { 1209 static const struct intr_info le_intr_info[] = {
1235 { LIPMISS, "LE LIP miss", -1, 0 }, 1210 { LIPMISS, "LE LIP miss", -1, 0 },
1236 { LIP0, "LE 0 LIP error", -1, 0 }, 1211 { LIP0, "LE 0 LIP error", -1, 0 },
1237 { PARITYERR, "LE parity error", -1, 1 }, 1212 { PARITYERR, "LE parity error", -1, 1 },
@@ -1249,11 +1224,11 @@ static void le_intr_handler(struct adapter *adap)
1249 */ 1224 */
1250static void mps_intr_handler(struct adapter *adapter) 1225static void mps_intr_handler(struct adapter *adapter)
1251{ 1226{
1252 static struct intr_info mps_rx_intr_info[] = { 1227 static const struct intr_info mps_rx_intr_info[] = {
1253 { 0xffffff, "MPS Rx parity error", -1, 1 }, 1228 { 0xffffff, "MPS Rx parity error", -1, 1 },
1254 { 0 } 1229 { 0 }
1255 }; 1230 };
1256 static struct intr_info mps_tx_intr_info[] = { 1231 static const struct intr_info mps_tx_intr_info[] = {
1257 { TPFIFO, "MPS Tx TP FIFO parity error", -1, 1 }, 1232 { TPFIFO, "MPS Tx TP FIFO parity error", -1, 1 },
1258 { NCSIFIFO, "MPS Tx NC-SI FIFO parity error", -1, 1 }, 1233 { NCSIFIFO, "MPS Tx NC-SI FIFO parity error", -1, 1 },
1259 { TXDATAFIFO, "MPS Tx data FIFO parity error", -1, 1 }, 1234 { TXDATAFIFO, "MPS Tx data FIFO parity error", -1, 1 },
@@ -1263,25 +1238,25 @@ static void mps_intr_handler(struct adapter *adapter)
1263 { FRMERR, "MPS Tx framing error", -1, 1 }, 1238 { FRMERR, "MPS Tx framing error", -1, 1 },
1264 { 0 } 1239 { 0 }
1265 }; 1240 };
1266 static struct intr_info mps_trc_intr_info[] = { 1241 static const struct intr_info mps_trc_intr_info[] = {
1267 { FILTMEM, "MPS TRC filter parity error", -1, 1 }, 1242 { FILTMEM, "MPS TRC filter parity error", -1, 1 },
1268 { PKTFIFO, "MPS TRC packet FIFO parity error", -1, 1 }, 1243 { PKTFIFO, "MPS TRC packet FIFO parity error", -1, 1 },
1269 { MISCPERR, "MPS TRC misc parity error", -1, 1 }, 1244 { MISCPERR, "MPS TRC misc parity error", -1, 1 },
1270 { 0 } 1245 { 0 }
1271 }; 1246 };
1272 static struct intr_info mps_stat_sram_intr_info[] = { 1247 static const struct intr_info mps_stat_sram_intr_info[] = {
1273 { 0x1fffff, "MPS statistics SRAM parity error", -1, 1 }, 1248 { 0x1fffff, "MPS statistics SRAM parity error", -1, 1 },
1274 { 0 } 1249 { 0 }
1275 }; 1250 };
1276 static struct intr_info mps_stat_tx_intr_info[] = { 1251 static const struct intr_info mps_stat_tx_intr_info[] = {
1277 { 0xfffff, "MPS statistics Tx FIFO parity error", -1, 1 }, 1252 { 0xfffff, "MPS statistics Tx FIFO parity error", -1, 1 },
1278 { 0 } 1253 { 0 }
1279 }; 1254 };
1280 static struct intr_info mps_stat_rx_intr_info[] = { 1255 static const struct intr_info mps_stat_rx_intr_info[] = {
1281 { 0xffffff, "MPS statistics Rx FIFO parity error", -1, 1 }, 1256 { 0xffffff, "MPS statistics Rx FIFO parity error", -1, 1 },
1282 { 0 } 1257 { 0 }
1283 }; 1258 };
1284 static struct intr_info mps_cls_intr_info[] = { 1259 static const struct intr_info mps_cls_intr_info[] = {
1285 { MATCHSRAM, "MPS match SRAM parity error", -1, 1 }, 1260 { MATCHSRAM, "MPS match SRAM parity error", -1, 1 },
1286 { MATCHTCAM, "MPS match TCAM parity error", -1, 1 }, 1261 { MATCHTCAM, "MPS match TCAM parity error", -1, 1 },
1287 { HASHSRAM, "MPS hash SRAM parity error", -1, 1 }, 1262 { HASHSRAM, "MPS hash SRAM parity error", -1, 1 },
@@ -1380,7 +1355,7 @@ static void ma_intr_handler(struct adapter *adap)
1380 */ 1355 */
1381static void smb_intr_handler(struct adapter *adap) 1356static void smb_intr_handler(struct adapter *adap)
1382{ 1357{
1383 static struct intr_info smb_intr_info[] = { 1358 static const struct intr_info smb_intr_info[] = {
1384 { MSTTXFIFOPARINT, "SMB master Tx FIFO parity error", -1, 1 }, 1359 { MSTTXFIFOPARINT, "SMB master Tx FIFO parity error", -1, 1 },
1385 { MSTRXFIFOPARINT, "SMB master Rx FIFO parity error", -1, 1 }, 1360 { MSTRXFIFOPARINT, "SMB master Rx FIFO parity error", -1, 1 },
1386 { SLVFIFOPARINT, "SMB slave FIFO parity error", -1, 1 }, 1361 { SLVFIFOPARINT, "SMB slave FIFO parity error", -1, 1 },
@@ -1396,7 +1371,7 @@ static void smb_intr_handler(struct adapter *adap)
1396 */ 1371 */
1397static void ncsi_intr_handler(struct adapter *adap) 1372static void ncsi_intr_handler(struct adapter *adap)
1398{ 1373{
1399 static struct intr_info ncsi_intr_info[] = { 1374 static const struct intr_info ncsi_intr_info[] = {
1400 { CIM_DM_PRTY_ERR, "NC-SI CIM parity error", -1, 1 }, 1375 { CIM_DM_PRTY_ERR, "NC-SI CIM parity error", -1, 1 },
1401 { MPS_DM_PRTY_ERR, "NC-SI MPS parity error", -1, 1 }, 1376 { MPS_DM_PRTY_ERR, "NC-SI MPS parity error", -1, 1 },
1402 { TXFIFO_PRTY_ERR, "NC-SI Tx FIFO parity error", -1, 1 }, 1377 { TXFIFO_PRTY_ERR, "NC-SI Tx FIFO parity error", -1, 1 },
@@ -1434,7 +1409,7 @@ static void xgmac_intr_handler(struct adapter *adap, int port)
1434 */ 1409 */
1435static void pl_intr_handler(struct adapter *adap) 1410static void pl_intr_handler(struct adapter *adap)
1436{ 1411{
1437 static struct intr_info pl_intr_info[] = { 1412 static const struct intr_info pl_intr_info[] = {
1438 { FATALPERR, "T4 fatal parity error", -1, 1 }, 1413 { FATALPERR, "T4 fatal parity error", -1, 1 },
1439 { PERRVFID, "PL VFID_MAP parity error", -1, 1 }, 1414 { PERRVFID, "PL VFID_MAP parity error", -1, 1 },
1440 { 0 } 1415 { 0 }
@@ -1560,44 +1535,6 @@ void t4_intr_disable(struct adapter *adapter)
1560} 1535}
1561 1536
1562/** 1537/**
1563 * t4_intr_clear - clear all interrupts
1564 * @adapter: the adapter whose interrupts should be cleared
1565 *
1566 * Clears all interrupts. The caller must be a PCI function managing
1567 * global interrupts.
1568 */
1569void t4_intr_clear(struct adapter *adapter)
1570{
1571 static const unsigned int cause_reg[] = {
1572 SGE_INT_CAUSE1, SGE_INT_CAUSE2, SGE_INT_CAUSE3,
1573 PCIE_CORE_UTL_SYSTEM_BUS_AGENT_STATUS,
1574 PCIE_CORE_UTL_PCI_EXPRESS_PORT_STATUS,
1575 PCIE_NONFAT_ERR, PCIE_INT_CAUSE,
1576 MC_INT_CAUSE,
1577 MA_INT_WRAP_STATUS, MA_PARITY_ERROR_STATUS, MA_INT_CAUSE,
1578 EDC_INT_CAUSE, EDC_REG(EDC_INT_CAUSE, 1),
1579 CIM_HOST_INT_CAUSE, CIM_HOST_UPACC_INT_CAUSE,
1580 MYPF_REG(CIM_PF_HOST_INT_CAUSE),
1581 TP_INT_CAUSE,
1582 ULP_RX_INT_CAUSE, ULP_TX_INT_CAUSE,
1583 PM_RX_INT_CAUSE, PM_TX_INT_CAUSE,
1584 MPS_RX_PERR_INT_CAUSE,
1585 CPL_INTR_CAUSE,
1586 MYPF_REG(PL_PF_INT_CAUSE),
1587 PL_PL_INT_CAUSE,
1588 LE_DB_INT_CAUSE,
1589 };
1590
1591 unsigned int i;
1592
1593 for (i = 0; i < ARRAY_SIZE(cause_reg); ++i)
1594 t4_write_reg(adapter, cause_reg[i], 0xffffffff);
1595
1596 t4_write_reg(adapter, PL_INT_CAUSE, GLBL_INTR_MASK);
1597 (void) t4_read_reg(adapter, PL_INT_CAUSE); /* flush */
1598}
1599
1600/**
1601 * hash_mac_addr - return the hash value of a MAC address 1538 * hash_mac_addr - return the hash value of a MAC address
1602 * @addr: the 48-bit Ethernet MAC address 1539 * @addr: the 48-bit Ethernet MAC address
1603 * 1540 *
@@ -1709,36 +1646,6 @@ int t4_config_glbl_rss(struct adapter *adapter, int mbox, unsigned int mode,
1709 return t4_wr_mbox(adapter, mbox, &c, sizeof(c), NULL); 1646 return t4_wr_mbox(adapter, mbox, &c, sizeof(c), NULL);
1710} 1647}
1711 1648
1712/* Read an RSS table row */
1713static int rd_rss_row(struct adapter *adap, int row, u32 *val)
1714{
1715 t4_write_reg(adap, TP_RSS_LKP_TABLE, 0xfff00000 | row);
1716 return t4_wait_op_done_val(adap, TP_RSS_LKP_TABLE, LKPTBLROWVLD, 1,
1717 5, 0, val);
1718}
1719
1720/**
1721 * t4_read_rss - read the contents of the RSS mapping table
1722 * @adapter: the adapter
1723 * @map: holds the contents of the RSS mapping table
1724 *
1725 * Reads the contents of the RSS hash->queue mapping table.
1726 */
1727int t4_read_rss(struct adapter *adapter, u16 *map)
1728{
1729 u32 val;
1730 int i, ret;
1731
1732 for (i = 0; i < RSS_NENTRIES / 2; ++i) {
1733 ret = rd_rss_row(adapter, i, &val);
1734 if (ret)
1735 return ret;
1736 *map++ = LKPTBLQUEUE0_GET(val);
1737 *map++ = LKPTBLQUEUE1_GET(val);
1738 }
1739 return 0;
1740}
1741
1742/** 1649/**
1743 * t4_tp_get_tcp_stats - read TP's TCP MIB counters 1650 * t4_tp_get_tcp_stats - read TP's TCP MIB counters
1744 * @adap: the adapter 1651 * @adap: the adapter
@@ -1779,29 +1686,6 @@ void t4_tp_get_tcp_stats(struct adapter *adap, struct tp_tcp_stats *v4,
1779} 1686}
1780 1687
1781/** 1688/**
1782 * t4_tp_get_err_stats - read TP's error MIB counters
1783 * @adap: the adapter
1784 * @st: holds the counter values
1785 *
1786 * Returns the values of TP's error counters.
1787 */
1788void t4_tp_get_err_stats(struct adapter *adap, struct tp_err_stats *st)
1789{
1790 t4_read_indirect(adap, TP_MIB_INDEX, TP_MIB_DATA, st->macInErrs,
1791 12, TP_MIB_MAC_IN_ERR_0);
1792 t4_read_indirect(adap, TP_MIB_INDEX, TP_MIB_DATA, st->tnlCongDrops,
1793 8, TP_MIB_TNL_CNG_DROP_0);
1794 t4_read_indirect(adap, TP_MIB_INDEX, TP_MIB_DATA, st->tnlTxDrops,
1795 4, TP_MIB_TNL_DROP_0);
1796 t4_read_indirect(adap, TP_MIB_INDEX, TP_MIB_DATA, st->ofldVlanDrops,
1797 4, TP_MIB_OFD_VLN_DROP_0);
1798 t4_read_indirect(adap, TP_MIB_INDEX, TP_MIB_DATA, st->tcp6InErrs,
1799 4, TP_MIB_TCP_V6IN_ERR_0);
1800 t4_read_indirect(adap, TP_MIB_INDEX, TP_MIB_DATA, &st->ofldNoNeigh,
1801 2, TP_MIB_OFD_ARP_DROP);
1802}
1803
1804/**
1805 * t4_read_mtu_tbl - returns the values in the HW path MTU table 1689 * t4_read_mtu_tbl - returns the values in the HW path MTU table
1806 * @adap: the adapter 1690 * @adap: the adapter
1807 * @mtus: where to store the MTU values 1691 * @mtus: where to store the MTU values
@@ -1916,122 +1800,6 @@ void t4_load_mtus(struct adapter *adap, const unsigned short *mtus,
1916} 1800}
1917 1801
1918/** 1802/**
1919 * t4_set_trace_filter - configure one of the tracing filters
1920 * @adap: the adapter
1921 * @tp: the desired trace filter parameters
1922 * @idx: which filter to configure
1923 * @enable: whether to enable or disable the filter
1924 *
1925 * Configures one of the tracing filters available in HW. If @enable is
1926 * %0 @tp is not examined and may be %NULL.
1927 */
1928int t4_set_trace_filter(struct adapter *adap, const struct trace_params *tp,
1929 int idx, int enable)
1930{
1931 int i, ofst = idx * 4;
1932 u32 data_reg, mask_reg, cfg;
1933 u32 multitrc = TRCMULTIFILTER;
1934
1935 if (!enable) {
1936 t4_write_reg(adap, MPS_TRC_FILTER_MATCH_CTL_A + ofst, 0);
1937 goto out;
1938 }
1939
1940 if (tp->port > 11 || tp->invert > 1 || tp->skip_len > 0x1f ||
1941 tp->skip_ofst > 0x1f || tp->min_len > 0x1ff ||
1942 tp->snap_len > 9600 || (idx && tp->snap_len > 256))
1943 return -EINVAL;
1944
1945 if (tp->snap_len > 256) { /* must be tracer 0 */
1946 if ((t4_read_reg(adap, MPS_TRC_FILTER_MATCH_CTL_A + 4) |
1947 t4_read_reg(adap, MPS_TRC_FILTER_MATCH_CTL_A + 8) |
1948 t4_read_reg(adap, MPS_TRC_FILTER_MATCH_CTL_A + 12)) & TFEN)
1949 return -EINVAL; /* other tracers are enabled */
1950 multitrc = 0;
1951 } else if (idx) {
1952 i = t4_read_reg(adap, MPS_TRC_FILTER_MATCH_CTL_B);
1953 if (TFCAPTUREMAX_GET(i) > 256 &&
1954 (t4_read_reg(adap, MPS_TRC_FILTER_MATCH_CTL_A) & TFEN))
1955 return -EINVAL;
1956 }
1957
1958 /* stop the tracer we'll be changing */
1959 t4_write_reg(adap, MPS_TRC_FILTER_MATCH_CTL_A + ofst, 0);
1960
1961 /* disable tracing globally if running in the wrong single/multi mode */
1962 cfg = t4_read_reg(adap, MPS_TRC_CFG);
1963 if ((cfg & TRCEN) && multitrc != (cfg & TRCMULTIFILTER)) {
1964 t4_write_reg(adap, MPS_TRC_CFG, cfg ^ TRCEN);
1965 t4_read_reg(adap, MPS_TRC_CFG); /* flush */
1966 msleep(1);
1967 if (!(t4_read_reg(adap, MPS_TRC_CFG) & TRCFIFOEMPTY))
1968 return -ETIMEDOUT;
1969 }
1970 /*
1971 * At this point either the tracing is enabled and in the right mode or
1972 * disabled.
1973 */
1974
1975 idx *= (MPS_TRC_FILTER1_MATCH - MPS_TRC_FILTER0_MATCH);
1976 data_reg = MPS_TRC_FILTER0_MATCH + idx;
1977 mask_reg = MPS_TRC_FILTER0_DONT_CARE + idx;
1978
1979 for (i = 0; i < TRACE_LEN / 4; i++, data_reg += 4, mask_reg += 4) {
1980 t4_write_reg(adap, data_reg, tp->data[i]);
1981 t4_write_reg(adap, mask_reg, ~tp->mask[i]);
1982 }
1983 t4_write_reg(adap, MPS_TRC_FILTER_MATCH_CTL_B + ofst,
1984 TFCAPTUREMAX(tp->snap_len) |
1985 TFMINPKTSIZE(tp->min_len));
1986 t4_write_reg(adap, MPS_TRC_FILTER_MATCH_CTL_A + ofst,
1987 TFOFFSET(tp->skip_ofst) | TFLENGTH(tp->skip_len) |
1988 TFPORT(tp->port) | TFEN |
1989 (tp->invert ? TFINVERTMATCH : 0));
1990
1991 cfg &= ~TRCMULTIFILTER;
1992 t4_write_reg(adap, MPS_TRC_CFG, cfg | TRCEN | multitrc);
1993out: t4_read_reg(adap, MPS_TRC_CFG); /* flush */
1994 return 0;
1995}
1996
1997/**
1998 * t4_get_trace_filter - query one of the tracing filters
1999 * @adap: the adapter
2000 * @tp: the current trace filter parameters
2001 * @idx: which trace filter to query
2002 * @enabled: non-zero if the filter is enabled
2003 *
2004 * Returns the current settings of one of the HW tracing filters.
2005 */
2006void t4_get_trace_filter(struct adapter *adap, struct trace_params *tp, int idx,
2007 int *enabled)
2008{
2009 u32 ctla, ctlb;
2010 int i, ofst = idx * 4;
2011 u32 data_reg, mask_reg;
2012
2013 ctla = t4_read_reg(adap, MPS_TRC_FILTER_MATCH_CTL_A + ofst);
2014 ctlb = t4_read_reg(adap, MPS_TRC_FILTER_MATCH_CTL_B + ofst);
2015
2016 *enabled = !!(ctla & TFEN);
2017 tp->snap_len = TFCAPTUREMAX_GET(ctlb);
2018 tp->min_len = TFMINPKTSIZE_GET(ctlb);
2019 tp->skip_ofst = TFOFFSET_GET(ctla);
2020 tp->skip_len = TFLENGTH_GET(ctla);
2021 tp->invert = !!(ctla & TFINVERTMATCH);
2022 tp->port = TFPORT_GET(ctla);
2023
2024 ofst = (MPS_TRC_FILTER1_MATCH - MPS_TRC_FILTER0_MATCH) * idx;
2025 data_reg = MPS_TRC_FILTER0_MATCH + ofst;
2026 mask_reg = MPS_TRC_FILTER0_DONT_CARE + ofst;
2027
2028 for (i = 0; i < TRACE_LEN / 4; i++, data_reg += 4, mask_reg += 4) {
2029 tp->mask[i] = ~t4_read_reg(adap, mask_reg);
2030 tp->data[i] = t4_read_reg(adap, data_reg) & tp->mask[i];
2031 }
2032}
2033
2034/**
2035 * get_mps_bg_map - return the buffer groups associated with a port 1803 * get_mps_bg_map - return the buffer groups associated with a port
2036 * @adap: the adapter 1804 * @adap: the adapter
2037 * @idx: the port index 1805 * @idx: the port index
@@ -2133,52 +1901,6 @@ void t4_get_port_stats(struct adapter *adap, int idx, struct port_stats *p)
2133} 1901}
2134 1902
2135/** 1903/**
2136 * t4_get_lb_stats - collect loopback port statistics
2137 * @adap: the adapter
2138 * @idx: the loopback port index
2139 * @p: the stats structure to fill
2140 *
2141 * Return HW statistics for the given loopback port.
2142 */
2143void t4_get_lb_stats(struct adapter *adap, int idx, struct lb_port_stats *p)
2144{
2145 u32 bgmap = get_mps_bg_map(adap, idx);
2146
2147#define GET_STAT(name) \
2148 t4_read_reg64(adap, PORT_REG(idx, MPS_PORT_STAT_LB_PORT_##name##_L))
2149#define GET_STAT_COM(name) t4_read_reg64(adap, MPS_STAT_##name##_L)
2150
2151 p->octets = GET_STAT(BYTES);
2152 p->frames = GET_STAT(FRAMES);
2153 p->bcast_frames = GET_STAT(BCAST);
2154 p->mcast_frames = GET_STAT(MCAST);
2155 p->ucast_frames = GET_STAT(UCAST);
2156 p->error_frames = GET_STAT(ERROR);
2157
2158 p->frames_64 = GET_STAT(64B);
2159 p->frames_65_127 = GET_STAT(65B_127B);
2160 p->frames_128_255 = GET_STAT(128B_255B);
2161 p->frames_256_511 = GET_STAT(256B_511B);
2162 p->frames_512_1023 = GET_STAT(512B_1023B);
2163 p->frames_1024_1518 = GET_STAT(1024B_1518B);
2164 p->frames_1519_max = GET_STAT(1519B_MAX);
2165 p->drop = t4_read_reg(adap, PORT_REG(idx,
2166 MPS_PORT_STAT_LB_PORT_DROP_FRAMES));
2167
2168 p->ovflow0 = (bgmap & 1) ? GET_STAT_COM(RX_BG_0_LB_DROP_FRAME) : 0;
2169 p->ovflow1 = (bgmap & 2) ? GET_STAT_COM(RX_BG_1_LB_DROP_FRAME) : 0;
2170 p->ovflow2 = (bgmap & 4) ? GET_STAT_COM(RX_BG_2_LB_DROP_FRAME) : 0;
2171 p->ovflow3 = (bgmap & 8) ? GET_STAT_COM(RX_BG_3_LB_DROP_FRAME) : 0;
2172 p->trunc0 = (bgmap & 1) ? GET_STAT_COM(RX_BG_0_LB_TRUNC_FRAME) : 0;
2173 p->trunc1 = (bgmap & 2) ? GET_STAT_COM(RX_BG_1_LB_TRUNC_FRAME) : 0;
2174 p->trunc2 = (bgmap & 4) ? GET_STAT_COM(RX_BG_2_LB_TRUNC_FRAME) : 0;
2175 p->trunc3 = (bgmap & 8) ? GET_STAT_COM(RX_BG_3_LB_TRUNC_FRAME) : 0;
2176
2177#undef GET_STAT
2178#undef GET_STAT_COM
2179}
2180
2181/**
2182 * t4_wol_magic_enable - enable/disable magic packet WoL 1904 * t4_wol_magic_enable - enable/disable magic packet WoL
2183 * @adap: the adapter 1905 * @adap: the adapter
2184 * @port: the physical port index 1906 * @port: the physical port index
@@ -2584,30 +2306,6 @@ int t4_alloc_vi(struct adapter *adap, unsigned int mbox, unsigned int port,
2584} 2306}
2585 2307
2586/** 2308/**
2587 * t4_free_vi - free a virtual interface
2588 * @adap: the adapter
2589 * @mbox: mailbox to use for the FW command
2590 * @pf: the PF owning the VI
2591 * @vf: the VF owning the VI
2592 * @viid: virtual interface identifiler
2593 *
2594 * Free a previously allocated virtual interface.
2595 */
2596int t4_free_vi(struct adapter *adap, unsigned int mbox, unsigned int pf,
2597 unsigned int vf, unsigned int viid)
2598{
2599 struct fw_vi_cmd c;
2600
2601 memset(&c, 0, sizeof(c));
2602 c.op_to_vfn = htonl(FW_CMD_OP(FW_VI_CMD) | FW_CMD_REQUEST |
2603 FW_CMD_EXEC | FW_VI_CMD_PFN(pf) |
2604 FW_VI_CMD_VFN(vf));
2605 c.alloc_to_len16 = htonl(FW_VI_CMD_FREE | FW_LEN16(c));
2606 c.type_viid = htons(FW_VI_CMD_VIID(viid));
2607 return t4_wr_mbox(adap, mbox, &c, sizeof(c), &c);
2608}
2609
2610/**
2611 * t4_set_rxmode - set Rx properties of a virtual interface 2309 * t4_set_rxmode - set Rx properties of a virtual interface
2612 * @adap: the adapter 2310 * @adap: the adapter
2613 * @mbox: mailbox to use for the FW command 2311 * @mbox: mailbox to use for the FW command
@@ -2709,7 +2407,7 @@ int t4_alloc_mac_filt(struct adapter *adap, unsigned int mbox,
2709 if (index < NEXACT_MAC) 2407 if (index < NEXACT_MAC)
2710 ret++; 2408 ret++;
2711 else if (hash) 2409 else if (hash)
2712 *hash |= (1 << hash_mac_addr(addr[i])); 2410 *hash |= (1ULL << hash_mac_addr(addr[i]));
2713 } 2411 }
2714 return ret; 2412 return ret;
2715} 2413}
@@ -2833,37 +2531,6 @@ int t4_identify_port(struct adapter *adap, unsigned int mbox, unsigned int viid,
2833} 2531}
2834 2532
2835/** 2533/**
2836 * t4_iq_start_stop - enable/disable an ingress queue and its FLs
2837 * @adap: the adapter
2838 * @mbox: mailbox to use for the FW command
2839 * @start: %true to enable the queues, %false to disable them
2840 * @pf: the PF owning the queues
2841 * @vf: the VF owning the queues
2842 * @iqid: ingress queue id
2843 * @fl0id: FL0 queue id or 0xffff if no attached FL0
2844 * @fl1id: FL1 queue id or 0xffff if no attached FL1
2845 *
2846 * Starts or stops an ingress queue and its associated FLs, if any.
2847 */
2848int t4_iq_start_stop(struct adapter *adap, unsigned int mbox, bool start,
2849 unsigned int pf, unsigned int vf, unsigned int iqid,
2850 unsigned int fl0id, unsigned int fl1id)
2851{
2852 struct fw_iq_cmd c;
2853
2854 memset(&c, 0, sizeof(c));
2855 c.op_to_vfn = htonl(FW_CMD_OP(FW_IQ_CMD) | FW_CMD_REQUEST |
2856 FW_CMD_EXEC | FW_IQ_CMD_PFN(pf) |
2857 FW_IQ_CMD_VFN(vf));
2858 c.alloc_to_len16 = htonl(FW_IQ_CMD_IQSTART(start) |
2859 FW_IQ_CMD_IQSTOP(!start) | FW_LEN16(c));
2860 c.iqid = htons(iqid);
2861 c.fl0id = htons(fl0id);
2862 c.fl1id = htons(fl1id);
2863 return t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
2864}
2865
2866/**
2867 * t4_iq_free - free an ingress queue and its FLs 2534 * t4_iq_free - free an ingress queue and its FLs
2868 * @adap: the adapter 2535 * @adap: the adapter
2869 * @mbox: mailbox to use for the FW command 2536 * @mbox: mailbox to use for the FW command