1 /* 2 * Copyright (c) 2001 M. Warner Losh. All rights reserved. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 8 * 1. Redistributions of source code must retain the above copyright 9 * notice immediately at the beginning of the file, without modification, 10 * this list of conditions, and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * 26 * $FreeBSD$ 27 */ 28 29 /* Vendor/Device IDs */ 30 #define PCI_DEVICE_ID_INTEL_82092AA 0x12218086ul /* 16bit I/O */ 31 #define PCI_DEVICE_ID_PCIC_CLPD6729 0x11001013ul /* 16bit I/O */ 32 #define PCI_DEVICE_ID_PCIC_CLPD6832 0x11101013ul 33 #define PCI_DEVICE_ID_PCIC_CLPD6833 0x11131013ul 34 #define PCI_DEVICE_ID_PCIC_CLPD6834 0x11121013ul 35 #define PCI_DEVICE_ID_PCIC_OZ6729 0x67291217ul 36 #define PCI_DEVICE_ID_PCIC_OZ6730 0x673A1217ul 37 #define PCI_DEVICE_ID_PCIC_OZ6832 0x68321217ul /* Also 6833 */ 38 #define PCI_DEVICE_ID_PCIC_OZ6860 0x68361217ul /* Also 6836 */ 39 #define PCI_DEVICE_ID_PCIC_OZ6872 0x68721217ul /* Also 6812 */ 40 #define PCI_DEVICE_ID_PCIC_OZ6912 0x69721217ul /* Also 6972? */ 41 #define PCI_DEVICE_ID_PCIC_OZ6922 0x69251217ul 42 #define PCI_DEVICE_ID_PCIC_OZ6933 0x69331217ul 43 #define PCI_DEVICE_ID_RICOH_RL5C465 0x04651180ul 44 #define PCI_DEVICE_ID_RICOH_RL5C466 0x04661180ul 45 #define PCI_DEVICE_ID_RICOH_RL5C475 0x04751180ul 46 #define PCI_DEVICE_ID_RICOH_RL5C476 0x04761180ul 47 #define PCI_DEVICE_ID_RICOH_RL5C477 0x04771180ul 48 #define PCI_DEVICE_ID_RICOH_RL5C478 0x04781180ul 49 #define PCI_DEVICE_ID_OMEGA_82C094 0x1221119bul /* 16bit I/O */ 50 #define PCI_DEVICE_ID_PCIC_TI1031 0xac13104cul 51 #define PCI_DEVICE_ID_PCIC_TI1130 0xac12104cul 52 #define PCI_DEVICE_ID_PCIC_TI1131 0xac15104cul 53 #define PCI_DEVICE_ID_PCIC_TI1210 0xac1a104cul 54 #define PCI_DEVICE_ID_PCIC_TI1211 0xac1e104cul 55 #define PCI_DEVICE_ID_PCIC_TI1220 0xac17104cul 56 #define PCI_DEVICE_ID_PCIC_TI1221 0xac19104cul 57 #define PCI_DEVICE_ID_PCIC_TI1225 0xac1c104cul 58 #define PCI_DEVICE_ID_PCIC_TI1250 0xac16104cul 59 #define PCI_DEVICE_ID_PCIC_TI1260 0xac18104cul 60 #define PCI_DEVICE_ID_PCIC_TI1260B 0xac30104cul 61 #define PCI_DEVICE_ID_PCIC_TI1251 0xac1d104cul 62 #define PCI_DEVICE_ID_PCIC_TI1251B 0xac1f104cul 63 #define PCI_DEVICE_ID_PCIC_TI1410 0xac50104cul 64 #define PCI_DEVICE_ID_PCIC_TI1420 0xac51104cul 65 #define PCI_DEVICE_ID_PCIC_TI1421 0xac53104cul 66 #define PCI_DEVICE_ID_PCIC_TI1450 0xac1b104cul 67 #define PCI_DEVICE_ID_PCIC_TI1451 0xac52104cul 68 #define PCI_DEVICE_ID_PCIC_TI4410 0xac41104cul 69 #define PCI_DEVICE_ID_PCIC_TI4450 0xac40104cul 70 #define PCI_DEVICE_ID_PCIC_TI4451 0xac42104cul 71 #define PCI_DEVICE_ID_TOSHIBA_TOPIC95 0x06031179ul 72 #define PCI_DEVICE_ID_TOSHIBA_TOPIC95B 0x060a1179ul 73 #define PCI_DEVICE_ID_TOSHIBA_TOPIC97 0x060f1179ul 74 #define PCI_DEVICE_ID_TOSHIBA_TOPIC100 0x06171179ul 75 76 /* 77 * Other ID, from sources too vague to be reliable 78 * Mfg model PCI ID 79 * smc/Databook DB87144 0x310610b3 80 * SMC/databook smc34c90 0xb10610b3 81 * Omega/Trident 82c194 0x01941023 82 * Omega/Trident 82c722 0x07221023? 83 * Opti 82c814 0xc8141045 84 * Opti 82c824 0xc8241045 85 * NEC uPD66369 0x003e1033 86 */ 87