Linux user space PCI driver

不想你离开。 提交于 2019-12-13 03:59:18

问题


I'm trying to write a PCI device driver that runs in user space. Not my idea, what the client wants. Target is an embedded Linux board that will never have more than a single user. I'm an experienced C programmer and know Linux, just not familiar with Linux driver development.

Is this really a device driver or just a library? Do I need to use the typical calls pci_register_driver, etc. or can I just access the device using fopen, and using mmap and ioperm to get to it?

Interrupts will be done using the MSI model. Also need to handle DMA transfers. The device will be streaming lots of data to the user.

There's not much info out there on this subject, LDD3 only devotes a couple of pages to it, and there's nothing else that I could find here on SO.

Thanks in advance!


回答1:


If there is no driver handling the PCI card it would be possible to access it using ioperm (or iopl - depending on the address) if only port accesses are required.

Using DMA and interrupts is definitely impossible without a kernel-mode driver.

By googleing I found some text about something like a "generic kernel-mode driver" that allows writing user-mode drivers (including DMA and interrupts).

You should ask your customer which kind of kernel-mode drivers for accessing PCI cards is installed on the Linux board.




回答2:


There is now a proper way to do high performance userspace PCI drivers, called vfio. There is not much documentation, but see the kernel docs http://lxr.free-electrons.com/source/Documentation/vfio.txt and the header file /usr/include/linux.vfio.h. It is available since Linux 3.6.



来源:https://stackoverflow.com/questions/19030249/linux-user-space-pci-driver

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!