summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe/pci.h
Commit message (Collapse)AuthorAgeFilesLines
* [Drivers-r8169] Add support for newer rtl8169 variants from Hilko BengenMarty Connor2008-03-311-0/+3
| | | | | 03-19-2008, Hilko Bengen, Cleanups and fixes for newer cards (successfully tested with 8110SC-d onboard NIC)
* Remove deprecation of pci_bar_size()Marty Connor2007-07-051-2/+1Star
|
* Implement the two UNDI API calls used by RIS.Michael Brown2007-06-301-1/+3
|
* Add device description fields to struct device.Michael Brown2007-01-101-3/+4
|
* Add "name" field to struct device to allow human-readable hardware deviceMichael Brown2007-01-101-3/+3
| | | | | | | | | | | names. Add "dev" pointer in struct net_device to tie network interfaces back to a hardware device. Force natural alignment of data types in __table() macros. This seems to prevent gcc from taking the unilateral decision to occasionally increase their alignment (which screws up the table packing).
* Added PCI_BASE_CLASS() macroMichael Brown2007-01-081-0/+2
|
* Added support for wildcard device/vendor ID matchesMichael Brown2007-01-081-0/+3
|
* Strip down i386 PCI configuration space I/O to the bare minimum. AMichael Brown2006-05-171-13/+1Star
| | | | | | | | | | typical build will now include 880 bytes of PCI support code, compared to 2327 bytes in Etherboot 5.4. (There is a slight cost of around 5 extra bytes per access to a non-constant config space address; this should be an overall win. Driver-specific accesses will usually be to constant addresses, for which there is no additional cost.)
* Restructured PCI subsystem to fit the new device model.Michael Brown2006-05-161-112/+107Star
| | | | | | | | | | | | | | Generic PCI code now handles 64-bit BARs correctly when setting "membase"; drivers should need to call pci_bar_start() only if they want to use BARs other than the first memory or I/O BAR. Split rarely-used PCI functions out into pciextra.c. Core PCI code is now 662 bytes (down from 1308 bytes in Etherboot 5.4). 284 bytes of this saving comes from the pci/pciextra split. Cosmetic changes to lots of drivers (e.g. vendor_id->vendor in order to match the names used in Linux).
* Header rearrangement.Michael Brown2006-04-241-0/+366
I want to get to the point where any header in include/ reflects a standard user-level header (e.g. a POSIX header), while everything that's specific to gPXE lives in include/gpxe/. Headers that reflect a Linux header (e.g. if_ether.h) should also be in include/gpxe/, with the same name as the Linux header and, preferably, the same names used for the definitions.