diff options
author | Li-Ta Lo <ollie@lanl.gov> | 2005-01-10 23:16:22 +0000 |
---|---|---|
committer | Li-Ta Lo <ollie@lanl.gov> | 2005-01-10 23:16:22 +0000 |
commit | 883b8793c9777544101261ebcbed6088e0df1593 (patch) | |
tree | 821dfaf9181d0f5be523c21f3c75cc77fbce427f /src/include/device | |
parent | 7ee97999ad03c2134049ba4554e1f5036924cd6d (diff) |
added PCI expansion ROM support,
works for some ATI and Nvidia AGP cards now.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1851 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/include/device')
-rw-r--r-- | src/include/device/pci.h | 2 | ||||
-rw-r--r-- | src/include/device/pci_rom.h | 32 |
2 files changed, 33 insertions, 1 deletions
diff --git a/src/include/device/pci.h b/src/include/device/pci.h index 0ee31f1cb9..d359a96666 100644 --- a/src/include/device/pci.h +++ b/src/include/device/pci.h @@ -19,7 +19,7 @@ #include <device/resource.h> #include <device/device.h> #include <device/pci_ops.h> - +#include <device/pci_rom.h> /* Common pci operations without a standard interface */ struct pci_operations { diff --git a/src/include/device/pci_rom.h b/src/include/device/pci_rom.h new file mode 100644 index 0000000000..68c8e71b7c --- /dev/null +++ b/src/include/device/pci_rom.h @@ -0,0 +1,32 @@ +#include <arch/byteorder.h> +#include <stddef.h> + +#define PCI_ROM_HDR 0xAA55 +#define PCI_DATA_HDR (uint32_t) ( ('R' << 24) | ('I' << 16) | ('C' << 8) | 'P' ) + +#define PCI_RAM_IMAGE_START 0xD0000 +#define PCI_VGA_RAM_IMAGE_START 0xC0000 + +struct rom_header { + uint16_t signature; + uint8_t size; + uint8_t init[3]; + uint8_t reserved[0x12]; + uint16_t data; +}; + +struct pci_data { + uint32_t signature; + uint16_t vendor; + uint16_t device; + uint16_t reserved_1; + uint16_t dlen; + uint8_t drevision; + uint8_t class_hi; + uint16_t class_lo; + uint16_t ilen; + uint16_t irevision; + uint8_t type; + uint8_t indicator; + uint16_t reserved_2; +}; |