net: thunderx: Add ethtool support for supported ports and link modes.
[linux-2.6/btrfs-unstable.git] / drivers / net / ethernet / cavium / thunder / nic_main.c
blobb87d416ad372c1f5553ce2727816d9d172e128b7
1 /*
2 * Copyright (C) 2015 Cavium, Inc.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License
6 * as published by the Free Software Foundation.
7 */
9 #include <linux/module.h>
10 #include <linux/interrupt.h>
11 #include <linux/pci.h>
12 #include <linux/etherdevice.h>
13 #include <linux/of.h>
14 #include <linux/if_vlan.h>
16 #include "nic_reg.h"
17 #include "nic.h"
18 #include "q_struct.h"
19 #include "thunder_bgx.h"
21 #define DRV_NAME "thunder-nic"
22 #define DRV_VERSION "1.0"
24 struct hw_info {
25 u8 bgx_cnt;
26 u8 chans_per_lmac;
27 u8 chans_per_bgx; /* Rx/Tx chans */
28 u8 chans_per_rgx;
29 u8 chans_per_lbk;
30 u16 cpi_cnt;
31 u16 rssi_cnt;
32 u16 rss_ind_tbl_size;
33 u16 tl4_cnt;
34 u16 tl3_cnt;
35 u8 tl2_cnt;
36 u8 tl1_cnt;
37 bool tl1_per_bgx; /* TL1 per BGX or per LMAC */
40 struct nicpf {
41 struct pci_dev *pdev;
42 struct hw_info *hw;
43 u8 node;
44 unsigned int flags;
45 u8 num_vf_en; /* No of VF enabled */
46 bool vf_enabled[MAX_NUM_VFS_SUPPORTED];
47 void __iomem *reg_base; /* Register start address */
48 u8 num_sqs_en; /* Secondary qsets enabled */
49 u64 nicvf[MAX_NUM_VFS_SUPPORTED];
50 u8 vf_sqs[MAX_NUM_VFS_SUPPORTED][MAX_SQS_PER_VF];
51 u8 pqs_vf[MAX_NUM_VFS_SUPPORTED];
52 bool sqs_used[MAX_NUM_VFS_SUPPORTED];
53 struct pkind_cfg pkind;
54 #define NIC_SET_VF_LMAC_MAP(bgx, lmac) (((bgx & 0xF) << 4) | (lmac & 0xF))
55 #define NIC_GET_BGX_FROM_VF_LMAC_MAP(map) ((map >> 4) & 0xF)
56 #define NIC_GET_LMAC_FROM_VF_LMAC_MAP(map) (map & 0xF)
57 u8 *vf_lmac_map;
58 struct delayed_work dwork;
59 struct workqueue_struct *check_link;
60 u8 *link;
61 u8 *duplex;
62 u32 *speed;
63 u16 cpi_base[MAX_NUM_VFS_SUPPORTED];
64 u16 rssi_base[MAX_NUM_VFS_SUPPORTED];
65 bool mbx_lock[MAX_NUM_VFS_SUPPORTED];
67 /* MSI-X */
68 bool msix_enabled;
69 u8 num_vec;
70 struct msix_entry *msix_entries;
71 bool irq_allocated[NIC_PF_MSIX_VECTORS];
72 char irq_name[NIC_PF_MSIX_VECTORS][20];
75 /* Supported devices */
76 static const struct pci_device_id nic_id_table[] = {
77 { PCI_DEVICE(PCI_VENDOR_ID_CAVIUM, PCI_DEVICE_ID_THUNDER_NIC_PF) },
78 { 0, } /* end of table */
81 MODULE_AUTHOR("Sunil Goutham");
82 MODULE_DESCRIPTION("Cavium Thunder NIC Physical Function Driver");
83 MODULE_LICENSE("GPL v2");
84 MODULE_VERSION(DRV_VERSION);
85 MODULE_DEVICE_TABLE(pci, nic_id_table);
87 /* The Cavium ThunderX network controller can *only* be found in SoCs
88 * containing the ThunderX ARM64 CPU implementation. All accesses to the device
89 * registers on this platform are implicitly strongly ordered with respect
90 * to memory accesses. So writeq_relaxed() and readq_relaxed() are safe to use
91 * with no memory barriers in this driver. The readq()/writeq() functions add
92 * explicit ordering operation which in this case are redundant, and only
93 * add overhead.
96 /* Register read/write APIs */
97 static void nic_reg_write(struct nicpf *nic, u64 offset, u64 val)
99 writeq_relaxed(val, nic->reg_base + offset);
102 static u64 nic_reg_read(struct nicpf *nic, u64 offset)
104 return readq_relaxed(nic->reg_base + offset);
107 /* PF -> VF mailbox communication APIs */
108 static void nic_enable_mbx_intr(struct nicpf *nic)
110 int vf_cnt = pci_sriov_get_totalvfs(nic->pdev);
112 #define INTR_MASK(vfs) ((vfs < 64) ? (BIT_ULL(vfs) - 1) : (~0ull))
114 /* Clear it, to avoid spurious interrupts (if any) */
115 nic_reg_write(nic, NIC_PF_MAILBOX_INT, INTR_MASK(vf_cnt));
117 /* Enable mailbox interrupt for all VFs */
118 nic_reg_write(nic, NIC_PF_MAILBOX_ENA_W1S, INTR_MASK(vf_cnt));
119 /* One mailbox intr enable reg per 64 VFs */
120 if (vf_cnt > 64) {
121 nic_reg_write(nic, NIC_PF_MAILBOX_INT + sizeof(u64),
122 INTR_MASK(vf_cnt - 64));
123 nic_reg_write(nic, NIC_PF_MAILBOX_ENA_W1S + sizeof(u64),
124 INTR_MASK(vf_cnt - 64));
128 static void nic_clear_mbx_intr(struct nicpf *nic, int vf, int mbx_reg)
130 nic_reg_write(nic, NIC_PF_MAILBOX_INT + (mbx_reg << 3), BIT_ULL(vf));
133 static u64 nic_get_mbx_addr(int vf)
135 return NIC_PF_VF_0_127_MAILBOX_0_1 + (vf << NIC_VF_NUM_SHIFT);
138 /* Send a mailbox message to VF
139 * @vf: vf to which this message to be sent
140 * @mbx: Message to be sent
142 static void nic_send_msg_to_vf(struct nicpf *nic, int vf, union nic_mbx *mbx)
144 void __iomem *mbx_addr = nic->reg_base + nic_get_mbx_addr(vf);
145 u64 *msg = (u64 *)mbx;
147 /* In first revision HW, mbox interrupt is triggerred
148 * when PF writes to MBOX(1), in next revisions when
149 * PF writes to MBOX(0)
151 if (pass1_silicon(nic->pdev)) {
152 /* see the comment for nic_reg_write()/nic_reg_read()
153 * functions above
155 writeq_relaxed(msg[0], mbx_addr);
156 writeq_relaxed(msg[1], mbx_addr + 8);
157 } else {
158 writeq_relaxed(msg[1], mbx_addr + 8);
159 writeq_relaxed(msg[0], mbx_addr);
163 /* Responds to VF's READY message with VF's
164 * ID, node, MAC address e.t.c
165 * @vf: VF which sent READY message
167 static void nic_mbx_send_ready(struct nicpf *nic, int vf)
169 union nic_mbx mbx = {};
170 int bgx_idx, lmac;
171 const char *mac;
173 mbx.nic_cfg.msg = NIC_MBOX_MSG_READY;
174 mbx.nic_cfg.vf_id = vf;
176 mbx.nic_cfg.tns_mode = NIC_TNS_BYPASS_MODE;
178 if (vf < nic->num_vf_en) {
179 bgx_idx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
180 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
182 mac = bgx_get_lmac_mac(nic->node, bgx_idx, lmac);
183 if (mac)
184 ether_addr_copy((u8 *)&mbx.nic_cfg.mac_addr, mac);
186 mbx.nic_cfg.sqs_mode = (vf >= nic->num_vf_en) ? true : false;
187 mbx.nic_cfg.node_id = nic->node;
189 mbx.nic_cfg.loopback_supported = vf < nic->num_vf_en;
191 nic_send_msg_to_vf(nic, vf, &mbx);
194 /* ACKs VF's mailbox message
195 * @vf: VF to which ACK to be sent
197 static void nic_mbx_send_ack(struct nicpf *nic, int vf)
199 union nic_mbx mbx = {};
201 mbx.msg.msg = NIC_MBOX_MSG_ACK;
202 nic_send_msg_to_vf(nic, vf, &mbx);
205 /* NACKs VF's mailbox message that PF is not able to
206 * complete the action
207 * @vf: VF to which ACK to be sent
209 static void nic_mbx_send_nack(struct nicpf *nic, int vf)
211 union nic_mbx mbx = {};
213 mbx.msg.msg = NIC_MBOX_MSG_NACK;
214 nic_send_msg_to_vf(nic, vf, &mbx);
217 /* Flush all in flight receive packets to memory and
218 * bring down an active RQ
220 static int nic_rcv_queue_sw_sync(struct nicpf *nic)
222 u16 timeout = ~0x00;
224 nic_reg_write(nic, NIC_PF_SW_SYNC_RX, 0x01);
225 /* Wait till sync cycle is finished */
226 while (timeout) {
227 if (nic_reg_read(nic, NIC_PF_SW_SYNC_RX_DONE) & 0x1)
228 break;
229 timeout--;
231 nic_reg_write(nic, NIC_PF_SW_SYNC_RX, 0x00);
232 if (!timeout) {
233 dev_err(&nic->pdev->dev, "Receive queue software sync failed");
234 return 1;
236 return 0;
239 /* Get BGX Rx/Tx stats and respond to VF's request */
240 static void nic_get_bgx_stats(struct nicpf *nic, struct bgx_stats_msg *bgx)
242 int bgx_idx, lmac;
243 union nic_mbx mbx = {};
245 bgx_idx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[bgx->vf_id]);
246 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[bgx->vf_id]);
248 mbx.bgx_stats.msg = NIC_MBOX_MSG_BGX_STATS;
249 mbx.bgx_stats.vf_id = bgx->vf_id;
250 mbx.bgx_stats.rx = bgx->rx;
251 mbx.bgx_stats.idx = bgx->idx;
252 if (bgx->rx)
253 mbx.bgx_stats.stats = bgx_get_rx_stats(nic->node, bgx_idx,
254 lmac, bgx->idx);
255 else
256 mbx.bgx_stats.stats = bgx_get_tx_stats(nic->node, bgx_idx,
257 lmac, bgx->idx);
258 nic_send_msg_to_vf(nic, bgx->vf_id, &mbx);
261 /* Update hardware min/max frame size */
262 static int nic_update_hw_frs(struct nicpf *nic, int new_frs, int vf)
264 int bgx, lmac, lmac_cnt;
265 u64 lmac_credits;
267 if ((new_frs > NIC_HW_MAX_FRS) || (new_frs < NIC_HW_MIN_FRS))
268 return 1;
270 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
271 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
272 lmac += bgx * MAX_LMAC_PER_BGX;
274 new_frs += VLAN_ETH_HLEN + ETH_FCS_LEN + 4;
276 /* Update corresponding LMAC credits */
277 lmac_cnt = bgx_get_lmac_count(nic->node, bgx);
278 lmac_credits = nic_reg_read(nic, NIC_PF_LMAC_0_7_CREDIT + (lmac * 8));
279 lmac_credits &= ~(0xFFFFFULL << 12);
280 lmac_credits |= (((((48 * 1024) / lmac_cnt) - new_frs) / 16) << 12);
281 nic_reg_write(nic, NIC_PF_LMAC_0_7_CREDIT + (lmac * 8), lmac_credits);
283 /* Enforce MTU in HW
284 * This config is supported only from 88xx pass 2.0 onwards.
286 if (!pass1_silicon(nic->pdev))
287 nic_reg_write(nic,
288 NIC_PF_LMAC_0_7_CFG2 + (lmac * 8), new_frs);
289 return 0;
292 /* Set minimum transmit packet size */
293 static void nic_set_tx_pkt_pad(struct nicpf *nic, int size)
295 int lmac, max_lmac;
296 u16 sdevid;
297 u64 lmac_cfg;
299 /* There is a issue in HW where-in while sending GSO sized
300 * pkts as part of TSO, if pkt len falls below this size
301 * NIC will zero PAD packet and also updates IP total length.
302 * Hence set this value to lessthan min pkt size of MAC+IP+TCP
303 * headers, BGX will do the padding to transmit 64 byte pkt.
305 if (size > 52)
306 size = 52;
308 pci_read_config_word(nic->pdev, PCI_SUBSYSTEM_ID, &sdevid);
309 /* 81xx's RGX has only one LMAC */
310 if (sdevid == PCI_SUBSYS_DEVID_81XX_NIC_PF)
311 max_lmac = ((nic->hw->bgx_cnt - 1) * MAX_LMAC_PER_BGX) + 1;
312 else
313 max_lmac = nic->hw->bgx_cnt * MAX_LMAC_PER_BGX;
315 for (lmac = 0; lmac < max_lmac; lmac++) {
316 lmac_cfg = nic_reg_read(nic, NIC_PF_LMAC_0_7_CFG | (lmac << 3));
317 lmac_cfg &= ~(0xF << 2);
318 lmac_cfg |= ((size / 4) << 2);
319 nic_reg_write(nic, NIC_PF_LMAC_0_7_CFG | (lmac << 3), lmac_cfg);
323 /* Function to check number of LMACs present and set VF::LMAC mapping.
324 * Mapping will be used while initializing channels.
326 static void nic_set_lmac_vf_mapping(struct nicpf *nic)
328 unsigned bgx_map = bgx_get_map(nic->node);
329 int bgx, next_bgx_lmac = 0;
330 int lmac, lmac_cnt = 0;
331 u64 lmac_credit;
333 nic->num_vf_en = 0;
335 for (bgx = 0; bgx < nic->hw->bgx_cnt; bgx++) {
336 if (!(bgx_map & (1 << bgx)))
337 continue;
338 lmac_cnt = bgx_get_lmac_count(nic->node, bgx);
339 for (lmac = 0; lmac < lmac_cnt; lmac++)
340 nic->vf_lmac_map[next_bgx_lmac++] =
341 NIC_SET_VF_LMAC_MAP(bgx, lmac);
342 nic->num_vf_en += lmac_cnt;
344 /* Program LMAC credits */
345 lmac_credit = (1ull << 1); /* channel credit enable */
346 lmac_credit |= (0x1ff << 2); /* Max outstanding pkt count */
347 /* 48KB BGX Tx buffer size, each unit is of size 16bytes */
348 lmac_credit |= (((((48 * 1024) / lmac_cnt) -
349 NIC_HW_MAX_FRS) / 16) << 12);
350 lmac = bgx * MAX_LMAC_PER_BGX;
351 for (; lmac < lmac_cnt + (bgx * MAX_LMAC_PER_BGX); lmac++)
352 nic_reg_write(nic,
353 NIC_PF_LMAC_0_7_CREDIT + (lmac * 8),
354 lmac_credit);
356 /* On CN81XX there are only 8 VFs but max possible no of
357 * interfaces are 9.
359 if (nic->num_vf_en >= pci_sriov_get_totalvfs(nic->pdev)) {
360 nic->num_vf_en = pci_sriov_get_totalvfs(nic->pdev);
361 break;
366 static void nic_free_lmacmem(struct nicpf *nic)
368 kfree(nic->vf_lmac_map);
369 kfree(nic->link);
370 kfree(nic->duplex);
371 kfree(nic->speed);
374 static int nic_get_hw_info(struct nicpf *nic)
376 u8 max_lmac;
377 u16 sdevid;
378 struct hw_info *hw = nic->hw;
380 pci_read_config_word(nic->pdev, PCI_SUBSYSTEM_ID, &sdevid);
382 switch (sdevid) {
383 case PCI_SUBSYS_DEVID_88XX_NIC_PF:
384 hw->bgx_cnt = MAX_BGX_PER_CN88XX;
385 hw->chans_per_lmac = 16;
386 hw->chans_per_bgx = 128;
387 hw->cpi_cnt = 2048;
388 hw->rssi_cnt = 4096;
389 hw->rss_ind_tbl_size = NIC_MAX_RSS_IDR_TBL_SIZE;
390 hw->tl3_cnt = 256;
391 hw->tl2_cnt = 64;
392 hw->tl1_cnt = 2;
393 hw->tl1_per_bgx = true;
394 break;
395 case PCI_SUBSYS_DEVID_81XX_NIC_PF:
396 hw->bgx_cnt = MAX_BGX_PER_CN81XX;
397 hw->chans_per_lmac = 8;
398 hw->chans_per_bgx = 32;
399 hw->chans_per_rgx = 8;
400 hw->chans_per_lbk = 24;
401 hw->cpi_cnt = 512;
402 hw->rssi_cnt = 256;
403 hw->rss_ind_tbl_size = 32; /* Max RSSI / Max interfaces */
404 hw->tl3_cnt = 64;
405 hw->tl2_cnt = 16;
406 hw->tl1_cnt = 10;
407 hw->tl1_per_bgx = false;
408 break;
409 case PCI_SUBSYS_DEVID_83XX_NIC_PF:
410 hw->bgx_cnt = MAX_BGX_PER_CN83XX;
411 hw->chans_per_lmac = 8;
412 hw->chans_per_bgx = 32;
413 hw->chans_per_lbk = 64;
414 hw->cpi_cnt = 2048;
415 hw->rssi_cnt = 1024;
416 hw->rss_ind_tbl_size = 64; /* Max RSSI / Max interfaces */
417 hw->tl3_cnt = 256;
418 hw->tl2_cnt = 64;
419 hw->tl1_cnt = 18;
420 hw->tl1_per_bgx = false;
421 break;
423 hw->tl4_cnt = MAX_QUEUES_PER_QSET * pci_sriov_get_totalvfs(nic->pdev);
425 /* Allocate memory for LMAC tracking elements */
426 max_lmac = hw->bgx_cnt * MAX_LMAC_PER_BGX;
427 nic->vf_lmac_map = kmalloc_array(max_lmac, sizeof(u8), GFP_KERNEL);
428 if (!nic->vf_lmac_map)
429 goto error;
430 nic->link = kmalloc_array(max_lmac, sizeof(u8), GFP_KERNEL);
431 if (!nic->link)
432 goto error;
433 nic->duplex = kmalloc_array(max_lmac, sizeof(u8), GFP_KERNEL);
434 if (!nic->duplex)
435 goto error;
436 nic->speed = kmalloc_array(max_lmac, sizeof(u32), GFP_KERNEL);
437 if (!nic->speed)
438 goto error;
439 return 0;
441 error:
442 nic_free_lmacmem(nic);
443 return -ENOMEM;
446 #define BGX0_BLOCK 8
447 #define BGX1_BLOCK 9
449 static int nic_init_hw(struct nicpf *nic)
451 int i, err;
452 u64 cqm_cfg;
454 /* Get HW capability info */
455 err = nic_get_hw_info(nic);
456 if (err)
457 return err;
459 /* Enable NIC HW block */
460 nic_reg_write(nic, NIC_PF_CFG, 0x3);
462 /* Enable backpressure */
463 nic_reg_write(nic, NIC_PF_BP_CFG, (1ULL << 6) | 0x03);
465 /* TNS and TNS bypass modes are present only on 88xx */
466 if (nic->pdev->subsystem_device == PCI_SUBSYS_DEVID_88XX_NIC_PF) {
467 /* Disable TNS mode on both interfaces */
468 nic_reg_write(nic, NIC_PF_INTF_0_1_SEND_CFG,
469 (NIC_TNS_BYPASS_MODE << 7) | BGX0_BLOCK);
470 nic_reg_write(nic, NIC_PF_INTF_0_1_SEND_CFG | (1 << 8),
471 (NIC_TNS_BYPASS_MODE << 7) | BGX1_BLOCK);
474 nic_reg_write(nic, NIC_PF_INTF_0_1_BP_CFG,
475 (1ULL << 63) | BGX0_BLOCK);
476 nic_reg_write(nic, NIC_PF_INTF_0_1_BP_CFG + (1 << 8),
477 (1ULL << 63) | BGX1_BLOCK);
479 /* PKIND configuration */
480 nic->pkind.minlen = 0;
481 nic->pkind.maxlen = NIC_HW_MAX_FRS + VLAN_ETH_HLEN + ETH_FCS_LEN + 4;
482 nic->pkind.lenerr_en = 1;
483 nic->pkind.rx_hdr = 0;
484 nic->pkind.hdr_sl = 0;
486 for (i = 0; i < NIC_MAX_PKIND; i++)
487 nic_reg_write(nic, NIC_PF_PKIND_0_15_CFG | (i << 3),
488 *(u64 *)&nic->pkind);
490 nic_set_tx_pkt_pad(nic, NIC_HW_MIN_FRS);
492 /* Timer config */
493 nic_reg_write(nic, NIC_PF_INTR_TIMER_CFG, NICPF_CLK_PER_INT_TICK);
495 /* Enable VLAN ethertype matching and stripping */
496 nic_reg_write(nic, NIC_PF_RX_ETYPE_0_7,
497 (2 << 19) | (ETYPE_ALG_VLAN_STRIP << 16) | ETH_P_8021Q);
499 /* Check if HW expected value is higher (could be in future chips) */
500 cqm_cfg = nic_reg_read(nic, NIC_PF_CQM_CFG);
501 if (cqm_cfg < NICPF_CQM_MIN_DROP_LEVEL)
502 nic_reg_write(nic, NIC_PF_CQM_CFG, NICPF_CQM_MIN_DROP_LEVEL);
504 return 0;
507 /* Channel parse index configuration */
508 static void nic_config_cpi(struct nicpf *nic, struct cpi_cfg_msg *cfg)
510 struct hw_info *hw = nic->hw;
511 u32 vnic, bgx, lmac, chan;
512 u32 padd, cpi_count = 0;
513 u64 cpi_base, cpi, rssi_base, rssi;
514 u8 qset, rq_idx = 0;
516 vnic = cfg->vf_id;
517 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vnic]);
518 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vnic]);
520 chan = (lmac * hw->chans_per_lmac) + (bgx * hw->chans_per_bgx);
521 cpi_base = vnic * NIC_MAX_CPI_PER_LMAC;
522 rssi_base = vnic * hw->rss_ind_tbl_size;
524 /* Rx channel configuration */
525 nic_reg_write(nic, NIC_PF_CHAN_0_255_RX_BP_CFG | (chan << 3),
526 (1ull << 63) | (vnic << 0));
527 nic_reg_write(nic, NIC_PF_CHAN_0_255_RX_CFG | (chan << 3),
528 ((u64)cfg->cpi_alg << 62) | (cpi_base << 48));
530 if (cfg->cpi_alg == CPI_ALG_NONE)
531 cpi_count = 1;
532 else if (cfg->cpi_alg == CPI_ALG_VLAN) /* 3 bits of PCP */
533 cpi_count = 8;
534 else if (cfg->cpi_alg == CPI_ALG_VLAN16) /* 3 bits PCP + DEI */
535 cpi_count = 16;
536 else if (cfg->cpi_alg == CPI_ALG_DIFF) /* 6bits DSCP */
537 cpi_count = NIC_MAX_CPI_PER_LMAC;
539 /* RSS Qset, Qidx mapping */
540 qset = cfg->vf_id;
541 rssi = rssi_base;
542 for (; rssi < (rssi_base + cfg->rq_cnt); rssi++) {
543 nic_reg_write(nic, NIC_PF_RSSI_0_4097_RQ | (rssi << 3),
544 (qset << 3) | rq_idx);
545 rq_idx++;
548 rssi = 0;
549 cpi = cpi_base;
550 for (; cpi < (cpi_base + cpi_count); cpi++) {
551 /* Determine port to channel adder */
552 if (cfg->cpi_alg != CPI_ALG_DIFF)
553 padd = cpi % cpi_count;
554 else
555 padd = cpi % 8; /* 3 bits CS out of 6bits DSCP */
557 /* Leave RSS_SIZE as '0' to disable RSS */
558 if (pass1_silicon(nic->pdev)) {
559 nic_reg_write(nic, NIC_PF_CPI_0_2047_CFG | (cpi << 3),
560 (vnic << 24) | (padd << 16) |
561 (rssi_base + rssi));
562 } else {
563 /* Set MPI_ALG to '0' to disable MCAM parsing */
564 nic_reg_write(nic, NIC_PF_CPI_0_2047_CFG | (cpi << 3),
565 (padd << 16));
566 /* MPI index is same as CPI if MPI_ALG is not enabled */
567 nic_reg_write(nic, NIC_PF_MPI_0_2047_CFG | (cpi << 3),
568 (vnic << 24) | (rssi_base + rssi));
571 if ((rssi + 1) >= cfg->rq_cnt)
572 continue;
574 if (cfg->cpi_alg == CPI_ALG_VLAN)
575 rssi++;
576 else if (cfg->cpi_alg == CPI_ALG_VLAN16)
577 rssi = ((cpi - cpi_base) & 0xe) >> 1;
578 else if (cfg->cpi_alg == CPI_ALG_DIFF)
579 rssi = ((cpi - cpi_base) & 0x38) >> 3;
581 nic->cpi_base[cfg->vf_id] = cpi_base;
582 nic->rssi_base[cfg->vf_id] = rssi_base;
585 /* Responsds to VF with its RSS indirection table size */
586 static void nic_send_rss_size(struct nicpf *nic, int vf)
588 union nic_mbx mbx = {};
589 u64 *msg;
591 msg = (u64 *)&mbx;
593 mbx.rss_size.msg = NIC_MBOX_MSG_RSS_SIZE;
594 mbx.rss_size.ind_tbl_size = nic->hw->rss_ind_tbl_size;
595 nic_send_msg_to_vf(nic, vf, &mbx);
598 /* Receive side scaling configuration
599 * configure:
600 * - RSS index
601 * - indir table i.e hash::RQ mapping
602 * - no of hash bits to consider
604 static void nic_config_rss(struct nicpf *nic, struct rss_cfg_msg *cfg)
606 u8 qset, idx = 0;
607 u64 cpi_cfg, cpi_base, rssi_base, rssi;
608 u64 idx_addr;
610 rssi_base = nic->rssi_base[cfg->vf_id] + cfg->tbl_offset;
612 rssi = rssi_base;
613 qset = cfg->vf_id;
615 for (; rssi < (rssi_base + cfg->tbl_len); rssi++) {
616 u8 svf = cfg->ind_tbl[idx] >> 3;
618 if (svf)
619 qset = nic->vf_sqs[cfg->vf_id][svf - 1];
620 else
621 qset = cfg->vf_id;
622 nic_reg_write(nic, NIC_PF_RSSI_0_4097_RQ | (rssi << 3),
623 (qset << 3) | (cfg->ind_tbl[idx] & 0x7));
624 idx++;
627 cpi_base = nic->cpi_base[cfg->vf_id];
628 if (pass1_silicon(nic->pdev))
629 idx_addr = NIC_PF_CPI_0_2047_CFG;
630 else
631 idx_addr = NIC_PF_MPI_0_2047_CFG;
632 cpi_cfg = nic_reg_read(nic, idx_addr | (cpi_base << 3));
633 cpi_cfg &= ~(0xFULL << 20);
634 cpi_cfg |= (cfg->hash_bits << 20);
635 nic_reg_write(nic, idx_addr | (cpi_base << 3), cpi_cfg);
638 /* 4 level transmit side scheduler configutation
639 * for TNS bypass mode
641 * Sample configuration for SQ0 on 88xx
642 * VNIC0-SQ0 -> TL4(0) -> TL3[0] -> TL2[0] -> TL1[0] -> BGX0
643 * VNIC1-SQ0 -> TL4(8) -> TL3[2] -> TL2[0] -> TL1[0] -> BGX0
644 * VNIC2-SQ0 -> TL4(16) -> TL3[4] -> TL2[1] -> TL1[0] -> BGX0
645 * VNIC3-SQ0 -> TL4(24) -> TL3[6] -> TL2[1] -> TL1[0] -> BGX0
646 * VNIC4-SQ0 -> TL4(512) -> TL3[128] -> TL2[32] -> TL1[1] -> BGX1
647 * VNIC5-SQ0 -> TL4(520) -> TL3[130] -> TL2[32] -> TL1[1] -> BGX1
648 * VNIC6-SQ0 -> TL4(528) -> TL3[132] -> TL2[33] -> TL1[1] -> BGX1
649 * VNIC7-SQ0 -> TL4(536) -> TL3[134] -> TL2[33] -> TL1[1] -> BGX1
651 static void nic_tx_channel_cfg(struct nicpf *nic, u8 vnic,
652 struct sq_cfg_msg *sq)
654 struct hw_info *hw = nic->hw;
655 u32 bgx, lmac, chan;
656 u32 tl2, tl3, tl4;
657 u32 rr_quantum;
658 u8 sq_idx = sq->sq_num;
659 u8 pqs_vnic;
660 int svf;
662 if (sq->sqs_mode)
663 pqs_vnic = nic->pqs_vf[vnic];
664 else
665 pqs_vnic = vnic;
667 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[pqs_vnic]);
668 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[pqs_vnic]);
670 /* 24 bytes for FCS, IPG and preamble */
671 rr_quantum = ((NIC_HW_MAX_FRS + 24) / 4);
673 /* For 88xx 0-511 TL4 transmits via BGX0 and
674 * 512-1023 TL4s transmit via BGX1.
676 if (hw->tl1_per_bgx) {
677 tl4 = bgx * (hw->tl4_cnt / hw->bgx_cnt);
678 if (!sq->sqs_mode) {
679 tl4 += (lmac * MAX_QUEUES_PER_QSET);
680 } else {
681 for (svf = 0; svf < MAX_SQS_PER_VF; svf++) {
682 if (nic->vf_sqs[pqs_vnic][svf] == vnic)
683 break;
685 tl4 += (MAX_LMAC_PER_BGX * MAX_QUEUES_PER_QSET);
686 tl4 += (lmac * MAX_QUEUES_PER_QSET * MAX_SQS_PER_VF);
687 tl4 += (svf * MAX_QUEUES_PER_QSET);
689 } else {
690 tl4 = (vnic * MAX_QUEUES_PER_QSET);
692 tl4 += sq_idx;
694 tl3 = tl4 / (hw->tl4_cnt / hw->tl3_cnt);
695 nic_reg_write(nic, NIC_PF_QSET_0_127_SQ_0_7_CFG2 |
696 ((u64)vnic << NIC_QS_ID_SHIFT) |
697 ((u32)sq_idx << NIC_Q_NUM_SHIFT), tl4);
698 nic_reg_write(nic, NIC_PF_TL4_0_1023_CFG | (tl4 << 3),
699 ((u64)vnic << 27) | ((u32)sq_idx << 24) | rr_quantum);
701 nic_reg_write(nic, NIC_PF_TL3_0_255_CFG | (tl3 << 3), rr_quantum);
703 /* On 88xx 0-127 channels are for BGX0 and
704 * 127-255 channels for BGX1.
706 * On 81xx/83xx TL3_CHAN reg should be configured with channel
707 * within LMAC i.e 0-7 and not the actual channel number like on 88xx
709 chan = (lmac * hw->chans_per_lmac) + (bgx * hw->chans_per_bgx);
710 if (hw->tl1_per_bgx)
711 nic_reg_write(nic, NIC_PF_TL3_0_255_CHAN | (tl3 << 3), chan);
712 else
713 nic_reg_write(nic, NIC_PF_TL3_0_255_CHAN | (tl3 << 3), 0);
715 /* Enable backpressure on the channel */
716 nic_reg_write(nic, NIC_PF_CHAN_0_255_TX_CFG | (chan << 3), 1);
718 tl2 = tl3 >> 2;
719 nic_reg_write(nic, NIC_PF_TL3A_0_63_CFG | (tl2 << 3), tl2);
720 nic_reg_write(nic, NIC_PF_TL2_0_63_CFG | (tl2 << 3), rr_quantum);
721 /* No priorities as of now */
722 nic_reg_write(nic, NIC_PF_TL2_0_63_PRI | (tl2 << 3), 0x00);
724 /* Unlike 88xx where TL2s 0-31 transmits to TL1 '0' and rest to TL1 '1'
725 * on 81xx/83xx TL2 needs to be configured to transmit to one of the
726 * possible LMACs.
728 * This register doesn't exist on 88xx.
730 if (!hw->tl1_per_bgx)
731 nic_reg_write(nic, NIC_PF_TL2_LMAC | (tl2 << 3),
732 lmac + (bgx * MAX_LMAC_PER_BGX));
735 /* Send primary nicvf pointer to secondary QS's VF */
736 static void nic_send_pnicvf(struct nicpf *nic, int sqs)
738 union nic_mbx mbx = {};
740 mbx.nicvf.msg = NIC_MBOX_MSG_PNICVF_PTR;
741 mbx.nicvf.nicvf = nic->nicvf[nic->pqs_vf[sqs]];
742 nic_send_msg_to_vf(nic, sqs, &mbx);
745 /* Send SQS's nicvf pointer to primary QS's VF */
746 static void nic_send_snicvf(struct nicpf *nic, struct nicvf_ptr *nicvf)
748 union nic_mbx mbx = {};
749 int sqs_id = nic->vf_sqs[nicvf->vf_id][nicvf->sqs_id];
751 mbx.nicvf.msg = NIC_MBOX_MSG_SNICVF_PTR;
752 mbx.nicvf.sqs_id = nicvf->sqs_id;
753 mbx.nicvf.nicvf = nic->nicvf[sqs_id];
754 nic_send_msg_to_vf(nic, nicvf->vf_id, &mbx);
757 /* Find next available Qset that can be assigned as a
758 * secondary Qset to a VF.
760 static int nic_nxt_avail_sqs(struct nicpf *nic)
762 int sqs;
764 for (sqs = 0; sqs < nic->num_sqs_en; sqs++) {
765 if (!nic->sqs_used[sqs])
766 nic->sqs_used[sqs] = true;
767 else
768 continue;
769 return sqs + nic->num_vf_en;
771 return -1;
774 /* Allocate additional Qsets for requested VF */
775 static void nic_alloc_sqs(struct nicpf *nic, struct sqs_alloc *sqs)
777 union nic_mbx mbx = {};
778 int idx, alloc_qs = 0;
779 int sqs_id;
781 if (!nic->num_sqs_en)
782 goto send_mbox;
784 for (idx = 0; idx < sqs->qs_count; idx++) {
785 sqs_id = nic_nxt_avail_sqs(nic);
786 if (sqs_id < 0)
787 break;
788 nic->vf_sqs[sqs->vf_id][idx] = sqs_id;
789 nic->pqs_vf[sqs_id] = sqs->vf_id;
790 alloc_qs++;
793 send_mbox:
794 mbx.sqs_alloc.msg = NIC_MBOX_MSG_ALLOC_SQS;
795 mbx.sqs_alloc.vf_id = sqs->vf_id;
796 mbx.sqs_alloc.qs_count = alloc_qs;
797 nic_send_msg_to_vf(nic, sqs->vf_id, &mbx);
800 static int nic_config_loopback(struct nicpf *nic, struct set_loopback *lbk)
802 int bgx_idx, lmac_idx;
804 if (lbk->vf_id >= nic->num_vf_en)
805 return -1;
807 bgx_idx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[lbk->vf_id]);
808 lmac_idx = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[lbk->vf_id]);
810 bgx_lmac_internal_loopback(nic->node, bgx_idx, lmac_idx, lbk->enable);
812 return 0;
815 /* Reset statistics counters */
816 static int nic_reset_stat_counters(struct nicpf *nic,
817 int vf, struct reset_stat_cfg *cfg)
819 int i, stat, qnum;
820 u64 reg_addr;
822 for (i = 0; i < RX_STATS_ENUM_LAST; i++) {
823 if (cfg->rx_stat_mask & BIT(i)) {
824 reg_addr = NIC_PF_VNIC_0_127_RX_STAT_0_13 |
825 (vf << NIC_QS_ID_SHIFT) |
826 (i << 3);
827 nic_reg_write(nic, reg_addr, 0);
831 for (i = 0; i < TX_STATS_ENUM_LAST; i++) {
832 if (cfg->tx_stat_mask & BIT(i)) {
833 reg_addr = NIC_PF_VNIC_0_127_TX_STAT_0_4 |
834 (vf << NIC_QS_ID_SHIFT) |
835 (i << 3);
836 nic_reg_write(nic, reg_addr, 0);
840 for (i = 0; i <= 15; i++) {
841 qnum = i >> 1;
842 stat = i & 1 ? 1 : 0;
843 reg_addr = (vf << NIC_QS_ID_SHIFT) |
844 (qnum << NIC_Q_NUM_SHIFT) | (stat << 3);
845 if (cfg->rq_stat_mask & BIT(i)) {
846 reg_addr |= NIC_PF_QSET_0_127_RQ_0_7_STAT_0_1;
847 nic_reg_write(nic, reg_addr, 0);
849 if (cfg->sq_stat_mask & BIT(i)) {
850 reg_addr |= NIC_PF_QSET_0_127_SQ_0_7_STAT_0_1;
851 nic_reg_write(nic, reg_addr, 0);
855 return 0;
858 static void nic_enable_tunnel_parsing(struct nicpf *nic, int vf)
860 u64 prot_def = (IPV6_PROT << 32) | (IPV4_PROT << 16) | ET_PROT;
861 u64 vxlan_prot_def = (IPV6_PROT_DEF << 32) |
862 (IPV4_PROT_DEF) << 16 | ET_PROT_DEF;
864 /* Configure tunnel parsing parameters */
865 nic_reg_write(nic, NIC_PF_RX_GENEVE_DEF,
866 (1ULL << 63 | UDP_GENEVE_PORT_NUM));
867 nic_reg_write(nic, NIC_PF_RX_GENEVE_PROT_DEF,
868 ((7ULL << 61) | prot_def));
869 nic_reg_write(nic, NIC_PF_RX_NVGRE_PROT_DEF,
870 ((7ULL << 61) | prot_def));
871 nic_reg_write(nic, NIC_PF_RX_VXLAN_DEF_0_1,
872 ((1ULL << 63) | UDP_VXLAN_PORT_NUM));
873 nic_reg_write(nic, NIC_PF_RX_VXLAN_PROT_DEF,
874 ((0xfULL << 60) | vxlan_prot_def));
877 static void nic_enable_vf(struct nicpf *nic, int vf, bool enable)
879 int bgx, lmac;
881 nic->vf_enabled[vf] = enable;
883 if (vf >= nic->num_vf_en)
884 return;
886 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
887 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
889 bgx_lmac_rx_tx_enable(nic->node, bgx, lmac, enable);
892 /* Interrupt handler to handle mailbox messages from VFs */
893 static void nic_handle_mbx_intr(struct nicpf *nic, int vf)
895 union nic_mbx mbx = {};
896 u64 *mbx_data;
897 u64 mbx_addr;
898 u64 reg_addr;
899 u64 cfg;
900 int bgx, lmac;
901 int i;
902 int ret = 0;
904 nic->mbx_lock[vf] = true;
906 mbx_addr = nic_get_mbx_addr(vf);
907 mbx_data = (u64 *)&mbx;
909 for (i = 0; i < NIC_PF_VF_MAILBOX_SIZE; i++) {
910 *mbx_data = nic_reg_read(nic, mbx_addr);
911 mbx_data++;
912 mbx_addr += sizeof(u64);
915 dev_dbg(&nic->pdev->dev, "%s: Mailbox msg 0x%02x from VF%d\n",
916 __func__, mbx.msg.msg, vf);
917 switch (mbx.msg.msg) {
918 case NIC_MBOX_MSG_READY:
919 nic_mbx_send_ready(nic, vf);
920 if (vf < nic->num_vf_en) {
921 nic->link[vf] = 0;
922 nic->duplex[vf] = 0;
923 nic->speed[vf] = 0;
925 goto unlock;
926 case NIC_MBOX_MSG_QS_CFG:
927 reg_addr = NIC_PF_QSET_0_127_CFG |
928 (mbx.qs.num << NIC_QS_ID_SHIFT);
929 cfg = mbx.qs.cfg;
930 /* Check if its a secondary Qset */
931 if (vf >= nic->num_vf_en) {
932 cfg = cfg & (~0x7FULL);
933 /* Assign this Qset to primary Qset's VF */
934 cfg |= nic->pqs_vf[vf];
936 nic_reg_write(nic, reg_addr, cfg);
937 break;
938 case NIC_MBOX_MSG_RQ_CFG:
939 reg_addr = NIC_PF_QSET_0_127_RQ_0_7_CFG |
940 (mbx.rq.qs_num << NIC_QS_ID_SHIFT) |
941 (mbx.rq.rq_num << NIC_Q_NUM_SHIFT);
942 nic_reg_write(nic, reg_addr, mbx.rq.cfg);
943 /* Enable CQE_RX2_S extension in CQE_RX descriptor.
944 * This gets appended by default on 81xx/83xx chips,
945 * for consistency enabling the same on 88xx pass2
946 * where this is introduced.
948 if (pass2_silicon(nic->pdev))
949 nic_reg_write(nic, NIC_PF_RX_CFG, 0x01);
950 if (!pass1_silicon(nic->pdev))
951 nic_enable_tunnel_parsing(nic, vf);
952 break;
953 case NIC_MBOX_MSG_RQ_BP_CFG:
954 reg_addr = NIC_PF_QSET_0_127_RQ_0_7_BP_CFG |
955 (mbx.rq.qs_num << NIC_QS_ID_SHIFT) |
956 (mbx.rq.rq_num << NIC_Q_NUM_SHIFT);
957 nic_reg_write(nic, reg_addr, mbx.rq.cfg);
958 break;
959 case NIC_MBOX_MSG_RQ_SW_SYNC:
960 ret = nic_rcv_queue_sw_sync(nic);
961 break;
962 case NIC_MBOX_MSG_RQ_DROP_CFG:
963 reg_addr = NIC_PF_QSET_0_127_RQ_0_7_DROP_CFG |
964 (mbx.rq.qs_num << NIC_QS_ID_SHIFT) |
965 (mbx.rq.rq_num << NIC_Q_NUM_SHIFT);
966 nic_reg_write(nic, reg_addr, mbx.rq.cfg);
967 break;
968 case NIC_MBOX_MSG_SQ_CFG:
969 reg_addr = NIC_PF_QSET_0_127_SQ_0_7_CFG |
970 (mbx.sq.qs_num << NIC_QS_ID_SHIFT) |
971 (mbx.sq.sq_num << NIC_Q_NUM_SHIFT);
972 nic_reg_write(nic, reg_addr, mbx.sq.cfg);
973 nic_tx_channel_cfg(nic, mbx.qs.num, &mbx.sq);
974 break;
975 case NIC_MBOX_MSG_SET_MAC:
976 if (vf >= nic->num_vf_en) {
977 ret = -1; /* NACK */
978 break;
980 lmac = mbx.mac.vf_id;
981 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[lmac]);
982 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[lmac]);
983 bgx_set_lmac_mac(nic->node, bgx, lmac, mbx.mac.mac_addr);
984 break;
985 case NIC_MBOX_MSG_SET_MAX_FRS:
986 ret = nic_update_hw_frs(nic, mbx.frs.max_frs,
987 mbx.frs.vf_id);
988 break;
989 case NIC_MBOX_MSG_CPI_CFG:
990 nic_config_cpi(nic, &mbx.cpi_cfg);
991 break;
992 case NIC_MBOX_MSG_RSS_SIZE:
993 nic_send_rss_size(nic, vf);
994 goto unlock;
995 case NIC_MBOX_MSG_RSS_CFG:
996 case NIC_MBOX_MSG_RSS_CFG_CONT:
997 nic_config_rss(nic, &mbx.rss_cfg);
998 break;
999 case NIC_MBOX_MSG_CFG_DONE:
1000 /* Last message of VF config msg sequence */
1001 nic_enable_vf(nic, vf, true);
1002 goto unlock;
1003 case NIC_MBOX_MSG_SHUTDOWN:
1004 /* First msg in VF teardown sequence */
1005 if (vf >= nic->num_vf_en)
1006 nic->sqs_used[vf - nic->num_vf_en] = false;
1007 nic->pqs_vf[vf] = 0;
1008 nic_enable_vf(nic, vf, false);
1009 break;
1010 case NIC_MBOX_MSG_ALLOC_SQS:
1011 nic_alloc_sqs(nic, &mbx.sqs_alloc);
1012 goto unlock;
1013 case NIC_MBOX_MSG_NICVF_PTR:
1014 nic->nicvf[vf] = mbx.nicvf.nicvf;
1015 break;
1016 case NIC_MBOX_MSG_PNICVF_PTR:
1017 nic_send_pnicvf(nic, vf);
1018 goto unlock;
1019 case NIC_MBOX_MSG_SNICVF_PTR:
1020 nic_send_snicvf(nic, &mbx.nicvf);
1021 goto unlock;
1022 case NIC_MBOX_MSG_BGX_STATS:
1023 nic_get_bgx_stats(nic, &mbx.bgx_stats);
1024 goto unlock;
1025 case NIC_MBOX_MSG_LOOPBACK:
1026 ret = nic_config_loopback(nic, &mbx.lbk);
1027 break;
1028 case NIC_MBOX_MSG_RESET_STAT_COUNTER:
1029 ret = nic_reset_stat_counters(nic, vf, &mbx.reset_stat);
1030 break;
1031 default:
1032 dev_err(&nic->pdev->dev,
1033 "Invalid msg from VF%d, msg 0x%x\n", vf, mbx.msg.msg);
1034 break;
1037 if (!ret) {
1038 nic_mbx_send_ack(nic, vf);
1039 } else if (mbx.msg.msg != NIC_MBOX_MSG_READY) {
1040 dev_err(&nic->pdev->dev, "NACK for MBOX 0x%02x from VF %d\n",
1041 mbx.msg.msg, vf);
1042 nic_mbx_send_nack(nic, vf);
1044 unlock:
1045 nic->mbx_lock[vf] = false;
1048 static irqreturn_t nic_mbx_intr_handler(int irq, void *nic_irq)
1050 struct nicpf *nic = (struct nicpf *)nic_irq;
1051 int mbx;
1052 u64 intr;
1053 u8 vf, vf_per_mbx_reg = 64;
1055 if (irq == nic->msix_entries[NIC_PF_INTR_ID_MBOX0].vector)
1056 mbx = 0;
1057 else
1058 mbx = 1;
1060 intr = nic_reg_read(nic, NIC_PF_MAILBOX_INT + (mbx << 3));
1061 dev_dbg(&nic->pdev->dev, "PF interrupt Mbox%d 0x%llx\n", mbx, intr);
1062 for (vf = 0; vf < vf_per_mbx_reg; vf++) {
1063 if (intr & (1ULL << vf)) {
1064 dev_dbg(&nic->pdev->dev, "Intr from VF %d\n",
1065 vf + (mbx * vf_per_mbx_reg));
1067 nic_handle_mbx_intr(nic, vf + (mbx * vf_per_mbx_reg));
1068 nic_clear_mbx_intr(nic, vf, mbx);
1071 return IRQ_HANDLED;
1074 static int nic_enable_msix(struct nicpf *nic)
1076 int i, ret;
1078 nic->num_vec = pci_msix_vec_count(nic->pdev);
1080 nic->msix_entries = kmalloc_array(nic->num_vec,
1081 sizeof(struct msix_entry),
1082 GFP_KERNEL);
1083 if (!nic->msix_entries)
1084 return -ENOMEM;
1086 for (i = 0; i < nic->num_vec; i++)
1087 nic->msix_entries[i].entry = i;
1089 ret = pci_enable_msix(nic->pdev, nic->msix_entries, nic->num_vec);
1090 if (ret) {
1091 dev_err(&nic->pdev->dev,
1092 "Request for #%d msix vectors failed, returned %d\n",
1093 nic->num_vec, ret);
1094 kfree(nic->msix_entries);
1095 return ret;
1098 nic->msix_enabled = 1;
1099 return 0;
1102 static void nic_disable_msix(struct nicpf *nic)
1104 if (nic->msix_enabled) {
1105 pci_disable_msix(nic->pdev);
1106 kfree(nic->msix_entries);
1107 nic->msix_enabled = 0;
1108 nic->num_vec = 0;
1112 static void nic_free_all_interrupts(struct nicpf *nic)
1114 int irq;
1116 for (irq = 0; irq < nic->num_vec; irq++) {
1117 if (nic->irq_allocated[irq])
1118 free_irq(nic->msix_entries[irq].vector, nic);
1119 nic->irq_allocated[irq] = false;
1123 static int nic_register_interrupts(struct nicpf *nic)
1125 int i, ret;
1127 /* Enable MSI-X */
1128 ret = nic_enable_msix(nic);
1129 if (ret)
1130 return ret;
1132 /* Register mailbox interrupt handler */
1133 for (i = NIC_PF_INTR_ID_MBOX0; i < nic->num_vec; i++) {
1134 sprintf(nic->irq_name[i],
1135 "NICPF Mbox%d", (i - NIC_PF_INTR_ID_MBOX0));
1137 ret = request_irq(nic->msix_entries[i].vector,
1138 nic_mbx_intr_handler, 0,
1139 nic->irq_name[i], nic);
1140 if (ret)
1141 goto fail;
1143 nic->irq_allocated[i] = true;
1146 /* Enable mailbox interrupt */
1147 nic_enable_mbx_intr(nic);
1148 return 0;
1150 fail:
1151 dev_err(&nic->pdev->dev, "Request irq failed\n");
1152 nic_free_all_interrupts(nic);
1153 nic_disable_msix(nic);
1154 return ret;
1157 static void nic_unregister_interrupts(struct nicpf *nic)
1159 nic_free_all_interrupts(nic);
1160 nic_disable_msix(nic);
1163 static int nic_num_sqs_en(struct nicpf *nic, int vf_en)
1165 int pos, sqs_per_vf = MAX_SQS_PER_VF_SINGLE_NODE;
1166 u16 total_vf;
1168 /* Secondary Qsets are needed only if CPU count is
1169 * morethan MAX_QUEUES_PER_QSET.
1171 if (num_online_cpus() <= MAX_QUEUES_PER_QSET)
1172 return 0;
1174 /* Check if its a multi-node environment */
1175 if (nr_node_ids > 1)
1176 sqs_per_vf = MAX_SQS_PER_VF;
1178 pos = pci_find_ext_capability(nic->pdev, PCI_EXT_CAP_ID_SRIOV);
1179 pci_read_config_word(nic->pdev, (pos + PCI_SRIOV_TOTAL_VF), &total_vf);
1180 return min(total_vf - vf_en, vf_en * sqs_per_vf);
1183 static int nic_sriov_init(struct pci_dev *pdev, struct nicpf *nic)
1185 int pos = 0;
1186 int vf_en;
1187 int err;
1188 u16 total_vf_cnt;
1190 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_SRIOV);
1191 if (!pos) {
1192 dev_err(&pdev->dev, "SRIOV capability is not found in PCIe config space\n");
1193 return -ENODEV;
1196 pci_read_config_word(pdev, (pos + PCI_SRIOV_TOTAL_VF), &total_vf_cnt);
1197 if (total_vf_cnt < nic->num_vf_en)
1198 nic->num_vf_en = total_vf_cnt;
1200 if (!total_vf_cnt)
1201 return 0;
1203 vf_en = nic->num_vf_en;
1204 nic->num_sqs_en = nic_num_sqs_en(nic, nic->num_vf_en);
1205 vf_en += nic->num_sqs_en;
1207 err = pci_enable_sriov(pdev, vf_en);
1208 if (err) {
1209 dev_err(&pdev->dev, "SRIOV enable failed, num VF is %d\n",
1210 vf_en);
1211 nic->num_vf_en = 0;
1212 return err;
1215 dev_info(&pdev->dev, "SRIOV enabled, number of VF available %d\n",
1216 vf_en);
1218 nic->flags |= NIC_SRIOV_ENABLED;
1219 return 0;
1222 /* Poll for BGX LMAC link status and update corresponding VF
1223 * if there is a change, valid only if internal L2 switch
1224 * is not present otherwise VF link is always treated as up
1226 static void nic_poll_for_link(struct work_struct *work)
1228 union nic_mbx mbx = {};
1229 struct nicpf *nic;
1230 struct bgx_link_status link;
1231 u8 vf, bgx, lmac;
1233 nic = container_of(work, struct nicpf, dwork.work);
1235 mbx.link_status.msg = NIC_MBOX_MSG_BGX_LINK_CHANGE;
1237 for (vf = 0; vf < nic->num_vf_en; vf++) {
1238 /* Poll only if VF is UP */
1239 if (!nic->vf_enabled[vf])
1240 continue;
1242 /* Get BGX, LMAC indices for the VF */
1243 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
1244 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
1245 /* Get interface link status */
1246 bgx_get_lmac_link_state(nic->node, bgx, lmac, &link);
1248 /* Inform VF only if link status changed */
1249 if (nic->link[vf] == link.link_up)
1250 continue;
1252 if (!nic->mbx_lock[vf]) {
1253 nic->link[vf] = link.link_up;
1254 nic->duplex[vf] = link.duplex;
1255 nic->speed[vf] = link.speed;
1257 /* Send a mbox message to VF with current link status */
1258 mbx.link_status.link_up = link.link_up;
1259 mbx.link_status.duplex = link.duplex;
1260 mbx.link_status.speed = link.speed;
1261 mbx.link_status.mac_type = link.mac_type;
1262 nic_send_msg_to_vf(nic, vf, &mbx);
1265 queue_delayed_work(nic->check_link, &nic->dwork, HZ * 2);
1268 static int nic_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1270 struct device *dev = &pdev->dev;
1271 struct nicpf *nic;
1272 int err;
1274 BUILD_BUG_ON(sizeof(union nic_mbx) > 16);
1276 nic = devm_kzalloc(dev, sizeof(*nic), GFP_KERNEL);
1277 if (!nic)
1278 return -ENOMEM;
1280 nic->hw = devm_kzalloc(dev, sizeof(struct hw_info), GFP_KERNEL);
1281 if (!nic->hw) {
1282 devm_kfree(dev, nic);
1283 return -ENOMEM;
1286 pci_set_drvdata(pdev, nic);
1288 nic->pdev = pdev;
1290 err = pci_enable_device(pdev);
1291 if (err) {
1292 dev_err(dev, "Failed to enable PCI device\n");
1293 pci_set_drvdata(pdev, NULL);
1294 return err;
1297 err = pci_request_regions(pdev, DRV_NAME);
1298 if (err) {
1299 dev_err(dev, "PCI request regions failed 0x%x\n", err);
1300 goto err_disable_device;
1303 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(48));
1304 if (err) {
1305 dev_err(dev, "Unable to get usable DMA configuration\n");
1306 goto err_release_regions;
1309 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(48));
1310 if (err) {
1311 dev_err(dev, "Unable to get 48-bit DMA for consistent allocations\n");
1312 goto err_release_regions;
1315 /* MAP PF's configuration registers */
1316 nic->reg_base = pcim_iomap(pdev, PCI_CFG_REG_BAR_NUM, 0);
1317 if (!nic->reg_base) {
1318 dev_err(dev, "Cannot map config register space, aborting\n");
1319 err = -ENOMEM;
1320 goto err_release_regions;
1323 nic->node = nic_get_node_id(pdev);
1325 /* Initialize hardware */
1326 err = nic_init_hw(nic);
1327 if (err)
1328 goto err_release_regions;
1330 nic_set_lmac_vf_mapping(nic);
1332 /* Register interrupts */
1333 err = nic_register_interrupts(nic);
1334 if (err)
1335 goto err_release_regions;
1337 /* Configure SRIOV */
1338 err = nic_sriov_init(pdev, nic);
1339 if (err)
1340 goto err_unregister_interrupts;
1342 /* Register a physical link status poll fn() */
1343 nic->check_link = alloc_workqueue("check_link_status",
1344 WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
1345 if (!nic->check_link) {
1346 err = -ENOMEM;
1347 goto err_disable_sriov;
1350 INIT_DELAYED_WORK(&nic->dwork, nic_poll_for_link);
1351 queue_delayed_work(nic->check_link, &nic->dwork, 0);
1353 return 0;
1355 err_disable_sriov:
1356 if (nic->flags & NIC_SRIOV_ENABLED)
1357 pci_disable_sriov(pdev);
1358 err_unregister_interrupts:
1359 nic_unregister_interrupts(nic);
1360 err_release_regions:
1361 pci_release_regions(pdev);
1362 err_disable_device:
1363 nic_free_lmacmem(nic);
1364 devm_kfree(dev, nic->hw);
1365 devm_kfree(dev, nic);
1366 pci_disable_device(pdev);
1367 pci_set_drvdata(pdev, NULL);
1368 return err;
1371 static void nic_remove(struct pci_dev *pdev)
1373 struct nicpf *nic = pci_get_drvdata(pdev);
1375 if (nic->flags & NIC_SRIOV_ENABLED)
1376 pci_disable_sriov(pdev);
1378 if (nic->check_link) {
1379 /* Destroy work Queue */
1380 cancel_delayed_work_sync(&nic->dwork);
1381 destroy_workqueue(nic->check_link);
1384 nic_unregister_interrupts(nic);
1385 pci_release_regions(pdev);
1387 nic_free_lmacmem(nic);
1388 devm_kfree(&pdev->dev, nic->hw);
1389 devm_kfree(&pdev->dev, nic);
1391 pci_disable_device(pdev);
1392 pci_set_drvdata(pdev, NULL);
1395 static struct pci_driver nic_driver = {
1396 .name = DRV_NAME,
1397 .id_table = nic_id_table,
1398 .probe = nic_probe,
1399 .remove = nic_remove,
1402 static int __init nic_init_module(void)
1404 pr_info("%s, ver %s\n", DRV_NAME, DRV_VERSION);
1406 return pci_register_driver(&nic_driver);
1409 static void __exit nic_cleanup_module(void)
1411 pci_unregister_driver(&nic_driver);
1414 module_init(nic_init_module);
1415 module_exit(nic_cleanup_module);