- Initial checkin of the freebios2 tree
[coreboot.git] / src / arch / i386 / include / arch / pciconf.h
1 #ifndef PCI_CONF_REG_INDEX
2
3 // These are defined in the PCI spec, and hence are theoretically
4 // inclusive of ANYTHING that uses a PCI bus. 
5 #define PCI_CONF_REG_INDEX      0xcf8
6 #define PCI_CONF_REG_DATA       0xcfc
7 #define CONFIG_ADDR(bus,devfn,where) (((bus) << 16) | ((devfn) << 8) | (where))
8
9 #endif