AMD Rev F support
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2435 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@ -29,12 +29,12 @@ struct pci_operations {
|
||||
|
||||
/* Common pci bus operations */
|
||||
struct pci_bus_operations {
|
||||
uint8_t (*read8) (struct bus *pbus, unsigned char bus, int devfn, int where);
|
||||
uint16_t (*read16) (struct bus *pbus, unsigned char bus, int devfn, int where);
|
||||
uint32_t (*read32) (struct bus *pbus, unsigned char bus, int devfn, int where);
|
||||
void (*write8) (struct bus *pbus, unsigned char bus, int devfn, int where, uint8_t val);
|
||||
void (*write16) (struct bus *pbus, unsigned char bus, int devfn, int where, uint16_t val);
|
||||
void (*write32) (struct bus *pbus, unsigned char bus, int devfn, int where, uint32_t val);
|
||||
uint8_t (*read8) (struct bus *pbus, int bus, int devfn, int where);
|
||||
uint16_t (*read16) (struct bus *pbus, int bus, int devfn, int where);
|
||||
uint32_t (*read32) (struct bus *pbus, int bus, int devfn, int where);
|
||||
void (*write8) (struct bus *pbus, int bus, int devfn, int where, uint8_t val);
|
||||
void (*write16) (struct bus *pbus, int bus, int devfn, int where, uint16_t val);
|
||||
void (*write32) (struct bus *pbus, int bus, int devfn, int where, uint32_t val);
|
||||
};
|
||||
|
||||
struct pci_driver {
|
||||
|
Reference in New Issue
Block a user