DPDK基础组件二(igb_uio、kni、rcu)

2024-06-02 19:28
文章标签 基础 组件 dpdk igb uio kni rcu

本文主要是介绍DPDK基础组件二(igb_uio、kni、rcu),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

The Linux driver implementer’s API guide — The Linux Kernel documentation

一、igb_uid驱动

参考博客:https://zhuanlan.zhihu.com/p/543217445

 UIO(Userspace I/O)是运行在用户空间的I/O技术

代码位置:dpdk----/kernel/linux/igb_uio目录

igb_uio 是 dpdk 内部实现的将网卡映射到用户态的内核模块,它是 uio 模块的一个实例。
igb_uio 是一种 pci 驱动,将网卡绑定到 igb_uio 隔离了网卡的内核驱动,同时 igb_uio 完成网卡中断内核态初始化并将中断信号映射到用户态。
igb_uio 与 uio 模块密切相关,uio是一种字符设备驱动,在此驱动中注册了单独的 file_operations 函数表,uio 设备可以看做是一种独立的设备类型。

1.数据结构

//dpdk定义的uio pci设备描述结构
struct rte_uio_pci_dev {struct uio_info info; //uio 通用结构struct pci_dev *pdev;  //pci设备描述结构enum rte_intr_mode mode; //中断模式
};
struct uio_info {struct uio_device    *uio_dev; //uio设备属于const char        *name; //名称const char        *version; //版本号struct uio_mem        mem[MAX_UIO_MAPS];//可映射的内存区域列表,size == 0表示列表结束struct uio_port        port[MAX_UIO_PORT_REGIONS]; //网口区域列表long            irq; //UIO_IRQ_CUSTOM 中断号unsigned long        irq_flags; //请求中断号的标志void            *priv;  //可选的私有数据irqreturn_t (*handler)(int irq, struct uio_info *dev_info); //中断信息处理int (*mmap)(struct uio_info *info, struct vm_area_struct *vma);//内存映射操作int (*open)(struct uio_info *info, struct inode *inode); //打开int (*release)(struct uio_info *info, struct inode *inode); //释放int (*irqcontrol)(struct uio_info *info, s32 irq_on); //中断控制操作 关闭/打开 当向/dev/uioX中写入值时
static struct pci_driver igbuio_pci_driver = {.name = "igb_uio",  //名称//id_table 用来存储当前driver支持的所有设备的信息//模块初始化时是没有设备的,设置需要通过脚本或者程序添加绑定.id_table = NULL,.probe = igbuio_pci_probe, //探测回调函数.remove = igbuio_pci_remove, //删除回调函数
};

 

2. insmod igb_uio

//igb_uio初始化
static int __init
igbuio_pci_init_module(void)
{int ret;if (igbuio_kernel_is_locked_down()) {pr_err("Not able to use module, kernel lock down is enabled\n");return -EINVAL;}if (wc_activate != 0)pr_info("wc_activate is set\n");//配置insmod时传入的中断模式ret = igbuio_config_intr_mode(intr_mode);if (ret < 0)return ret;//注册pci设备,注册成功时,则调用igbuio_pci_probe开始探测return pci_register_driver(&igbuio_pci_driver);
}//insmod 的时候,执行此函数,但是驱动并未开始工作
module_init(igbuio_pci_init_module);

在igb_uio注册后,会一直调用igbuio_pci_probe

3. igbuio_pci_probe

igbuio_pci_probe主要作用就是:探测网卡,探测到新网卡就进入了igb_uio的设备数组中。

#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 8, 0)
static int __devinit
#else
static int
#endif
igbuio_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)
{struct rte_uio_pci_dev *udev;dma_addr_t map_dma_addr;void *map_addr;int err;#ifdef HAVE_PCI_IS_BRIDGE_APIif (pci_is_bridge(dev)) {dev_warn(&dev->dev, "Ignoring PCI bridge device\n");return -ENODEV;}
#endif//在内核空间分配udev = kzalloc(sizeof(struct rte_uio_pci_dev), GFP_KERNEL);if (!udev)return -ENOMEM;/** enable device: ask low-level code to enable I/O and* memory*///使能设备: 调用更底层的PCI代码使能设备的内存和I/O区域err = pci_enable_device(dev);if (err != 0) {dev_err(&dev->dev, "Cannot enable PCI device\n");goto fail_free;}/* 设备设置层DMA总线主模式 */pci_set_master(dev);/* remap IO memory *///该函数的功能是将当前设备的所有PCI BAR的全部信息读取到//struct uio_info结构体中,后续注册UIO设备时需要使用err = igbuio_setup_bars(dev, &udev->info);if (err != 0)goto fail_release_iomem;/* set 64-bit DMA mask *///设置DMA模式err = pci_set_dma_mask(dev,  DMA_BIT_MASK(64));if (err != 0) {dev_err(&dev->dev, "Cannot set DMA mask\n");goto fail_release_iomem;}//内存范围一致性的处理err = pci_set_consistent_dma_mask(dev, DMA_BIT_MASK(64));if (err != 0) {dev_err(&dev->dev, "Cannot set consistent DMA mask\n");goto fail_release_iomem;}/* fill uio infos */udev->info.name = "igb_uio";udev->info.version = "0.1";udev->info.irqcontrol = igbuio_pci_irqcontrol;udev->info.open = igbuio_pci_open;udev->info.release = igbuio_pci_release;udev->info.priv = udev;udev->pdev = dev;atomic_set(&udev->refcnt, 0);err = sysfs_create_group(&dev->dev.kobj, &dev_attr_grp);if (err != 0)goto fail_release_iomem;/* register uio driver *///函数将当前设备注册为UIO设备err = uio_register_device(&dev->dev, &udev->info);if (err != 0)goto fail_remove_group;pci_set_drvdata(dev, udev);/** Doing a harmless dma mapping for attaching the device to* the iommu identity mapping if kernel boots with iommu=pt.* Note this is not a problem if no IOMMU at all.*/map_addr = dma_alloc_coherent(&dev->dev, 1024, &map_dma_addr,GFP_KERNEL);if (map_addr)memset(map_addr, 0, 1024);if (!map_addr)dev_info(&dev->dev, "dma mapping failed\n");else {dev_info(&dev->dev, "mapping 1K dma=%#llx host=%p\n",(unsigned long long)map_dma_addr, map_addr);dma_free_coherent(&dev->dev, 1024, map_addr, map_dma_addr);dev_info(&dev->dev, "unmapping 1K dma=%#llx host=%p\n",(unsigned long long)map_dma_addr, map_addr);}return 0;fail_remove_group:sysfs_remove_group(&dev->dev.kobj, &dev

这篇关于DPDK基础组件二(igb_uio、kni、rcu)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!


原文地址:
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.chinasem.cn/article/1024869

相关文章

C#基础之委托详解(Delegate)

《C#基础之委托详解(Delegate)》:本文主要介绍C#基础之委托(Delegate),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1. 委托定义2. 委托实例化3. 多播委托(Multicast Delegates)4. 委托的用途事件处理回调函数LINQ

Vue中组件之间传值的六种方式(完整版)

《Vue中组件之间传值的六种方式(完整版)》组件是vue.js最强大的功能之一,而组件实例的作用域是相互独立的,这就意味着不同组件之间的数据无法相互引用,针对不同的使用场景,如何选择行之有效的通信方式... 目录前言方法一、props/$emit1.父组件向子组件传值2.子组件向父组件传值(通过事件形式)方

Spring组件初始化扩展点BeanPostProcessor的作用详解

《Spring组件初始化扩展点BeanPostProcessor的作用详解》本文通过实战案例和常见应用场景详细介绍了BeanPostProcessor的使用,并强调了其在Spring扩展中的重要性,感... 目录一、概述二、BeanPostProcessor的作用三、核心方法解析1、postProcessB

kotlin中的行为组件及高级用法

《kotlin中的行为组件及高级用法》Jetpack中的四大行为组件:WorkManager、DataBinding、Coroutines和Lifecycle,分别解决了后台任务调度、数据驱动UI、异... 目录WorkManager工作原理最佳实践Data Binding工作原理进阶技巧Coroutine

Vue项目的甘特图组件之dhtmlx-gantt使用教程和实现效果展示(推荐)

《Vue项目的甘特图组件之dhtmlx-gantt使用教程和实现效果展示(推荐)》文章介绍了如何使用dhtmlx-gantt组件来实现公司的甘特图需求,并提供了一个简单的Vue组件示例,文章还分享了一... 目录一、首先 npm 安装插件二、创建一个vue组件三、业务页面内 引用自定义组件:四、dhtmlx

Vue ElementUI中Upload组件批量上传的实现代码

《VueElementUI中Upload组件批量上传的实现代码》ElementUI中Upload组件批量上传通过获取upload组件的DOM、文件、上传地址和数据,封装uploadFiles方法,使... ElementUI中Upload组件如何批量上传首先就是upload组件 <el-upl

Vue3中的动态组件详解

《Vue3中的动态组件详解》本文介绍了Vue3中的动态组件,通过`component:is=动态组件名或组件对象/component`来实现根据条件动态渲染不同的组件,此外,还提到了使用`markRa... 目录vue3动态组件动态组件的基本使用第一种写法第二种写法性能优化解决方法总结Vue3动态组件动态

0基础租个硬件玩deepseek,蓝耘元生代智算云|本地部署DeepSeek R1模型的操作流程

《0基础租个硬件玩deepseek,蓝耘元生代智算云|本地部署DeepSeekR1模型的操作流程》DeepSeekR1模型凭借其强大的自然语言处理能力,在未来具有广阔的应用前景,有望在多个领域发... 目录0基础租个硬件玩deepseek,蓝耘元生代智算云|本地部署DeepSeek R1模型,3步搞定一个应

四种Flutter子页面向父组件传递数据的方法介绍

《四种Flutter子页面向父组件传递数据的方法介绍》在Flutter中,如果父组件需要调用子组件的方法,可以通过常用的四种方式实现,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录方法 1:使用 GlobalKey 和 State 调用子组件方法方法 2:通过回调函数(Callb

Vue项目中Element UI组件未注册的问题原因及解决方法

《Vue项目中ElementUI组件未注册的问题原因及解决方法》在Vue项目中使用ElementUI组件库时,开发者可能会遇到一些常见问题,例如组件未正确注册导致的警告或错误,本文将详细探讨这些问题... 目录引言一、问题背景1.1 错误信息分析1.2 问题原因二、解决方法2.1 全局引入 Element