4e25b1e72edce2d4e7df4c1bac009d9782b44419
[dpdk.git] / drivers / net / ixgbe / ixgbe_pf.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2016 Intel Corporation
3  */
4
5 #include <stdio.h>
6 #include <errno.h>
7 #include <stdint.h>
8 #include <stdlib.h>
9 #include <unistd.h>
10 #include <stdarg.h>
11 #include <inttypes.h>
12
13 #include <rte_interrupts.h>
14 #include <rte_log.h>
15 #include <rte_debug.h>
16 #include <rte_eal.h>
17 #include <rte_ether.h>
18 #include <rte_ethdev_driver.h>
19 #include <rte_memcpy.h>
20 #include <rte_malloc.h>
21 #include <rte_random.h>
22
23 #include "base/ixgbe_common.h"
24 #include "ixgbe_ethdev.h"
25 #include "rte_pmd_ixgbe.h"
26
27 #define IXGBE_MAX_VFTA     (128)
28 #define IXGBE_VF_MSG_SIZE_DEFAULT 1
29 #define IXGBE_VF_GET_QUEUE_MSG_SIZE 5
30 #define IXGBE_ETHERTYPE_FLOW_CTRL 0x8808
31
32 static inline uint16_t
33 dev_num_vf(struct rte_eth_dev *eth_dev)
34 {
35         struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(eth_dev);
36
37         return pci_dev->max_vfs;
38 }
39
40 static inline
41 int ixgbe_vf_perm_addr_gen(struct rte_eth_dev *dev, uint16_t vf_num)
42 {
43         unsigned char vf_mac_addr[RTE_ETHER_ADDR_LEN];
44         struct ixgbe_vf_info *vfinfo =
45                 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
46         uint16_t vfn;
47
48         for (vfn = 0; vfn < vf_num; vfn++) {
49                 rte_eth_random_addr(vf_mac_addr);
50                 /* keep the random address as default */
51                 memcpy(vfinfo[vfn].vf_mac_addresses, vf_mac_addr,
52                            RTE_ETHER_ADDR_LEN);
53         }
54
55         return 0;
56 }
57
58 static inline int
59 ixgbe_mb_intr_setup(struct rte_eth_dev *dev)
60 {
61         struct ixgbe_interrupt *intr =
62                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
63
64         intr->mask |= IXGBE_EICR_MAILBOX;
65
66         return 0;
67 }
68
69 int ixgbe_pf_host_init(struct rte_eth_dev *eth_dev)
70 {
71         struct ixgbe_vf_info **vfinfo =
72                 IXGBE_DEV_PRIVATE_TO_P_VFDATA(eth_dev->data->dev_private);
73         struct ixgbe_mirror_info *mirror_info =
74         IXGBE_DEV_PRIVATE_TO_PFDATA(eth_dev->data->dev_private);
75         struct ixgbe_uta_info *uta_info =
76         IXGBE_DEV_PRIVATE_TO_UTA(eth_dev->data->dev_private);
77         struct ixgbe_hw *hw =
78                 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
79         uint16_t vf_num;
80         uint8_t nb_queue;
81         int ret = 0;
82
83         PMD_INIT_FUNC_TRACE();
84
85         RTE_ETH_DEV_SRIOV(eth_dev).active = 0;
86         vf_num = dev_num_vf(eth_dev);
87         if (vf_num == 0)
88                 return ret;
89
90         *vfinfo = rte_zmalloc("vf_info", sizeof(struct ixgbe_vf_info) * vf_num, 0);
91         if (*vfinfo == NULL)
92                 rte_panic("Cannot allocate memory for private VF data\n");
93
94         ret = rte_eth_switch_domain_alloc(&(*vfinfo)->switch_domain_id);
95         if (ret) {
96                 PMD_INIT_LOG(ERR,
97                         "failed to allocate switch domain for device %d", ret);
98                 rte_free(*vfinfo);
99                 *vfinfo = NULL;
100                 return ret;
101         }
102
103         memset(mirror_info, 0, sizeof(struct ixgbe_mirror_info));
104         memset(uta_info, 0, sizeof(struct ixgbe_uta_info));
105         hw->mac.mc_filter_type = 0;
106
107         if (vf_num >= ETH_32_POOLS) {
108                 nb_queue = 2;
109                 RTE_ETH_DEV_SRIOV(eth_dev).active = ETH_64_POOLS;
110         } else if (vf_num >= ETH_16_POOLS) {
111                 nb_queue = 4;
112                 RTE_ETH_DEV_SRIOV(eth_dev).active = ETH_32_POOLS;
113         } else {
114                 nb_queue = 8;
115                 RTE_ETH_DEV_SRIOV(eth_dev).active = ETH_16_POOLS;
116         }
117
118         RTE_ETH_DEV_SRIOV(eth_dev).nb_q_per_pool = nb_queue;
119         RTE_ETH_DEV_SRIOV(eth_dev).def_vmdq_idx = vf_num;
120         RTE_ETH_DEV_SRIOV(eth_dev).def_pool_q_idx = (uint16_t)(vf_num * nb_queue);
121
122         ixgbe_vf_perm_addr_gen(eth_dev, vf_num);
123
124         /* init_mailbox_params */
125         hw->mbx.ops.init_params(hw);
126
127         /* set mb interrupt mask */
128         ixgbe_mb_intr_setup(eth_dev);
129
130         return ret;
131 }
132
133 void ixgbe_pf_host_uninit(struct rte_eth_dev *eth_dev)
134 {
135         struct ixgbe_vf_info **vfinfo;
136         uint16_t vf_num;
137         int ret;
138
139         PMD_INIT_FUNC_TRACE();
140
141         RTE_ETH_DEV_SRIOV(eth_dev).active = 0;
142         RTE_ETH_DEV_SRIOV(eth_dev).nb_q_per_pool = 0;
143         RTE_ETH_DEV_SRIOV(eth_dev).def_vmdq_idx = 0;
144         RTE_ETH_DEV_SRIOV(eth_dev).def_pool_q_idx = 0;
145
146         vf_num = dev_num_vf(eth_dev);
147         if (vf_num == 0)
148                 return;
149
150         vfinfo = IXGBE_DEV_PRIVATE_TO_P_VFDATA(eth_dev->data->dev_private);
151         if (*vfinfo == NULL)
152                 return;
153
154         ret = rte_eth_switch_domain_free((*vfinfo)->switch_domain_id);
155         if (ret)
156                 PMD_INIT_LOG(WARNING, "failed to free switch domain: %d", ret);
157
158         rte_free(*vfinfo);
159         *vfinfo = NULL;
160 }
161
162 static void
163 ixgbe_add_tx_flow_control_drop_filter(struct rte_eth_dev *eth_dev)
164 {
165         struct ixgbe_hw *hw =
166                 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
167         struct ixgbe_filter_info *filter_info =
168                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
169         uint16_t vf_num;
170         int i;
171         struct ixgbe_ethertype_filter ethertype_filter;
172
173         if (!hw->mac.ops.set_ethertype_anti_spoofing) {
174                 PMD_DRV_LOG(INFO, "ether type anti-spoofing is not supported.\n");
175                 return;
176         }
177
178         i = ixgbe_ethertype_filter_lookup(filter_info,
179                                           IXGBE_ETHERTYPE_FLOW_CTRL);
180         if (i >= 0) {
181                 PMD_DRV_LOG(ERR, "A ether type filter entity for flow control already exists!\n");
182                 return;
183         }
184
185         ethertype_filter.ethertype = IXGBE_ETHERTYPE_FLOW_CTRL;
186         ethertype_filter.etqf = IXGBE_ETQF_FILTER_EN |
187                                 IXGBE_ETQF_TX_ANTISPOOF |
188                                 IXGBE_ETHERTYPE_FLOW_CTRL;
189         ethertype_filter.etqs = 0;
190         ethertype_filter.conf = TRUE;
191         i = ixgbe_ethertype_filter_insert(filter_info,
192                                           &ethertype_filter);
193         if (i < 0) {
194                 PMD_DRV_LOG(ERR, "Cannot find an unused ether type filter entity for flow control.\n");
195                 return;
196         }
197
198         IXGBE_WRITE_REG(hw, IXGBE_ETQF(i),
199                         (IXGBE_ETQF_FILTER_EN |
200                         IXGBE_ETQF_TX_ANTISPOOF |
201                         IXGBE_ETHERTYPE_FLOW_CTRL));
202
203         vf_num = dev_num_vf(eth_dev);
204         for (i = 0; i < vf_num; i++)
205                 hw->mac.ops.set_ethertype_anti_spoofing(hw, true, i);
206 }
207
208 int ixgbe_pf_host_configure(struct rte_eth_dev *eth_dev)
209 {
210         uint32_t vtctl, fcrth;
211         uint32_t vfre_slot, vfre_offset;
212         uint16_t vf_num;
213         const uint8_t VFRE_SHIFT = 5;  /* VFRE 32 bits per slot */
214         const uint8_t VFRE_MASK = (uint8_t)((1U << VFRE_SHIFT) - 1);
215         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
216         uint32_t gpie, gcr_ext;
217         uint32_t vlanctrl;
218         int i;
219
220         vf_num = dev_num_vf(eth_dev);
221         if (vf_num == 0)
222                 return -1;
223
224         /* enable VMDq and set the default pool for PF */
225         vtctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
226         vtctl |= IXGBE_VMD_CTL_VMDQ_EN;
227         vtctl &= ~IXGBE_VT_CTL_POOL_MASK;
228         vtctl |= RTE_ETH_DEV_SRIOV(eth_dev).def_vmdq_idx
229                 << IXGBE_VT_CTL_POOL_SHIFT;
230         vtctl |= IXGBE_VT_CTL_REPLEN;
231         IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vtctl);
232
233         vfre_offset = vf_num & VFRE_MASK;
234         vfre_slot = (vf_num >> VFRE_SHIFT) > 0 ? 1 : 0;
235
236         /* Enable pools reserved to PF only */
237         IXGBE_WRITE_REG(hw, IXGBE_VFRE(vfre_slot), (~0U) << vfre_offset);
238         IXGBE_WRITE_REG(hw, IXGBE_VFRE(vfre_slot ^ 1), vfre_slot - 1);
239         IXGBE_WRITE_REG(hw, IXGBE_VFTE(vfre_slot), (~0U) << vfre_offset);
240         IXGBE_WRITE_REG(hw, IXGBE_VFTE(vfre_slot ^ 1), vfre_slot - 1);
241
242         /* PFDMA Tx General Switch Control Enables VMDQ loopback */
243         IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
244
245         /* clear VMDq map to perment rar 0 */
246         hw->mac.ops.clear_vmdq(hw, 0, IXGBE_CLEAR_VMDQ_ALL);
247
248         /* clear VMDq map to scan rar 127 */
249         IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(hw->mac.num_rar_entries), 0);
250         IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(hw->mac.num_rar_entries), 0);
251
252         /* set VMDq map to default PF pool */
253         hw->mac.ops.set_vmdq(hw, 0, RTE_ETH_DEV_SRIOV(eth_dev).def_vmdq_idx);
254
255         /*
256          * SW msut set GCR_EXT.VT_Mode the same as GPIE.VT_Mode
257          */
258         gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
259         gcr_ext &= ~IXGBE_GCR_EXT_VT_MODE_MASK;
260
261         gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
262         gpie &= ~IXGBE_GPIE_VTMODE_MASK;
263         gpie |= IXGBE_GPIE_MSIX_MODE | IXGBE_GPIE_PBA_SUPPORT;
264
265         switch (RTE_ETH_DEV_SRIOV(eth_dev).active) {
266         case ETH_64_POOLS:
267                 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_64;
268                 gpie |= IXGBE_GPIE_VTMODE_64;
269                 break;
270         case ETH_32_POOLS:
271                 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_32;
272                 gpie |= IXGBE_GPIE_VTMODE_32;
273                 break;
274         case ETH_16_POOLS:
275                 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_16;
276                 gpie |= IXGBE_GPIE_VTMODE_16;
277                 break;
278         }
279
280         IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
281         IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
282
283         /*
284          * enable vlan filtering and allow all vlan tags through
285          */
286         vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
287         vlanctrl |= IXGBE_VLNCTRL_VFE; /* enable vlan filters */
288         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
289
290         /* VFTA - enable all vlan filters */
291         for (i = 0; i < IXGBE_MAX_VFTA; i++)
292                 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), 0xFFFFFFFF);
293
294         /* Enable MAC Anti-Spoofing */
295         hw->mac.ops.set_mac_anti_spoofing(hw, FALSE, vf_num);
296
297         /* set flow control threshold to max to avoid tx switch hang */
298         for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
299                 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), 0);
300                 fcrth = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i)) - 32;
301                 IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(i), fcrth);
302         }
303
304         ixgbe_add_tx_flow_control_drop_filter(eth_dev);
305
306         return 0;
307 }
308
309 static void
310 set_rx_mode(struct rte_eth_dev *dev)
311 {
312         struct rte_eth_dev_data *dev_data = dev->data;
313         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
314         u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
315         uint16_t vfn = dev_num_vf(dev);
316
317         /* Check for Promiscuous and All Multicast modes */
318         fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
319
320         /* set all bits that we expect to always be set */
321         fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */
322         fctrl |= IXGBE_FCTRL_BAM;
323
324         /* clear the bits we are changing the status of */
325         fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
326
327         if (dev_data->promiscuous) {
328                 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
329                 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
330         } else {
331                 if (dev_data->all_multicast) {
332                         fctrl |= IXGBE_FCTRL_MPE;
333                         vmolr |= IXGBE_VMOLR_MPE;
334                 } else {
335                         vmolr |= IXGBE_VMOLR_ROMPE;
336                 }
337         }
338
339         if (hw->mac.type != ixgbe_mac_82598EB) {
340                 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(vfn)) &
341                          ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
342                            IXGBE_VMOLR_ROPE);
343                 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vfn), vmolr);
344         }
345
346         IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
347
348         ixgbe_vlan_hw_strip_config(dev);
349 }
350
351 static inline void
352 ixgbe_vf_reset_event(struct rte_eth_dev *dev, uint16_t vf)
353 {
354         struct ixgbe_hw *hw =
355                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
356         struct ixgbe_vf_info *vfinfo =
357                 *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
358         int rar_entry = hw->mac.num_rar_entries - (vf + 1);
359         uint32_t vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
360
361         vmolr |= (IXGBE_VMOLR_ROPE |
362                         IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE);
363         IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
364
365         IXGBE_WRITE_REG(hw, IXGBE_VMVIR(vf), 0);
366
367         /* reset multicast table array for vf */
368         vfinfo[vf].num_vf_mc_hashes = 0;
369
370         /* reset rx mode */
371         set_rx_mode(dev);
372
373         hw->mac.ops.clear_rar(hw, rar_entry);
374 }
375
376 static inline void
377 ixgbe_vf_reset_msg(struct rte_eth_dev *dev, uint16_t vf)
378 {
379         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
380         uint32_t reg;
381         uint32_t reg_offset, vf_shift;
382         const uint8_t VFRE_SHIFT = 5;  /* VFRE 32 bits per slot */
383         const uint8_t VFRE_MASK = (uint8_t)((1U << VFRE_SHIFT) - 1);
384         uint8_t  nb_q_per_pool;
385         int i;
386
387         vf_shift = vf & VFRE_MASK;
388         reg_offset = (vf >> VFRE_SHIFT) > 0 ? 1 : 0;
389
390         /* enable transmit for vf */
391         reg = IXGBE_READ_REG(hw, IXGBE_VFTE(reg_offset));
392         reg |= (reg | (1 << vf_shift));
393         IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), reg);
394
395         /* enable all queue drop for IOV */
396         nb_q_per_pool = RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
397         for (i = vf * nb_q_per_pool; i < (vf + 1) * nb_q_per_pool; i++) {
398                 IXGBE_WRITE_FLUSH(hw);
399                 reg = IXGBE_QDE_ENABLE | IXGBE_QDE_WRITE;
400                 reg |= i << IXGBE_QDE_IDX_SHIFT;
401                 IXGBE_WRITE_REG(hw, IXGBE_QDE, reg);
402         }
403
404         /* enable receive for vf */
405         reg = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
406         reg |= (reg | (1 << vf_shift));
407         IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), reg);
408
409         /* Enable counting of spoofed packets in the SSVPC register */
410         reg = IXGBE_READ_REG(hw, IXGBE_VMECM(reg_offset));
411         reg |= (1 << vf_shift);
412         IXGBE_WRITE_REG(hw, IXGBE_VMECM(reg_offset), reg);
413
414         ixgbe_vf_reset_event(dev, vf);
415 }
416
417 static int
418 ixgbe_disable_vf_mc_promisc(struct rte_eth_dev *dev, uint32_t vf)
419 {
420         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
421         uint32_t vmolr;
422
423         vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
424
425         PMD_DRV_LOG(INFO, "VF %u: disabling multicast promiscuous\n", vf);
426
427         vmolr &= ~IXGBE_VMOLR_MPE;
428
429         IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
430
431         return 0;
432 }
433
434 static int
435 ixgbe_vf_reset(struct rte_eth_dev *dev, uint16_t vf, uint32_t *msgbuf)
436 {
437         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
438         struct ixgbe_vf_info *vfinfo =
439                 *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
440         unsigned char *vf_mac = vfinfo[vf].vf_mac_addresses;
441         int rar_entry = hw->mac.num_rar_entries - (vf + 1);
442         uint8_t *new_mac = (uint8_t *)(&msgbuf[1]);
443
444         ixgbe_vf_reset_msg(dev, vf);
445
446         hw->mac.ops.set_rar(hw, rar_entry, vf_mac, vf, IXGBE_RAH_AV);
447
448         /* Disable multicast promiscuous at reset */
449         ixgbe_disable_vf_mc_promisc(dev, vf);
450
451         /* reply to reset with ack and vf mac address */
452         msgbuf[0] = IXGBE_VF_RESET | IXGBE_VT_MSGTYPE_ACK;
453         rte_memcpy(new_mac, vf_mac, RTE_ETHER_ADDR_LEN);
454         /*
455          * Piggyback the multicast filter type so VF can compute the
456          * correct vectors
457          */
458         msgbuf[3] = hw->mac.mc_filter_type;
459         ixgbe_write_mbx(hw, msgbuf, IXGBE_VF_PERMADDR_MSG_LEN, vf);
460
461         return 0;
462 }
463
464 static int
465 ixgbe_vf_set_mac_addr(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
466 {
467         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
468         struct ixgbe_vf_info *vfinfo =
469                 *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
470         int rar_entry = hw->mac.num_rar_entries - (vf + 1);
471         uint8_t *new_mac = (uint8_t *)(&msgbuf[1]);
472
473         if (rte_is_valid_assigned_ether_addr(
474                         (struct rte_ether_addr *)new_mac)) {
475                 rte_memcpy(vfinfo[vf].vf_mac_addresses, new_mac, 6);
476                 return hw->mac.ops.set_rar(hw, rar_entry, new_mac, vf, IXGBE_RAH_AV);
477         }
478         return -1;
479 }
480
481 static int
482 ixgbe_vf_set_multicast(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
483 {
484         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
485         struct ixgbe_vf_info *vfinfo =
486                 *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
487         int nb_entries = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >>
488                 IXGBE_VT_MSGINFO_SHIFT;
489         uint16_t *hash_list = (uint16_t *)&msgbuf[1];
490         uint32_t mta_idx;
491         uint32_t mta_shift;
492         const uint32_t IXGBE_MTA_INDEX_MASK = 0x7F;
493         const uint32_t IXGBE_MTA_BIT_SHIFT = 5;
494         const uint32_t IXGBE_MTA_BIT_MASK = (0x1 << IXGBE_MTA_BIT_SHIFT) - 1;
495         uint32_t reg_val;
496         int i;
497         u32 vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
498
499         /* Disable multicast promiscuous first */
500         ixgbe_disable_vf_mc_promisc(dev, vf);
501
502         /* only so many hash values supported */
503         nb_entries = RTE_MIN(nb_entries, IXGBE_MAX_VF_MC_ENTRIES);
504
505         /* store the mc entries  */
506         vfinfo->num_vf_mc_hashes = (uint16_t)nb_entries;
507         for (i = 0; i < nb_entries; i++) {
508                 vfinfo->vf_mc_hashes[i] = hash_list[i];
509         }
510
511         if (nb_entries == 0) {
512                 vmolr &= ~IXGBE_VMOLR_ROMPE;
513                 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
514                 return 0;
515         }
516
517         for (i = 0; i < vfinfo->num_vf_mc_hashes; i++) {
518                 mta_idx = (vfinfo->vf_mc_hashes[i] >> IXGBE_MTA_BIT_SHIFT)
519                                 & IXGBE_MTA_INDEX_MASK;
520                 mta_shift = vfinfo->vf_mc_hashes[i] & IXGBE_MTA_BIT_MASK;
521                 reg_val = IXGBE_READ_REG(hw, IXGBE_MTA(mta_idx));
522                 reg_val |= (1 << mta_shift);
523                 IXGBE_WRITE_REG(hw, IXGBE_MTA(mta_idx), reg_val);
524         }
525
526         vmolr |= IXGBE_VMOLR_ROMPE;
527         IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
528
529         return 0;
530 }
531
532 static int
533 ixgbe_vf_set_vlan(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
534 {
535         int add, vid;
536         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
537         struct ixgbe_vf_info *vfinfo =
538                 *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
539
540         add = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK)
541                 >> IXGBE_VT_MSGINFO_SHIFT;
542         vid = (msgbuf[1] & IXGBE_VLVF_VLANID_MASK);
543
544         if (add)
545                 vfinfo[vf].vlan_count++;
546         else if (vfinfo[vf].vlan_count)
547                 vfinfo[vf].vlan_count--;
548         return hw->mac.ops.set_vfta(hw, vid, vf, (bool)add, false);
549 }
550
551 static int
552 ixgbe_set_vf_lpe(struct rte_eth_dev *dev, __rte_unused uint32_t vf, uint32_t *msgbuf)
553 {
554         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
555         uint32_t new_mtu = msgbuf[1];
556         uint32_t max_frs;
557         uint32_t hlreg0;
558         int max_frame = new_mtu + RTE_ETHER_HDR_LEN + RTE_ETHER_CRC_LEN;
559
560         /* X540 and X550 support jumbo frames in IOV mode */
561         if (hw->mac.type != ixgbe_mac_X540 &&
562                 hw->mac.type != ixgbe_mac_X550 &&
563                 hw->mac.type != ixgbe_mac_X550EM_x &&
564                 hw->mac.type != ixgbe_mac_X550EM_a)
565                 return -1;
566
567         if (max_frame < RTE_ETHER_MIN_LEN ||
568                         max_frame > RTE_ETHER_MAX_JUMBO_FRAME_LEN)
569                 return -1;
570
571         max_frs = (IXGBE_READ_REG(hw, IXGBE_MAXFRS) &
572                    IXGBE_MHADD_MFS_MASK) >> IXGBE_MHADD_MFS_SHIFT;
573         if (max_frs < new_mtu) {
574                 hlreg0 = IXGBE_READ_REG(hw, IXGBE_HLREG0);
575                 if (new_mtu > RTE_ETHER_MAX_LEN) {
576                         dev->data->dev_conf.rxmode.offloads |=
577                                 DEV_RX_OFFLOAD_JUMBO_FRAME;
578                         hlreg0 |= IXGBE_HLREG0_JUMBOEN;
579                 } else {
580                         dev->data->dev_conf.rxmode.offloads &=
581                                 ~DEV_RX_OFFLOAD_JUMBO_FRAME;
582                         hlreg0 &= ~IXGBE_HLREG0_JUMBOEN;
583                 }
584                 IXGBE_WRITE_REG(hw, IXGBE_HLREG0, hlreg0);
585
586                 max_frs = new_mtu << IXGBE_MHADD_MFS_SHIFT;
587                 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, max_frs);
588         }
589
590         return 0;
591 }
592
593 static int
594 ixgbe_negotiate_vf_api(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
595 {
596         uint32_t api_version = msgbuf[1];
597         struct ixgbe_vf_info *vfinfo =
598                 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
599
600         switch (api_version) {
601         case ixgbe_mbox_api_10:
602         case ixgbe_mbox_api_11:
603         case ixgbe_mbox_api_12:
604         case ixgbe_mbox_api_13:
605                 vfinfo[vf].api_version = (uint8_t)api_version;
606                 return 0;
607         default:
608                 break;
609         }
610
611         PMD_DRV_LOG(ERR, "Negotiate invalid api version %u from VF %d\n",
612                 api_version, vf);
613
614         return -1;
615 }
616
617 static int
618 ixgbe_get_vf_queues(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
619 {
620         struct ixgbe_vf_info *vfinfo =
621                 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
622         uint32_t default_q = vf * RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
623         struct rte_eth_conf *eth_conf;
624         struct rte_eth_vmdq_dcb_tx_conf *vmdq_dcb_tx_conf;
625         u8 num_tcs;
626         struct ixgbe_hw *hw;
627         u32 vmvir;
628 #define IXGBE_VMVIR_VLANA_MASK          0xC0000000
629 #define IXGBE_VMVIR_VLAN_VID_MASK       0x00000FFF
630 #define IXGBE_VMVIR_VLAN_UP_MASK        0x0000E000
631 #define VLAN_PRIO_SHIFT                 13
632         u32 vlana;
633         u32 vid;
634         u32 user_priority;
635
636         /* Verify if the PF supports the mbox APIs version or not */
637         switch (vfinfo[vf].api_version) {
638         case ixgbe_mbox_api_20:
639         case ixgbe_mbox_api_11:
640         case ixgbe_mbox_api_12:
641         case ixgbe_mbox_api_13:
642                 break;
643         default:
644                 return -1;
645         }
646
647         /* Notify VF of Rx and Tx queue number */
648         msgbuf[IXGBE_VF_RX_QUEUES] = RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
649         msgbuf[IXGBE_VF_TX_QUEUES] = RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
650
651         /* Notify VF of default queue */
652         msgbuf[IXGBE_VF_DEF_QUEUE] = default_q;
653
654         /* Notify VF of number of DCB traffic classes */
655         eth_conf = &dev->data->dev_conf;
656         switch (eth_conf->txmode.mq_mode) {
657         case ETH_MQ_TX_NONE:
658         case ETH_MQ_TX_DCB:
659                 PMD_DRV_LOG(ERR, "PF must work with virtualization for VF %u"
660                         ", but its tx mode = %d\n", vf,
661                         eth_conf->txmode.mq_mode);
662                 return -1;
663
664         case ETH_MQ_TX_VMDQ_DCB:
665                 vmdq_dcb_tx_conf = &eth_conf->tx_adv_conf.vmdq_dcb_tx_conf;
666                 switch (vmdq_dcb_tx_conf->nb_queue_pools) {
667                 case ETH_16_POOLS:
668                         num_tcs = ETH_8_TCS;
669                         break;
670                 case ETH_32_POOLS:
671                         num_tcs = ETH_4_TCS;
672                         break;
673                 default:
674                         return -1;
675                 }
676                 break;
677
678         /* ETH_MQ_TX_VMDQ_ONLY,  DCB not enabled */
679         case ETH_MQ_TX_VMDQ_ONLY:
680                 hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
681                 vmvir = IXGBE_READ_REG(hw, IXGBE_VMVIR(vf));
682                 vlana = vmvir & IXGBE_VMVIR_VLANA_MASK;
683                 vid = vmvir & IXGBE_VMVIR_VLAN_VID_MASK;
684                 user_priority =
685                         (vmvir & IXGBE_VMVIR_VLAN_UP_MASK) >> VLAN_PRIO_SHIFT;
686                 if ((vlana == IXGBE_VMVIR_VLANA_DEFAULT) &&
687                         ((vid !=  0) || (user_priority != 0)))
688                         num_tcs = 1;
689                 else
690                         num_tcs = 0;
691                 break;
692
693         default:
694                 PMD_DRV_LOG(ERR, "PF work with invalid mode = %d\n",
695                         eth_conf->txmode.mq_mode);
696                 return -1;
697         }
698         msgbuf[IXGBE_VF_TRANS_VLAN] = num_tcs;
699
700         return 0;
701 }
702
703 static int
704 ixgbe_set_vf_mc_promisc(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
705 {
706         struct ixgbe_vf_info *vfinfo =
707                 *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
708         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
709         int xcast_mode = msgbuf[1];     /* msgbuf contains the flag to enable */
710         u32 vmolr, fctrl, disable, enable;
711
712         switch (vfinfo[vf].api_version) {
713         case ixgbe_mbox_api_12:
714                 /* promisc introduced in 1.3 version */
715                 if (xcast_mode == IXGBEVF_XCAST_MODE_PROMISC)
716                         return -EOPNOTSUPP;
717                 break;
718                 /* Fall threw */
719         case ixgbe_mbox_api_13:
720                 break;
721         default:
722                 return -1;
723         }
724
725         if (vfinfo[vf].xcast_mode == xcast_mode)
726                 goto out;
727
728         switch (xcast_mode) {
729         case IXGBEVF_XCAST_MODE_NONE:
730                 disable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE |
731                           IXGBE_VMOLR_MPE | IXGBE_VMOLR_UPE | IXGBE_VMOLR_VPE;
732                 enable = 0;
733                 break;
734         case IXGBEVF_XCAST_MODE_MULTI:
735                 disable = IXGBE_VMOLR_MPE | IXGBE_VMOLR_UPE | IXGBE_VMOLR_VPE;
736                 enable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE;
737                 break;
738         case IXGBEVF_XCAST_MODE_ALLMULTI:
739                 disable = IXGBE_VMOLR_UPE | IXGBE_VMOLR_VPE;
740                 enable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE | IXGBE_VMOLR_MPE;
741                 break;
742         case IXGBEVF_XCAST_MODE_PROMISC:
743                 if (hw->mac.type <= ixgbe_mac_82599EB)
744                         return -1;
745
746                 fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
747                 if (!(fctrl & IXGBE_FCTRL_UPE)) {
748                         /* VF promisc requires PF in promisc */
749                         PMD_DRV_LOG(ERR,
750                                "Enabling VF promisc requires PF in promisc\n");
751                         return -1;
752                 }
753
754                 disable = 0;
755                 enable = IXGBE_VMOLR_BAM | IXGBE_VMOLR_ROMPE |
756                          IXGBE_VMOLR_MPE | IXGBE_VMOLR_UPE | IXGBE_VMOLR_VPE;
757                 break;
758         default:
759                 return -1;
760         }
761
762         vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
763         vmolr &= ~disable;
764         vmolr |= enable;
765         IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
766         vfinfo[vf].xcast_mode = xcast_mode;
767
768 out:
769         msgbuf[1] = xcast_mode;
770
771         return 0;
772 }
773
774 static int
775 ixgbe_set_vf_macvlan_msg(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
776 {
777         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
778         struct ixgbe_vf_info *vf_info =
779                 *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
780         uint8_t *new_mac = (uint8_t *)(&msgbuf[1]);
781         int index = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >>
782                     IXGBE_VT_MSGINFO_SHIFT;
783
784         if (index) {
785                 if (!rte_is_valid_assigned_ether_addr(
786                         (struct rte_ether_addr *)new_mac)) {
787                         PMD_DRV_LOG(ERR, "set invalid mac vf:%d\n", vf);
788                         return -1;
789                 }
790
791                 vf_info[vf].mac_count++;
792
793                 hw->mac.ops.set_rar(hw, vf_info[vf].mac_count,
794                                 new_mac, vf, IXGBE_RAH_AV);
795         } else {
796                 if (vf_info[vf].mac_count) {
797                         hw->mac.ops.clear_rar(hw, vf_info[vf].mac_count);
798                         vf_info[vf].mac_count = 0;
799                 }
800         }
801         return 0;
802 }
803
804 static int
805 ixgbe_rcv_msg_from_vf(struct rte_eth_dev *dev, uint16_t vf)
806 {
807         uint16_t mbx_size = IXGBE_VFMAILBOX_SIZE;
808         uint16_t msg_size = IXGBE_VF_MSG_SIZE_DEFAULT;
809         uint32_t msgbuf[IXGBE_VFMAILBOX_SIZE];
810         int32_t retval;
811         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
812         struct ixgbe_vf_info *vfinfo =
813                 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
814         struct rte_pmd_ixgbe_mb_event_param ret_param;
815
816         retval = ixgbe_read_mbx(hw, msgbuf, mbx_size, vf);
817         if (retval) {
818                 PMD_DRV_LOG(ERR, "Error mbx recv msg from VF %d", vf);
819                 return retval;
820         }
821
822         /* do nothing with the message already been processed */
823         if (msgbuf[0] & (IXGBE_VT_MSGTYPE_ACK | IXGBE_VT_MSGTYPE_NACK))
824                 return retval;
825
826         /* flush the ack before we write any messages back */
827         IXGBE_WRITE_FLUSH(hw);
828
829         /**
830          * initialise structure to send to user application
831          * will return response from user in retval field
832          */
833         ret_param.retval = RTE_PMD_IXGBE_MB_EVENT_PROCEED;
834         ret_param.vfid = vf;
835         ret_param.msg_type = msgbuf[0] & 0xFFFF;
836         ret_param.msg = (void *)msgbuf;
837
838         /* perform VF reset */
839         if (msgbuf[0] == IXGBE_VF_RESET) {
840                 int ret = ixgbe_vf_reset(dev, vf, msgbuf);
841
842                 vfinfo[vf].clear_to_send = true;
843
844                 /* notify application about VF reset */
845                 rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_VF_MBOX,
846                                               &ret_param);
847                 return ret;
848         }
849
850         /**
851          * ask user application if we allowed to perform those functions
852          * if we get ret_param.retval == RTE_PMD_IXGBE_MB_EVENT_PROCEED
853          * then business as usual,
854          * if 0, do nothing and send ACK to VF
855          * if ret_param.retval > 1, do nothing and send NAK to VF
856          */
857         rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_VF_MBOX, &ret_param);
858
859         retval = ret_param.retval;
860
861         /* check & process VF to PF mailbox message */
862         switch ((msgbuf[0] & 0xFFFF)) {
863         case IXGBE_VF_SET_MAC_ADDR:
864                 if (retval == RTE_PMD_IXGBE_MB_EVENT_PROCEED)
865                         retval = ixgbe_vf_set_mac_addr(dev, vf, msgbuf);
866                 break;
867         case IXGBE_VF_SET_MULTICAST:
868                 if (retval == RTE_PMD_IXGBE_MB_EVENT_PROCEED)
869                         retval = ixgbe_vf_set_multicast(dev, vf, msgbuf);
870                 break;
871         case IXGBE_VF_SET_LPE:
872                 if (retval == RTE_PMD_IXGBE_MB_EVENT_PROCEED)
873                         retval = ixgbe_set_vf_lpe(dev, vf, msgbuf);
874                 break;
875         case IXGBE_VF_SET_VLAN:
876                 if (retval == RTE_PMD_IXGBE_MB_EVENT_PROCEED)
877                         retval = ixgbe_vf_set_vlan(dev, vf, msgbuf);
878                 break;
879         case IXGBE_VF_API_NEGOTIATE:
880                 retval = ixgbe_negotiate_vf_api(dev, vf, msgbuf);
881                 break;
882         case IXGBE_VF_GET_QUEUES:
883                 retval = ixgbe_get_vf_queues(dev, vf, msgbuf);
884                 msg_size = IXGBE_VF_GET_QUEUE_MSG_SIZE;
885                 break;
886         case IXGBE_VF_UPDATE_XCAST_MODE:
887                 if (retval == RTE_PMD_IXGBE_MB_EVENT_PROCEED)
888                         retval = ixgbe_set_vf_mc_promisc(dev, vf, msgbuf);
889                 break;
890         case IXGBE_VF_SET_MACVLAN:
891                 if (retval == RTE_PMD_IXGBE_MB_EVENT_PROCEED)
892                         retval = ixgbe_set_vf_macvlan_msg(dev, vf, msgbuf);
893                 break;
894         default:
895                 PMD_DRV_LOG(DEBUG, "Unhandled Msg %8.8x", (unsigned)msgbuf[0]);
896                 retval = IXGBE_ERR_MBX;
897                 break;
898         }
899
900         /* response the VF according to the message process result */
901         if (retval)
902                 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
903         else
904                 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
905
906         msgbuf[0] |= IXGBE_VT_MSGTYPE_CTS;
907
908         ixgbe_write_mbx(hw, msgbuf, msg_size, vf);
909
910         return retval;
911 }
912
913 static inline void
914 ixgbe_rcv_ack_from_vf(struct rte_eth_dev *dev, uint16_t vf)
915 {
916         uint32_t msg = IXGBE_VT_MSGTYPE_NACK;
917         struct ixgbe_hw *hw =
918                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
919         struct ixgbe_vf_info *vfinfo =
920                 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
921
922         if (!vfinfo[vf].clear_to_send)
923                 ixgbe_write_mbx(hw, &msg, 1, vf);
924 }
925
926 void ixgbe_pf_mbx_process(struct rte_eth_dev *eth_dev)
927 {
928         uint16_t vf;
929         struct ixgbe_hw *hw =
930                 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
931
932         for (vf = 0; vf < dev_num_vf(eth_dev); vf++) {
933                 /* check & process vf function level reset */
934                 if (!ixgbe_check_for_rst(hw, vf))
935                         ixgbe_vf_reset_event(eth_dev, vf);
936
937                 /* check & process vf mailbox messages */
938                 if (!ixgbe_check_for_msg(hw, vf))
939                         ixgbe_rcv_msg_from_vf(eth_dev, vf);
940
941                 /* check & process acks from vf */
942                 if (!ixgbe_check_for_ack(hw, vf))
943                         ixgbe_rcv_ack_from_vf(eth_dev, vf);
944         }
945 }