Writing a PCIe-Driver

Dr. Rolf Jansen rj at obsigna.com
Fri Sep 28 16:43:51 UTC 2018


> Am 28.09.2018 um 13:12 schrieb John-Mark Gurney <jmg at funkthat.com>:
> 
> Dr. Rolf Jansen wrote this message on Sun, Sep 23, 2018 at 12:56 -0300:
>> A couple of years ago, with the valuable help of people on this list, I managed to write a PCI driver for the National Instruments DAQ card, NI PCI-6251. The driver was kept very simple, only map the BAR???s and some DMA memory into the user space. The DAC/ADC and DIO is then all controlled from user space by writing command codes to certain offsets from the mapped BAR???s, and reading data from the mapped DMA memory and/or from other given offsets.
>> 
>> See: How to map device addresses into user space
>> https://lists.freebsd.org/pipermail/freebsd-drivers/2013-January/thread.html
>> 
>> Now, I need to do exactly the same for a PCIe card, namely the NI PCIe-6351. However, I even cannot see where to start. For PCI cards, the respective chapter 11 in the FreeBSD Architecture Handbook was quite helpful, for getting started, in no time, I got the PCI card probed and attached.
>> 
>> https://www.freebsd.org/doc/en_US.ISO8859-1/books/arch-handbook/pci.html
>> 
>> The dumb approach, probing the device ID and attaching the PCI(e) driver to the PCIe device in a similar fashion didn???t work - I didn???t expect this either, however, where would I start? How do I attach my driver to a PCIe card on FreeBSD 11 or 12?
> 
> I'm a bit surprised that this didn't work, as PCIe is effectively
> backwards compatible w/ PCI except a few exceptions like MSI...
> 
> Many drivers like em (sys/dev/e1000/if_em.c) are used for both PCI and
> PCIe cards..  Maybe look at what they are doing differently than your
> driver...

In the meantime, the issue has been resolved. See my other post on this list:

https://lists.freebsd.org/pipermail/freebsd-drivers/2018-September/002129.html <https://lists.freebsd.org/pipermail/freebsd-drivers/2018-September/002129.html>

The driver is working now, and I am able to address the basic functionality of the NI PCIe-6351 DAQ board from user space. I didn’t come to check whether interrupts and DMA do work like it did with the older PCI DAQ boards.

Best regards

Rolf 


More information about the freebsd-drivers mailing list