net/liquidio: add API to release Tx queue
[dpdk.git] / drivers / net / liquidio / lio_ethdev.c
1 /*
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2017 Cavium, Inc.. 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 Cavium, Inc. 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(S) 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 <rte_ethdev.h>
35 #include <rte_cycles.h>
36 #include <rte_malloc.h>
37 #include <rte_alarm.h>
38
39 #include "lio_logs.h"
40 #include "lio_23xx_vf.h"
41 #include "lio_ethdev.h"
42 #include "lio_rxtx.h"
43
44 static uint64_t
45 lio_hweight64(uint64_t w)
46 {
47         uint64_t res = w - ((w >> 1) & 0x5555555555555555ul);
48
49         res =
50             (res & 0x3333333333333333ul) + ((res >> 2) & 0x3333333333333333ul);
51         res = (res + (res >> 4)) & 0x0F0F0F0F0F0F0F0Ful;
52         res = res + (res >> 8);
53         res = res + (res >> 16);
54
55         return (res + (res >> 32)) & 0x00000000000000FFul;
56 }
57
58 /**
59  * Setup our receive queue/ringbuffer. This is the
60  * queue the Octeon uses to send us packets and
61  * responses. We are given a memory pool for our
62  * packet buffers that are used to populate the receive
63  * queue.
64  *
65  * @param eth_dev
66  *    Pointer to the structure rte_eth_dev
67  * @param q_no
68  *    Queue number
69  * @param num_rx_descs
70  *    Number of entries in the queue
71  * @param socket_id
72  *    Where to allocate memory
73  * @param rx_conf
74  *    Pointer to the struction rte_eth_rxconf
75  * @param mp
76  *    Pointer to the packet pool
77  *
78  * @return
79  *    - On success, return 0
80  *    - On failure, return -1
81  */
82 static int
83 lio_dev_rx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t q_no,
84                        uint16_t num_rx_descs, unsigned int socket_id,
85                        const struct rte_eth_rxconf *rx_conf __rte_unused,
86                        struct rte_mempool *mp)
87 {
88         struct lio_device *lio_dev = LIO_DEV(eth_dev);
89         struct rte_pktmbuf_pool_private *mbp_priv;
90         uint32_t fw_mapped_oq;
91         uint16_t buf_size;
92
93         if (q_no >= lio_dev->nb_rx_queues) {
94                 lio_dev_err(lio_dev, "Invalid rx queue number %u\n", q_no);
95                 return -EINVAL;
96         }
97
98         lio_dev_dbg(lio_dev, "setting up rx queue %u\n", q_no);
99
100         fw_mapped_oq = lio_dev->linfo.rxpciq[q_no].s.q_no;
101
102         if ((lio_dev->droq[fw_mapped_oq]) &&
103             (num_rx_descs != lio_dev->droq[fw_mapped_oq]->max_count)) {
104                 lio_dev_err(lio_dev,
105                             "Reconfiguring Rx descs not supported. Configure descs to same value %u or restart application\n",
106                             lio_dev->droq[fw_mapped_oq]->max_count);
107                 return -ENOTSUP;
108         }
109
110         mbp_priv = rte_mempool_get_priv(mp);
111         buf_size = mbp_priv->mbuf_data_room_size - RTE_PKTMBUF_HEADROOM;
112
113         if (lio_setup_droq(lio_dev, fw_mapped_oq, num_rx_descs, buf_size, mp,
114                            socket_id)) {
115                 lio_dev_err(lio_dev, "droq allocation failed\n");
116                 return -1;
117         }
118
119         eth_dev->data->rx_queues[q_no] = lio_dev->droq[fw_mapped_oq];
120
121         return 0;
122 }
123
124 /**
125  * Release the receive queue/ringbuffer. Called by
126  * the upper layers.
127  *
128  * @param rxq
129  *    Opaque pointer to the receive queue to release
130  *
131  * @return
132  *    - nothing
133  */
134 static void
135 lio_dev_rx_queue_release(void *rxq)
136 {
137         struct lio_droq *droq = rxq;
138         struct lio_device *lio_dev = droq->lio_dev;
139         int oq_no;
140
141         /* Run time queue deletion not supported */
142         if (lio_dev->port_configured)
143                 return;
144
145         if (droq != NULL) {
146                 oq_no = droq->q_no;
147                 lio_delete_droq_queue(droq->lio_dev, oq_no);
148         }
149 }
150
151 /**
152  * Allocate and initialize SW ring. Initialize associated HW registers.
153  *
154  * @param eth_dev
155  *   Pointer to structure rte_eth_dev
156  *
157  * @param q_no
158  *   Queue number
159  *
160  * @param num_tx_descs
161  *   Number of ringbuffer descriptors
162  *
163  * @param socket_id
164  *   NUMA socket id, used for memory allocations
165  *
166  * @param tx_conf
167  *   Pointer to the structure rte_eth_txconf
168  *
169  * @return
170  *   - On success, return 0
171  *   - On failure, return -errno value
172  */
173 static int
174 lio_dev_tx_queue_setup(struct rte_eth_dev *eth_dev, uint16_t q_no,
175                        uint16_t num_tx_descs, unsigned int socket_id,
176                        const struct rte_eth_txconf *tx_conf __rte_unused)
177 {
178         struct lio_device *lio_dev = LIO_DEV(eth_dev);
179         int fw_mapped_iq = lio_dev->linfo.txpciq[q_no].s.q_no;
180         int retval;
181
182         if (q_no >= lio_dev->nb_tx_queues) {
183                 lio_dev_err(lio_dev, "Invalid tx queue number %u\n", q_no);
184                 return -EINVAL;
185         }
186
187         lio_dev_dbg(lio_dev, "setting up tx queue %u\n", q_no);
188
189         if ((lio_dev->instr_queue[fw_mapped_iq] != NULL) &&
190             (num_tx_descs != lio_dev->instr_queue[fw_mapped_iq]->max_count)) {
191                 lio_dev_err(lio_dev,
192                             "Reconfiguring Tx descs not supported. Configure descs to same value %u or restart application\n",
193                             lio_dev->instr_queue[fw_mapped_iq]->max_count);
194                 return -ENOTSUP;
195         }
196
197         retval = lio_setup_iq(lio_dev, q_no, lio_dev->linfo.txpciq[q_no],
198                               num_tx_descs, lio_dev, socket_id);
199
200         if (retval) {
201                 lio_dev_err(lio_dev, "Runtime IQ(TxQ) creation failed.\n");
202                 return retval;
203         }
204
205         retval = lio_setup_sglists(lio_dev, q_no, fw_mapped_iq,
206                                 lio_dev->instr_queue[fw_mapped_iq]->max_count,
207                                 socket_id);
208
209         if (retval) {
210                 lio_delete_instruction_queue(lio_dev, fw_mapped_iq);
211                 return retval;
212         }
213
214         eth_dev->data->tx_queues[q_no] = lio_dev->instr_queue[fw_mapped_iq];
215
216         return 0;
217 }
218
219 /**
220  * Release the transmit queue/ringbuffer. Called by
221  * the upper layers.
222  *
223  * @param txq
224  *    Opaque pointer to the transmit queue to release
225  *
226  * @return
227  *    - nothing
228  */
229 static void
230 lio_dev_tx_queue_release(void *txq)
231 {
232         struct lio_instr_queue *tq = txq;
233         struct lio_device *lio_dev = tq->lio_dev;
234         uint32_t fw_mapped_iq_no;
235
236         /* Run time queue deletion not supported */
237         if (lio_dev->port_configured)
238                 return;
239
240         if (tq != NULL) {
241                 /* Free sg_list */
242                 lio_delete_sglist(tq);
243
244                 fw_mapped_iq_no = tq->txpciq.s.q_no;
245                 lio_delete_instruction_queue(tq->lio_dev, fw_mapped_iq_no);
246         }
247 }
248
249 static int lio_dev_configure(struct rte_eth_dev *eth_dev)
250 {
251         struct lio_device *lio_dev = LIO_DEV(eth_dev);
252         uint16_t timeout = LIO_MAX_CMD_TIMEOUT;
253         int retval, num_iqueues, num_oqueues;
254         uint8_t mac[ETHER_ADDR_LEN], i;
255         struct lio_if_cfg_resp *resp;
256         struct lio_soft_command *sc;
257         union lio_if_cfg if_cfg;
258         uint32_t resp_size;
259
260         PMD_INIT_FUNC_TRACE();
261
262         /* Re-configuring firmware not supported.
263          * Can't change tx/rx queues per port from initial value.
264          */
265         if (lio_dev->port_configured) {
266                 if ((lio_dev->nb_rx_queues != eth_dev->data->nb_rx_queues) ||
267                     (lio_dev->nb_tx_queues != eth_dev->data->nb_tx_queues)) {
268                         lio_dev_err(lio_dev,
269                                     "rxq/txq re-conf not supported. Restart application with new value.\n");
270                         return -ENOTSUP;
271                 }
272                 return 0;
273         }
274
275         lio_dev->nb_rx_queues = eth_dev->data->nb_rx_queues;
276         lio_dev->nb_tx_queues = eth_dev->data->nb_tx_queues;
277
278         resp_size = sizeof(struct lio_if_cfg_resp);
279         sc = lio_alloc_soft_command(lio_dev, 0, resp_size, 0);
280         if (sc == NULL)
281                 return -ENOMEM;
282
283         resp = (struct lio_if_cfg_resp *)sc->virtrptr;
284
285         /* Firmware doesn't have capability to reconfigure the queues,
286          * Claim all queues, and use as many required
287          */
288         if_cfg.if_cfg64 = 0;
289         if_cfg.s.num_iqueues = lio_dev->nb_tx_queues;
290         if_cfg.s.num_oqueues = lio_dev->nb_rx_queues;
291         if_cfg.s.base_queue = 0;
292
293         if_cfg.s.gmx_port_id = lio_dev->pf_num;
294
295         lio_prepare_soft_command(lio_dev, sc, LIO_OPCODE,
296                                  LIO_OPCODE_IF_CFG, 0,
297                                  if_cfg.if_cfg64, 0);
298
299         /* Setting wait time in seconds */
300         sc->wait_time = LIO_MAX_CMD_TIMEOUT / 1000;
301
302         retval = lio_send_soft_command(lio_dev, sc);
303         if (retval == LIO_IQ_SEND_FAILED) {
304                 lio_dev_err(lio_dev, "iq/oq config failed status: %x\n",
305                             retval);
306                 /* Soft instr is freed by driver in case of failure. */
307                 goto nic_config_fail;
308         }
309
310         /* Sleep on a wait queue till the cond flag indicates that the
311          * response arrived or timed-out.
312          */
313         while ((*sc->status_word == LIO_COMPLETION_WORD_INIT) && --timeout) {
314                 lio_flush_iq(lio_dev, lio_dev->instr_queue[sc->iq_no]);
315                 lio_process_ordered_list(lio_dev);
316                 rte_delay_ms(1);
317         }
318
319         retval = resp->status;
320         if (retval) {
321                 lio_dev_err(lio_dev, "iq/oq config failed\n");
322                 goto nic_config_fail;
323         }
324
325         lio_swap_8B_data((uint64_t *)(&resp->cfg_info),
326                          sizeof(struct octeon_if_cfg_info) >> 3);
327
328         num_iqueues = lio_hweight64(resp->cfg_info.iqmask);
329         num_oqueues = lio_hweight64(resp->cfg_info.oqmask);
330
331         if (!(num_iqueues) || !(num_oqueues)) {
332                 lio_dev_err(lio_dev,
333                             "Got bad iqueues (%016lx) or oqueues (%016lx) from firmware.\n",
334                             (unsigned long)resp->cfg_info.iqmask,
335                             (unsigned long)resp->cfg_info.oqmask);
336                 goto nic_config_fail;
337         }
338
339         lio_dev_dbg(lio_dev,
340                     "interface %d, iqmask %016lx, oqmask %016lx, numiqueues %d, numoqueues %d\n",
341                     eth_dev->data->port_id,
342                     (unsigned long)resp->cfg_info.iqmask,
343                     (unsigned long)resp->cfg_info.oqmask,
344                     num_iqueues, num_oqueues);
345
346         lio_dev->linfo.num_rxpciq = num_oqueues;
347         lio_dev->linfo.num_txpciq = num_iqueues;
348
349         for (i = 0; i < num_oqueues; i++) {
350                 lio_dev->linfo.rxpciq[i].rxpciq64 =
351                     resp->cfg_info.linfo.rxpciq[i].rxpciq64;
352                 lio_dev_dbg(lio_dev, "index %d OQ %d\n",
353                             i, lio_dev->linfo.rxpciq[i].s.q_no);
354         }
355
356         for (i = 0; i < num_iqueues; i++) {
357                 lio_dev->linfo.txpciq[i].txpciq64 =
358                     resp->cfg_info.linfo.txpciq[i].txpciq64;
359                 lio_dev_dbg(lio_dev, "index %d IQ %d\n",
360                             i, lio_dev->linfo.txpciq[i].s.q_no);
361         }
362
363         lio_dev->linfo.hw_addr = resp->cfg_info.linfo.hw_addr;
364         lio_dev->linfo.gmxport = resp->cfg_info.linfo.gmxport;
365         lio_dev->linfo.link.link_status64 =
366                         resp->cfg_info.linfo.link.link_status64;
367
368         /* 64-bit swap required on LE machines */
369         lio_swap_8B_data(&lio_dev->linfo.hw_addr, 1);
370         for (i = 0; i < ETHER_ADDR_LEN; i++)
371                 mac[i] = *((uint8_t *)(((uint8_t *)&lio_dev->linfo.hw_addr) +
372                                        2 + i));
373
374         /* Copy the permanent MAC address */
375         ether_addr_copy((struct ether_addr *)mac, &eth_dev->data->mac_addrs[0]);
376
377         lio_dev->glist_lock =
378             rte_zmalloc(NULL, sizeof(*lio_dev->glist_lock) * num_iqueues, 0);
379         if (lio_dev->glist_lock == NULL)
380                 return -ENOMEM;
381
382         lio_dev->glist_head =
383                 rte_zmalloc(NULL, sizeof(*lio_dev->glist_head) * num_iqueues,
384                             0);
385         if (lio_dev->glist_head == NULL) {
386                 rte_free(lio_dev->glist_lock);
387                 lio_dev->glist_lock = NULL;
388                 return -ENOMEM;
389         }
390
391         lio_dev->port_configured = 1;
392
393         lio_free_soft_command(sc);
394
395         /* Disable iq_0 for reconf */
396         lio_dev->fn_list.disable_io_queues(lio_dev);
397
398         /* Reset ioq regs */
399         lio_dev->fn_list.setup_device_regs(lio_dev);
400
401         /* Free iq_0 used during init */
402         lio_free_instr_queue0(lio_dev);
403
404         return 0;
405
406 nic_config_fail:
407         lio_dev_err(lio_dev, "Failed retval %d\n", retval);
408         lio_free_soft_command(sc);
409         lio_free_instr_queue0(lio_dev);
410
411         return -ENODEV;
412 }
413
414 /* Define our ethernet definitions */
415 static const struct eth_dev_ops liovf_eth_dev_ops = {
416         .dev_configure          = lio_dev_configure,
417         .rx_queue_setup         = lio_dev_rx_queue_setup,
418         .rx_queue_release       = lio_dev_rx_queue_release,
419         .tx_queue_setup         = lio_dev_tx_queue_setup,
420         .tx_queue_release       = lio_dev_tx_queue_release,
421 };
422
423 static void
424 lio_check_pf_hs_response(void *lio_dev)
425 {
426         struct lio_device *dev = lio_dev;
427
428         /* check till response arrives */
429         if (dev->pfvf_hsword.coproc_tics_per_us)
430                 return;
431
432         cn23xx_vf_handle_mbox(dev);
433
434         rte_eal_alarm_set(1, lio_check_pf_hs_response, lio_dev);
435 }
436
437 /**
438  * \brief Identify the LIO device and to map the BAR address space
439  * @param lio_dev lio device
440  */
441 static int
442 lio_chip_specific_setup(struct lio_device *lio_dev)
443 {
444         struct rte_pci_device *pdev = lio_dev->pci_dev;
445         uint32_t dev_id = pdev->id.device_id;
446         const char *s;
447         int ret = 1;
448
449         switch (dev_id) {
450         case LIO_CN23XX_VF_VID:
451                 lio_dev->chip_id = LIO_CN23XX_VF_VID;
452                 ret = cn23xx_vf_setup_device(lio_dev);
453                 s = "CN23XX VF";
454                 break;
455         default:
456                 s = "?";
457                 lio_dev_err(lio_dev, "Unsupported Chip\n");
458         }
459
460         if (!ret)
461                 lio_dev_info(lio_dev, "DEVICE : %s\n", s);
462
463         return ret;
464 }
465
466 static int
467 lio_first_time_init(struct lio_device *lio_dev,
468                     struct rte_pci_device *pdev)
469 {
470         int dpdk_queues;
471
472         PMD_INIT_FUNC_TRACE();
473
474         /* set dpdk specific pci device pointer */
475         lio_dev->pci_dev = pdev;
476
477         /* Identify the LIO type and set device ops */
478         if (lio_chip_specific_setup(lio_dev)) {
479                 lio_dev_err(lio_dev, "Chip specific setup failed\n");
480                 return -1;
481         }
482
483         /* Initialize soft command buffer pool */
484         if (lio_setup_sc_buffer_pool(lio_dev)) {
485                 lio_dev_err(lio_dev, "sc buffer pool allocation failed\n");
486                 return -1;
487         }
488
489         /* Initialize lists to manage the requests of different types that
490          * arrive from applications for this lio device.
491          */
492         lio_setup_response_list(lio_dev);
493
494         if (lio_dev->fn_list.setup_mbox(lio_dev)) {
495                 lio_dev_err(lio_dev, "Mailbox setup failed\n");
496                 goto error;
497         }
498
499         /* Check PF response */
500         lio_check_pf_hs_response((void *)lio_dev);
501
502         /* Do handshake and exit if incompatible PF driver */
503         if (cn23xx_pfvf_handshake(lio_dev))
504                 goto error;
505
506         /* Initial reset */
507         cn23xx_vf_ask_pf_to_do_flr(lio_dev);
508         /* Wait for FLR for 100ms per SRIOV specification */
509         rte_delay_ms(100);
510
511         if (cn23xx_vf_set_io_queues_off(lio_dev)) {
512                 lio_dev_err(lio_dev, "Setting io queues off failed\n");
513                 goto error;
514         }
515
516         if (lio_dev->fn_list.setup_device_regs(lio_dev)) {
517                 lio_dev_err(lio_dev, "Failed to configure device registers\n");
518                 goto error;
519         }
520
521         if (lio_setup_instr_queue0(lio_dev)) {
522                 lio_dev_err(lio_dev, "Failed to setup instruction queue 0\n");
523                 goto error;
524         }
525
526         dpdk_queues = (int)lio_dev->sriov_info.rings_per_vf;
527
528         lio_dev->max_tx_queues = dpdk_queues;
529         lio_dev->max_rx_queues = dpdk_queues;
530
531         /* Enable input and output queues for this device */
532         if (lio_dev->fn_list.enable_io_queues(lio_dev))
533                 goto error;
534
535         return 0;
536
537 error:
538         lio_free_sc_buffer_pool(lio_dev);
539         if (lio_dev->mbox[0])
540                 lio_dev->fn_list.free_mbox(lio_dev);
541         if (lio_dev->instr_queue[0])
542                 lio_free_instr_queue0(lio_dev);
543
544         return -1;
545 }
546
547 static int
548 lio_eth_dev_uninit(struct rte_eth_dev *eth_dev)
549 {
550         struct lio_device *lio_dev = LIO_DEV(eth_dev);
551
552         PMD_INIT_FUNC_TRACE();
553
554         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
555                 return -EPERM;
556
557         /* lio_free_sc_buffer_pool */
558         lio_free_sc_buffer_pool(lio_dev);
559
560         rte_free(eth_dev->data->mac_addrs);
561         eth_dev->data->mac_addrs = NULL;
562
563         eth_dev->rx_pkt_burst = NULL;
564         eth_dev->tx_pkt_burst = NULL;
565
566         return 0;
567 }
568
569 static int
570 lio_eth_dev_init(struct rte_eth_dev *eth_dev)
571 {
572         struct rte_pci_device *pdev = RTE_DEV_TO_PCI(eth_dev->device);
573         struct lio_device *lio_dev = LIO_DEV(eth_dev);
574
575         PMD_INIT_FUNC_TRACE();
576
577         eth_dev->rx_pkt_burst = &lio_dev_recv_pkts;
578         eth_dev->tx_pkt_burst = &lio_dev_xmit_pkts;
579
580         /* Primary does the initialization. */
581         if (rte_eal_process_type() != RTE_PROC_PRIMARY)
582                 return 0;
583
584         rte_eth_copy_pci_info(eth_dev, pdev);
585         eth_dev->data->dev_flags |= RTE_ETH_DEV_DETACHABLE;
586
587         if (pdev->mem_resource[0].addr) {
588                 lio_dev->hw_addr = pdev->mem_resource[0].addr;
589         } else {
590                 PMD_INIT_LOG(ERR, "ERROR: Failed to map BAR0\n");
591                 return -ENODEV;
592         }
593
594         lio_dev->eth_dev = eth_dev;
595         /* set lio device print string */
596         snprintf(lio_dev->dev_string, sizeof(lio_dev->dev_string),
597                  "%s[%02x:%02x.%x]", pdev->driver->driver.name,
598                  pdev->addr.bus, pdev->addr.devid, pdev->addr.function);
599
600         lio_dev->port_id = eth_dev->data->port_id;
601
602         if (lio_first_time_init(lio_dev, pdev)) {
603                 lio_dev_err(lio_dev, "Device init failed\n");
604                 return -EINVAL;
605         }
606
607         eth_dev->dev_ops = &liovf_eth_dev_ops;
608         eth_dev->data->mac_addrs = rte_zmalloc("lio", ETHER_ADDR_LEN, 0);
609         if (eth_dev->data->mac_addrs == NULL) {
610                 lio_dev_err(lio_dev,
611                             "MAC addresses memory allocation failed\n");
612                 eth_dev->dev_ops = NULL;
613                 eth_dev->rx_pkt_burst = NULL;
614                 eth_dev->tx_pkt_burst = NULL;
615                 return -ENOMEM;
616         }
617
618         rte_atomic64_set(&lio_dev->status, LIO_DEV_RUNNING);
619         rte_wmb();
620
621         lio_dev->port_configured = 0;
622         /* Always allow unicast packets */
623         lio_dev->ifflags |= LIO_IFFLAG_UNICAST;
624
625         return 0;
626 }
627
628 /* Set of PCI devices this driver supports */
629 static const struct rte_pci_id pci_id_liovf_map[] = {
630         { RTE_PCI_DEVICE(PCI_VENDOR_ID_CAVIUM, LIO_CN23XX_VF_VID) },
631         { .vendor_id = 0, /* sentinel */ }
632 };
633
634 static struct eth_driver rte_liovf_pmd = {
635         .pci_drv = {
636                 .id_table       = pci_id_liovf_map,
637                 .drv_flags      = RTE_PCI_DRV_NEED_MAPPING,
638                 .probe          = rte_eth_dev_pci_probe,
639                 .remove         = rte_eth_dev_pci_remove,
640         },
641         .eth_dev_init           = lio_eth_dev_init,
642         .eth_dev_uninit         = lio_eth_dev_uninit,
643         .dev_private_size       = sizeof(struct lio_device),
644 };
645
646 RTE_PMD_REGISTER_PCI(net_liovf, rte_liovf_pmd.pci_drv);
647 RTE_PMD_REGISTER_PCI_TABLE(net_liovf, pci_id_liovf_map);
648 RTE_PMD_REGISTER_KMOD_DEP(net_liovf, "* igb_uio | vfio");