From a7d5d6a8926aa754ae32bb6ca394ba0db61bd724 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Tue, 29 Aug 2000 04:40:17 +0000 Subject: [PATCH] Add TI-1031 id. It doesn't work yet, but it is nice to have it. These were on cards that were pci pccard (not cardbus) bridges that lived in SparcUltras that picked up on ebay. --- sys/pccard/pcic_pci.c | 5 +++++ sys/pccard/pcic_pci.h | 1 + sys/pci/pcic_p.c | 5 +++++ sys/pci/pcic_p.h | 1 + 4 files changed, 12 insertions(+) diff --git a/sys/pccard/pcic_pci.c b/sys/pccard/pcic_pci.c index d995e5d609fa..6da55bd77771 100644 --- a/sys/pccard/pcic_pci.c +++ b/sys/pccard/pcic_pci.c @@ -229,6 +229,9 @@ pcic_pci_probe(device_t dev) case PCI_DEVICE_ID_PCIC_CLPD6832: desc = "Cirrus Logic PD6832 PCI-CardBus Bridge"; break; + case PCI_DEVICE_ID_PCIC_TI1031: + desc = "TI PCI-1031 PCI-PCMCIA Bridge"; + break; case PCI_DEVICE_ID_PCIC_TI1130: desc = "TI PCI-1130 PCI-CardBus Bridge"; break; @@ -355,6 +358,8 @@ pcic_pci_attach(device_t dev) case PCI_DEVICE_ID_PCIC_CLPD6832: pd6832_legacy_init(dev); break; + case PCI_DEVICE_ID_PCIC_TI1031: + break; } if (bootverbose) { diff --git a/sys/pccard/pcic_pci.h b/sys/pccard/pcic_pci.h index bb96d09f9270..3003ba647420 100644 --- a/sys/pccard/pcic_pci.h +++ b/sys/pccard/pcic_pci.h @@ -34,6 +34,7 @@ #define PCI_DEVICE_ID_PCIC_OZ6730 0x673A1217ul #define PCI_DEVICE_ID_PCIC_CLPD6729 0x11001013ul #define PCI_DEVICE_ID_PCIC_CLPD6832 0x11101013ul +#define PCI_DEVICE_ID_PCIC_TI1031 0xac13104cul #define PCI_DEVICE_ID_PCIC_TI1130 0xac12104cul #define PCI_DEVICE_ID_PCIC_TI1131 0xac15104cul #define PCI_DEVICE_ID_PCIC_TI1211 0xac1e104cul diff --git a/sys/pci/pcic_p.c b/sys/pci/pcic_p.c index d995e5d609fa..6da55bd77771 100644 --- a/sys/pci/pcic_p.c +++ b/sys/pci/pcic_p.c @@ -229,6 +229,9 @@ pcic_pci_probe(device_t dev) case PCI_DEVICE_ID_PCIC_CLPD6832: desc = "Cirrus Logic PD6832 PCI-CardBus Bridge"; break; + case PCI_DEVICE_ID_PCIC_TI1031: + desc = "TI PCI-1031 PCI-PCMCIA Bridge"; + break; case PCI_DEVICE_ID_PCIC_TI1130: desc = "TI PCI-1130 PCI-CardBus Bridge"; break; @@ -355,6 +358,8 @@ pcic_pci_attach(device_t dev) case PCI_DEVICE_ID_PCIC_CLPD6832: pd6832_legacy_init(dev); break; + case PCI_DEVICE_ID_PCIC_TI1031: + break; } if (bootverbose) { diff --git a/sys/pci/pcic_p.h b/sys/pci/pcic_p.h index bb96d09f9270..3003ba647420 100644 --- a/sys/pci/pcic_p.h +++ b/sys/pci/pcic_p.h @@ -34,6 +34,7 @@ #define PCI_DEVICE_ID_PCIC_OZ6730 0x673A1217ul #define PCI_DEVICE_ID_PCIC_CLPD6729 0x11001013ul #define PCI_DEVICE_ID_PCIC_CLPD6832 0x11101013ul +#define PCI_DEVICE_ID_PCIC_TI1031 0xac13104cul #define PCI_DEVICE_ID_PCIC_TI1130 0xac12104cul #define PCI_DEVICE_ID_PCIC_TI1131 0xac15104cul #define PCI_DEVICE_ID_PCIC_TI1211 0xac1e104cul