1.\" 2.\" Copyright (c) 2014 Marcel Moolenaar 3.\" All rights reserved. 4.\" 5.\" Redistribution and use in source and binary forms, with or without 6.\" modification, are permitted provided that the following conditions 7.\" are met: 8.\" 9.\" 1. Redistributions of source code must retain the above copyright 10.\" notice, this list of conditions and the following disclaimer. 11.\" 2. Redistributions in binary form must reproduce the above copyright 12.\" notice, this list of conditions and the following disclaimer in the 13.\" documentation and/or other materials provided with the distribution. 14.\" 15.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25.\" 26.\" $FreeBSD$ 27.\" 28.Dd April 29, 2014 29.Dt PROTO 4 30.Os 31.\" 32.Sh NAME 33.Nm proto 34.Nd Driver for prototyping and H/W diagnostics 35.\" 36.Sh SYNOPSIS 37To compile this driver into the kernel, 38place the following line in your 39kernel configuration file: 40.Bd -ragged -offset indent 41.Cd "device proto" 42.Ed 43.Pp 44Alternatively, to load the driver as a 45module at boot time, place the following line in 46.Xr loader.conf 5 : 47.Bd -literal -offset indent 48proto_load="YES" 49.Ed 50.\" 51.Sh DESCRIPTION 52The 53.Nm 54device driver attaches to PCI devices when no other device drivers are 55present and creates device special files for all resources associated 56with the device. 57The driver itself has no knowledge of the device it attaches to. 58Programs can open these device special files and perform register-level 59reads and writes. 60As such, the 61.Nm 62device driver is nothing but a conduit or gateway between user space 63programs and the hardware device. 64.Pp 65Examples for why this is useful include hardware diagnostics and prototyping. 66In both these use cases, it is far more convenient to develop and run the 67logic in user space. 68Especially hardware diagnostics requires a somewhat user-friendly interface 69and adequate reporting. 70Neither is done easily as kernel code. 71.\" 72.Sh FILES 73All device special files corresponding to a PCI device are located under 74.Pa /dev/proto/pci<d>:<b>:<s>:<f> 75with 76.Pa pci<d>:<b>:<s>:<f> 77representing the location of the PCI device in the PCI hierarchy. 78A location includes: 79.Bl -tag -width XXXXXX -compact 80.It <d> 81The PCI domain number 82.It <b> 83The PCI bus number 84.It <s> 85The PCI slot or device number 86.It <f> 87The PCI function number 88.El 89.Pp 90Every PCI device has a device special file called 91.Pa pcicfg . 92This device special file gives access to the PCI configuration space. 93For each valid base address register (BAR), a device special file is created 94that contains the BAR offset and the resource type. 95A resource type can be either 96.Pa io 97or 98.Pa mem 99representing I/O port or memory mapped I/O space (resp.) 100.\" 101.Sh EXAMPLES 102A single function PCI device in domain 0, on bus 1, in slot 2 and having a 103single memory mapped I/O region will have the following device special files: 104.Bl -tag -compact 105.It Pa /dev/proto/pci0:1:2:0/10.mem 106.It Pa /dev/proto/pci0:1:2:0/pcicfg 107.El 108.\" 109.Sh SECURITY CONSIDERATIONS 110Because programs have direct access to the hardware, the 111.Nm 112driver is inherently insecure. 113It is not advisable to use this driver on a production machine. 114.\" 115.Sh MISSING FUNCTIONALITY 116The 117.Nm 118driver does not yet support interrupts. 119Since interrupts cannot be handled by the driver itself, they must be converted 120into signals and delivered to the program that has registered for interrupts. 121.Pp 122In order to test the transmission or reception of data, some means of doing 123direct memory access (DMA) by the device must be possible. 124This too must be under the control of the program. 125The details of how a program can set up and 126initiate DMA still need to be fleshed out. 127.Pp 128Support for non-PCI devices has not been implemented yet. 129.\" 130.Sh AUTHORS 131The 132.Nm 133device driver and this manual page were written by 134.An Marcel Moolenaar Aq marcel@xcllnt.net . 135