aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/pci
Commit message (Expand)AuthorAgeFilesLines
* Prefer new location of pci include files (which have only been in theWarner Losh2003-08-226-12/+12
* Prefer the uintXX_t to the u_intXX_t names.Warner Losh2003-08-225-119/+119
* Define PCI_MAXHDRTYPE to be 2. We know about header types 0, 1 and 2.Warner Losh2003-08-012-10/+2
* Update the 'ps', 'show pci', and 'show ktr' ddb commands to use the newJohn Baldwin2003-07-311-29/+4
* - Make the isab devclass global to allow for multiple ISA bridge drivers.John Baldwin2003-07-081-12/+7
* Add a new PCI interface method, assign_interrupt, to determine theThomas Moestl2003-07-013-6/+23
* Allow to write the intpin ivar using the pci_set_intpin() accessor. ThereThomas Moestl2003-07-011-1/+3
* prevent the number of patterns from exceeding the number of pci devices.John-Mark Gurney2003-06-231-1/+1
* cleanup /dev/pci code some:John-Mark Gurney2003-06-231-54/+20
* Re-enabled PCI irq routing on pc98.Yoshihiro Takahashi2003-06-221-1/+1
* use a REG macro that was already defined.John-Mark Gurney2003-06-221-3/+10
* When we re-route a PCI interrupt, write the new IRQ value into the intlineJohn Baldwin2003-06-091-2/+3
* Don't route PCI irq on pc98.Yoshihiro Takahashi2003-06-081-1/+1
* - Adjust the comment about re-routing PCI interrupts to be lessJohn Baldwin2003-06-071-7/+11
* Batton down the hatches!!!John Baldwin2003-06-041-1/+1
* Remove unused variable(s).Poul-Henning Kamp2003-05-311-9/+0
* Calculate routed interrupts using the slot number from the device andBernd Walter2003-05-221-1/+1
* Add constants for USB programming interfaces. These are already definedDag-Erling Smørgrav2003-04-231-0/+3
* Return status for PCI methods '{enable,disable}_{io,busmaster}'.Matthew N. Dodd2003-04-164-25/+65
* When the driver allocates memory or I/O ports, enable that bit in theWarner Losh2003-04-151-14/+26
* Gigacommit to improve device-driver source compatibility betweenPoul-Henning Kamp2003-03-031-13/+5
* Make /dev/pci use MAJOR_AUTO.Stefan Eßer2003-03-011-0/+4
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-192-2/+2
* Include class designation in pnpinfo for generic driver loadingWarner Losh2003-02-181-2/+3
* Move the pnp and location info into the common pci bus. Make all knownWarner Losh2003-02-172-0/+35
* These don't need to be semi-public after all.Warner Losh2003-02-172-5/+5
* Use rman_get_device rather than rle->resl->r_dev.Warner Losh2003-02-162-8/+6
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-212-2/+2
* Make the base pcib_route_interrupt method available to other pci-pci bridgeBenno Rice2003-01-142-2/+2
* Properly account for prefetchable memory when a request is being made.Warner Losh2002-12-031-47/+112
* Add a new cardbus specific ivar: PCI_IVAR_ETHADDR. Some pci-likeWarner Losh2002-11-272-0/+10
* Fix a couple of bugs in host_pcib_get_busno():John Baldwin2002-11-251-5/+5
* Add a function host_pcib_get_bnsno() that attempts to determine the busJohn Baldwin2002-11-222-0/+85
* Unbreak kernel build.Maxime Henrion2002-11-131-1/+0
* Convert kernel compile option PCI_ALLOW_UNSUPPORTED_IO_RANGE toMatthew N. Dodd2002-11-131-33/+49
* Staticize local variable.Matthew N. Dodd2002-11-131-1/+1
* Save and restore the interrupt Edge/Level Control Registers (ELCR)Ian Dowse2002-10-301-5/+88
* Whitespace.John Baldwin2002-10-161-2/+2
* Removed the only PCI_DEBUG ifdef in the kernel. PCI_DEBUG was not aBruce Evans2002-10-011-2/+0
* The bus number is unsigned, it cannot be less than zero.Poul-Henning Kamp2002-10-011-3/+0
* Don't use GCC shorthand for ?: unless it really matters.Poul-Henning Kamp2002-09-281-2/+3
* Export pcib_attach() as a "protected" for use in subclasses of the PCI-PCIJohn Baldwin2002-09-062-2/+2
* Prefer the physical bus number of the PCI bus as the unit of the pciXJohn Baldwin2002-09-061-1/+1
* Make the printf messages when routing interrupts more consistent in theJohn Baldwin2002-09-051-2/+2
* Fix up a comment.John Baldwin2002-09-041-2/+2
* - Make pci_load_vendor_data() static and do it during MOD_LOAD instead ofJohn Baldwin2002-09-042-16/+15
* Add a new command: show pciregs, equivalent to pciconf -lGuido van Rooij2002-08-281-0/+77
* Overhaul the ACPI PCI bridge driver a bit:John Baldwin2002-08-261-1/+0
* Export a few symbols as globals to allow subclassing of this driver. InJohn Baldwin2002-08-262-37/+91
* Various changes to make it easier to subclass the PCI bus device.John Baldwin2002-08-262-30/+61