inteltool 82945G/GZ/P/PL Support (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3716 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
5d7a1c844e
commit
3d9a12f65d
|
@ -31,6 +31,7 @@ static const struct {
|
||||||
char *name;
|
char *name;
|
||||||
} supported_chips_list[] = {
|
} supported_chips_list[] = {
|
||||||
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82845, "i845" },
|
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82845, "i845" },
|
||||||
|
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82945P, "i945P" },
|
||||||
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82945GM, "i945GM" },
|
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82945GM, "i945GM" },
|
||||||
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7MDH, "ICH7-M DH" },
|
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7MDH, "ICH7-M DH" },
|
||||||
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7M, "ICH7-M" },
|
{ PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH7M, "ICH7-M" },
|
||||||
|
|
|
@ -35,6 +35,7 @@
|
||||||
#define PCI_DEVICE_ID_INTEL_ICH7MDH 0x27bd
|
#define PCI_DEVICE_ID_INTEL_ICH7MDH 0x27bd
|
||||||
|
|
||||||
#define PCI_DEVICE_ID_INTEL_82845 0x1a30
|
#define PCI_DEVICE_ID_INTEL_82845 0x1a30
|
||||||
|
#define PCI_DEVICE_ID_INTEL_82945P 0x2770
|
||||||
#define PCI_DEVICE_ID_INTEL_82945GM 0x27a0
|
#define PCI_DEVICE_ID_INTEL_82945GM 0x27a0
|
||||||
|
|
||||||
#define ARRAY_SIZE(a) ((int)(sizeof(a) / sizeof((a)[0])))
|
#define ARRAY_SIZE(a) ((int)(sizeof(a) / sizeof((a)[0])))
|
||||||
|
|
|
@ -37,6 +37,7 @@ int print_mchbar(struct pci_dev *nb)
|
||||||
|
|
||||||
switch (nb->device_id) {
|
switch (nb->device_id) {
|
||||||
case PCI_DEVICE_ID_INTEL_82945GM:
|
case PCI_DEVICE_ID_INTEL_82945GM:
|
||||||
|
case PCI_DEVICE_ID_INTEL_82945P:
|
||||||
mchbar_phys = pci_read_long(nb, 0x44) & 0xfffffffe;
|
mchbar_phys = pci_read_long(nb, 0x44) & 0xfffffffe;
|
||||||
break;
|
break;
|
||||||
case 0x1234: // Dummy for non-existent functionality
|
case 0x1234: // Dummy for non-existent functionality
|
||||||
|
|
|
@ -36,6 +36,7 @@ int print_epbar(struct pci_dev *nb)
|
||||||
|
|
||||||
switch (nb->device_id) {
|
switch (nb->device_id) {
|
||||||
case PCI_DEVICE_ID_INTEL_82945GM:
|
case PCI_DEVICE_ID_INTEL_82945GM:
|
||||||
|
case PCI_DEVICE_ID_INTEL_82945P:
|
||||||
epbar_phys = pci_read_long(nb, 0x40) & 0xfffffffe;
|
epbar_phys = pci_read_long(nb, 0x40) & 0xfffffffe;
|
||||||
break;
|
break;
|
||||||
case 0x1234: // Dummy for non-existent functionality
|
case 0x1234: // Dummy for non-existent functionality
|
||||||
|
@ -77,6 +78,7 @@ int print_dmibar(struct pci_dev *nb)
|
||||||
|
|
||||||
switch (nb->device_id) {
|
switch (nb->device_id) {
|
||||||
case PCI_DEVICE_ID_INTEL_82945GM:
|
case PCI_DEVICE_ID_INTEL_82945GM:
|
||||||
|
case PCI_DEVICE_ID_INTEL_82945P:
|
||||||
dmibar_phys = pci_read_long(nb, 0x4c) & 0xfffffffe;
|
dmibar_phys = pci_read_long(nb, 0x4c) & 0xfffffffe;
|
||||||
break;
|
break;
|
||||||
case 0x1234: // Dummy for non-existent functionality
|
case 0x1234: // Dummy for non-existent functionality
|
||||||
|
@ -120,6 +122,7 @@ int print_pciexbar(struct pci_dev *nb)
|
||||||
|
|
||||||
switch (nb->device_id) {
|
switch (nb->device_id) {
|
||||||
case PCI_DEVICE_ID_INTEL_82945GM:
|
case PCI_DEVICE_ID_INTEL_82945GM:
|
||||||
|
case PCI_DEVICE_ID_INTEL_82945P:
|
||||||
pciexbar_reg = pci_read_long(nb, 0x48);
|
pciexbar_reg = pci_read_long(nb, 0x48);
|
||||||
break;
|
break;
|
||||||
case 0x1234: // Dummy for non-existent functionality
|
case 0x1234: // Dummy for non-existent functionality
|
||||||
|
|
Loading…
Reference in New Issue