mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-15 23:05:49 +01:00
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.
This commit is contained in:
parent
11ce6a05d7
commit
a7d5d6a892
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=65191
@ -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) {
|
||||
|
@ -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
|
||||
|
@ -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) {
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user