kni: clean logs
[dpdk.git] / lib / librte_eal / linuxapp / kni / kni_misc.c
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 #include <linux/module.h>
26 #include <linux/miscdevice.h>
27 #include <linux/netdevice.h>
28 #include <linux/pci.h>
29 #include <linux/kthread.h>
30 #include <linux/rwsem.h>
31
32 #include <exec-env/rte_kni_common.h>
33 #include "kni_dev.h"
34 #include <rte_config.h>
35
36 MODULE_LICENSE("Dual BSD/GPL");
37 MODULE_AUTHOR("Intel Corporation");
38 MODULE_DESCRIPTION("Kernel Module for managing kni devices");
39
40 #define KNI_RX_LOOP_NUM 1000
41
42 #define KNI_MAX_DEVICES 32
43
44 extern void kni_net_rx(struct kni_dev *kni);
45 extern void kni_net_init(struct net_device *dev);
46 extern void kni_net_config_lo_mode(char *lo_str);
47 extern void kni_net_poll_resp(struct kni_dev *kni);
48 extern void kni_set_ethtool_ops(struct net_device *netdev);
49
50 extern int ixgbe_kni_probe(struct pci_dev *pdev, struct net_device **lad_dev);
51 extern void ixgbe_kni_remove(struct pci_dev *pdev);
52 extern int igb_kni_probe(struct pci_dev *pdev, struct net_device **lad_dev);
53 extern void igb_kni_remove(struct pci_dev *pdev);
54
55 static int kni_open(struct inode *inode, struct file *file);
56 static int kni_release(struct inode *inode, struct file *file);
57 static int kni_ioctl(struct inode *inode, unsigned int ioctl_num,
58                                         unsigned long ioctl_param);
59 static int kni_compat_ioctl(struct inode *inode, unsigned int ioctl_num,
60                                                 unsigned long ioctl_param);
61
62 /* kni kernel thread for rx */
63 static int kni_thread(void *unused);
64
65 static struct file_operations kni_fops = {
66         .owner = THIS_MODULE,
67         .open = kni_open,
68         .release = kni_release,
69         .unlocked_ioctl = (void *)kni_ioctl,
70         .compat_ioctl = (void *)kni_compat_ioctl,
71 };
72
73 static struct miscdevice kni_misc = {
74         .minor = MISC_DYNAMIC_MINOR,
75         .name = KNI_DEVICE,
76         .fops = &kni_fops,
77 };
78
79 /* loopback mode */
80 static char *lo_mode = NULL;
81
82 #define KNI_DEV_IN_USE_BIT_NUM 0 /* Bit number for device in use */
83
84 static volatile unsigned long device_in_use; /* device in use flag */
85 static struct task_struct *kni_kthread;
86
87 /* kni list lock */
88 static DECLARE_RWSEM(kni_list_lock);
89
90 /* kni list */
91 static struct list_head kni_list_head = LIST_HEAD_INIT(kni_list_head);
92
93 static int __init
94 kni_init(void)
95 {
96         KNI_PRINT("######## DPDK kni module loading ########\n");
97
98         if (misc_register(&kni_misc) != 0) {
99                 KNI_ERR("Misc registration failed\n");
100                 return 1;
101         }
102
103         /* Clear the bit of device in use */
104         clear_bit(KNI_DEV_IN_USE_BIT_NUM, &device_in_use);
105
106         /* Configure the lo mode according to the input parameter */
107         kni_net_config_lo_mode(lo_mode);
108
109         KNI_PRINT("######## DPDK kni module loaded  ########\n");
110
111         return 0;
112 }
113
114 static void __exit
115 kni_exit(void)
116 {
117         misc_deregister(&kni_misc);
118         KNI_PRINT("####### DPDK kni module unloaded  #######\n");
119 }
120
121 static int
122 kni_open(struct inode *inode, struct file *file)
123 {
124         /* kni device can be opened by one user only, test and set bit */
125         if (test_and_set_bit(KNI_DEV_IN_USE_BIT_NUM, &device_in_use))
126                 return -EBUSY;
127
128         /* Create kernel thread for RX */
129         kni_kthread = kthread_run(kni_thread, NULL, "kni_thread");
130         if (IS_ERR(kni_kthread)) {
131                 KNI_ERR("Unable to create kernel threaed\n");
132                 return PTR_ERR(kni_kthread);
133         }
134
135         KNI_PRINT("/dev/kni opened\n");
136
137         return 0;
138 }
139
140 static int
141 kni_release(struct inode *inode, struct file *file)
142 {
143         struct kni_dev *dev, *n;
144
145         /* Stop kernel thread */
146         kthread_stop(kni_kthread);
147         kni_kthread = NULL;
148
149         down_write(&kni_list_lock);
150         list_for_each_entry_safe(dev, n, &kni_list_head, list) {
151                 /* Call the remove part to restore pci dev */
152                 switch (dev->device_id) {
153                 #define RTE_PCI_DEV_ID_DECL_IGB(vend, dev) case (dev):
154                 #include <rte_pci_dev_ids.h>
155                         igb_kni_remove(dev->pci_dev);
156                         break;
157                 #define RTE_PCI_DEV_ID_DECL_IXGBE(vend, dev) case (dev):
158                 #include <rte_pci_dev_ids.h>
159                         ixgbe_kni_remove(dev->pci_dev);
160                         break;
161                 default:
162                         break;
163                 }
164                 unregister_netdev(dev->net_dev);
165                 free_netdev(dev->net_dev);
166                 list_del(&dev->list);
167         }
168         up_write(&kni_list_lock);
169
170         /* Clear the bit of device in use */
171         clear_bit(KNI_DEV_IN_USE_BIT_NUM, &device_in_use);
172
173         KNI_PRINT("/dev/kni closed\n");
174
175         return 0;
176 }
177
178 static int
179 kni_thread(void *unused)
180 {
181         int j;
182         struct kni_dev *dev, *n;
183
184         while (!kthread_should_stop()) {
185                 down_read(&kni_list_lock);
186                 for (j = 0; j < KNI_RX_LOOP_NUM; j++) {
187                         list_for_each_entry_safe(dev, n,
188                                         &kni_list_head, list) {
189                                 kni_net_rx(dev);
190                                 kni_net_poll_resp(dev);
191                         }
192                 }
193                 up_read(&kni_list_lock);
194                 /* reschedule out for a while */
195                 schedule_timeout_interruptible(usecs_to_jiffies( \
196                                 KNI_KTHREAD_RESCHEDULE_INTERVAL));
197         }
198
199         return 0;
200 }
201
202 static int
203 kni_ioctl_create(unsigned int ioctl_num, unsigned long ioctl_param)
204 {
205         int ret;
206         struct rte_kni_device_info dev_info;
207         struct pci_dev *pci = NULL;
208         struct pci_dev *found_pci = NULL;
209         struct net_device *net_dev = NULL;
210         struct net_device *lad_dev = NULL;
211         struct kni_dev *kni, *dev, *n;
212
213         printk(KERN_INFO "KNI: Creating kni...\n");
214         /* Check the buffer size, to avoid warning */
215         if (_IOC_SIZE(ioctl_num) > sizeof(dev_info))
216                 return -EINVAL;
217
218         /* Copy kni info from user space */
219         ret = copy_from_user(&dev_info, (void *)ioctl_param, sizeof(dev_info));
220         if (ret) {
221                 KNI_ERR("copy_from_user in kni_ioctl_create");
222                 return -EIO;
223         }
224
225         /* Check if it has been created */
226         down_read(&kni_list_lock);
227         list_for_each_entry_safe(dev, n, &kni_list_head, list) {
228                 if (dev->port_id == dev_info.port_id) {
229                         up_read(&kni_list_lock);
230                         KNI_ERR("Port %d has already been created\n",
231                                                 dev_info.port_id);
232                         return -EINVAL;
233                 }
234         }
235         up_read(&kni_list_lock);
236
237         net_dev = alloc_netdev(sizeof(struct kni_dev), dev_info.name,
238                                                         kni_net_init);
239         if (net_dev == NULL) {
240                 KNI_ERR("error allocating device \"%s\"\n", dev_info.name);
241                 return -EBUSY;
242         }
243
244         kni = netdev_priv(net_dev);
245
246         kni->net_dev = net_dev;
247         kni->port_id = dev_info.port_id;
248
249         /* Translate user space info into kernel space info */
250         kni->tx_q = phys_to_virt(dev_info.tx_phys);
251         kni->rx_q = phys_to_virt(dev_info.rx_phys);
252         kni->alloc_q = phys_to_virt(dev_info.alloc_phys);
253         kni->free_q = phys_to_virt(dev_info.free_phys);
254
255         kni->req_q = phys_to_virt(dev_info.req_phys);
256         kni->resp_q = phys_to_virt(dev_info.resp_phys);
257         kni->sync_va = dev_info.sync_va;
258         kni->sync_kva = phys_to_virt(dev_info.sync_phys);
259
260         kni->mbuf_kva = phys_to_virt(dev_info.mbuf_phys);
261         kni->mbuf_va = dev_info.mbuf_va;
262
263         kni->mbuf_size = dev_info.mbuf_size;
264
265         KNI_PRINT("tx_phys:      0x%016llx, tx_q addr:      0x%p\n",
266                 (unsigned long long) dev_info.tx_phys, kni->tx_q);
267         KNI_PRINT("rx_phys:      0x%016llx, rx_q addr:      0x%p\n",
268                 (unsigned long long) dev_info.rx_phys, kni->rx_q);
269         KNI_PRINT("alloc_phys:   0x%016llx, alloc_q addr:   0x%p\n",
270                 (unsigned long long) dev_info.alloc_phys, kni->alloc_q);
271         KNI_PRINT("free_phys:    0x%016llx, free_q addr:    0x%p\n",
272                 (unsigned long long) dev_info.free_phys, kni->free_q);
273         KNI_PRINT("req_phys:     0x%016llx, req_q addr:     0x%p\n",
274                 (unsigned long long) dev_info.req_phys, kni->req_q);
275         KNI_PRINT("resp_phys:    0x%016llx, resp_q addr:    0x%p\n",
276                 (unsigned long long) dev_info.resp_phys, kni->resp_q);
277         KNI_PRINT("mbuf_phys:    0x%016llx, mbuf_kva:       0x%p\n",
278                 (unsigned long long) dev_info.mbuf_phys, kni->mbuf_kva);
279         KNI_PRINT("mbuf_va:      0x%p\n", dev_info.mbuf_va);
280         KNI_PRINT("mbuf_size:    %u\n", kni->mbuf_size);
281
282         KNI_DBG("PCI: %02x:%02x.%02x %04x:%04x\n",
283                                         dev_info.bus,
284                                         dev_info.devid,
285                                         dev_info.function,
286                                         dev_info.vendor_id,
287                                         dev_info.device_id);
288
289         pci = pci_get_device(dev_info.vendor_id, dev_info.device_id, NULL);
290
291         /* Support Ethtool */
292         while (pci) {
293                 KNI_PRINT("pci_bus: %02x:%02x:%02x \n",
294                                         pci->bus->number,
295                                         PCI_SLOT(pci->devfn),
296                                         PCI_FUNC(pci->devfn));
297
298                 if ((pci->bus->number == dev_info.bus) &&
299                         (PCI_SLOT(pci->devfn) == dev_info.devid) &&
300                         (PCI_FUNC(pci->devfn) == dev_info.function)) {
301                         found_pci = pci;
302                         switch (dev_info.device_id) {
303                         #define RTE_PCI_DEV_ID_DECL_IGB(vend, dev) case (dev):
304                         #include <rte_pci_dev_ids.h>
305                                 ret = igb_kni_probe(found_pci, &lad_dev);
306                                 break;
307                         #define RTE_PCI_DEV_ID_DECL_IXGBE(vend, dev) \
308                                                         case (dev):
309                         #include <rte_pci_dev_ids.h>
310                                 ret = ixgbe_kni_probe(found_pci, &lad_dev);
311                                 break;
312                         default:
313                                 ret = -1;
314                                 break;
315                         }
316
317                         KNI_DBG("PCI found: pci=0x%p, lad_dev=0x%p\n",
318                                                         pci, lad_dev);
319                         if (ret == 0) {
320                                 kni->lad_dev = lad_dev;
321                                 kni_set_ethtool_ops(kni->net_dev);
322                         } else {
323                                 KNI_ERR("Device not supported by ethtool");
324                                 kni->lad_dev = NULL;
325                         }
326
327                         kni->pci_dev = found_pci;
328                         kni->device_id = dev_info.device_id;
329                         break;
330                 }
331                 pci = pci_get_device(dev_info.vendor_id,
332                                 dev_info.device_id, pci);
333         }
334         if (pci)
335                 pci_dev_put(pci);
336
337         ret = register_netdev(net_dev);
338         if (ret) {
339                 KNI_ERR("error %i registering device \"%s\"\n",
340                                         ret, dev_info.name);
341                 free_netdev(net_dev);
342                 return -ENODEV;
343         }
344
345         down_write(&kni_list_lock);
346         list_add(&kni->list, &kni_list_head);
347         up_write(&kni_list_lock);
348
349         return 0;
350 }
351
352 static int
353 kni_ioctl_release(unsigned int ioctl_num, unsigned long ioctl_param)
354 {
355         int ret = -EINVAL;
356         uint8_t port_id;
357         struct kni_dev *dev, *n;
358
359         if (_IOC_SIZE(ioctl_num) > sizeof(port_id))
360                         return -EINVAL;
361
362         ret = copy_from_user(&port_id, (void *)ioctl_param, sizeof(port_id));
363         if (ret) {
364                 KNI_ERR("copy_from_user in kni_ioctl_release");
365                 return -EIO;
366         }
367
368         down_write(&kni_list_lock);
369         list_for_each_entry_safe(dev, n, &kni_list_head, list) {
370                 if (dev->port_id != port_id)
371                         continue;
372
373                 switch (dev->device_id) {
374                 #define RTE_PCI_DEV_ID_DECL_IGB(vend, dev) case (dev):
375                 #include <rte_pci_dev_ids.h>
376                         igb_kni_remove(dev->pci_dev);
377                         break;
378                 #define RTE_PCI_DEV_ID_DECL_IXGBE(vend, dev) case (dev):
379                 #include <rte_pci_dev_ids.h>
380                         ixgbe_kni_remove(dev->pci_dev);
381                         break;
382                 default:
383                         break;
384                 }
385                 unregister_netdev(dev->net_dev);
386                 free_netdev(dev->net_dev);
387                 list_del(&dev->list);
388                 ret = 0;
389                 break;
390         }
391         up_write(&kni_list_lock);
392         printk(KERN_INFO "KNI: %s release kni for port %d\n",
393                 (ret == 0 ? "Successfully" : "Unsuccessfully"), port_id);
394
395         return ret;
396 }
397
398 static int
399 kni_ioctl(struct inode *inode,
400         unsigned int ioctl_num,
401         unsigned long ioctl_param)
402 {
403         int ret = -EINVAL;
404
405         KNI_DBG("IOCTL num=0x%0x param=0x%0lx \n", ioctl_num, ioctl_param);
406
407         /*
408          * Switch according to the ioctl called
409          */
410         switch (_IOC_NR(ioctl_num)) {
411         case _IOC_NR(RTE_KNI_IOCTL_TEST):
412                 /* For test only, not used */
413                 break;
414         case _IOC_NR(RTE_KNI_IOCTL_CREATE):
415                 ret = kni_ioctl_create(ioctl_num, ioctl_param);
416                 break;
417         case _IOC_NR(RTE_KNI_IOCTL_RELEASE):
418                 ret = kni_ioctl_release(ioctl_num, ioctl_param);
419                 break;
420         default:
421                 KNI_DBG("IOCTL default \n");
422                 break;
423         }
424
425         return ret;
426 }
427
428 static int
429 kni_compat_ioctl(struct inode *inode,
430                 unsigned int ioctl_num,
431                 unsigned long ioctl_param)
432 {
433         /* 32 bits app on 64 bits OS to be supported later */
434         KNI_PRINT("Not implemented.\n");
435
436         return -EINVAL;
437 }
438
439 module_init(kni_init);
440 module_exit(kni_exit);
441
442 module_param(lo_mode, charp, S_IRUGO | S_IWUSR);
443 MODULE_PARM_DESC(lo_mode,
444 "KNI loopback mode (default=lo_mode_none):\n"
445 "    lo_mode_none        Kernel loopback disabled\n"
446 "    lo_mode_fifo        Enable kernel loopback with fifo\n"
447 "    lo_mode_fifo_skb    Enable kernel loopback with fifo and skb buffer\n"
448 "\n"
449 );
450