1.\" 2.\" Copyright (c) 1999 Kenneth D. Merry. 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.\" 1. Redistributions of source code must retain the above copyright 9.\" notice, this list of conditions and the following disclaimer. 10.\" 2. The name of the author may not be used to endorse or promote products 11.\" derived from this software without specific prior written permission. 12.\" 13.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 14.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 17.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23.\" SUCH DAMAGE. 24.\" 25.\" $FreeBSD$ 26.\" 27.Dd October 24, 1999 28.Dt PCI 4 29.Os 30.Sh NAME 31.Nm pci 32.Nd generic PCI driver 33.Sh SYNOPSIS 34.Cd device pci 35.Sh DESCRIPTION 36The 37.Nm 38driver provides a way for userland programs to read and write 39.Tn PCI 40configuration registers. 41It also provides a way for userland programs to get a list of all 42.Tn PCI 43devices, or all 44.Tn PCI 45devices that match various patterns. 46.Pp 47Since the 48.Nm 49driver provides a write interface for 50.Tn PCI 51configuration registers, system administrators should exercise caution when 52granting access to the 53.Nm 54device. 55If used improperly, this driver can allow userland applications to 56crash a machine or cause data loss. 57.Sh KERNEL CONFIGURATION 58It is only necessary to specify one 59.Nm 60controller in the kernel. 61Additional 62.Tn PCI 63busses are handled automatically as they are encountered. 64.Sh IOCTLS 65The following 66.Xr ioctl 2 67calls are supported by the 68.Nm 69driver. 70They are defined in the header file 71.In sys/pciio.h . 72.Bl -tag -width 012345678901234 73.Pp 74.It PCIOCGETCONF 75This 76.Xr ioctl 2 77takes a 78.Va pci_conf_io 79structure. 80It allows the user to retrieve information on all 81.Tn PCI 82devices in the system, or on 83.Tn PCI 84devices matching patterns supplied by the user. The call may set 85.Va errno 86to any value specified in either 87.Xr copyin 9 88or 89.Xr copyout 9 . 90The 91.Va pci_conf_io 92structure consists of a number of fields: 93.Bl -tag -width match_buf_len 94.It pat_buf_len 95The length, in bytes, of the buffer filled with user-supplied patterns. 96.It num_patterns 97The number of user-supplied patterns. 98.It patterns 99Pointer to a buffer filled with user-supplied patterns. 100.Va patterns 101is a pointer to 102.Va num_patterns 103.Va pci_match_conf 104structures. The 105.Va pci_match_conf 106structure consists of the following elements: 107.Bl -tag -width pd_vendor 108.It pc_sel 109.Tn PCI 110bus, slot and function. 111.It pd_name 112.Tn PCI 113device driver name. 114.It pd_unit 115.Tn PCI 116device driver unit number. 117.It pc_vendor 118.Tn PCI 119vendor ID. 120.It pc_device 121.Tn PCI 122device ID. 123.It pc_class 124.Tn PCI 125device class. 126.It flags 127The flags describe which of the fields the kernel should match against. 128A device must match all specified fields in order to be returned. 129The match flags are enumerated in the 130.Va pci_getconf_flags 131structure. 132Hopefully the flag values are obvious enough that they don't need to 133described in detail. 134.El 135.It match_buf_len 136Length of the 137.Va matches 138buffer allocated by the user to hold the results of the 139.Dv PCIOCGETCONF 140query. 141.It num_matches 142Number of matches returned by the kernel. 143.It matches 144Buffer containing matching devices returned by the kernel. 145The items in this buffer are of type 146.Va pci_conf , 147which consists of the following items: 148.Bl -tag -width pc_subvendor 149.It pc_sel 150.Tn PCI 151bus, slot and function. 152.It pc_hdr 153.Tn PCI 154header type. 155.It pc_subvendor 156.Tn PCI 157subvendor ID. 158.It pc_subdevice 159.Tn PCI 160subdevice ID. 161.It pc_vendor 162.Tn PCI 163vendor ID. 164.It pc_device 165.Tn PCI 166device ID. 167.It pc_class 168.Tn PCI 169device class. 170.It pc_subclass 171.Tn PCI 172device subclass. 173.It pc_progif 174.Tn PCI 175device programming interface. 176.It pc_revid 177.Tn PCI 178revision ID. 179.It pd_name 180Driver name. 181.It pd_unit 182Driver unit number. 183.El 184.It offset 185The offset is passed in by the user to tell the kernel where it should 186start traversing the device list. 187The value passed out by the kernel 188points to the record immediately after the last one returned. 189The user may 190pass the value returned by the kernel in subsequent calls to the 191.Dv PCIOCGETCONF 192ioctl. 193If the user does not intend to use the offset, it must be set to zero. 194.It generation 195.Tn PCI 196configuration generation. 197This value only needs to be set if the offset is set. 198The kernel will compare the current generation number of its internal 199device list to the generation passed in by the user to determine whether 200its device list has changed since the user last called the 201.Dv PCIOCGETCONF 202ioctl. 203If the device list has changed, a status of 204.Va PCI_GETCONF_LIST_CHANGED 205will be passed back. 206.It status 207The status tells the user the disposition of his request for a device list. 208The possible status values are: 209.Bl -ohang 210.It PCI_GETCONF_LAST_DEVICE 211This means that there are no more devices in the PCI device list after the 212ones returned in the 213.Va matches 214buffer. 215.It PCI_GETCONF_LIST_CHANGED 216This status tells the user that the 217.Tn PCI 218device list has changed since his last call to the 219.Dv PCIOCGETCONF 220ioctl and he must reset the 221.Va offset 222and 223.Va generation 224to zero to start over at the beginning of the list. 225.It PCI_GETCONF_MORE_DEVS 226This tells the user that his buffer was not large enough to hold all of the 227remaining devices in the device list that possibly match his criteria. 228It is possible for this status to be returned, even when none of the remaining 229devices in the list would match the user's criteria. 230.It PCI_GETCONF_ERROR 231This indicates a general error while servicing the user's request. 232If the 233.Va pat_buf_len 234is not equal to 235.Va num_patterns 236times 237.Fn sizeof "struct pci_match_conf" , 238.Va errno 239will be set to 240.Er EINVAL . 241.El 242.El 243.It PCIOCREAD 244This 245.Xr ioctl 2 246reads the 247.Tn PCI 248configuration registers specified by the passed-in 249.Va pci_io 250structure. The 251.Va pci_io 252structure consists of the following fields: 253.Bl -tag -width pi_width 254.It pi_sel 255A 256.Va pcisel 257structure which specifies the bus, slot and function the user would like to 258query. If the specific bus is not found, errno will be set to ENODEV and -1 returned from the ioctl. 259.It pi_reg 260The 261.Tn PCI 262configuration register the user would like to access. 263.It pi_width 264The width, in bytes, of the data the user would like to read. 265This value 266may be either 1, 2, or 4. 3-byte reads and reads larger than 4 bytes are 267not supported. If an invalid width is passed, errno will be set to EINVAL. 268.It pi_data 269The data returned by the kernel. 270.El 271.It PCIOCWRITE 272This 273.Xr ioctl 2 274allows users to write to the 275.Tn PCI 276specified in the passed-in 277.Va pci_io 278structure. The 279.Va pci_io 280structure is described above. 281The limitations on data width described for 282reading registers, above, also apply to writing 283.Tn PCI 284configuration registers. 285.El 286.Sh FILES 287.Bl -tag -width /dev/pci -compact 288.It Pa /dev/pci 289Character device for the 290.Nm 291driver. 292.El 293.Sh DIAGNOSTICS 294None. 295.Sh SEE ALSO 296.Xr pciconf 8 297.Sh HISTORY 298The 299.Nm 300driver (not the kernel's 301.Tn PCI 302support code) first appeared in 303.Fx 2.2 , 304and was written by Stefan Esser and Garrett Wollman. 305Support for device listing and matching was re-implemented by 306Kenneth Merry, and first appeared in 307.Fx 3.0 . 308.Sh AUTHORS 309.An Kenneth Merry Aq ken@FreeBSD.org 310.Sh BUGS 311It isn't possible for users to specify an accurate offset into the device 312list without calling the 313.Dv PCIOCGETCONF 314at least once, since they have no way of knowing the current generation 315number otherwise. 316This probably isn't a serious problem, though, since 317users can easily narrow their search by specifying a pattern or patterns 318for the kernel to match against. 319