1
2
3
4
5
6
7
8
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>
15
16#include "nic_reg.h"
17#include "nic.h"
18#include "q_struct.h"
19#include "thunder_bgx.h"
20
21#define DRV_NAME "nicpf"
22#define DRV_VERSION "1.0"
23
24#define NIC_VF_PER_MBX_REG 64
25
26struct hw_info {
27 u8 bgx_cnt;
28 u8 chans_per_lmac;
29 u8 chans_per_bgx;
30 u8 chans_per_rgx;
31 u8 chans_per_lbk;
32 u16 cpi_cnt;
33 u16 rssi_cnt;
34 u16 rss_ind_tbl_size;
35 u16 tl4_cnt;
36 u16 tl3_cnt;
37 u8 tl2_cnt;
38 u8 tl1_cnt;
39 bool tl1_per_bgx;
40};
41
42struct nicpf {
43 struct pci_dev *pdev;
44 struct hw_info *hw;
45 u8 node;
46 unsigned int flags;
47 u8 num_vf_en;
48 bool vf_enabled[MAX_NUM_VFS_SUPPORTED];
49 void __iomem *reg_base;
50 u8 num_sqs_en;
51 u64 nicvf[MAX_NUM_VFS_SUPPORTED];
52 u8 vf_sqs[MAX_NUM_VFS_SUPPORTED][MAX_SQS_PER_VF];
53 u8 pqs_vf[MAX_NUM_VFS_SUPPORTED];
54 bool sqs_used[MAX_NUM_VFS_SUPPORTED];
55 struct pkind_cfg pkind;
56#define NIC_SET_VF_LMAC_MAP(bgx, lmac) (((bgx & 0xF) << 4) | (lmac & 0xF))
57#define NIC_GET_BGX_FROM_VF_LMAC_MAP(map) ((map >> 4) & 0xF)
58#define NIC_GET_LMAC_FROM_VF_LMAC_MAP(map) (map & 0xF)
59 u8 *vf_lmac_map;
60 u16 cpi_base[MAX_NUM_VFS_SUPPORTED];
61 u16 rssi_base[MAX_NUM_VFS_SUPPORTED];
62
63
64 u8 num_vec;
65 bool irq_allocated[NIC_PF_MSIX_VECTORS];
66 char irq_name[NIC_PF_MSIX_VECTORS][20];
67};
68
69
70static const struct pci_device_id nic_id_table[] = {
71 { PCI_DEVICE(PCI_VENDOR_ID_CAVIUM, PCI_DEVICE_ID_THUNDER_NIC_PF) },
72 { 0, }
73};
74
75MODULE_AUTHOR("Sunil Goutham");
76MODULE_DESCRIPTION("Cavium Thunder NIC Physical Function Driver");
77MODULE_LICENSE("GPL v2");
78MODULE_VERSION(DRV_VERSION);
79MODULE_DEVICE_TABLE(pci, nic_id_table);
80
81
82
83
84
85
86
87
88
89
90
91static void nic_reg_write(struct nicpf *nic, u64 offset, u64 val)
92{
93 writeq_relaxed(val, nic->reg_base + offset);
94}
95
96static u64 nic_reg_read(struct nicpf *nic, u64 offset)
97{
98 return readq_relaxed(nic->reg_base + offset);
99}
100
101
102static void nic_enable_mbx_intr(struct nicpf *nic)
103{
104 int vf_cnt = pci_sriov_get_totalvfs(nic->pdev);
105
106#define INTR_MASK(vfs) ((vfs < 64) ? (BIT_ULL(vfs) - 1) : (~0ull))
107
108
109 nic_reg_write(nic, NIC_PF_MAILBOX_INT, INTR_MASK(vf_cnt));
110
111
112 nic_reg_write(nic, NIC_PF_MAILBOX_ENA_W1S, INTR_MASK(vf_cnt));
113
114 if (vf_cnt > 64) {
115 nic_reg_write(nic, NIC_PF_MAILBOX_INT + sizeof(u64),
116 INTR_MASK(vf_cnt - 64));
117 nic_reg_write(nic, NIC_PF_MAILBOX_ENA_W1S + sizeof(u64),
118 INTR_MASK(vf_cnt - 64));
119 }
120}
121
122static void nic_clear_mbx_intr(struct nicpf *nic, int vf, int mbx_reg)
123{
124 nic_reg_write(nic, NIC_PF_MAILBOX_INT + (mbx_reg << 3), BIT_ULL(vf));
125}
126
127static u64 nic_get_mbx_addr(int vf)
128{
129 return NIC_PF_VF_0_127_MAILBOX_0_1 + (vf << NIC_VF_NUM_SHIFT);
130}
131
132
133
134
135
136static void nic_send_msg_to_vf(struct nicpf *nic, int vf, union nic_mbx *mbx)
137{
138 void __iomem *mbx_addr = nic->reg_base + nic_get_mbx_addr(vf);
139 u64 *msg = (u64 *)mbx;
140
141
142
143
144
145 if (pass1_silicon(nic->pdev)) {
146
147
148
149 writeq_relaxed(msg[0], mbx_addr);
150 writeq_relaxed(msg[1], mbx_addr + 8);
151 } else {
152 writeq_relaxed(msg[1], mbx_addr + 8);
153 writeq_relaxed(msg[0], mbx_addr);
154 }
155}
156
157
158
159
160
161static void nic_mbx_send_ready(struct nicpf *nic, int vf)
162{
163 union nic_mbx mbx = {};
164 int bgx_idx, lmac;
165 const char *mac;
166
167 mbx.nic_cfg.msg = NIC_MBOX_MSG_READY;
168 mbx.nic_cfg.vf_id = vf;
169
170 mbx.nic_cfg.tns_mode = NIC_TNS_BYPASS_MODE;
171
172 if (vf < nic->num_vf_en) {
173 bgx_idx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
174 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
175
176 mac = bgx_get_lmac_mac(nic->node, bgx_idx, lmac);
177 if (mac)
178 ether_addr_copy((u8 *)&mbx.nic_cfg.mac_addr, mac);
179 }
180 mbx.nic_cfg.sqs_mode = (vf >= nic->num_vf_en) ? true : false;
181 mbx.nic_cfg.node_id = nic->node;
182
183 mbx.nic_cfg.loopback_supported = vf < nic->num_vf_en;
184
185 nic_send_msg_to_vf(nic, vf, &mbx);
186}
187
188
189
190
191static void nic_mbx_send_ack(struct nicpf *nic, int vf)
192{
193 union nic_mbx mbx = {};
194
195 mbx.msg.msg = NIC_MBOX_MSG_ACK;
196 nic_send_msg_to_vf(nic, vf, &mbx);
197}
198
199
200
201
202
203static void nic_mbx_send_nack(struct nicpf *nic, int vf)
204{
205 union nic_mbx mbx = {};
206
207 mbx.msg.msg = NIC_MBOX_MSG_NACK;
208 nic_send_msg_to_vf(nic, vf, &mbx);
209}
210
211
212
213
214static int nic_rcv_queue_sw_sync(struct nicpf *nic)
215{
216 u16 timeout = ~0x00;
217
218 nic_reg_write(nic, NIC_PF_SW_SYNC_RX, 0x01);
219
220 while (timeout) {
221 if (nic_reg_read(nic, NIC_PF_SW_SYNC_RX_DONE) & 0x1)
222 break;
223 timeout--;
224 }
225 nic_reg_write(nic, NIC_PF_SW_SYNC_RX, 0x00);
226 if (!timeout) {
227 dev_err(&nic->pdev->dev, "Receive queue software sync failed");
228 return 1;
229 }
230 return 0;
231}
232
233
234static void nic_get_bgx_stats(struct nicpf *nic, struct bgx_stats_msg *bgx)
235{
236 int bgx_idx, lmac;
237 union nic_mbx mbx = {};
238
239 bgx_idx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[bgx->vf_id]);
240 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[bgx->vf_id]);
241
242 mbx.bgx_stats.msg = NIC_MBOX_MSG_BGX_STATS;
243 mbx.bgx_stats.vf_id = bgx->vf_id;
244 mbx.bgx_stats.rx = bgx->rx;
245 mbx.bgx_stats.idx = bgx->idx;
246 if (bgx->rx)
247 mbx.bgx_stats.stats = bgx_get_rx_stats(nic->node, bgx_idx,
248 lmac, bgx->idx);
249 else
250 mbx.bgx_stats.stats = bgx_get_tx_stats(nic->node, bgx_idx,
251 lmac, bgx->idx);
252 nic_send_msg_to_vf(nic, bgx->vf_id, &mbx);
253}
254
255
256static int nic_update_hw_frs(struct nicpf *nic, int new_frs, int vf)
257{
258 int bgx, lmac, lmac_cnt;
259 u64 lmac_credits;
260
261 if ((new_frs > NIC_HW_MAX_FRS) || (new_frs < NIC_HW_MIN_FRS))
262 return 1;
263
264 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
265 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
266 lmac += bgx * MAX_LMAC_PER_BGX;
267
268 new_frs += VLAN_ETH_HLEN + ETH_FCS_LEN + 4;
269
270
271 lmac_cnt = bgx_get_lmac_count(nic->node, bgx);
272 lmac_credits = nic_reg_read(nic, NIC_PF_LMAC_0_7_CREDIT + (lmac * 8));
273 lmac_credits &= ~(0xFFFFFULL << 12);
274 lmac_credits |= (((((48 * 1024) / lmac_cnt) - new_frs) / 16) << 12);
275 nic_reg_write(nic, NIC_PF_LMAC_0_7_CREDIT + (lmac * 8), lmac_credits);
276
277
278
279
280 if (!pass1_silicon(nic->pdev))
281 nic_reg_write(nic,
282 NIC_PF_LMAC_0_7_CFG2 + (lmac * 8), new_frs);
283 return 0;
284}
285
286
287static void nic_set_tx_pkt_pad(struct nicpf *nic, int size)
288{
289 int lmac, max_lmac;
290 u16 sdevid;
291 u64 lmac_cfg;
292
293
294
295
296
297
298
299 if (size > 52)
300 size = 52;
301
302 pci_read_config_word(nic->pdev, PCI_SUBSYSTEM_ID, &sdevid);
303
304 if (sdevid == PCI_SUBSYS_DEVID_81XX_NIC_PF)
305 max_lmac = ((nic->hw->bgx_cnt - 1) * MAX_LMAC_PER_BGX) + 1;
306 else
307 max_lmac = nic->hw->bgx_cnt * MAX_LMAC_PER_BGX;
308
309 for (lmac = 0; lmac < max_lmac; lmac++) {
310 lmac_cfg = nic_reg_read(nic, NIC_PF_LMAC_0_7_CFG | (lmac << 3));
311 lmac_cfg &= ~(0xF << 2);
312 lmac_cfg |= ((size / 4) << 2);
313 nic_reg_write(nic, NIC_PF_LMAC_0_7_CFG | (lmac << 3), lmac_cfg);
314 }
315}
316
317
318
319
320static void nic_set_lmac_vf_mapping(struct nicpf *nic)
321{
322 unsigned bgx_map = bgx_get_map(nic->node);
323 int bgx, next_bgx_lmac = 0;
324 int lmac, lmac_cnt = 0;
325 u64 lmac_credit;
326
327 nic->num_vf_en = 0;
328
329 for (bgx = 0; bgx < nic->hw->bgx_cnt; bgx++) {
330 if (!(bgx_map & (1 << bgx)))
331 continue;
332 lmac_cnt = bgx_get_lmac_count(nic->node, bgx);
333 for (lmac = 0; lmac < lmac_cnt; lmac++)
334 nic->vf_lmac_map[next_bgx_lmac++] =
335 NIC_SET_VF_LMAC_MAP(bgx, lmac);
336 nic->num_vf_en += lmac_cnt;
337
338
339 lmac_credit = (1ull << 1);
340 lmac_credit |= (0x1ff << 2);
341
342 lmac_credit |= (((((48 * 1024) / lmac_cnt) -
343 NIC_HW_MAX_FRS) / 16) << 12);
344 lmac = bgx * MAX_LMAC_PER_BGX;
345 for (; lmac < lmac_cnt + (bgx * MAX_LMAC_PER_BGX); lmac++)
346 nic_reg_write(nic,
347 NIC_PF_LMAC_0_7_CREDIT + (lmac * 8),
348 lmac_credit);
349
350
351
352
353 if (nic->num_vf_en >= pci_sriov_get_totalvfs(nic->pdev)) {
354 nic->num_vf_en = pci_sriov_get_totalvfs(nic->pdev);
355 break;
356 }
357 }
358}
359
360static void nic_get_hw_info(struct nicpf *nic)
361{
362 u16 sdevid;
363 struct hw_info *hw = nic->hw;
364
365 pci_read_config_word(nic->pdev, PCI_SUBSYSTEM_ID, &sdevid);
366
367 switch (sdevid) {
368 case PCI_SUBSYS_DEVID_88XX_NIC_PF:
369 hw->bgx_cnt = MAX_BGX_PER_CN88XX;
370 hw->chans_per_lmac = 16;
371 hw->chans_per_bgx = 128;
372 hw->cpi_cnt = 2048;
373 hw->rssi_cnt = 4096;
374 hw->rss_ind_tbl_size = NIC_MAX_RSS_IDR_TBL_SIZE;
375 hw->tl3_cnt = 256;
376 hw->tl2_cnt = 64;
377 hw->tl1_cnt = 2;
378 hw->tl1_per_bgx = true;
379 break;
380 case PCI_SUBSYS_DEVID_81XX_NIC_PF:
381 hw->bgx_cnt = MAX_BGX_PER_CN81XX;
382 hw->chans_per_lmac = 8;
383 hw->chans_per_bgx = 32;
384 hw->chans_per_rgx = 8;
385 hw->chans_per_lbk = 24;
386 hw->cpi_cnt = 512;
387 hw->rssi_cnt = 256;
388 hw->rss_ind_tbl_size = 32;
389 hw->tl3_cnt = 64;
390 hw->tl2_cnt = 16;
391 hw->tl1_cnt = 10;
392 hw->tl1_per_bgx = false;
393 break;
394 case PCI_SUBSYS_DEVID_83XX_NIC_PF:
395 hw->bgx_cnt = MAX_BGX_PER_CN83XX;
396 hw->chans_per_lmac = 8;
397 hw->chans_per_bgx = 32;
398 hw->chans_per_lbk = 64;
399 hw->cpi_cnt = 2048;
400 hw->rssi_cnt = 1024;
401 hw->rss_ind_tbl_size = 64;
402 hw->tl3_cnt = 256;
403 hw->tl2_cnt = 64;
404 hw->tl1_cnt = 18;
405 hw->tl1_per_bgx = false;
406 break;
407 }
408 hw->tl4_cnt = MAX_QUEUES_PER_QSET * pci_sriov_get_totalvfs(nic->pdev);
409}
410
411#define BGX0_BLOCK 8
412#define BGX1_BLOCK 9
413
414static void nic_init_hw(struct nicpf *nic)
415{
416 int i;
417 u64 cqm_cfg;
418
419
420 nic_reg_write(nic, NIC_PF_CFG, 0x3);
421
422
423 nic_reg_write(nic, NIC_PF_BP_CFG, (1ULL << 6) | 0x03);
424
425
426
427
428 if (nic->pdev->subsystem_device == PCI_SUBSYS_DEVID_88XX_NIC_PF) {
429
430 nic_reg_write(nic, NIC_PF_INTF_0_1_SEND_CFG,
431 (NIC_TNS_BYPASS_MODE << 7) |
432 BGX0_BLOCK | (1ULL << 16));
433 nic_reg_write(nic, NIC_PF_INTF_0_1_SEND_CFG | (1 << 8),
434 (NIC_TNS_BYPASS_MODE << 7) |
435 BGX1_BLOCK | (1ULL << 16));
436 } else {
437
438 for (i = 0; i < nic->hw->bgx_cnt; i++)
439 nic_reg_write(nic, NIC_PF_INTFX_SEND_CFG | (i << 3),
440 (1ULL << 16));
441 }
442
443 nic_reg_write(nic, NIC_PF_INTF_0_1_BP_CFG,
444 (1ULL << 63) | BGX0_BLOCK);
445 nic_reg_write(nic, NIC_PF_INTF_0_1_BP_CFG + (1 << 8),
446 (1ULL << 63) | BGX1_BLOCK);
447
448
449 nic->pkind.minlen = 0;
450 nic->pkind.maxlen = NIC_HW_MAX_FRS + VLAN_ETH_HLEN + ETH_FCS_LEN + 4;
451 nic->pkind.lenerr_en = 1;
452 nic->pkind.rx_hdr = 0;
453 nic->pkind.hdr_sl = 0;
454
455 for (i = 0; i < NIC_MAX_PKIND; i++)
456 nic_reg_write(nic, NIC_PF_PKIND_0_15_CFG | (i << 3),
457 *(u64 *)&nic->pkind);
458
459 nic_set_tx_pkt_pad(nic, NIC_HW_MIN_FRS);
460
461
462 nic_reg_write(nic, NIC_PF_INTR_TIMER_CFG, NICPF_CLK_PER_INT_TICK);
463
464
465 nic_reg_write(nic, NIC_PF_RX_ETYPE_0_7,
466 (2 << 19) | (ETYPE_ALG_VLAN_STRIP << 16) | ETH_P_8021Q);
467
468
469 cqm_cfg = nic_reg_read(nic, NIC_PF_CQM_CFG);
470 if (cqm_cfg < NICPF_CQM_MIN_DROP_LEVEL)
471 nic_reg_write(nic, NIC_PF_CQM_CFG, NICPF_CQM_MIN_DROP_LEVEL);
472}
473
474
475static void nic_config_cpi(struct nicpf *nic, struct cpi_cfg_msg *cfg)
476{
477 struct hw_info *hw = nic->hw;
478 u32 vnic, bgx, lmac, chan;
479 u32 padd, cpi_count = 0;
480 u64 cpi_base, cpi, rssi_base, rssi;
481 u8 qset, rq_idx = 0;
482
483 vnic = cfg->vf_id;
484 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vnic]);
485 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vnic]);
486
487 chan = (lmac * hw->chans_per_lmac) + (bgx * hw->chans_per_bgx);
488 cpi_base = vnic * NIC_MAX_CPI_PER_LMAC;
489 rssi_base = vnic * hw->rss_ind_tbl_size;
490
491
492 nic_reg_write(nic, NIC_PF_CHAN_0_255_RX_BP_CFG | (chan << 3),
493 (1ull << 63) | (vnic << 0));
494 nic_reg_write(nic, NIC_PF_CHAN_0_255_RX_CFG | (chan << 3),
495 ((u64)cfg->cpi_alg << 62) | (cpi_base << 48));
496
497 if (cfg->cpi_alg == CPI_ALG_NONE)
498 cpi_count = 1;
499 else if (cfg->cpi_alg == CPI_ALG_VLAN)
500 cpi_count = 8;
501 else if (cfg->cpi_alg == CPI_ALG_VLAN16)
502 cpi_count = 16;
503 else if (cfg->cpi_alg == CPI_ALG_DIFF)
504 cpi_count = NIC_MAX_CPI_PER_LMAC;
505
506
507 qset = cfg->vf_id;
508 rssi = rssi_base;
509 for (; rssi < (rssi_base + cfg->rq_cnt); rssi++) {
510 nic_reg_write(nic, NIC_PF_RSSI_0_4097_RQ | (rssi << 3),
511 (qset << 3) | rq_idx);
512 rq_idx++;
513 }
514
515 rssi = 0;
516 cpi = cpi_base;
517 for (; cpi < (cpi_base + cpi_count); cpi++) {
518
519 if (cfg->cpi_alg != CPI_ALG_DIFF)
520 padd = cpi % cpi_count;
521 else
522 padd = cpi % 8;
523
524
525 if (pass1_silicon(nic->pdev)) {
526 nic_reg_write(nic, NIC_PF_CPI_0_2047_CFG | (cpi << 3),
527 (vnic << 24) | (padd << 16) |
528 (rssi_base + rssi));
529 } else {
530
531 nic_reg_write(nic, NIC_PF_CPI_0_2047_CFG | (cpi << 3),
532 (padd << 16));
533
534 nic_reg_write(nic, NIC_PF_MPI_0_2047_CFG | (cpi << 3),
535 (vnic << 24) | (rssi_base + rssi));
536 }
537
538 if ((rssi + 1) >= cfg->rq_cnt)
539 continue;
540
541 if (cfg->cpi_alg == CPI_ALG_VLAN)
542 rssi++;
543 else if (cfg->cpi_alg == CPI_ALG_VLAN16)
544 rssi = ((cpi - cpi_base) & 0xe) >> 1;
545 else if (cfg->cpi_alg == CPI_ALG_DIFF)
546 rssi = ((cpi - cpi_base) & 0x38) >> 3;
547 }
548 nic->cpi_base[cfg->vf_id] = cpi_base;
549 nic->rssi_base[cfg->vf_id] = rssi_base;
550}
551
552
553static void nic_send_rss_size(struct nicpf *nic, int vf)
554{
555 union nic_mbx mbx = {};
556
557 mbx.rss_size.msg = NIC_MBOX_MSG_RSS_SIZE;
558 mbx.rss_size.ind_tbl_size = nic->hw->rss_ind_tbl_size;
559 nic_send_msg_to_vf(nic, vf, &mbx);
560}
561
562
563
564
565
566
567
568static void nic_config_rss(struct nicpf *nic, struct rss_cfg_msg *cfg)
569{
570 u8 qset, idx = 0;
571 u64 cpi_cfg, cpi_base, rssi_base, rssi;
572 u64 idx_addr;
573
574 rssi_base = nic->rssi_base[cfg->vf_id] + cfg->tbl_offset;
575
576 rssi = rssi_base;
577
578 for (; rssi < (rssi_base + cfg->tbl_len); rssi++) {
579 u8 svf = cfg->ind_tbl[idx] >> 3;
580
581 if (svf)
582 qset = nic->vf_sqs[cfg->vf_id][svf - 1];
583 else
584 qset = cfg->vf_id;
585 nic_reg_write(nic, NIC_PF_RSSI_0_4097_RQ | (rssi << 3),
586 (qset << 3) | (cfg->ind_tbl[idx] & 0x7));
587 idx++;
588 }
589
590 cpi_base = nic->cpi_base[cfg->vf_id];
591 if (pass1_silicon(nic->pdev))
592 idx_addr = NIC_PF_CPI_0_2047_CFG;
593 else
594 idx_addr = NIC_PF_MPI_0_2047_CFG;
595 cpi_cfg = nic_reg_read(nic, idx_addr | (cpi_base << 3));
596 cpi_cfg &= ~(0xFULL << 20);
597 cpi_cfg |= (cfg->hash_bits << 20);
598 nic_reg_write(nic, idx_addr | (cpi_base << 3), cpi_cfg);
599}
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614static void nic_tx_channel_cfg(struct nicpf *nic, u8 vnic,
615 struct sq_cfg_msg *sq)
616{
617 struct hw_info *hw = nic->hw;
618 u32 bgx, lmac, chan;
619 u32 tl2, tl3, tl4;
620 u32 rr_quantum;
621 u8 sq_idx = sq->sq_num;
622 u8 pqs_vnic;
623 int svf;
624
625 if (sq->sqs_mode)
626 pqs_vnic = nic->pqs_vf[vnic];
627 else
628 pqs_vnic = vnic;
629
630 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[pqs_vnic]);
631 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[pqs_vnic]);
632
633
634 rr_quantum = ((NIC_HW_MAX_FRS + 24) / 4);
635
636
637
638
639 if (hw->tl1_per_bgx) {
640 tl4 = bgx * (hw->tl4_cnt / hw->bgx_cnt);
641 if (!sq->sqs_mode) {
642 tl4 += (lmac * MAX_QUEUES_PER_QSET);
643 } else {
644 for (svf = 0; svf < MAX_SQS_PER_VF; svf++) {
645 if (nic->vf_sqs[pqs_vnic][svf] == vnic)
646 break;
647 }
648 tl4 += (MAX_LMAC_PER_BGX * MAX_QUEUES_PER_QSET);
649 tl4 += (lmac * MAX_QUEUES_PER_QSET * MAX_SQS_PER_VF);
650 tl4 += (svf * MAX_QUEUES_PER_QSET);
651 }
652 } else {
653 tl4 = (vnic * MAX_QUEUES_PER_QSET);
654 }
655 tl4 += sq_idx;
656
657 tl3 = tl4 / (hw->tl4_cnt / hw->tl3_cnt);
658 nic_reg_write(nic, NIC_PF_QSET_0_127_SQ_0_7_CFG2 |
659 ((u64)vnic << NIC_QS_ID_SHIFT) |
660 ((u32)sq_idx << NIC_Q_NUM_SHIFT), tl4);
661 nic_reg_write(nic, NIC_PF_TL4_0_1023_CFG | (tl4 << 3),
662 ((u64)vnic << 27) | ((u32)sq_idx << 24) | rr_quantum);
663
664 nic_reg_write(nic, NIC_PF_TL3_0_255_CFG | (tl3 << 3), rr_quantum);
665
666
667
668
669
670
671
672 chan = (lmac * hw->chans_per_lmac) + (bgx * hw->chans_per_bgx);
673 if (hw->tl1_per_bgx)
674 nic_reg_write(nic, NIC_PF_TL3_0_255_CHAN | (tl3 << 3), chan);
675 else
676 nic_reg_write(nic, NIC_PF_TL3_0_255_CHAN | (tl3 << 3), 0);
677
678
679 nic_reg_write(nic, NIC_PF_CHAN_0_255_TX_CFG | (chan << 3), 1);
680
681 tl2 = tl3 >> 2;
682 nic_reg_write(nic, NIC_PF_TL3A_0_63_CFG | (tl2 << 3), tl2);
683 nic_reg_write(nic, NIC_PF_TL2_0_63_CFG | (tl2 << 3), rr_quantum);
684
685 nic_reg_write(nic, NIC_PF_TL2_0_63_PRI | (tl2 << 3), 0x00);
686
687
688
689
690
691
692
693 if (!hw->tl1_per_bgx)
694 nic_reg_write(nic, NIC_PF_TL2_LMAC | (tl2 << 3),
695 lmac + (bgx * MAX_LMAC_PER_BGX));
696}
697
698
699static void nic_send_pnicvf(struct nicpf *nic, int sqs)
700{
701 union nic_mbx mbx = {};
702
703 mbx.nicvf.msg = NIC_MBOX_MSG_PNICVF_PTR;
704 mbx.nicvf.nicvf = nic->nicvf[nic->pqs_vf[sqs]];
705 nic_send_msg_to_vf(nic, sqs, &mbx);
706}
707
708
709static void nic_send_snicvf(struct nicpf *nic, struct nicvf_ptr *nicvf)
710{
711 union nic_mbx mbx = {};
712 int sqs_id = nic->vf_sqs[nicvf->vf_id][nicvf->sqs_id];
713
714 mbx.nicvf.msg = NIC_MBOX_MSG_SNICVF_PTR;
715 mbx.nicvf.sqs_id = nicvf->sqs_id;
716 mbx.nicvf.nicvf = nic->nicvf[sqs_id];
717 nic_send_msg_to_vf(nic, nicvf->vf_id, &mbx);
718}
719
720
721
722
723static int nic_nxt_avail_sqs(struct nicpf *nic)
724{
725 int sqs;
726
727 for (sqs = 0; sqs < nic->num_sqs_en; sqs++) {
728 if (!nic->sqs_used[sqs])
729 nic->sqs_used[sqs] = true;
730 else
731 continue;
732 return sqs + nic->num_vf_en;
733 }
734 return -1;
735}
736
737
738static void nic_alloc_sqs(struct nicpf *nic, struct sqs_alloc *sqs)
739{
740 union nic_mbx mbx = {};
741 int idx, alloc_qs = 0;
742 int sqs_id;
743
744 if (!nic->num_sqs_en)
745 goto send_mbox;
746
747 for (idx = 0; idx < sqs->qs_count; idx++) {
748 sqs_id = nic_nxt_avail_sqs(nic);
749 if (sqs_id < 0)
750 break;
751 nic->vf_sqs[sqs->vf_id][idx] = sqs_id;
752 nic->pqs_vf[sqs_id] = sqs->vf_id;
753 alloc_qs++;
754 }
755
756send_mbox:
757 mbx.sqs_alloc.msg = NIC_MBOX_MSG_ALLOC_SQS;
758 mbx.sqs_alloc.vf_id = sqs->vf_id;
759 mbx.sqs_alloc.qs_count = alloc_qs;
760 nic_send_msg_to_vf(nic, sqs->vf_id, &mbx);
761}
762
763static int nic_config_loopback(struct nicpf *nic, struct set_loopback *lbk)
764{
765 int bgx_idx, lmac_idx;
766
767 if (lbk->vf_id >= nic->num_vf_en)
768 return -1;
769
770 bgx_idx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[lbk->vf_id]);
771 lmac_idx = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[lbk->vf_id]);
772
773 bgx_lmac_internal_loopback(nic->node, bgx_idx, lmac_idx, lbk->enable);
774
775
776
777
778
779 nic_reg_write(nic, NIC_PF_CQ_AVG_CFG,
780 (BIT_ULL(20) | 0x2ull << 14 | 0x1));
781 nic_reg_write(nic, NIC_PF_RRM_AVG_CFG,
782 (BIT_ULL(20) | 0x3ull << 14 | 0x1));
783
784 return 0;
785}
786
787
788static int nic_reset_stat_counters(struct nicpf *nic,
789 int vf, struct reset_stat_cfg *cfg)
790{
791 int i, stat, qnum;
792 u64 reg_addr;
793
794 for (i = 0; i < RX_STATS_ENUM_LAST; i++) {
795 if (cfg->rx_stat_mask & BIT(i)) {
796 reg_addr = NIC_PF_VNIC_0_127_RX_STAT_0_13 |
797 (vf << NIC_QS_ID_SHIFT) |
798 (i << 3);
799 nic_reg_write(nic, reg_addr, 0);
800 }
801 }
802
803 for (i = 0; i < TX_STATS_ENUM_LAST; i++) {
804 if (cfg->tx_stat_mask & BIT(i)) {
805 reg_addr = NIC_PF_VNIC_0_127_TX_STAT_0_4 |
806 (vf << NIC_QS_ID_SHIFT) |
807 (i << 3);
808 nic_reg_write(nic, reg_addr, 0);
809 }
810 }
811
812 for (i = 0; i <= 15; i++) {
813 qnum = i >> 1;
814 stat = i & 1 ? 1 : 0;
815 reg_addr = (vf << NIC_QS_ID_SHIFT) |
816 (qnum << NIC_Q_NUM_SHIFT) | (stat << 3);
817 if (cfg->rq_stat_mask & BIT(i)) {
818 reg_addr |= NIC_PF_QSET_0_127_RQ_0_7_STAT_0_1;
819 nic_reg_write(nic, reg_addr, 0);
820 }
821 if (cfg->sq_stat_mask & BIT(i)) {
822 reg_addr |= NIC_PF_QSET_0_127_SQ_0_7_STAT_0_1;
823 nic_reg_write(nic, reg_addr, 0);
824 }
825 }
826
827 return 0;
828}
829
830static void nic_enable_tunnel_parsing(struct nicpf *nic, int vf)
831{
832 u64 prot_def = (IPV6_PROT << 32) | (IPV4_PROT << 16) | ET_PROT;
833 u64 vxlan_prot_def = (IPV6_PROT_DEF << 32) |
834 (IPV4_PROT_DEF) << 16 | ET_PROT_DEF;
835
836
837 nic_reg_write(nic, NIC_PF_RX_GENEVE_DEF,
838 (1ULL << 63 | UDP_GENEVE_PORT_NUM));
839 nic_reg_write(nic, NIC_PF_RX_GENEVE_PROT_DEF,
840 ((7ULL << 61) | prot_def));
841 nic_reg_write(nic, NIC_PF_RX_NVGRE_PROT_DEF,
842 ((7ULL << 61) | prot_def));
843 nic_reg_write(nic, NIC_PF_RX_VXLAN_DEF_0_1,
844 ((1ULL << 63) | UDP_VXLAN_PORT_NUM));
845 nic_reg_write(nic, NIC_PF_RX_VXLAN_PROT_DEF,
846 ((0xfULL << 60) | vxlan_prot_def));
847}
848
849static void nic_enable_vf(struct nicpf *nic, int vf, bool enable)
850{
851 int bgx, lmac;
852
853 nic->vf_enabled[vf] = enable;
854
855 if (vf >= nic->num_vf_en)
856 return;
857
858 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
859 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
860
861 bgx_lmac_rx_tx_enable(nic->node, bgx, lmac, enable);
862}
863
864static void nic_pause_frame(struct nicpf *nic, int vf, struct pfc *cfg)
865{
866 int bgx, lmac;
867 struct pfc pfc;
868 union nic_mbx mbx = {};
869
870 if (vf >= nic->num_vf_en)
871 return;
872 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
873 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
874
875 if (cfg->get) {
876 bgx_lmac_get_pfc(nic->node, bgx, lmac, &pfc);
877 mbx.pfc.msg = NIC_MBOX_MSG_PFC;
878 mbx.pfc.autoneg = pfc.autoneg;
879 mbx.pfc.fc_rx = pfc.fc_rx;
880 mbx.pfc.fc_tx = pfc.fc_tx;
881 nic_send_msg_to_vf(nic, vf, &mbx);
882 } else {
883 bgx_lmac_set_pfc(nic->node, bgx, lmac, cfg);
884 nic_mbx_send_ack(nic, vf);
885 }
886}
887
888
889static void nic_config_timestamp(struct nicpf *nic, int vf, struct set_ptp *ptp)
890{
891 struct pkind_cfg *pkind;
892 u8 lmac, bgx_idx;
893 u64 pkind_val, pkind_idx;
894
895 if (vf >= nic->num_vf_en)
896 return;
897
898 bgx_idx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
899 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
900
901 pkind_idx = lmac + bgx_idx * MAX_LMAC_PER_BGX;
902 pkind_val = nic_reg_read(nic, NIC_PF_PKIND_0_15_CFG | (pkind_idx << 3));
903 pkind = (struct pkind_cfg *)&pkind_val;
904
905 if (ptp->enable && !pkind->hdr_sl) {
906
907
908
909 pkind->hdr_sl = 4;
910
911 pkind->maxlen += (pkind->hdr_sl * 2);
912 bgx_config_timestamping(nic->node, bgx_idx, lmac, true);
913 nic_reg_write(nic, NIC_PF_RX_ETYPE_0_7 | (1 << 3),
914 (ETYPE_ALG_ENDPARSE << 16) | ETH_P_1588);
915 } else if (!ptp->enable && pkind->hdr_sl) {
916 pkind->maxlen -= (pkind->hdr_sl * 2);
917 pkind->hdr_sl = 0;
918 bgx_config_timestamping(nic->node, bgx_idx, lmac, false);
919 nic_reg_write(nic, NIC_PF_RX_ETYPE_0_7 | (1 << 3),
920 (ETYPE_ALG_SKIP << 16) | ETH_P_8021Q);
921 }
922
923 nic_reg_write(nic, NIC_PF_PKIND_0_15_CFG | (pkind_idx << 3), pkind_val);
924}
925
926
927
928
929
930static void nic_link_status_get(struct nicpf *nic, u8 vf)
931{
932 union nic_mbx mbx = {};
933 struct bgx_link_status link;
934 u8 bgx, lmac;
935
936 mbx.link_status.msg = NIC_MBOX_MSG_BGX_LINK_CHANGE;
937
938
939 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
940 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
941
942
943 bgx_get_lmac_link_state(nic->node, bgx, lmac, &link);
944
945
946 mbx.link_status.link_up = link.link_up;
947 mbx.link_status.duplex = link.duplex;
948 mbx.link_status.speed = link.speed;
949 mbx.link_status.mac_type = link.mac_type;
950
951
952 nic_send_msg_to_vf(nic, vf, &mbx);
953}
954
955
956static void nic_handle_mbx_intr(struct nicpf *nic, int vf)
957{
958 union nic_mbx mbx = {};
959 u64 *mbx_data;
960 u64 mbx_addr;
961 u64 reg_addr;
962 u64 cfg;
963 int bgx, lmac;
964 int i;
965 int ret = 0;
966
967 mbx_addr = nic_get_mbx_addr(vf);
968 mbx_data = (u64 *)&mbx;
969
970 for (i = 0; i < NIC_PF_VF_MAILBOX_SIZE; i++) {
971 *mbx_data = nic_reg_read(nic, mbx_addr);
972 mbx_data++;
973 mbx_addr += sizeof(u64);
974 }
975
976 dev_dbg(&nic->pdev->dev, "%s: Mailbox msg 0x%02x from VF%d\n",
977 __func__, mbx.msg.msg, vf);
978 switch (mbx.msg.msg) {
979 case NIC_MBOX_MSG_READY:
980 nic_mbx_send_ready(nic, vf);
981 return;
982 case NIC_MBOX_MSG_QS_CFG:
983 reg_addr = NIC_PF_QSET_0_127_CFG |
984 (mbx.qs.num << NIC_QS_ID_SHIFT);
985 cfg = mbx.qs.cfg;
986
987 if (vf >= nic->num_vf_en) {
988 cfg = cfg & (~0x7FULL);
989
990 cfg |= nic->pqs_vf[vf];
991 }
992 nic_reg_write(nic, reg_addr, cfg);
993 break;
994 case NIC_MBOX_MSG_RQ_CFG:
995 reg_addr = NIC_PF_QSET_0_127_RQ_0_7_CFG |
996 (mbx.rq.qs_num << NIC_QS_ID_SHIFT) |
997 (mbx.rq.rq_num << NIC_Q_NUM_SHIFT);
998 nic_reg_write(nic, reg_addr, mbx.rq.cfg);
999
1000
1001
1002
1003
1004 if (pass2_silicon(nic->pdev))
1005 nic_reg_write(nic, NIC_PF_RX_CFG, 0x01);
1006 if (!pass1_silicon(nic->pdev))
1007 nic_enable_tunnel_parsing(nic, vf);
1008 break;
1009 case NIC_MBOX_MSG_RQ_BP_CFG:
1010 reg_addr = NIC_PF_QSET_0_127_RQ_0_7_BP_CFG |
1011 (mbx.rq.qs_num << NIC_QS_ID_SHIFT) |
1012 (mbx.rq.rq_num << NIC_Q_NUM_SHIFT);
1013 nic_reg_write(nic, reg_addr, mbx.rq.cfg);
1014 break;
1015 case NIC_MBOX_MSG_RQ_SW_SYNC:
1016 ret = nic_rcv_queue_sw_sync(nic);
1017 break;
1018 case NIC_MBOX_MSG_RQ_DROP_CFG:
1019 reg_addr = NIC_PF_QSET_0_127_RQ_0_7_DROP_CFG |
1020 (mbx.rq.qs_num << NIC_QS_ID_SHIFT) |
1021 (mbx.rq.rq_num << NIC_Q_NUM_SHIFT);
1022 nic_reg_write(nic, reg_addr, mbx.rq.cfg);
1023 break;
1024 case NIC_MBOX_MSG_SQ_CFG:
1025 reg_addr = NIC_PF_QSET_0_127_SQ_0_7_CFG |
1026 (mbx.sq.qs_num << NIC_QS_ID_SHIFT) |
1027 (mbx.sq.sq_num << NIC_Q_NUM_SHIFT);
1028 nic_reg_write(nic, reg_addr, mbx.sq.cfg);
1029 nic_tx_channel_cfg(nic, mbx.qs.num, &mbx.sq);
1030 break;
1031 case NIC_MBOX_MSG_SET_MAC:
1032 if (vf >= nic->num_vf_en) {
1033 ret = -1;
1034 break;
1035 }
1036 lmac = mbx.mac.vf_id;
1037 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[lmac]);
1038 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[lmac]);
1039 bgx_set_lmac_mac(nic->node, bgx, lmac, mbx.mac.mac_addr);
1040 break;
1041 case NIC_MBOX_MSG_SET_MAX_FRS:
1042 ret = nic_update_hw_frs(nic, mbx.frs.max_frs,
1043 mbx.frs.vf_id);
1044 break;
1045 case NIC_MBOX_MSG_CPI_CFG:
1046 nic_config_cpi(nic, &mbx.cpi_cfg);
1047 break;
1048 case NIC_MBOX_MSG_RSS_SIZE:
1049 nic_send_rss_size(nic, vf);
1050 return;
1051 case NIC_MBOX_MSG_RSS_CFG:
1052 case NIC_MBOX_MSG_RSS_CFG_CONT:
1053 nic_config_rss(nic, &mbx.rss_cfg);
1054 break;
1055 case NIC_MBOX_MSG_CFG_DONE:
1056
1057 nic_enable_vf(nic, vf, true);
1058 break;
1059 case NIC_MBOX_MSG_SHUTDOWN:
1060
1061 if (vf >= nic->num_vf_en)
1062 nic->sqs_used[vf - nic->num_vf_en] = false;
1063 nic->pqs_vf[vf] = 0;
1064 nic_enable_vf(nic, vf, false);
1065 break;
1066 case NIC_MBOX_MSG_ALLOC_SQS:
1067 nic_alloc_sqs(nic, &mbx.sqs_alloc);
1068 return;
1069 case NIC_MBOX_MSG_NICVF_PTR:
1070 nic->nicvf[vf] = mbx.nicvf.nicvf;
1071 break;
1072 case NIC_MBOX_MSG_PNICVF_PTR:
1073 nic_send_pnicvf(nic, vf);
1074 return;
1075 case NIC_MBOX_MSG_SNICVF_PTR:
1076 nic_send_snicvf(nic, &mbx.nicvf);
1077 return;
1078 case NIC_MBOX_MSG_BGX_STATS:
1079 nic_get_bgx_stats(nic, &mbx.bgx_stats);
1080 return;
1081 case NIC_MBOX_MSG_LOOPBACK:
1082 ret = nic_config_loopback(nic, &mbx.lbk);
1083 break;
1084 case NIC_MBOX_MSG_RESET_STAT_COUNTER:
1085 ret = nic_reset_stat_counters(nic, vf, &mbx.reset_stat);
1086 break;
1087 case NIC_MBOX_MSG_PFC:
1088 nic_pause_frame(nic, vf, &mbx.pfc);
1089 return;
1090 case NIC_MBOX_MSG_PTP_CFG:
1091 nic_config_timestamp(nic, vf, &mbx.ptp);
1092 break;
1093 case NIC_MBOX_MSG_RESET_XCAST:
1094 if (vf >= nic->num_vf_en) {
1095 ret = -1;
1096 break;
1097 }
1098 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
1099 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
1100 bgx_reset_xcast_mode(nic->node, bgx, lmac,
1101 vf < NIC_VF_PER_MBX_REG ? vf :
1102 vf - NIC_VF_PER_MBX_REG);
1103 break;
1104
1105 case NIC_MBOX_MSG_ADD_MCAST:
1106 if (vf >= nic->num_vf_en) {
1107 ret = -1;
1108 break;
1109 }
1110 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
1111 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
1112 bgx_set_dmac_cam_filter(nic->node, bgx, lmac,
1113 mbx.xcast.mac,
1114 vf < NIC_VF_PER_MBX_REG ? vf :
1115 vf - NIC_VF_PER_MBX_REG);
1116 break;
1117
1118 case NIC_MBOX_MSG_SET_XCAST:
1119 if (vf >= nic->num_vf_en) {
1120 ret = -1;
1121 break;
1122 }
1123 bgx = NIC_GET_BGX_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
1124 lmac = NIC_GET_LMAC_FROM_VF_LMAC_MAP(nic->vf_lmac_map[vf]);
1125 bgx_set_xcast_mode(nic->node, bgx, lmac, mbx.xcast.mode);
1126 break;
1127 case NIC_MBOX_MSG_BGX_LINK_CHANGE:
1128 if (vf >= nic->num_vf_en) {
1129 ret = -1;
1130 break;
1131 }
1132 nic_link_status_get(nic, vf);
1133 return;
1134 default:
1135 dev_err(&nic->pdev->dev,
1136 "Invalid msg from VF%d, msg 0x%x\n", vf, mbx.msg.msg);
1137 break;
1138 }
1139
1140 if (!ret) {
1141 nic_mbx_send_ack(nic, vf);
1142 } else if (mbx.msg.msg != NIC_MBOX_MSG_READY) {
1143 dev_err(&nic->pdev->dev, "NACK for MBOX 0x%02x from VF %d\n",
1144 mbx.msg.msg, vf);
1145 nic_mbx_send_nack(nic, vf);
1146 }
1147}
1148
1149static irqreturn_t nic_mbx_intr_handler(int irq, void *nic_irq)
1150{
1151 struct nicpf *nic = (struct nicpf *)nic_irq;
1152 int mbx;
1153 u64 intr;
1154 u8 vf;
1155
1156 if (irq == pci_irq_vector(nic->pdev, NIC_PF_INTR_ID_MBOX0))
1157 mbx = 0;
1158 else
1159 mbx = 1;
1160
1161 intr = nic_reg_read(nic, NIC_PF_MAILBOX_INT + (mbx << 3));
1162 dev_dbg(&nic->pdev->dev, "PF interrupt Mbox%d 0x%llx\n", mbx, intr);
1163 for (vf = 0; vf < NIC_VF_PER_MBX_REG; vf++) {
1164 if (intr & (1ULL << vf)) {
1165 dev_dbg(&nic->pdev->dev, "Intr from VF %d\n",
1166 vf + (mbx * NIC_VF_PER_MBX_REG));
1167
1168 nic_handle_mbx_intr(nic, vf +
1169 (mbx * NIC_VF_PER_MBX_REG));
1170 nic_clear_mbx_intr(nic, vf, mbx);
1171 }
1172 }
1173 return IRQ_HANDLED;
1174}
1175
1176static void nic_free_all_interrupts(struct nicpf *nic)
1177{
1178 int irq;
1179
1180 for (irq = 0; irq < nic->num_vec; irq++) {
1181 if (nic->irq_allocated[irq])
1182 free_irq(pci_irq_vector(nic->pdev, irq), nic);
1183 nic->irq_allocated[irq] = false;
1184 }
1185}
1186
1187static int nic_register_interrupts(struct nicpf *nic)
1188{
1189 int i, ret;
1190 nic->num_vec = pci_msix_vec_count(nic->pdev);
1191
1192
1193 ret = pci_alloc_irq_vectors(nic->pdev, nic->num_vec, nic->num_vec,
1194 PCI_IRQ_MSIX);
1195 if (ret < 0) {
1196 dev_err(&nic->pdev->dev,
1197 "Request for #%d msix vectors failed, returned %d\n",
1198 nic->num_vec, ret);
1199 return 1;
1200 }
1201
1202
1203 for (i = NIC_PF_INTR_ID_MBOX0; i < nic->num_vec; i++) {
1204 sprintf(nic->irq_name[i],
1205 "NICPF Mbox%d", (i - NIC_PF_INTR_ID_MBOX0));
1206
1207 ret = request_irq(pci_irq_vector(nic->pdev, i),
1208 nic_mbx_intr_handler, 0,
1209 nic->irq_name[i], nic);
1210 if (ret)
1211 goto fail;
1212
1213 nic->irq_allocated[i] = true;
1214 }
1215
1216
1217 nic_enable_mbx_intr(nic);
1218 return 0;
1219
1220fail:
1221 dev_err(&nic->pdev->dev, "Request irq failed\n");
1222 nic_free_all_interrupts(nic);
1223 pci_free_irq_vectors(nic->pdev);
1224 nic->num_vec = 0;
1225 return ret;
1226}
1227
1228static void nic_unregister_interrupts(struct nicpf *nic)
1229{
1230 nic_free_all_interrupts(nic);
1231 pci_free_irq_vectors(nic->pdev);
1232 nic->num_vec = 0;
1233}
1234
1235static int nic_num_sqs_en(struct nicpf *nic, int vf_en)
1236{
1237 int pos, sqs_per_vf = MAX_SQS_PER_VF_SINGLE_NODE;
1238 u16 total_vf;
1239
1240
1241
1242
1243 if (num_online_cpus() <= MAX_QUEUES_PER_QSET)
1244 return 0;
1245
1246
1247 if (nr_node_ids > 1)
1248 sqs_per_vf = MAX_SQS_PER_VF;
1249
1250 pos = pci_find_ext_capability(nic->pdev, PCI_EXT_CAP_ID_SRIOV);
1251 pci_read_config_word(nic->pdev, (pos + PCI_SRIOV_TOTAL_VF), &total_vf);
1252 return min(total_vf - vf_en, vf_en * sqs_per_vf);
1253}
1254
1255static int nic_sriov_init(struct pci_dev *pdev, struct nicpf *nic)
1256{
1257 int pos = 0;
1258 int vf_en;
1259 int err;
1260 u16 total_vf_cnt;
1261
1262 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_SRIOV);
1263 if (!pos) {
1264 dev_err(&pdev->dev, "SRIOV capability is not found in PCIe config space\n");
1265 return -ENODEV;
1266 }
1267
1268 pci_read_config_word(pdev, (pos + PCI_SRIOV_TOTAL_VF), &total_vf_cnt);
1269 if (total_vf_cnt < nic->num_vf_en)
1270 nic->num_vf_en = total_vf_cnt;
1271
1272 if (!total_vf_cnt)
1273 return 0;
1274
1275 vf_en = nic->num_vf_en;
1276 nic->num_sqs_en = nic_num_sqs_en(nic, nic->num_vf_en);
1277 vf_en += nic->num_sqs_en;
1278
1279 err = pci_enable_sriov(pdev, vf_en);
1280 if (err) {
1281 dev_err(&pdev->dev, "SRIOV enable failed, num VF is %d\n",
1282 vf_en);
1283 nic->num_vf_en = 0;
1284 return err;
1285 }
1286
1287 dev_info(&pdev->dev, "SRIOV enabled, number of VF available %d\n",
1288 vf_en);
1289
1290 nic->flags |= NIC_SRIOV_ENABLED;
1291 return 0;
1292}
1293
1294static int nic_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1295{
1296 struct device *dev = &pdev->dev;
1297 struct nicpf *nic;
1298 u8 max_lmac;
1299 int err;
1300
1301 BUILD_BUG_ON(sizeof(union nic_mbx) > 16);
1302
1303 nic = devm_kzalloc(dev, sizeof(*nic), GFP_KERNEL);
1304 if (!nic)
1305 return -ENOMEM;
1306
1307 nic->hw = devm_kzalloc(dev, sizeof(struct hw_info), GFP_KERNEL);
1308 if (!nic->hw)
1309 return -ENOMEM;
1310
1311 pci_set_drvdata(pdev, nic);
1312
1313 nic->pdev = pdev;
1314
1315 err = pci_enable_device(pdev);
1316 if (err) {
1317 dev_err(dev, "Failed to enable PCI device\n");
1318 pci_set_drvdata(pdev, NULL);
1319 return err;
1320 }
1321
1322 err = pci_request_regions(pdev, DRV_NAME);
1323 if (err) {
1324 dev_err(dev, "PCI request regions failed 0x%x\n", err);
1325 goto err_disable_device;
1326 }
1327
1328 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(48));
1329 if (err) {
1330 dev_err(dev, "Unable to get usable DMA configuration\n");
1331 goto err_release_regions;
1332 }
1333
1334 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(48));
1335 if (err) {
1336 dev_err(dev, "Unable to get 48-bit DMA for consistent allocations\n");
1337 goto err_release_regions;
1338 }
1339
1340
1341 nic->reg_base = pcim_iomap(pdev, PCI_CFG_REG_BAR_NUM, 0);
1342 if (!nic->reg_base) {
1343 dev_err(dev, "Cannot map config register space, aborting\n");
1344 err = -ENOMEM;
1345 goto err_release_regions;
1346 }
1347
1348 nic->node = nic_get_node_id(pdev);
1349
1350
1351 nic_get_hw_info(nic);
1352
1353
1354 err = -ENOMEM;
1355 max_lmac = nic->hw->bgx_cnt * MAX_LMAC_PER_BGX;
1356
1357 nic->vf_lmac_map = devm_kmalloc_array(dev, max_lmac, sizeof(u8),
1358 GFP_KERNEL);
1359 if (!nic->vf_lmac_map)
1360 goto err_release_regions;
1361
1362
1363 nic_init_hw(nic);
1364
1365 nic_set_lmac_vf_mapping(nic);
1366
1367
1368 err = nic_register_interrupts(nic);
1369 if (err)
1370 goto err_release_regions;
1371
1372
1373 err = nic_sriov_init(pdev, nic);
1374 if (err)
1375 goto err_unregister_interrupts;
1376
1377 return 0;
1378
1379err_unregister_interrupts:
1380 nic_unregister_interrupts(nic);
1381err_release_regions:
1382 pci_release_regions(pdev);
1383err_disable_device:
1384 pci_disable_device(pdev);
1385 pci_set_drvdata(pdev, NULL);
1386 return err;
1387}
1388
1389static void nic_remove(struct pci_dev *pdev)
1390{
1391 struct nicpf *nic = pci_get_drvdata(pdev);
1392
1393 if (nic->flags & NIC_SRIOV_ENABLED)
1394 pci_disable_sriov(pdev);
1395
1396 nic_unregister_interrupts(nic);
1397 pci_release_regions(pdev);
1398
1399 pci_disable_device(pdev);
1400 pci_set_drvdata(pdev, NULL);
1401}
1402
1403static struct pci_driver nic_driver = {
1404 .name = DRV_NAME,
1405 .id_table = nic_id_table,
1406 .probe = nic_probe,
1407 .remove = nic_remove,
1408};
1409
1410static int __init nic_init_module(void)
1411{
1412 pr_info("%s, ver %s\n", DRV_NAME, DRV_VERSION);
1413
1414 return pci_register_driver(&nic_driver);
1415}
1416
1417static void __exit nic_cleanup_module(void)
1418{
1419 pci_unregister_driver(&nic_driver);
1420}
1421
1422module_init(nic_init_module);
1423module_exit(nic_cleanup_module);
1424