Imported Upstream version 16.04
[deb_dpdk.git] / drivers / net / ixgbe / ixgbe_pf.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <stdio.h>
35 #include <errno.h>
36 #include <stdint.h>
37 #include <stdlib.h>
38 #include <unistd.h>
39 #include <stdarg.h>
40 #include <inttypes.h>
41
42 #include <rte_interrupts.h>
43 #include <rte_log.h>
44 #include <rte_debug.h>
45 #include <rte_eal.h>
46 #include <rte_ether.h>
47 #include <rte_ethdev.h>
48 #include <rte_memcpy.h>
49 #include <rte_malloc.h>
50 #include <rte_random.h>
51
52 #include "base/ixgbe_common.h"
53 #include "ixgbe_ethdev.h"
54
55 #define IXGBE_MAX_VFTA     (128)
56 #define IXGBE_VF_MSG_SIZE_DEFAULT 1
57 #define IXGBE_VF_GET_QUEUE_MSG_SIZE 5
58 #define IXGBE_ETHERTYPE_FLOW_CTRL 0x8808
59
60 static inline uint16_t
61 dev_num_vf(struct rte_eth_dev *eth_dev)
62 {
63         return eth_dev->pci_dev->max_vfs;
64 }
65
66 static inline
67 int ixgbe_vf_perm_addr_gen(struct rte_eth_dev *dev, uint16_t vf_num)
68 {
69         unsigned char vf_mac_addr[ETHER_ADDR_LEN];
70         struct ixgbe_vf_info *vfinfo =
71                 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
72         uint16_t vfn;
73
74         for (vfn = 0; vfn < vf_num; vfn++) {
75                 eth_random_addr(vf_mac_addr);
76                 /* keep the random address as default */
77                 memcpy(vfinfo[vfn].vf_mac_addresses, vf_mac_addr,
78                            ETHER_ADDR_LEN);
79         }
80
81         return 0;
82 }
83
84 static inline int
85 ixgbe_mb_intr_setup(struct rte_eth_dev *dev)
86 {
87         struct ixgbe_interrupt *intr =
88                 IXGBE_DEV_PRIVATE_TO_INTR(dev->data->dev_private);
89
90         intr->mask |= IXGBE_EICR_MAILBOX;
91
92         return 0;
93 }
94
95 void ixgbe_pf_host_init(struct rte_eth_dev *eth_dev)
96 {
97         struct ixgbe_vf_info **vfinfo =
98                 IXGBE_DEV_PRIVATE_TO_P_VFDATA(eth_dev->data->dev_private);
99         struct ixgbe_mirror_info *mirror_info =
100         IXGBE_DEV_PRIVATE_TO_PFDATA(eth_dev->data->dev_private);
101         struct ixgbe_uta_info *uta_info =
102         IXGBE_DEV_PRIVATE_TO_UTA(eth_dev->data->dev_private);
103         struct ixgbe_hw *hw =
104                 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
105         uint16_t vf_num;
106         uint8_t nb_queue;
107
108         PMD_INIT_FUNC_TRACE();
109
110         RTE_ETH_DEV_SRIOV(eth_dev).active = 0;
111         if (0 == (vf_num = dev_num_vf(eth_dev)))
112                 return;
113
114         *vfinfo = rte_zmalloc("vf_info", sizeof(struct ixgbe_vf_info) * vf_num, 0);
115         if (*vfinfo == NULL)
116                 rte_panic("Cannot allocate memory for private VF data\n");
117
118         memset(mirror_info,0,sizeof(struct ixgbe_mirror_info));
119         memset(uta_info,0,sizeof(struct ixgbe_uta_info));
120         hw->mac.mc_filter_type = 0;
121
122         if (vf_num >= ETH_32_POOLS) {
123                 nb_queue = 2;
124                 RTE_ETH_DEV_SRIOV(eth_dev).active = ETH_64_POOLS;
125         } else if (vf_num >= ETH_16_POOLS) {
126                 nb_queue = 4;
127                 RTE_ETH_DEV_SRIOV(eth_dev).active = ETH_32_POOLS;
128         } else {
129                 nb_queue = 8;
130                 RTE_ETH_DEV_SRIOV(eth_dev).active = ETH_16_POOLS;
131         }
132
133         RTE_ETH_DEV_SRIOV(eth_dev).nb_q_per_pool = nb_queue;
134         RTE_ETH_DEV_SRIOV(eth_dev).def_vmdq_idx = vf_num;
135         RTE_ETH_DEV_SRIOV(eth_dev).def_pool_q_idx = (uint16_t)(vf_num * nb_queue);
136
137         ixgbe_vf_perm_addr_gen(eth_dev, vf_num);
138
139         /* init_mailbox_params */
140         hw->mbx.ops.init_params(hw);
141
142         /* set mb interrupt mask */
143         ixgbe_mb_intr_setup(eth_dev);
144
145         return;
146 }
147
148 void ixgbe_pf_host_uninit(struct rte_eth_dev *eth_dev)
149 {
150         struct ixgbe_vf_info **vfinfo;
151         uint16_t vf_num;
152
153         PMD_INIT_FUNC_TRACE();
154
155         vfinfo = IXGBE_DEV_PRIVATE_TO_P_VFDATA(eth_dev->data->dev_private);
156
157         RTE_ETH_DEV_SRIOV(eth_dev).active = 0;
158         RTE_ETH_DEV_SRIOV(eth_dev).nb_q_per_pool = 0;
159         RTE_ETH_DEV_SRIOV(eth_dev).def_vmdq_idx = 0;
160         RTE_ETH_DEV_SRIOV(eth_dev).def_pool_q_idx = 0;
161
162         vf_num = dev_num_vf(eth_dev);
163         if (vf_num == 0)
164                 return;
165
166         rte_free(*vfinfo);
167         *vfinfo = NULL;
168 }
169
170 static void
171 ixgbe_add_tx_flow_control_drop_filter(struct rte_eth_dev *eth_dev)
172 {
173         struct ixgbe_hw *hw =
174                 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
175         struct ixgbe_filter_info *filter_info =
176                 IXGBE_DEV_PRIVATE_TO_FILTER_INFO(eth_dev->data->dev_private);
177         uint16_t vf_num;
178         int i;
179
180         if (!hw->mac.ops.set_ethertype_anti_spoofing) {
181                 RTE_LOG(INFO, PMD, "ether type anti-spoofing is not"
182                         " supported.\n");
183                 return;
184         }
185
186         /* occupy an entity of ether type filter */
187         for (i = 0; i < IXGBE_MAX_ETQF_FILTERS; i++) {
188                 if (!(filter_info->ethertype_mask & (1 << i))) {
189                         filter_info->ethertype_mask |= 1 << i;
190                         filter_info->ethertype_filters[i] =
191                                 IXGBE_ETHERTYPE_FLOW_CTRL;
192                         break;
193                 }
194         }
195         if (i == IXGBE_MAX_ETQF_FILTERS) {
196                 RTE_LOG(ERR, PMD, "Cannot find an unused ether type filter"
197                         " entity for flow control.\n");
198                 return;
199         }
200
201         IXGBE_WRITE_REG(hw, IXGBE_ETQF(i),
202                         (IXGBE_ETQF_FILTER_EN |
203                         IXGBE_ETQF_TX_ANTISPOOF |
204                         IXGBE_ETHERTYPE_FLOW_CTRL));
205
206         vf_num = dev_num_vf(eth_dev);
207         for (i = 0; i < vf_num; i++)
208                 hw->mac.ops.set_ethertype_anti_spoofing(hw, true, i);
209 }
210
211 int ixgbe_pf_host_configure(struct rte_eth_dev *eth_dev)
212 {
213         uint32_t vtctl, fcrth;
214         uint32_t vfre_slot, vfre_offset;
215         uint16_t vf_num;
216         const uint8_t VFRE_SHIFT = 5;  /* VFRE 32 bits per slot */
217         const uint8_t VFRE_MASK = (uint8_t)((1U << VFRE_SHIFT) - 1);
218         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
219         uint32_t gpie, gcr_ext;
220         uint32_t vlanctrl;
221         int i;
222
223         if (0 == (vf_num = dev_num_vf(eth_dev)))
224                 return -1;
225
226         /* enable VMDq and set the default pool for PF */
227         vtctl = IXGBE_READ_REG(hw, IXGBE_VT_CTL);
228         vtctl |= IXGBE_VMD_CTL_VMDQ_EN;
229         vtctl &= ~IXGBE_VT_CTL_POOL_MASK;
230         vtctl |= RTE_ETH_DEV_SRIOV(eth_dev).def_vmdq_idx
231                 << IXGBE_VT_CTL_POOL_SHIFT;
232         vtctl |= IXGBE_VT_CTL_REPLEN;
233         IXGBE_WRITE_REG(hw, IXGBE_VT_CTL, vtctl);
234
235         vfre_offset = vf_num & VFRE_MASK;
236         vfre_slot = (vf_num >> VFRE_SHIFT) > 0 ? 1 : 0;
237
238         /* Enable pools reserved to PF only */
239         IXGBE_WRITE_REG(hw, IXGBE_VFRE(vfre_slot), (~0U) << vfre_offset);
240         IXGBE_WRITE_REG(hw, IXGBE_VFRE(vfre_slot ^ 1), vfre_slot - 1);
241         IXGBE_WRITE_REG(hw, IXGBE_VFTE(vfre_slot), (~0U) << vfre_offset);
242         IXGBE_WRITE_REG(hw, IXGBE_VFTE(vfre_slot ^ 1), vfre_slot - 1);
243
244         /* PFDMA Tx General Switch Control Enables VMDQ loopback */
245         IXGBE_WRITE_REG(hw, IXGBE_PFDTXGSWC, IXGBE_PFDTXGSWC_VT_LBEN);
246
247         /* clear VMDq map to perment rar 0 */
248         hw->mac.ops.clear_vmdq(hw, 0, IXGBE_CLEAR_VMDQ_ALL);
249
250         /* clear VMDq map to scan rar 127 */
251         IXGBE_WRITE_REG(hw, IXGBE_MPSAR_LO(hw->mac.num_rar_entries), 0);
252         IXGBE_WRITE_REG(hw, IXGBE_MPSAR_HI(hw->mac.num_rar_entries), 0);
253
254         /* set VMDq map to default PF pool */
255         hw->mac.ops.set_vmdq(hw, 0, RTE_ETH_DEV_SRIOV(eth_dev).def_vmdq_idx);
256
257         /*
258          * SW msut set GCR_EXT.VT_Mode the same as GPIE.VT_Mode
259          */
260         gcr_ext = IXGBE_READ_REG(hw, IXGBE_GCR_EXT);
261         gcr_ext &= ~IXGBE_GCR_EXT_VT_MODE_MASK;
262
263         gpie = IXGBE_READ_REG(hw, IXGBE_GPIE);
264         gpie &= ~IXGBE_GPIE_VTMODE_MASK;
265         gpie |= IXGBE_GPIE_MSIX_MODE;
266
267         switch (RTE_ETH_DEV_SRIOV(eth_dev).active) {
268         case ETH_64_POOLS:
269                 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_64;
270                 gpie |= IXGBE_GPIE_VTMODE_64;
271                 break;
272         case ETH_32_POOLS:
273                 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_32;
274                 gpie |= IXGBE_GPIE_VTMODE_32;
275                 break;
276         case ETH_16_POOLS:
277                 gcr_ext |= IXGBE_GCR_EXT_VT_MODE_16;
278                 gpie |= IXGBE_GPIE_VTMODE_16;
279                 break;
280         }
281
282         IXGBE_WRITE_REG(hw, IXGBE_GCR_EXT, gcr_ext);
283         IXGBE_WRITE_REG(hw, IXGBE_GPIE, gpie);
284
285         /*
286          * enable vlan filtering and allow all vlan tags through
287          */
288         vlanctrl = IXGBE_READ_REG(hw, IXGBE_VLNCTRL);
289         vlanctrl |= IXGBE_VLNCTRL_VFE; /* enable vlan filters */
290         IXGBE_WRITE_REG(hw, IXGBE_VLNCTRL, vlanctrl);
291
292         /* VFTA - enable all vlan filters */
293         for (i = 0; i < IXGBE_MAX_VFTA; i++) {
294                 IXGBE_WRITE_REG(hw, IXGBE_VFTA(i), 0xFFFFFFFF);
295         }
296
297         /* Enable MAC Anti-Spoofing */
298         hw->mac.ops.set_mac_anti_spoofing(hw, FALSE, vf_num);
299
300         /* set flow control threshold to max to avoid tx switch hang */
301         for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
302                 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), 0);
303                 fcrth = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i)) - 32;
304                 IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(i), fcrth);
305         }
306
307         ixgbe_add_tx_flow_control_drop_filter(eth_dev);
308
309         return 0;
310 }
311
312 static void
313 set_rx_mode(struct rte_eth_dev *dev)
314 {
315         struct rte_eth_dev_data *dev_data = dev->data;
316         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
317         u32 fctrl, vmolr = IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE;
318         uint16_t vfn = dev_num_vf(dev);
319
320         /* Check for Promiscuous and All Multicast modes */
321         fctrl = IXGBE_READ_REG(hw, IXGBE_FCTRL);
322
323         /* set all bits that we expect to always be set */
324         fctrl &= ~IXGBE_FCTRL_SBP; /* disable store-bad-packets */
325         fctrl |= IXGBE_FCTRL_BAM;
326
327         /* clear the bits we are changing the status of */
328         fctrl &= ~(IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
329
330         if (dev_data->promiscuous) {
331                 fctrl |= (IXGBE_FCTRL_UPE | IXGBE_FCTRL_MPE);
332                 vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_MPE);
333         } else {
334                 if (dev_data->all_multicast) {
335                         fctrl |= IXGBE_FCTRL_MPE;
336                         vmolr |= IXGBE_VMOLR_MPE;
337                 } else {
338                         vmolr |= IXGBE_VMOLR_ROMPE;
339                 }
340         }
341
342         if (hw->mac.type != ixgbe_mac_82598EB) {
343                 vmolr |= IXGBE_READ_REG(hw, IXGBE_VMOLR(vfn)) &
344                          ~(IXGBE_VMOLR_MPE | IXGBE_VMOLR_ROMPE |
345                            IXGBE_VMOLR_ROPE);
346                 IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vfn), vmolr);
347         }
348
349         IXGBE_WRITE_REG(hw, IXGBE_FCTRL, fctrl);
350
351         if (dev->data->dev_conf.rxmode.hw_vlan_strip)
352                 ixgbe_vlan_hw_strip_enable_all(dev);
353         else
354                 ixgbe_vlan_hw_strip_disable_all(dev);
355 }
356
357 static inline void
358 ixgbe_vf_reset_event(struct rte_eth_dev *dev, uint16_t vf)
359 {
360         struct ixgbe_hw *hw =
361                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
362         struct ixgbe_vf_info *vfinfo =
363                 *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
364         int rar_entry = hw->mac.num_rar_entries - (vf + 1);
365         uint32_t vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
366
367         vmolr |= (IXGBE_VMOLR_ROPE | IXGBE_VMOLR_ROMPE |
368                         IXGBE_VMOLR_BAM | IXGBE_VMOLR_AUPE);
369         IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
370
371         IXGBE_WRITE_REG(hw, IXGBE_VMVIR(vf), 0);
372
373         /* reset multicast table array for vf */
374         vfinfo[vf].num_vf_mc_hashes = 0;
375
376         /* reset rx mode */
377         set_rx_mode(dev);
378
379         hw->mac.ops.clear_rar(hw, rar_entry);
380 }
381
382 static inline void
383 ixgbe_vf_reset_msg(struct rte_eth_dev *dev, uint16_t vf)
384 {
385         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
386         uint32_t reg;
387         uint32_t reg_offset, vf_shift;
388         const uint8_t VFRE_SHIFT = 5;  /* VFRE 32 bits per slot */
389         const uint8_t VFRE_MASK = (uint8_t)((1U << VFRE_SHIFT) - 1);
390
391         vf_shift = vf & VFRE_MASK;
392         reg_offset = (vf >> VFRE_SHIFT) > 0 ? 1 : 0;
393
394         /* enable transmit and receive for vf */
395         reg = IXGBE_READ_REG(hw, IXGBE_VFTE(reg_offset));
396         reg |= (reg | (1 << vf_shift));
397         IXGBE_WRITE_REG(hw, IXGBE_VFTE(reg_offset), reg);
398
399         reg = IXGBE_READ_REG(hw, IXGBE_VFRE(reg_offset));
400         reg |= (reg | (1 << vf_shift));
401         IXGBE_WRITE_REG(hw, IXGBE_VFRE(reg_offset), reg);
402
403         /* Enable counting of spoofed packets in the SSVPC register */
404         reg = IXGBE_READ_REG(hw, IXGBE_VMECM(reg_offset));
405         reg |= (1 << vf_shift);
406         IXGBE_WRITE_REG(hw, IXGBE_VMECM(reg_offset), reg);
407
408         ixgbe_vf_reset_event(dev, vf);
409 }
410
411 static int
412 ixgbe_enable_vf_mc_promisc(struct rte_eth_dev *dev, uint32_t vf)
413 {
414         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
415         uint32_t vmolr;
416
417         vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
418
419         RTE_LOG(INFO, PMD, "VF %u: enabling multicast promiscuous\n", vf);
420
421         vmolr |= IXGBE_VMOLR_MPE;
422
423         IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
424
425         return 0;
426 }
427
428 static int
429 ixgbe_disable_vf_mc_promisc(struct rte_eth_dev *dev, uint32_t vf)
430 {
431         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
432         uint32_t vmolr;
433
434         vmolr = IXGBE_READ_REG(hw, IXGBE_VMOLR(vf));
435
436         RTE_LOG(INFO, PMD, "VF %u: disabling multicast promiscuous\n", vf);
437
438         vmolr &= ~IXGBE_VMOLR_MPE;
439
440         IXGBE_WRITE_REG(hw, IXGBE_VMOLR(vf), vmolr);
441
442         return 0;
443 }
444
445 static int
446 ixgbe_vf_reset(struct rte_eth_dev *dev, uint16_t vf, uint32_t *msgbuf)
447 {
448         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
449         struct ixgbe_vf_info *vfinfo =
450                 *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
451         unsigned char *vf_mac = vfinfo[vf].vf_mac_addresses;
452         int rar_entry = hw->mac.num_rar_entries - (vf + 1);
453         uint8_t *new_mac = (uint8_t *)(&msgbuf[1]);
454
455         ixgbe_vf_reset_msg(dev, vf);
456
457         hw->mac.ops.set_rar(hw, rar_entry, vf_mac, vf, IXGBE_RAH_AV);
458
459         /* Disable multicast promiscuous at reset */
460         ixgbe_disable_vf_mc_promisc(dev, vf);
461
462         /* reply to reset with ack and vf mac address */
463         msgbuf[0] = IXGBE_VF_RESET | IXGBE_VT_MSGTYPE_ACK;
464         rte_memcpy(new_mac, vf_mac, ETHER_ADDR_LEN);
465         /*
466          * Piggyback the multicast filter type so VF can compute the
467          * correct vectors
468          */
469         msgbuf[3] = hw->mac.mc_filter_type;
470         ixgbe_write_mbx(hw, msgbuf, IXGBE_VF_PERMADDR_MSG_LEN, vf);
471
472         return 0;
473 }
474
475 static int
476 ixgbe_vf_set_mac_addr(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
477 {
478         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
479         struct ixgbe_vf_info *vfinfo =
480                 *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
481         int rar_entry = hw->mac.num_rar_entries - (vf + 1);
482         uint8_t *new_mac = (uint8_t *)(&msgbuf[1]);
483
484         if (is_valid_assigned_ether_addr((struct ether_addr*)new_mac)) {
485                 rte_memcpy(vfinfo[vf].vf_mac_addresses, new_mac, 6);
486                 return hw->mac.ops.set_rar(hw, rar_entry, new_mac, vf, IXGBE_RAH_AV);
487         }
488         return -1;
489 }
490
491 static int
492 ixgbe_vf_set_multicast(struct rte_eth_dev *dev, __rte_unused uint32_t vf, uint32_t *msgbuf)
493 {
494         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
495         struct ixgbe_vf_info *vfinfo =
496                 *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
497         int nb_entries = (msgbuf[0] & IXGBE_VT_MSGINFO_MASK) >>
498                 IXGBE_VT_MSGINFO_SHIFT;
499         uint16_t *hash_list = (uint16_t *)&msgbuf[1];
500         uint32_t mta_idx;
501         uint32_t mta_shift;
502         const uint32_t IXGBE_MTA_INDEX_MASK = 0x7F;
503         const uint32_t IXGBE_MTA_BIT_SHIFT = 5;
504         const uint32_t IXGBE_MTA_BIT_MASK = (0x1 << IXGBE_MTA_BIT_SHIFT) - 1;
505         uint32_t reg_val;
506         int i;
507
508         /* Disable multicast promiscuous first */
509         ixgbe_disable_vf_mc_promisc(dev, vf);
510
511         /* only so many hash values supported */
512         nb_entries = RTE_MIN(nb_entries, IXGBE_MAX_VF_MC_ENTRIES);
513
514         /* store the mc entries  */
515         vfinfo->num_vf_mc_hashes = (uint16_t)nb_entries;
516         for (i = 0; i < nb_entries; i++) {
517                 vfinfo->vf_mc_hashes[i] = hash_list[i];
518         }
519
520         for (i = 0; i < vfinfo->num_vf_mc_hashes; i++) {
521                 mta_idx = (vfinfo->vf_mc_hashes[i] >> IXGBE_MTA_BIT_SHIFT)
522                                 & IXGBE_MTA_INDEX_MASK;
523                 mta_shift = vfinfo->vf_mc_hashes[i] & IXGBE_MTA_BIT_MASK;
524                 reg_val = IXGBE_READ_REG(hw, IXGBE_MTA(mta_idx));
525                 reg_val |= (1 << mta_shift);
526                 IXGBE_WRITE_REG(hw, IXGBE_MTA(mta_idx), reg_val);
527         }
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);
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         int max_frame = new_mtu + ETHER_HDR_LEN + ETHER_CRC_LEN;
558
559         /* X540 and X550 support jumbo frames in IOV mode */
560         if (hw->mac.type != ixgbe_mac_X540 &&
561                 hw->mac.type != ixgbe_mac_X550 &&
562                 hw->mac.type != ixgbe_mac_X550EM_x &&
563                 hw->mac.type != ixgbe_mac_X550EM_a)
564                 return -1;
565
566         if ((max_frame < ETHER_MIN_LEN) || (max_frame > ETHER_MAX_JUMBO_FRAME_LEN))
567                 return -1;
568
569         max_frs = (IXGBE_READ_REG(hw, IXGBE_MAXFRS) &
570                    IXGBE_MHADD_MFS_MASK) >> IXGBE_MHADD_MFS_SHIFT;
571         if (max_frs < new_mtu) {
572                 max_frs = new_mtu << IXGBE_MHADD_MFS_SHIFT;
573                 IXGBE_WRITE_REG(hw, IXGBE_MAXFRS, max_frs);
574         }
575
576         return 0;
577 }
578
579 static int
580 ixgbe_negotiate_vf_api(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
581 {
582         uint32_t api_version = msgbuf[1];
583         struct ixgbe_vf_info *vfinfo =
584                 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
585
586         switch (api_version) {
587         case ixgbe_mbox_api_10:
588         case ixgbe_mbox_api_11:
589         case ixgbe_mbox_api_12:
590                 vfinfo[vf].api_version = (uint8_t)api_version;
591                 return 0;
592         default:
593                 break;
594         }
595
596         RTE_LOG(ERR, PMD, "Negotiate invalid api version %u from VF %d\n",
597                 api_version, vf);
598
599         return -1;
600 }
601
602 static int
603 ixgbe_get_vf_queues(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
604 {
605         struct ixgbe_vf_info *vfinfo =
606                 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
607         uint32_t default_q = vf * RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
608
609         /* Verify if the PF supports the mbox APIs version or not */
610         switch (vfinfo[vf].api_version) {
611         case ixgbe_mbox_api_20:
612         case ixgbe_mbox_api_11:
613         case ixgbe_mbox_api_12:
614                 break;
615         default:
616                 return -1;
617         }
618
619         /* Notify VF of Rx and Tx queue number */
620         msgbuf[IXGBE_VF_RX_QUEUES] = RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
621         msgbuf[IXGBE_VF_TX_QUEUES] = RTE_ETH_DEV_SRIOV(dev).nb_q_per_pool;
622
623         /* Notify VF of default queue */
624         msgbuf[IXGBE_VF_DEF_QUEUE] = default_q;
625
626         /*
627          * FIX ME if it needs fill msgbuf[IXGBE_VF_TRANS_VLAN]
628          * for VLAN strip or VMDQ_DCB or VMDQ_DCB_RSS
629          */
630
631         return 0;
632 }
633
634 static int
635 ixgbe_set_vf_mc_promisc(struct rte_eth_dev *dev, uint32_t vf, uint32_t *msgbuf)
636 {
637         struct ixgbe_vf_info *vfinfo =
638                 *(IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private));
639         bool enable = !!msgbuf[1];      /* msgbuf contains the flag to enable */
640
641         switch (vfinfo[vf].api_version) {
642         case ixgbe_mbox_api_12:
643                 break;
644         default:
645                 return -1;
646         }
647
648         if (enable)
649                 return ixgbe_enable_vf_mc_promisc(dev, vf);
650         else
651                 return ixgbe_disable_vf_mc_promisc(dev, vf);
652 }
653
654 static int
655 ixgbe_rcv_msg_from_vf(struct rte_eth_dev *dev, uint16_t vf)
656 {
657         uint16_t mbx_size = IXGBE_VFMAILBOX_SIZE;
658         uint16_t msg_size = IXGBE_VF_MSG_SIZE_DEFAULT;
659         uint32_t msgbuf[IXGBE_VFMAILBOX_SIZE];
660         int32_t retval;
661         struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
662         struct ixgbe_vf_info *vfinfo =
663                 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
664
665         retval = ixgbe_read_mbx(hw, msgbuf, mbx_size, vf);
666         if (retval) {
667                 PMD_DRV_LOG(ERR, "Error mbx recv msg from VF %d", vf);
668                 return retval;
669         }
670
671         /* do nothing with the message already been processed */
672         if (msgbuf[0] & (IXGBE_VT_MSGTYPE_ACK | IXGBE_VT_MSGTYPE_NACK))
673                 return retval;
674
675         /* flush the ack before we write any messages back */
676         IXGBE_WRITE_FLUSH(hw);
677
678         /* perform VF reset */
679         if (msgbuf[0] == IXGBE_VF_RESET) {
680                 int ret = ixgbe_vf_reset(dev, vf, msgbuf);
681                 vfinfo[vf].clear_to_send = true;
682                 return ret;
683         }
684
685         /* check & process VF to PF mailbox message */
686         switch ((msgbuf[0] & 0xFFFF)) {
687         case IXGBE_VF_SET_MAC_ADDR:
688                 retval = ixgbe_vf_set_mac_addr(dev, vf, msgbuf);
689                 break;
690         case IXGBE_VF_SET_MULTICAST:
691                 retval = ixgbe_vf_set_multicast(dev, vf, msgbuf);
692                 break;
693         case IXGBE_VF_SET_LPE:
694                 retval = ixgbe_set_vf_lpe(dev, vf, msgbuf);
695                 break;
696         case IXGBE_VF_SET_VLAN:
697                 retval = ixgbe_vf_set_vlan(dev, vf, msgbuf);
698                 break;
699         case IXGBE_VF_API_NEGOTIATE:
700                 retval = ixgbe_negotiate_vf_api(dev, vf, msgbuf);
701                 break;
702         case IXGBE_VF_GET_QUEUES:
703                 retval = ixgbe_get_vf_queues(dev, vf, msgbuf);
704                 msg_size = IXGBE_VF_GET_QUEUE_MSG_SIZE;
705                 break;
706         case IXGBE_VF_UPDATE_XCAST_MODE:
707                 retval = ixgbe_set_vf_mc_promisc(dev, vf, msgbuf);
708                 break;
709         default:
710                 PMD_DRV_LOG(DEBUG, "Unhandled Msg %8.8x", (unsigned)msgbuf[0]);
711                 retval = IXGBE_ERR_MBX;
712                 break;
713         }
714
715         /* response the VF according to the message process result */
716         if (retval)
717                 msgbuf[0] |= IXGBE_VT_MSGTYPE_NACK;
718         else
719                 msgbuf[0] |= IXGBE_VT_MSGTYPE_ACK;
720
721         msgbuf[0] |= IXGBE_VT_MSGTYPE_CTS;
722
723         ixgbe_write_mbx(hw, msgbuf, msg_size, vf);
724
725         return retval;
726 }
727
728 static inline void
729 ixgbe_rcv_ack_from_vf(struct rte_eth_dev *dev, uint16_t vf)
730 {
731         uint32_t msg = IXGBE_VT_MSGTYPE_NACK;
732         struct ixgbe_hw *hw =
733                 IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
734         struct ixgbe_vf_info *vfinfo =
735                 *IXGBE_DEV_PRIVATE_TO_P_VFDATA(dev->data->dev_private);
736
737         if (!vfinfo[vf].clear_to_send)
738                 ixgbe_write_mbx(hw, &msg, 1, vf);
739 }
740
741 void ixgbe_pf_mbx_process(struct rte_eth_dev *eth_dev)
742 {
743         uint16_t vf;
744         struct ixgbe_hw *hw =
745                 IXGBE_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
746
747         for (vf = 0; vf < dev_num_vf(eth_dev); vf++) {
748                 /* check & process vf function level reset */
749                 if (!ixgbe_check_for_rst(hw, vf))
750                         ixgbe_vf_reset_event(eth_dev, vf);
751
752                 /* check & process vf mailbox messages */
753                 if (!ixgbe_check_for_msg(hw, vf))
754                         ixgbe_rcv_msg_from_vf(eth_dev, vf);
755
756                 /* check & process acks from vf */
757                 if (!ixgbe_check_for_ack(hw, vf))
758                         ixgbe_rcv_ack_from_vf(eth_dev, vf);
759         }
760 }