kni: allow multiple threads
[dpdk.git] / lib / librte_eal / linuxapp / kni / kni_dev.h
1 /*-
2  * GPL LICENSE SUMMARY
3  * 
4  *   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
5  * 
6  *   This program is free software; you can redistribute it and/or modify
7  *   it under the terms of version 2 of the GNU General Public License as
8  *   published by the Free Software Foundation.
9  * 
10  *   This program is distributed in the hope that it will be useful, but
11  *   WITHOUT ANY WARRANTY; without even the implied warranty of
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  *   General Public License for more details.
14  * 
15  *   You should have received a copy of the GNU General Public License
16  *   along with this program; if not, write to the Free Software
17  *   Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18  *   The full GNU General Public License is included in this distribution
19  *   in the file called LICENSE.GPL.
20  * 
21  *   Contact Information:
22  *   Intel Corporation
23  */
24
25 #ifndef _KNI_DEV_H_
26 #define _KNI_DEV_H_
27
28 #include <linux/if.h>
29 #include <linux/wait.h>
30 #include <linux/sched.h>
31 #include <linux/netdevice.h>
32 #include <linux/spinlock.h>
33 #include <linux/list.h>
34
35 #include <exec-env/rte_kni_common.h>
36 #define KNI_KTHREAD_RESCHEDULE_INTERVAL 5 /* us */
37
38 /**
39  * A structure describing the private information for a kni device.
40  */
41
42 struct kni_dev {
43         /* kni list */
44         struct list_head list;
45
46         struct net_device_stats stats;
47         int status;
48         uint16_t group_id;           /* Group ID of a group of KNI devices */
49         unsigned core_id;            /* Core ID to bind */
50         char name[RTE_KNI_NAMESIZE]; /* Network device name */
51         struct task_struct *pthread;
52
53         /* wait queue for req/resp */
54         wait_queue_head_t wq;
55         struct mutex sync_lock;
56
57         /* PCI device id */
58         uint16_t device_id;
59
60         /* kni device */
61         struct net_device *net_dev;
62         struct net_device *lad_dev;
63         struct pci_dev *pci_dev;
64
65         /* queue for packets to be sent out */
66         void *tx_q;
67
68         /* queue for the packets received */
69         void *rx_q;
70
71         /* queue for the allocated mbufs those can be used to save sk buffs */
72         void *alloc_q;
73
74         /* free queue for the mbufs to be freed */
75         void *free_q;
76
77         /* request queue */
78         void *req_q;
79
80         /* response queue */
81         void *resp_q;
82
83         void * sync_kva;
84         void *sync_va;
85
86         void *mbuf_kva;
87         void *mbuf_va;
88
89         /* mbuf size */
90         unsigned mbuf_size;
91
92         /* synchro for request processing */
93         unsigned long synchro;
94 };
95
96
97 #define KNI_ERR(args...) printk(KERN_DEBUG "KNI: Error: " args)
98 #define KNI_PRINT(args...) printk(KERN_DEBUG "KNI: " args)
99 #ifdef RTE_KNI_KO_DEBUG
100         #define KNI_DBG(args...) printk(KERN_DEBUG "KNI: " args)
101 #else
102         #define KNI_DBG(args...)
103 #endif
104
105 #endif