Martin Roth | 4dcd13d | 2016-02-24 13:53:07 -0800 | [diff] [blame^] | 1 | /* MemTest86+ V5 Specific code (GPL V2.0) |
| 2 | * By Samuel DEMEULEMEESTER, sdemeule@memtest.org |
| 3 | * http://www.canardpc.com - http://www.memtest.org |
| 4 | * ------------------------------------------------ |
| 5 | * Based on JEDEC JEP106-AG - January 2012 |
| 6 | * All mo |
| 7 | */ |
| 8 | |
| 9 | struct spd_jedec_manufacturer { |
| 10 | unsigned cont_code; |
| 11 | unsigned hex_byte; |
| 12 | char *name; |
| 13 | }; |
| 14 | |
| 15 | static struct spd_jedec_manufacturer jep106[] = { |
| 16 | { 0, 0x01, "AMD"}, |
| 17 | { 0, 0x02, "AMI"}, |
| 18 | { 0, 0x83, "Fairchild"}, |
| 19 | { 0, 0x04, "Fujitsu"}, |
| 20 | // { 0, 0x85, "GTE"}, |
| 21 | { 0, 0x86, "Harris"}, |
| 22 | { 0, 0x07, "Hitachi"}, |
| 23 | { 0, 0x08, "Inmos"}, |
| 24 | { 0, 0x89, "Intel"}, |
| 25 | { 0, 0x8a, "I.T.T."}, |
| 26 | { 0, 0x0b, "Intersil"}, |
| 27 | { 0, 0x8c, "Monolithic Memories"}, |
| 28 | { 0, 0x0d, "Mostek"}, |
| 29 | { 0, 0x0e, "Freescale"}, |
| 30 | { 0, 0x8f, "National"}, |
| 31 | { 0, 0x10, "NEC"}, |
| 32 | { 0, 0x91, "RCA"}, |
| 33 | { 0, 0x92, "Raytheon"}, |
| 34 | { 0, 0x13, "Conexant"}, |
| 35 | // { 0, 0x94, "Seeq"}, |
| 36 | { 0, 0x15, "NXP"}, |
| 37 | { 0, 0x16, "Synertek"}, |
| 38 | { 0, 0x97, "Texas Instruments"}, |
| 39 | { 0, 0x98, "Toshiba"}, |
| 40 | { 0, 0x19, "Xicor"}, |
| 41 | { 0, 0x1a, "Zilog"}, |
| 42 | // { 0, 0x9b, "Eurotechnique"}, |
| 43 | { 0, 0x1c, "Mitsubishi"}, |
| 44 | { 0, 0x9d, "Lucent (AT&T)"}, |
| 45 | // { 0, 0x9e, "Exel"}, |
| 46 | { 0, 0x1f, "Atmel"}, |
| 47 | { 0, 0x20, "SGS/Thomson"}, |
| 48 | // { 0, 0xa1, "Lattice Semi."}, |
| 49 | { 0, 0xa2, "NCR"}, |
| 50 | // { 0, 0x23, "Wafer Scale Integration"}, |
| 51 | { 0, 0xa4, "IBM"}, |
| 52 | { 0, 0x25, "Tristar"}, |
| 53 | // { 0, 0x26, "Visic"}, |
| 54 | { 0, 0xa7, "Intl. CMOS Technology"}, |
| 55 | // { 0, 0xa8, "SSSI"}, |
| 56 | { 0, 0x29, "MicrochipTechnology"}, |
| 57 | // { 0, 0x2a, "Ricoh"}, |
| 58 | // { 0, 0xab, "VLSI"}, |
| 59 | { 0, 0x2c, "Micron"}, |
| 60 | { 0, 0xad, "Hynix"}, |
| 61 | { 0, 0xae, "OKI Semiconductor"}, |
| 62 | // { 0, 0x2f, "ACTEL"}, |
| 63 | { 0, 0xb0, "Sharp"}, |
| 64 | { 0, 0x31, "Catalyst"}, |
| 65 | { 0, 0x32, "Panasonic"}, |
| 66 | { 0, 0xb3, "IDT"}, |
| 67 | { 0, 0x34, "Cypress"}, |
| 68 | { 0, 0xb5, "DEC"}, |
| 69 | { 0, 0xb6, "LSI Logic"}, |
| 70 | // { 0, 0x37, "Zarlink (Plessey)"}, |
| 71 | { 0, 0x38, "UTMC"}, |
| 72 | // { 0, 0xb9, "Thinking Machine"}, |
| 73 | { 0, 0xba, "Thomson CSF"}, |
| 74 | // { 0, 0x3b, "Integrated CMOS (Vertex)"}, |
| 75 | // { 0, 0xbc, "Honeywell"}, |
| 76 | { 0, 0x3d, "Tektronix"}, |
| 77 | // { 0, 0x3e, "Oracle"}, |
| 78 | // { 0, 0xbf, "Silicon Storage Technology"}, |
| 79 | { 0, 0x40, "ProMos/Mosel"}, |
| 80 | { 0, 0xc1, "Infineon"}, |
| 81 | // { 0, 0xc2, "Macronix"}, |
| 82 | { 0, 0x43, "Xerox"}, |
| 83 | // { 0, 0xc4, "Plus Logic"}, |
| 84 | { 0, 0x45, "SanDisk"}, |
| 85 | // { 0, 0x46, "Elan Circuit Tech."}, |
| 86 | // { 0, 0xc7, "European Silicon Str."}, |
| 87 | { 0, 0xc8, "Apple Computer"}, |
| 88 | { 0, 0x49, "Xilinx"}, |
| 89 | { 0, 0x4a, "Compaq"}, |
| 90 | // { 0, 0xcb, "Protocol Engines"}, |
| 91 | // { 0, 0x4c, "SCI"}, |
| 92 | { 0, 0xcd, "Seiko Instruments"}, |
| 93 | { 0, 0xce, "Samsung"}, |
| 94 | // { 0, 0x4f, "I3 Design System"}, |
| 95 | // { 0, 0xd0, "Klic"}, |
| 96 | // { 0, 0x51, "Crosspoint Solutions"}, |
| 97 | // { 0, 0x52, "Alliance Semiconductor"}, |
| 98 | // { 0, 0xd3, "Tandem"}, |
| 99 | { 0, 0x54, "Hewlett-Packard"}, |
| 100 | { 0, 0xd5, "Integrated Silicon Solutions"}, |
| 101 | // { 0, 0xd6, "Brooktree"}, |
| 102 | // { 0, 0x57, "New Media"}, |
| 103 | // { 0, 0x58, "MHS Electronic"}, |
| 104 | // { 0, 0xd9, "Performance Semi."}, |
| 105 | { 0, 0xda, "Winbond Electronic"}, |
| 106 | // { 0, 0x5b, "Kawasaki Steel"}, |
| 107 | // { 0, 0xdc, "Bright Micro"}, |
| 108 | // { 0, 0x5d, "TECMAR"}, |
| 109 | { 0, 0x5e, "Exar"}, |
| 110 | // { 0, 0xdf, "PCMCIA"}, |
| 111 | { 0, 0xe0, "LG"}, |
| 112 | // { 0, 0x61, "Northern Telecom"}, |
| 113 | { 0, 0x62, "Sanyo"}, |
| 114 | // { 0, 0xe3, "Array Microsystems"}, |
| 115 | // { 0, 0x64, "Crystal Semiconductor"}, |
| 116 | { 0, 0xe5, "Analog Devices"}, |
| 117 | // { 0, 0xe6, "PMC-Sierra"}, |
| 118 | // { 0, 0x67, "Asparix"}, |
| 119 | // { 0, 0x68, "Convex Computer"}, |
| 120 | // { 0, 0xe9, "Quality Semiconductor"}, |
| 121 | // { 0, 0xea, "Nimbus Technology"}, |
| 122 | // { 0, 0x6b, "Transwitch"}, |
| 123 | // { 0, 0xec, "Micronas (ITT Intermetall)"}, |
| 124 | { 0, 0x6d, "Cannon"}, |
| 125 | // { 0, 0x6e, "Altera"}, |
| 126 | // { 0, 0xef, "NEXCOM"}, |
| 127 | // { 0, 0x70, "QUALCOMM"}, |
| 128 | { 0, 0xf1, "Sony"}, |
| 129 | // { 0, 0xf2, "Cray Research"}, |
| 130 | // { 0, 0x73, "AMS(Austria Micro)"}, |
| 131 | // { 0, 0xf4, "Vitesse"}, |
| 132 | // { 0, 0x75, "Aster Electronics"}, |
| 133 | // { 0, 0x76, "Bay Networks (Synoptic)"}, |
| 134 | // { 0, 0xf7, "Zentrum/ZMD"}, |
| 135 | // { 0, 0xf8, "TRW"}, |
| 136 | // { 0, 0x79, "Thesys"}, |
| 137 | // { 0, 0x7a, "Solbourne Computer"}, |
| 138 | { 0, 0xfb, "Allied-Signal"}, |
| 139 | { 0, 0x7c, "Dialog"}, |
| 140 | { 0, 0xfd, "Media Vision"}, |
| 141 | // { 0, 0xfe, "Numonyx"}, |
| 142 | { 1, 0x01, "Cirrus Logic"}, |
| 143 | { 1, 0x02, "National Instruments"}, |
| 144 | // { 1, 0x83, "ILC Data Device"}, |
| 145 | // { 1, 0x04, "Alcatel Mietec"}, |
| 146 | // { 1, 0x85, "Micro Linear"}, |
| 147 | // { 1, 0x86, "Univ. of NC"}, |
| 148 | // { 1, 0x07, "JTAG Technologies"}, |
| 149 | // { 1, 0x08, "BAE Systems (Loral)"}, |
| 150 | // { 1, 0x89, "Nchip"}, |
| 151 | // { 1, 0x8a, "Galileo Tech"}, |
| 152 | // { 1, 0x0b, "Bestlink Systems"}, |
| 153 | // { 1, 0x8c, "Graychip"}, |
| 154 | // { 1, 0x0d, "GENNUM"}, |
| 155 | // { 1, 0x0e, "VideoLogic"}, |
| 156 | // { 1, 0x8f, "Robert Bosch"}, |
| 157 | // { 1, 0x10, "Chip Express"}, |
| 158 | { 1, 0x91, "DATARAM"}, |
| 159 | // { 1, 0x92, "United Microelectronics Corp."}, |
| 160 | // { 1, 0x13, "TCSI"}, |
| 161 | { 1, 0x94, "Smart Modular"}, |
| 162 | // { 1, 0x15, "Hughes Aircraft"}, |
| 163 | // { 1, 0x16, "Lanstar Semiconductor"}, |
| 164 | // { 1, 0x97, "Qlogic"}, |
| 165 | { 1, 0x98, "Kingston"}, |
| 166 | // { 1, 0x19, "Music Semi"}, |
| 167 | // { 1, 0x1a, "Ericsson Components"}, |
| 168 | // { 1, 0x9b, "SpaSE"}, |
| 169 | // { 1, 0x1c, "Eon Silicon Devices"}, |
| 170 | // { 1, 0x9d, "Programmable Micro Corp"}, |
| 171 | // { 1, 0x9e, "DoD"}, |
| 172 | // { 1, 0x1f, "Integ. Memories Tech."}, |
| 173 | // { 1, 0x20, "Corollary"}, |
| 174 | // { 1, 0xa1, "Dallas Semiconductor"}, |
| 175 | // { 1, 0xa2, "Omnivision"}, |
| 176 | // { 1, 0x23, "EIV(Switzerland)"}, |
| 177 | // { 1, 0xa4, "Novatel Wireless"}, |
| 178 | // { 1, 0x25, "Zarlink (Mitel)"}, |
| 179 | // { 1, 0x26, "Clearpoint"}, |
| 180 | // { 1, 0xa7, "Cabletron"}, |
| 181 | // { 1, 0xa8, "STEC (Silicon Tech)"}, |
| 182 | // { 1, 0x29, "Vanguard"}, |
| 183 | // { 1, 0x2a, "Hagiwara Sys-Com"}, |
| 184 | // { 1, 0xab, "Vantis"}, |
| 185 | // { 1, 0x2c, "Celestica"}, |
| 186 | // { 1, 0xad, "Century"}, |
| 187 | // { 1, 0xae, "Hal Computers"}, |
| 188 | // { 1, 0x2f, "Rohm Company"}, |
| 189 | // { 1, 0xb0, "Juniper Networks"}, |
| 190 | // { 1, 0x31, "Libit Signal Processing"}, |
| 191 | { 1, 0x32, "Mushkin"}, |
| 192 | // { 1, 0xb3, "Tundra Semiconductor"}, |
| 193 | { 1, 0x34, "Adaptec"}, |
| 194 | // { 1, 0xb5, "LightSpeed Semi."}, |
| 195 | // { 1, 0xb6, "ZSP Corp."}, |
| 196 | // { 1, 0x37, "AMIC Technology"}, |
| 197 | // { 1, 0x38, "Adobe Systems"}, |
| 198 | // { 1, 0xb9, "Dynachip"}, |
| 199 | { 1, 0xba, "PNY"}, |
| 200 | // { 1, 0x3b, "Newport Digital"}, |
| 201 | // { 1, 0xbc, "MMC Networks"}, |
| 202 | // { 1, 0x3d, "T Square"}, |
| 203 | // { 1, 0x3e, "Seiko Epson"}, |
| 204 | // { 1, 0xbf, "Broadcom"}, |
| 205 | // { 1, 0x40, "Viking Components"}, |
| 206 | // { 1, 0xc1, "V3 Semiconductor"}, |
| 207 | // { 1, 0xc2, "Flextronics (Orbit Semiconductor)"}, |
| 208 | // { 1, 0x43, "Suwa Electronics"}, |
| 209 | { 1, 0xc4, "Transmeta"}, |
| 210 | { 1, 0x45, "Micron CMS"}, |
| 211 | // { 1, 0x46, "American Computer & Digital Components"}, |
| 212 | // { 1, 0xc7, "Enhance 3000"}, |
| 213 | { 1, 0xc8, "Tower Semiconductor"}, |
| 214 | // { 1, 0x49, "CPU Design"}, |
| 215 | // { 1, 0x4a, "Price Point"}, |
| 216 | { 1, 0xcb, "Maxim Integrated Product"}, |
| 217 | // { 1, 0x4c, "Tellabs"}, |
| 218 | // { 1, 0xcd, "Centaur Technology"}, |
| 219 | { 1, 0xce, "Unigen"}, |
| 220 | { 1, 0x4f, "Transcend"}, |
| 221 | { 1, 0xd0, "Memory Card"}, |
| 222 | // { 1, 0x51, "CKD"}, |
| 223 | // { 1, 0x52, "Capital Instruments"}, |
| 224 | // { 1, 0xd3, "Aica Kogyo"}, |
| 225 | // { 1, 0x54, "Linvex Technology"}, |
| 226 | { 1, 0xd5, "MSC"}, |
| 227 | // { 1, 0xd6, "AKM Company"}, |
| 228 | // { 1, 0x57, "Dynamem"}, |
| 229 | // { 1, 0x58, "NERA ASA"}, |
| 230 | // { 1, 0xd9, "GSI Technology"}, |
| 231 | { 1, 0xda, "Dane-Elec"}, |
| 232 | // { 1, 0x5b, "Acorn Computers"}, |
| 233 | // { 1, 0xdc, "Lara Technology"}, |
| 234 | // { 1, 0x5d, "Oak Technology"}, |
| 235 | { 1, 0x5e, "Itec Memory"}, |
| 236 | // { 1, 0xdf, "Tanisys Technology"}, |
| 237 | // { 1, 0xe0, "Truevision"}, |
| 238 | { 1, 0x61, "Wintec"}, |
| 239 | // { 1, 0x62, "Super PC Memory"}, |
| 240 | // { 1, 0xe3, "MGV Memory"}, |
| 241 | // { 1, 0x64, "Galvantech"}, |
| 242 | // { 1, 0xe5, "Gadzoox Networks"}, |
| 243 | // { 1, 0xe6, "Multi Dimensional Cons."}, |
| 244 | // { 1, 0x67, "GateField"}, |
| 245 | { 1, 0x68, "Integrated Memory System"}, |
| 246 | // { 1, 0xe9, "Triscend"}, |
| 247 | // { 1, 0xea, "XaQti"}, |
| 248 | // { 1, 0x6b, "Goldenram"}, |
| 249 | // { 1, 0xec, "Clear Logic"}, |
| 250 | // { 1, 0x6d, "Cimaron Communications"}, |
| 251 | // { 1, 0x6e, "Nippon Steel Semi. Corp."}, |
| 252 | // { 1, 0xef, "Advantage Memory"}, |
| 253 | // { 1, 0x70, "AMCC"}, |
| 254 | { 1, 0xf1, "LeCroy"}, |
| 255 | // { 1, 0xf2, "Yamaha"}, |
| 256 | // { 1, 0x73, "Digital Microwave"}, |
| 257 | // { 1, 0xf4, "NetLogic Microsystems"}, |
| 258 | // { 1, 0x75, "MIMOS Semiconductor"}, |
| 259 | // { 1, 0x76, "Advanced Fibre"}, |
| 260 | // { 1, 0xf7, "BF Goodrich Data."}, |
| 261 | // { 1, 0xf8, "Epigram"}, |
| 262 | // { 1, 0x79, "Acbel Polytech"}, |
| 263 | { 1, 0x7a, "Apacer Technology"}, |
| 264 | // { 1, 0xfb, "Admor Memory"}, |
| 265 | { 1, 0x7c, "FOXCONN"}, |
| 266 | // { 1, 0xfd, "Quadratics Superconductor"}, |
| 267 | // { 1, 0xfe, "3COM"}, |
| 268 | // { 2, 0x01, "Camintonn"}, |
| 269 | // { 2, 0x02, "ISOA"}, |
| 270 | // { 2, 0x83, "Agate Semiconductor"}, |
| 271 | // { 2, 0x04, "ADMtek"}, |
| 272 | // { 2, 0x85, "HYPERTEC"}, |
| 273 | // { 2, 0x86, "Adhoc Technologies"}, |
| 274 | // { 2, 0x07, "MOSAID Technologies"}, |
| 275 | // { 2, 0x08, "Ardent Technologies"}, |
| 276 | // { 2, 0x89, "Switchcore"}, |
| 277 | // { 2, 0x8a, "Cisco Systems"}, |
| 278 | // { 2, 0x0b, "Allayer Technologies"}, |
| 279 | // { 2, 0x8c, "WorkX AG (Wichman)"}, |
| 280 | // { 2, 0x0d, "Oasis Semiconductor"}, |
| 281 | // { 2, 0x0e, "Novanet Semiconductor"}, |
| 282 | // { 2, 0x8f, "E-M Solutions"}, |
| 283 | // { 2, 0x10, "Power General"}, |
| 284 | // { 2, 0x91, "Advanced Hardware Arch."}, |
| 285 | // { 2, 0x92, "Inova Semiconductors"}, |
| 286 | // { 2, 0x13, "Telocity"}, |
| 287 | // { 2, 0x94, "Delkin Devices"}, |
| 288 | // { 2, 0x15, "Symagery Microsystems"}, |
| 289 | // { 2, 0x16, "C-Port"}, |
| 290 | // { 2, 0x97, "SiberCore Technologies"}, |
| 291 | // { 2, 0x98, "Southland Microsystems"}, |
| 292 | // { 2, 0x19, "Malleable Technologies"}, |
| 293 | // { 2, 0x1a, "Kendin Communications"}, |
| 294 | // { 2, 0x9b, "Great Technology Microcomputer"}, |
| 295 | // { 2, 0x1c, "Sanmina"}, |
| 296 | // { 2, 0x9d, "HADCO"}, |
| 297 | { 2, 0x9e, "Corsair"}, |
| 298 | // { 2, 0x1f, "Actrans System"}, |
| 299 | // { 2, 0x20, "ALPHA Technologies"}, |
| 300 | // { 2, 0xa1, "Silicon Laboratories (Cygnal)"}, |
| 301 | // { 2, 0xa2, "Artesyn Technologies"}, |
| 302 | // { 2, 0x23, "Align Manufacturing"}, |
| 303 | // { 2, 0xa4, "Peregrine Semiconductor"}, |
| 304 | // { 2, 0x25, "Chameleon Systems"}, |
| 305 | // { 2, 0x26, "Aplus Flash Technology"}, |
| 306 | { 2, 0xa7, "MIPS Technologies"}, |
| 307 | // { 2, 0xa8, "Chrysalis ITS"}, |
| 308 | // { 2, 0x29, "ADTEC"}, |
| 309 | { 2, 0x2a, "Kentron Technologies"}, |
| 310 | // { 2, 0xab, "Win Technologies"}, |
| 311 | // { 2, 0x2c, "Tachyon Semiconductor (ASIC)"}, |
| 312 | // { 2, 0xad, "Extreme Packet Devices"}, |
| 313 | // { 2, 0xae, "RF Micro Devices"}, |
| 314 | { 2, 0x2f, "Siemens AG"}, |
| 315 | // { 2, 0xb0, "Sarnoff"}, |
| 316 | // { 2, 0x31, "Itautec SA"}, |
| 317 | // { 2, 0x32, "Radiata"}, |
| 318 | // { 2, 0xb3, "Benchmark Elect. (AVEX)"}, |
| 319 | // { 2, 0x34, "Legend"}, |
| 320 | { 2, 0xb5, "SpecTek"}, |
| 321 | // { 2, 0xb6, "Hi/fn"}, |
| 322 | // { 2, 0x37, "Enikia"}, |
| 323 | // { 2, 0x38, "SwitchOn Networks"}, |
| 324 | // { 2, 0xb9, "AANetcom"}, |
| 325 | // { 2, 0xba, "Micro Memory Bank"}, |
| 326 | { 2, 0x3b, "ESS Technology"}, |
| 327 | // { 2, 0xbc, "Virata"}, |
| 328 | // { 2, 0x3d, "Excess Bandwidth"}, |
| 329 | // { 2, 0x3e, "West Bay Semiconductor"}, |
| 330 | // { 2, 0xbf, "DSP Group"}, |
| 331 | // { 2, 0x40, "Newport Communications"}, |
| 332 | // { 2, 0xc1, "Chip2Chip"}, |
| 333 | // { 2, 0xc2, "Phobos"}, |
| 334 | // { 2, 0x43, "Intellitech"}, |
| 335 | // { 2, 0xc4, "Nordic VLSI ASA"}, |
| 336 | // { 2, 0x45, "Ishoni Networks"}, |
| 337 | // { 2, 0x46, "Silicon Spice"}, |
| 338 | // { 2, 0xc7, "Alchemy Semiconductor"}, |
| 339 | { 2, 0xc8, "Agilent Technologies"}, |
| 340 | // { 2, 0x49, "Centillium Communications"}, |
| 341 | // { 2, 0x4a, "W.L. Gore"}, |
| 342 | // { 2, 0xcb, "HanBit Electronics"}, |
| 343 | // { 2, 0x4c, "GlobeSpan"}, |
| 344 | // { 2, 0xcd, "Element 14"}, |
| 345 | // { 2, 0xce, "Pycon"}, |
| 346 | // { 2, 0x4f, "Saifun Semiconductors"}, |
| 347 | // { 2, 0xd0, "Sibyte,"}, |
| 348 | // { 2, 0x51, "MetaLink Technologies"}, |
| 349 | // { 2, 0x52, "Feiya Technology"}, |
| 350 | // { 2, 0xd3, "I & C Technology"}, |
| 351 | // { 2, 0x54, "Shikatronics"}, |
| 352 | // { 2, 0xd5, "Elektrobit"}, |
| 353 | // { 2, 0xd6, "Megic"}, |
| 354 | // { 2, 0x57, "Com-Tier"}, |
| 355 | // { 2, 0x58, "Malaysia Micro Solutions"}, |
| 356 | // { 2, 0xd9, "Hyperchip"}, |
| 357 | // { 2, 0xda, "Gemstone Communications"}, |
| 358 | // { 2, 0x5b, "Anadigm (Anadyne)"}, |
| 359 | // { 2, 0xdc, "3ParData"}, |
| 360 | // { 2, 0x5d, "Mellanox Technologies"}, |
| 361 | // { 2, 0x5e, "Tenx Technologies"}, |
| 362 | // { 2, 0xdf, "Helix AG"}, |
| 363 | // { 2, 0xe0, "Domosys"}, |
| 364 | // { 2, 0x61, "Skyup Technology"}, |
| 365 | // { 2, 0x62, "HiNT"}, |
| 366 | // { 2, 0xe3, "Chiaro"}, |
| 367 | { 2, 0x64, "MDT"}, |
| 368 | // { 2, 0xe5, "Exbit Technology A/S"}, |
| 369 | // { 2, 0xe6, "Integrated Technology Express"}, |
| 370 | // { 2, 0x67, "AVED Memory"}, |
| 371 | // { 2, 0x68, "Legerity"}, |
| 372 | // { 2, 0xe9, "Jasmine Networks"}, |
| 373 | // { 2, 0xea, "Caspian Networks"}, |
| 374 | // { 2, 0x6b, "nCUBE"}, |
| 375 | // { 2, 0xec, "Silicon Access Networks"}, |
| 376 | // { 2, 0x6d, "FDK"}, |
| 377 | // { 2, 0x6e, "High Bandwidth Access"}, |
| 378 | // { 2, 0xef, "MultiLink Technology"}, |
| 379 | // { 2, 0x70, "BRECIS"}, |
| 380 | // { 2, 0xf1, "World Wide Packets"}, |
| 381 | // { 2, 0xf2, "APW"}, |
| 382 | // { 2, 0x73, "Chicory Systems"}, |
| 383 | // { 2, 0xf4, "Xstream Logic"}, |
| 384 | // { 2, 0x75, "Fast-Chip"}, |
| 385 | // { 2, 0x76, "Zucotto Wireless"}, |
| 386 | // { 2, 0xf7, "Realchip"}, |
| 387 | // { 2, 0xf8, "Galaxy Power"}, |
| 388 | // { 2, 0x79, "eSilicon"}, |
| 389 | // { 2, 0x7a, "Morphics Technology"}, |
| 390 | // { 2, 0xfb, "Accelerant Networks"}, |
| 391 | // { 2, 0x7c, "Silicon Wave"}, |
| 392 | // { 2, 0xfd, "SandCraft"}, |
| 393 | { 2, 0xfe, "Elpida"}, |
| 394 | // { 3, 0x01, "Solectron"}, |
| 395 | { 3, 0x02, "Optosys Technologies"}, |
| 396 | { 3, 0x83, "Buffalo"}, |
| 397 | // { 3, 0x04, "TriMedia Technologies"}, |
| 398 | // { 3, 0x85, "Cyan Technologies"}, |
| 399 | // { 3, 0x86, "Global Locate"}, |
| 400 | // { 3, 0x07, "Optillion"}, |
| 401 | // { 3, 0x08, "Terago Communications"}, |
| 402 | // { 3, 0x89, "Ikanos Communications"}, |
| 403 | { 3, 0x8a, "Princeton"}, |
| 404 | { 3, 0x0b, "Nanya"}, |
| 405 | // { 3, 0x8c, "Elite Flash Storage"}, |
| 406 | // { 3, 0x0d, "Mysticom"}, |
| 407 | // { 3, 0x0e, "LightSand Communications"}, |
| 408 | { 3, 0x8f, "ATI"}, |
| 409 | // { 3, 0x10, "Agere Systems"}, |
| 410 | // { 3, 0x91, "NeoMagic"}, |
| 411 | // { 3, 0x92, "AuroraNetics"}, |
| 412 | // { 3, 0x13, "Golden Empire"}, |
| 413 | { 3, 0x94, "Mushkin"}, |
| 414 | // { 3, 0x15, "Tioga Technologies"}, |
| 415 | { 3, 0x16, "Netlist"}, |
| 416 | // { 3, 0x97, "TeraLogic"}, |
| 417 | // { 3, 0x98, "Cicada Semiconductor"}, |
| 418 | { 3, 0x19, "Centon"}, |
| 419 | { 3, 0x1a, "Tyco Electronics"}, |
| 420 | // { 3, 0x9b, "Magis Works"}, |
| 421 | // { 3, 0x1c, "Zettacom"}, |
| 422 | // { 3, 0x9d, "Cogency Semiconductor"}, |
| 423 | // { 3, 0x9e, "Chipcon AS"}, |
| 424 | // { 3, 0x1f, "Aspex Technology"}, |
| 425 | // { 3, 0x20, "F5 Networks"}, |
| 426 | // { 3, 0xa1, "Programmable Silicon Solutions"}, |
| 427 | // { 3, 0xa2, "ChipWrights"}, |
| 428 | // { 3, 0x23, "Acorn Networks"}, |
| 429 | // { 3, 0xa4, "Quicklogic"}, |
| 430 | { 3, 0x25, "Kingmax"}, |
| 431 | // { 3, 0x26, "BOPS"}, |
| 432 | // { 3, 0xa7, "Flasys"}, |
| 433 | // { 3, 0xa8, "BitBlitz Communications"}, |
| 434 | { 3, 0x29, "eMemory Technology"}, |
| 435 | // { 3, 0x2a, "Procket Networks"}, |
| 436 | // { 3, 0xab, "Purple Ray"}, |
| 437 | // { 3, 0x2c, "Trebia Networks"}, |
| 438 | // { 3, 0xad, "Delta Electronics"}, |
| 439 | // { 3, 0xae, "Onex Communications"}, |
| 440 | // { 3, 0x2f, "Ample Communications"}, |
| 441 | { 3, 0xb0, "Memory Experts"}, |
| 442 | // { 3, 0x31, "Astute Networks"}, |
| 443 | // { 3, 0x32, "Azanda Network Devices"}, |
| 444 | // { 3, 0xb3, "Dibcom"}, |
| 445 | // { 3, 0x34, "Tekmos"}, |
| 446 | // { 3, 0xb5, "API NetWorks"}, |
| 447 | // { 3, 0xb6, "Bay Microsystems"}, |
| 448 | // { 3, 0x37, "Firecron"}, |
| 449 | // { 3, 0x38, "Resonext Communications"}, |
| 450 | // { 3, 0xb9, "Tachys Technologies"}, |
| 451 | // { 3, 0xba, "Equator Technology"}, |
| 452 | // { 3, 0x3b, "Concept Computer"}, |
| 453 | // { 3, 0xbc, "SILCOM"}, |
| 454 | // { 3, 0x3d, "3Dlabs"}, |
| 455 | // { 3, 0x3e, "cÂ’t Magazine"}, |
| 456 | // { 3, 0xbf, "Sanera Systems"}, |
| 457 | // { 3, 0x40, "Silicon Packets"}, |
| 458 | { 3, 0xc1, "Viasystems Group"}, |
| 459 | { 3, 0xc2, "Simtek"}, |
| 460 | // { 3, 0x43, "Semicon Devices Singapore"}, |
| 461 | // { 3, 0xc4, "Satron Handelsges"}, |
| 462 | // { 3, 0x45, "Improv Systems"}, |
| 463 | // { 3, 0x46, "INDUSYS"}, |
| 464 | // { 3, 0xc7, "Corrent"}, |
| 465 | // { 3, 0xc8, "Infrant Technologies"}, |
| 466 | // { 3, 0x49, "Ritek Corp"}, |
| 467 | // { 3, 0x4a, "empowerTel Networks"}, |
| 468 | // { 3, 0xcb, "Hypertec"}, |
| 469 | // { 3, 0x4c, "Cavium Networks"}, |
| 470 | { 3, 0xcd, "PLX Technology"}, |
| 471 | // { 3, 0xce, "Massana Design"}, |
| 472 | // { 3, 0x4f, "Intrinsity"}, |
| 473 | // { 3, 0xd0, "Valence Semiconductor"}, |
| 474 | // { 3, 0x51, "Terawave Communications"}, |
| 475 | // { 3, 0x52, "IceFyre Semiconductor"}, |
| 476 | // { 3, 0xd3, "Primarion"}, |
| 477 | // { 3, 0x54, "Picochip Designs"}, |
| 478 | // { 3, 0xd5, "Silverback Systems"}, |
| 479 | { 3, 0xd6, "Jade Star"}, |
| 480 | // { 3, 0x57, "Pijnenburg Securealink"}, |
| 481 | { 3, 0x58, "takeMS"}, |
| 482 | // { 3, 0xd9, "Cambridge Silicon Radio"}, |
| 483 | { 3, 0xda, "Swissbit"}, |
| 484 | // { 3, 0x5b, "Nazomi Communications"}, |
| 485 | // { 3, 0xdc, "eWave System"}, |
| 486 | // { 3, 0x5d, "Rockwell Collins"}, |
| 487 | // { 3, 0x5e, "Picocel (Paion)"}, |
| 488 | // { 3, 0xdf, "Alphamosaic"}, |
| 489 | // { 3, 0xe0, "Sandburst"}, |
| 490 | // { 3, 0x61, "SiCon Video"}, |
| 491 | // { 3, 0x62, "NanoAmp Solutions"}, |
| 492 | // { 3, 0xe3, "Ericsson Technology"}, |
| 493 | // { 3, 0x64, "PrairieComm"}, |
| 494 | { 3, 0xe5, "Mitac International"}, |
| 495 | // { 3, 0xe6, "Layer N Networks"}, |
| 496 | // { 3, 0x67, "MtekVision (Atsana)"}, |
| 497 | // { 3, 0x68, "Allegro Networks"}, |
| 498 | // { 3, 0xe9, "Marvell Semiconductors"}, |
| 499 | // { 3, 0xea, "Netergy Microelectronic"}, |
| 500 | { 3, 0x6b, "nVidia"}, |
| 501 | // { 3, 0xec, "Internet Machines"}, |
| 502 | // { 3, 0x6d, "Peak Electronics"}, |
| 503 | // { 3, 0x6e, "Litchfield Communication"}, |
| 504 | { 3, 0xef, "Accton"}, |
| 505 | // { 3, 0x70, "Teradiant Networks"}, |
| 506 | // { 3, 0xf1, "Scaleo Chip"}, |
| 507 | // { 3, 0xf2, "Cortina Systems"}, |
| 508 | { 3, 0x73, "RAM Components"}, |
| 509 | // { 3, 0xf4, "Raqia Networks"}, |
| 510 | // { 3, 0x75, "ClearSpeed"}, |
| 511 | // { 3, 0x76, "Matsushita Battery"}, |
| 512 | // { 3, 0xf7, "Xelerated"}, |
| 513 | // { 3, 0xf8, "SimpleTech"}, |
| 514 | { 3, 0x79, "Utron"}, |
| 515 | // { 3, 0x7a, "Astec International"}, |
| 516 | // { 3, 0xfb, "AVM"}, |
| 517 | // { 3, 0x7c, "Redux Communications"}, |
| 518 | // { 3, 0xfd, "Dot Hill Systems"}, |
| 519 | { 3, 0xfe, "TeraChip"}, |
| 520 | { 4, 0x01, "T-RAM"}, |
| 521 | // { 4, 0x02, "Innovics Wireless"}, |
| 522 | // { 4, 0x83, "Teknovus"}, |
| 523 | // { 4, 0x04, "KeyEye Communications"}, |
| 524 | // { 4, 0x85, "Runcom Technologies"}, |
| 525 | // { 4, 0x86, "RedSwitch"}, |
| 526 | // { 4, 0x07, "Dotcast"}, |
| 527 | { 4, 0x08, "Silicon Mountain Memory"}, |
| 528 | // { 4, 0x89, "Signia Technologies"}, |
| 529 | // { 4, 0x8a, "Pixim"}, |
| 530 | // { 4, 0x0b, "Galazar Networks"}, |
| 531 | // { 4, 0x8c, "White Electronic Designs"}, |
| 532 | // { 4, 0x0d, "Patriot Scientific"}, |
| 533 | // { 4, 0x0e, "Neoaxiom"}, |
| 534 | // { 4, 0x8f, "3Y Power Technology"}, |
| 535 | { 4, 0x10, "Scaleo Chip"}, |
| 536 | // { 4, 0x91, "Potentia Power Systems"}, |
| 537 | // { 4, 0x92, "C-guys"}, |
| 538 | // { 4, 0x13, "Digital Communications Technology"}, |
| 539 | // { 4, 0x94, "Silicon-Based Technology"}, |
| 540 | // { 4, 0x15, "Fulcrum Microsystems"}, |
| 541 | // { 4, 0x16, "Positivo Informatica"}, |
| 542 | // { 4, 0x97, "XIOtech"}, |
| 543 | // { 4, 0x98, "PortalPlayer"}, |
| 544 | // { 4, 0x19, "Zhiying Software"}, |
| 545 | // { 4, 0x1a, "ParkerVision"}, |
| 546 | // { 4, 0x9b, "Phonex Broadband"}, |
| 547 | // { 4, 0x1c, "Skyworks Solutions"}, |
| 548 | // { 4, 0x9d, "Entropic Communications"}, |
| 549 | // { 4, 0x9e, "Pacific Force Technology"}, |
| 550 | // { 4, 0x1f, "Zensys A/S"}, |
| 551 | // { 4, 0x20, "Legend Silicon Corp."}, |
| 552 | // { 4, 0xa1, "Sci-worx"}, |
| 553 | // { 4, 0xa2, "SMSC (Standard Microsystems)"}, |
| 554 | { 4, 0x23, "Renesas"}, |
| 555 | // { 4, 0xa4, "Raza Microelectronics"}, |
| 556 | // { 4, 0x25, "Phyworks"}, |
| 557 | // { 4, 0x26, "MediaTek"}, |
| 558 | // { 4, 0xa7, "Non-cents Productions"}, |
| 559 | // { 4, 0xa8, "US Modular"}, |
| 560 | // { 4, 0x29, "Wintegra"}, |
| 561 | // { 4, 0x2a, "Mathstar"}, |
| 562 | // { 4, 0xab, "StarCore"}, |
| 563 | // { 4, 0x2c, "Oplus Technologies"}, |
| 564 | // { 4, 0xad, "Mindspeed"}, |
| 565 | // { 4, 0xae, "Just Young Computer"}, |
| 566 | // { 4, 0x2f, "Radia Communications"}, |
| 567 | { 4, 0xb0, "OCZ"}, |
| 568 | // { 4, 0x31, "Emuzed"}, |
| 569 | // { 4, 0x32, "LOGIC Devices"}, |
| 570 | // { 4, 0xb3, "Inphi"}, |
| 571 | // { 4, 0x34, "Quake Technologies"}, |
| 572 | // { 4, 0xb5, "Vixel"}, |
| 573 | // { 4, 0xb6, "SolusTek"}, |
| 574 | // { 4, 0x37, "Kongsberg Maritime"}, |
| 575 | // { 4, 0x38, "Faraday Technology"}, |
| 576 | { 4, 0xb9, "Altium"}, |
| 577 | // { 4, 0xba, "Insyte"}, |
| 578 | { 4, 0x3b, "ARM"}, |
| 579 | // { 4, 0xbc, "DigiVision"}, |
| 580 | // { 4, 0x3d, "Vativ Technologies"}, |
| 581 | // { 4, 0x3e, "Endicott Interconnect Technologies"}, |
| 582 | { 4, 0xbf, "Pericom"}, |
| 583 | // { 4, 0x40, "Bandspeed"}, |
| 584 | // { 4, 0xc1, "LeWiz Communications"}, |
| 585 | // { 4, 0xc2, "CPU Technology"}, |
| 586 | { 4, 0x43, "Ramaxel"}, |
| 587 | // { 4, 0xc4, "DSP Group"}, |
| 588 | // { 4, 0x45, "Axis Communications"}, |
| 589 | { 4, 0x46, "Legacy Electronics"}, |
| 590 | // { 4, 0xc7, "Chrontel"}, |
| 591 | // { 4, 0xc8, "Powerchip Semiconductor"}, |
| 592 | // { 4, 0x49, "MobilEye Technologies"}, |
| 593 | { 4, 0x4a, "Excel Semiconductor"}, |
| 594 | { 4, 0xcb, "A-DATA"}, |
| 595 | // { 4, 0x4c, "VirtualDigm"}, |
| 596 | { 4, 0xcd, "G.Skill"}, |
| 597 | // { 4, 0xce, "Quanta Computer"}, |
| 598 | // { 4, 0x4f, "Yield Microelectronics"}, |
| 599 | // { 4, 0xd0, "Afa Technologies"}, |
| 600 | { 4, 0x51, "Kingbox"}, |
| 601 | // { 4, 0x52, "Ceva"}, |
| 602 | // { 4, 0xd3, "iStor Networks"}, |
| 603 | // { 4, 0x54, "Advance Modules"}, |
| 604 | { 4, 0xd5, "Microsoft"}, |
| 605 | // { 4, 0xd6, "Open-Silicon"}, |
| 606 | // { 4, 0x57, "Goal Semiconductor"}, |
| 607 | // { 4, 0x58, "ARC International"}, |
| 608 | { 4, 0xd9, "Simmtec"}, |
| 609 | // { 4, 0xda, "Metanoia"}, |
| 610 | // { 4, 0x5b, "Key Stream"}, |
| 611 | // { 4, 0xdc, "Lowrance Electronics"}, |
| 612 | // { 4, 0x5d, "Adimos"}, |
| 613 | // { 4, 0x5e, "SiGe Semiconductor"}, |
| 614 | // { 4, 0xdf, "Fodus Communications"}, |
| 615 | // { 4, 0xe0, "Credence Systems Corp."}, |
| 616 | // { 4, 0x61, "Genesis Microchip"}, |
| 617 | // { 4, 0x62, "Vihana"}, |
| 618 | // { 4, 0xe3, "WIS Technologies"}, |
| 619 | // { 4, 0x64, "GateChange Technologies"}, |
| 620 | // { 4, 0xe5, "High Density Devices AS"}, |
| 621 | // { 4, 0xe6, "Synopsys"}, |
| 622 | // { 4, 0x67, "Gigaram"}, |
| 623 | // { 4, 0x68, "Enigma Semiconductor"}, |
| 624 | // { 4, 0xe9, "Century Micro"}, |
| 625 | // { 4, 0xea, "Icera Semiconductor"}, |
| 626 | // { 4, 0x6b, "Mediaworks Integrated Systems"}, |
| 627 | // { 4, 0xec, "OÂ’Neil Product Development"}, |
| 628 | // { 4, 0x6d, "Supreme Top Technology"}, |
| 629 | // { 4, 0x6e, "MicroDisplay"}, |
| 630 | { 4, 0xef, "Team Group"}, |
| 631 | // { 4, 0x70, "Sinett"}, |
| 632 | { 4, 0xf1, "Toshiba"}, |
| 633 | // { 4, 0xf2, "Tensilica"}, |
| 634 | // { 4, 0x73, "SiRF Technology"}, |
| 635 | // { 4, 0xf4, "Bacoc"}, |
| 636 | // { 4, 0x75, "SMaL Camera Technologies"}, |
| 637 | { 4, 0x76, "Thomson SC"}, |
| 638 | // { 4, 0xf7, "Airgo Networks"}, |
| 639 | // { 4, 0xf8, "Wisair"}, |
| 640 | // { 4, 0x79, "SigmaTel"}, |
| 641 | // { 4, 0x7a, "Arkados"}, |
| 642 | // { 4, 0xfb, "Compete IT KG"}, |
| 643 | // { 4, 0x7c, "Eudar Technology"}, |
| 644 | // { 4, 0xfd, "Focus Enhancements"}, |
| 645 | // { 4, 0xfe, "Xyratex"}, |
| 646 | // { 5, 0x01, "Specular Networks"}, |
| 647 | { 5, 0x02, "Patriot Memory"}, |
| 648 | // { 5, 0x83, "U-Chip Technology Corp."}, |
| 649 | // { 5, 0x04, "Silicon Optix"}, |
| 650 | // { 5, 0x85, "Greenfield Networks"}, |
| 651 | { 5, 0x86, "CompuRAM"}, |
| 652 | // { 5, 0x07, "Stargen"}, |
| 653 | // { 5, 0x08, "NetCell"}, |
| 654 | // { 5, 0x89, "Excalibrus Technologies"}, |
| 655 | // { 5, 0x8a, "SCM Microsystems"}, |
| 656 | // { 5, 0x0b, "Xsigo Systems"}, |
| 657 | // { 5, 0x8c, "CHIPS & Systems"}, |
| 658 | // { 5, 0x0d, "Tier"}, |
| 659 | // { 5, 0x0e, "CWRL Labs"}, |
| 660 | // { 5, 0x8f, "Teradici"}, |
| 661 | // { 5, 0x10, "Gigaram"}, |
| 662 | // { 5, 0x91, "g2 Microsystems"}, |
| 663 | // { 5, 0x92, "PowerFlash Semiconductor"}, |
| 664 | // { 5, 0x13, "P.A. Semi"}, |
| 665 | { 5, 0x94, "NovaTech"}, |
| 666 | // { 5, 0x15, "c2 Microsystems"}, |
| 667 | // { 5, 0x16, "Level5 Networks"}, |
| 668 | { 5, 0x97, "COS Memory"}, |
| 669 | // { 5, 0x98, "Innovasic Semiconductor"}, |
| 670 | // { 5, 0x19, "02IC"}, |
| 671 | // { 5, 0x1a, "Tabula"}, |
| 672 | { 5, 0x9b, "Crucial"}, |
| 673 | // { 5, 0x1c, "Chelsio Communications"}, |
| 674 | // { 5, 0x9d, "Solarflare Communications"}, |
| 675 | // { 5, 0x9e, "Xambala"}, |
| 676 | // { 5, 0x1f, "EADS Astrium"}, |
| 677 | // { 5, 0x20, "Terra Semiconductor"}, |
| 678 | // { 5, 0xa1, "Imaging Works"}, |
| 679 | // { 5, 0xa2, "Astute Networks"}, |
| 680 | // { 5, 0x23, "Tzero"}, |
| 681 | // { 5, 0xa4, "Emulex"}, |
| 682 | // { 5, 0x25, "Power-One"}, |
| 683 | // { 5, 0x26, "Pulse~LINK"}, |
| 684 | // { 5, 0xa7, "Hon Hai Precision Industry"}, |
| 685 | // { 5, 0xa8, "White Rock Networks"}, |
| 686 | // { 5, 0x29, "Telegent Systems USA"}, |
| 687 | // { 5, 0x2a, "Atrua Technologies"}, |
| 688 | // { 5, 0xab, "Acbel Polytech"}, |
| 689 | // { 5, 0x2c, "eRide"}, |
| 690 | { 5, 0xad, "ULi"}, |
| 691 | // { 5, 0xae, "Magnum Semiconductor"}, |
| 692 | // { 5, 0x2f, "neoOne Technology"}, |
| 693 | // { 5, 0xb0, "Connex Technology"}, |
| 694 | // { 5, 0x31, "Stream Processors"}, |
| 695 | // { 5, 0x32, "Focus Enhancements"}, |
| 696 | // { 5, 0xb3, "Telecis Wireless"}, |
| 697 | // { 5, 0x34, "uNav Microelectronics"}, |
| 698 | // { 5, 0xb5, "Tarari"}, |
| 699 | // { 5, 0xb6, "Ambric"}, |
| 700 | // { 5, 0x37, "Newport Media"}, |
| 701 | // { 5, 0x38, "VMTS"}, |
| 702 | // { 5, 0xb9, "Enuclia Semiconductor"}, |
| 703 | // { 5, 0xba, "Virtium Technology"}, |
| 704 | // { 5, 0x3b, "Solid State System"}, |
| 705 | // { 5, 0xbc, "Kian Tech LLC"}, |
| 706 | // { 5, 0x3d, "Artimi"}, |
| 707 | { 5, 0x3e, "PQI"}, |
| 708 | // { 5, 0xbf, "Avago Technologies"}, |
| 709 | // { 5, 0x40, "ADTechnology"}, |
| 710 | { 5, 0xc1, "Sigma Designs"}, |
| 711 | // { 5, 0xc2, "SiCortex"}, |
| 712 | // { 5, 0x43, "Ventura Technology Group"}, |
| 713 | // { 5, 0xc4, "eASIC"}, |
| 714 | // { 5, 0x45, "M.H.S. SAS"}, |
| 715 | { 5, 0x46, "MSI"}, |
| 716 | // { 5, 0xc7, "Rapport"}, |
| 717 | // { 5, 0xc8, "Makway International"}, |
| 718 | // { 5, 0x49, "Broad Reach Engineering"}, |
| 719 | // { 5, 0x4a, "Semiconductor Mfg Intl Corp"}, |
| 720 | // { 5, 0xcb, "SiConnect"}, |
| 721 | // { 5, 0x4c, "FCI USA"}, |
| 722 | // { 5, 0xcd, "Validity Sensors"}, |
| 723 | // { 5, 0xce, "Coney Technology"}, |
| 724 | // { 5, 0x4f, "Spans Logic"}, |
| 725 | // { 5, 0xd0, "Neterion"}, |
| 726 | { 5, 0x51, "Qimonda"}, |
| 727 | // { 5, 0x52, "New Japan Radio"}, |
| 728 | // { 5, 0xd3, "Velogix"}, |
| 729 | // { 5, 0x54, "Montalvo Systems"}, |
| 730 | // { 5, 0xd5, "iVivity"}, |
| 731 | { 5, 0xd6, "Walton Chaintech"}, |
| 732 | { 5, 0x57, "AENEON"}, |
| 733 | // { 5, 0x58, "Lorom Industrial"}, |
| 734 | // { 5, 0xd9, "Radiospire Networks"}, |
| 735 | // { 5, 0xda, "Sensio Technologies"}, |
| 736 | // { 5, 0x5b, "Nethra Imaging"}, |
| 737 | { 5, 0xdc, "Hexon"}, |
| 738 | // { 5, 0x5d, "CompuStocx (CSX)"}, |
| 739 | // { 5, 0x5e, "Methode Electronics"}, |
| 740 | // { 5, 0xdf, "Connect One"}, |
| 741 | // { 5, 0xe0, "Opulan Technologies"}, |
| 742 | // { 5, 0x61, "Septentrio NV"}, |
| 743 | { 5, 0x62, "Goldenmars"}, |
| 744 | { 5, 0xe3, "Kreton"}, |
| 745 | // { 5, 0x64, "Cochlear"}, |
| 746 | // { 5, 0xe5, "Altair Semiconductor"}, |
| 747 | // { 5, 0xe6, "NetEffect"}, |
| 748 | // { 5, 0x67, "Spansion"}, |
| 749 | // { 5, 0x68, "Taiwan Semiconductor Mfg"}, |
| 750 | // { 5, 0xe9, "Emphany Systems"}, |
| 751 | // { 5, 0xea, "ApaceWave Technologies"}, |
| 752 | // { 5, 0x6b, "Mobilygen"}, |
| 753 | // { 5, 0xec, "Tego"}, |
| 754 | // { 5, 0x6d, "Cswitch"}, |
| 755 | // { 5, 0x6e, "Haier (Beijing) IC Design"}, |
| 756 | // { 5, 0xef, "MetaRAM"}, |
| 757 | // { 5, 0x70, "Axel Electronics"}, |
| 758 | // { 5, 0xf1, "Tilera"}, |
| 759 | // { 5, 0xf2, "Aquantia"}, |
| 760 | // { 5, 0x73, "Vivace Semiconductor"}, |
| 761 | // { 5, 0xf4, "Redpine Signals"}, |
| 762 | // { 5, 0x75, "Octalica"}, |
| 763 | // { 5, 0x76, "InterDigital Communications"}, |
| 764 | { 5, 0xf7, "Avant Technology"}, |
| 765 | { 5, 0xf8, "Asrock"}, |
| 766 | // { 5, 0x79, "Availink"}, |
| 767 | // { 5, 0x7a, "Quartics"}, |
| 768 | // { 5, 0xfb, "Element CXI"}, |
| 769 | // { 5, 0x7c, "Innovaciones Microelectronicas"}, |
| 770 | // { 5, 0xfd, "VeriSilicon Microelectronics"}, |
| 771 | // { 5, 0xfe, "W5 Networks"}, |
| 772 | // { 6, 0x01, "MOVEKING"}, |
| 773 | // { 6, 0x02, "Mavrix Technology"}, |
| 774 | // { 6, 0x83, "CellGuide"}, |
| 775 | // { 6, 0x04, "Faraday Technology"}, |
| 776 | // { 6, 0x85, "Diablo Technologies"}, |
| 777 | // { 6, 0x86, "Jennic"}, |
| 778 | // { 6, 0x07, "Octasic"}, |
| 779 | { 6, 0x08, "Molex"}, |
| 780 | // { 6, 0x89, "3Leaf Networks"}, |
| 781 | // { 6, 0x8a, "Bright Micron Technology"}, |
| 782 | // { 6, 0x0b, "Netxen"}, |
| 783 | // { 6, 0x8c, "NextWave Broadband"}, |
| 784 | // { 6, 0x0d, "DisplayLink"}, |
| 785 | // { 6, 0x0e, "ZMOS Technology"}, |
| 786 | // { 6, 0x8f, "Tec-Hill"}, |
| 787 | // { 6, 0x10, "Multigig"}, |
| 788 | // { 6, 0x91, "Amimon"}, |
| 789 | // { 6, 0x92, "Euphonic Technologies"}, |
| 790 | // { 6, 0x13, "BRN Phoenix"}, |
| 791 | // { 6, 0x94, "InSilica"}, |
| 792 | // { 6, 0x15, "Ember"}, |
| 793 | { 6, 0x16, "Avexir"}, |
| 794 | // { 6, 0x97, "Echelon"}, |
| 795 | // { 6, 0x98, "Edgewater Computer Systems"}, |
| 796 | // { 6, 0x19, "XMOS Semiconductor"}, |
| 797 | // { 6, 0x1a, "GENUSION"}, |
| 798 | { 6, 0x9b, "Memory Corp NV"}, |
| 799 | // { 6, 0x1c, "SiliconBlue Technologies"}, |
| 800 | // { 6, 0x9d, "Rambus"}, |
| 801 | // { 6, 0x9e, "Andes Technology"}, |
| 802 | // { 6, 0x1f, "Coronis Systems"}, |
| 803 | // { 6, 0x20, "Achronix Semiconductor"}, |
| 804 | // { 6, 0xa1, "Siano Mobile Silicon"}, |
| 805 | // { 6, 0xa2, "Semtech"}, |
| 806 | // { 6, 0x23, "Pixelworks"}, |
| 807 | // { 6, 0xa4, "Gaisler Research AB"}, |
| 808 | // { 6, 0x25, "Teranetics"}, |
| 809 | // { 6, 0x26, "Toppan Printing"}, |
| 810 | // { 6, 0xa7, "Kingxcon"}, |
| 811 | { 6, 0xa8, "SiS"}, |
| 812 | // { 6, 0x29, "I-O Data Device"}, |
| 813 | // { 6, 0x2a, "NDS Americas"}, |
| 814 | // { 6, 0xab, "Solomon Systech Limited"}, |
| 815 | // { 6, 0x2c, "On Demand Microelectronics"}, |
| 816 | // { 6, 0xad, "Amicus Wireless"}, |
| 817 | // { 6, 0xae, "SMARDTV SNC"}, |
| 818 | // { 6, 0x2f, "Comsys Communication"}, |
| 819 | // { 6, 0xb0, "Movidia"}, |
| 820 | // { 6, 0x31, "Javad GNSS"}, |
| 821 | // { 6, 0x32, "Montage Technology Group"}, |
| 822 | { 6, 0xb3, "Trident"}, |
| 823 | { 6, 0x34, "Super Talent"}, |
| 824 | // { 6, 0xb5, "Optichron"}, |
| 825 | // { 6, 0xb6, "Future Waves UK"}, |
| 826 | // { 6, 0x37, "SiBEAM"}, |
| 827 | // { 6, 0x38, "Inicore,"}, |
| 828 | // { 6, 0xb9, "Virident Systems"}, |
| 829 | // { 6, 0xba, "M2000"}, |
| 830 | // { 6, 0x3b, "ZeroG Wireless"}, |
| 831 | { 6, 0xbc, "Gingle"}, |
| 832 | // { 6, 0x3d, "Space Micro"}, |
| 833 | // { 6, 0x3e, "Wilocity"}, |
| 834 | // { 6, 0xbf, "Novafora, Ic."}, |
| 835 | // { 6, 0x40, "iKoa"}, |
| 836 | { 6, 0xc1, "ASint"}, |
| 837 | { 6, 0xc2, "Ramtron"}, |
| 838 | // { 6, 0x43, "Plato Networks"}, |
| 839 | // { 6, 0xc4, "IPtronics AS"}, |
| 840 | // { 6, 0x45, "Infinite-Memories"}, |
| 841 | // { 6, 0x46, "Parade Technologies"}, |
| 842 | // { 6, 0xc7, "Dune Networks"}, |
| 843 | // { 6, 0xc8, "GigaDevice Semiconductor"}, |
| 844 | // { 6, 0x49, "Modu"}, |
| 845 | // { 6, 0x4a, "CEITEC"}, |
| 846 | // { 6, 0xcb, "Northrop Grumman"}, |
| 847 | // { 6, 0x4c, "XRONET"}, |
| 848 | // { 6, 0xcd, "Sicon Semiconductor AB"}, |
| 849 | // { 6, 0xce, "Atla Electronics"}, |
| 850 | { 6, 0x4f, "TOPRAM"}, |
| 851 | // { 6, 0xd0, "Silego Technology"}, |
| 852 | { 6, 0x51, "Kinglife"}, |
| 853 | // { 6, 0x52, "Ability Industries"}, |
| 854 | // { 6, 0xd3, "Silicon Power Computer & Communications"}, |
| 855 | // { 6, 0x54, "Augusta Technology"}, |
| 856 | // { 6, 0xd5, "Nantronics Semiconductors"}, |
| 857 | // { 6, 0xd6, "Hilscher Gesellschaft"}, |
| 858 | // { 6, 0x57, "Quixant"}, |
| 859 | // { 6, 0x58, "Percello"}, |
| 860 | // { 6, 0xd9, "NextIO"}, |
| 861 | // { 6, 0xda, "Scanimetrics"}, |
| 862 | // { 6, 0x5b, "FS-Semi Company"}, |
| 863 | // { 6, 0xdc, "Infinera"}, |
| 864 | { 6, 0x5d, "SandForce"}, |
| 865 | { 6, 0x5e, "Lexar Media"}, |
| 866 | // { 6, 0xdf, "Teradyne"}, |
| 867 | { 6, 0xe0, "Memory Exchange Corp."}, |
| 868 | // { 6, 0x61, "Suzhou Smartek Electronics"}, |
| 869 | { 6, 0x62, "Avantium"}, |
| 870 | // { 6, 0xe3, "ATP Electronics"}, |
| 871 | // { 6, 0x64, "Valens Semiconductor"}, |
| 872 | // { 6, 0xe5, "Agate Logic"}, |
| 873 | // { 6, 0xe6, "Netronome"}, |
| 874 | // { 6, 0x67, "Zenverge"}, |
| 875 | // { 6, 0x68, "N-trig"}, |
| 876 | // { 6, 0xe9, "SanMax Technologies"}, |
| 877 | // { 6, 0xea, "Contour Semiconductor"}, |
| 878 | { 6, 0x6b, "TwinMOS"}, |
| 879 | { 6, 0xec, "Silicon Systems"}, |
| 880 | // { 6, 0x6d, "V-Color Technology"}, |
| 881 | // { 6, 0x6e, "Certicom"}, |
| 882 | // { 6, 0xef, "JSC ICC Milandr"}, |
| 883 | // { 6, 0x70, "PhotoFast Global"}, |
| 884 | { 6, 0xf1, "InnoDisk"}, |
| 885 | { 6, 0xf2, "Muscle Power"}, |
| 886 | // { 6, 0x73, "Energy Micro"}, |
| 887 | // { 6, 0xf4, "Innofidei"}, |
| 888 | // { 6, 0x75, "CopperGate Communications"}, |
| 889 | // { 6, 0x76, "Holtek Semiconductor"}, |
| 890 | // { 6, 0xf7, "Myson Century"}, |
| 891 | // { 6, 0xf8, "FIDELIX"}, |
| 892 | // { 6, 0x79, "Red Digital Cinema"}, |
| 893 | // { 6, 0x7a, "Densbits Technology"}, |
| 894 | // { 6, 0xfb, "Zempro"}, |
| 895 | // { 6, 0x7c, "MoSys"}, |
| 896 | // { 6, 0xfd, "Provigent"}, |
| 897 | // { 6, 0xfe, "Triad Semiconductor"}, |
| 898 | // { 8, 0x01, "Siklu Communication"}, |
| 899 | // { 8, 0x02, "A Force Manufacturing"}, |
| 900 | { 8, 0x83, "Strontium"}, |
| 901 | // { 8, 0x04, "Abilis Systems"}, |
| 902 | // { 8, 0x85, "Siglead"}, |
| 903 | // { 8, 0x86, "Ubicom"}, |
| 904 | // { 8, 0x07, "Unifosa"}, |
| 905 | // { 8, 0x08, "Stretch"}, |
| 906 | // { 8, 0x89, "Lantiq Deutschland"}, |
| 907 | // { 8, 0x8a, "Visipro."}, |
| 908 | { 8, 0x0b, "EKMemory"}, |
| 909 | // { 8, 0x8c, "Microelectronics Institute ZTE"}, |
| 910 | // { 8, 0x0d, "Cognovo"}, |
| 911 | // { 8, 0x0e, "Carry Technology"}, |
| 912 | { 8, 0x8f, "Nokia"}, |
| 913 | { 8, 0x10, "King Tiger"}, |
| 914 | // { 8, 0x91, "Sierra Wireless"}, |
| 915 | { 8, 0x92, "HT Micron"}, |
| 916 | { 8, 0x13, "Albatron"}, |
| 917 | // { 8, 0x94, "Leica Geosystems AG"}, |
| 918 | // { 8, 0x15, "BroadLight"}, |
| 919 | // { 8, 0x16, "AEXEA"}, |
| 920 | // { 8, 0x97, "ClariPhy Communications"}, |
| 921 | // { 8, 0x98, "Green Plug"}, |
| 922 | // { 8, 0x19, "Design Art Networks"}, |
| 923 | // { 8, 0x1a, "Mach Xtreme Technology"}, |
| 924 | // { 8, 0x9b, "ATO Solutions"}, |
| 925 | // { 8, 0x1c, "Ramsta"}, |
| 926 | // { 8, 0x9d, "Greenliant Systems"}, |
| 927 | // { 8, 0x9e, "Teikon"}, |
| 928 | // { 8, 0x1f, "Antec Hadron"}, |
| 929 | // { 8, 0x20, "NavCom Technology"}, |
| 930 | // { 8, 0xa1, "Shanghai Fudan Microelectronics"}, |
| 931 | // { 8, 0xa2, "Calxeda"}, |
| 932 | // { 8, 0x23, "JSC EDC Electronics"}, |
| 933 | // { 8, 0xa4, "Kandit Technology"}, |
| 934 | // { 8, 0x25, "Ramos Technology"}, |
| 935 | // { 8, 0x26, "Goldenmars Technology"}, |
| 936 | // { 8, 0xa7, "XeL Technology"}, |
| 937 | // { 8, 0xa8, "Newzone"}, |
| 938 | { 8, 0x29, "MercyPower"}, |
| 939 | // { 8, 0x2a, "Nanjing Yihuo Technology."}, |
| 940 | // { 8, 0xab, "Nethra Imaging"}, |
| 941 | // { 8, 0x2c, "SiTel Semiconductor BV"}, |
| 942 | // { 8, 0xad, "SolidGear"}, |
| 943 | { 8, 0xae, "Topower"}, |
| 944 | // { 8, 0x2f, "Wilocity"}, |
| 945 | // { 8, 0xb0, "Profichip"}, |
| 946 | // { 8, 0x31, "Gerad Technologies"}, |
| 947 | { 8, 0x32, "Ritek"}, |
| 948 | // { 8, 0xb3, "Gomos Technology Limited"}, |
| 949 | { 8, 0x34, "Memoright"}, |
| 950 | // { 8, 0xb5, "D-Broad"}, |
| 951 | // { 8, 0xb6, "HiSilicon Technologies"}, |
| 952 | // { 8, 0x37, "Syndiant ."}, |
| 953 | // { 8, 0x38, "Enverv"}, |
| 954 | // { 8, 0xb9, "Cognex"}, |
| 955 | // { 8, 0xba, "Xinnova Technology"}, |
| 956 | { 8, 0x3b, "Ultron"}, |
| 957 | // { 8, 0xbc, "Concord Idea"}, |
| 958 | // { 8, 0x3d, "AIM"}, |
| 959 | // { 8, 0x3e, "Lifetime Memory Products"}, |
| 960 | // { 8, 0xbf, "Ramsway"}, |
| 961 | // { 8, 0x40, "Recore Systems B.V."}, |
| 962 | // { 8, 0xc1, "Haotian Jinshibo Science Tech"}, |
| 963 | // { 8, 0xc2, "Being Advanced Memory"}, |
| 964 | // { 8, 0x43, "Adesto Technologies"}, |
| 965 | // { 8, 0xc4, "Giantec Semiconductor"}, |
| 966 | // { 8, 0x45, "HMD Electronics AG"}, |
| 967 | // { 8, 0x46, "Gloway International (HK)"}, |
| 968 | // { 8, 0xc7, "Kingcore"}, |
| 969 | // { 8, 0xc8, "Anucell Technology Holding"}, |
| 970 | // { 8, 0x49, "Accord Software & Systems Pvt."}, |
| 971 | // { 8, 0x4a, "Active-Semi"}, |
| 972 | // { 8, 0xcb, "Denso"}, |
| 973 | // { 8, 0x4c, "TLSI"}, |
| 974 | // { 8, 0xcd, "Shenzhen Daling Electronic"}, |
| 975 | // { 8, 0xce, "Mustang"}, |
| 976 | // { 8, 0x4f, "Orca Systems"}, |
| 977 | // { 8, 0xd0, "Passif Semiconductor"}, |
| 978 | // { 8, 0x51, "GigaDevice Semiconductor (Beijing)"}, |
| 979 | // { 8, 0x52, "Memphis Electronic"}, |
| 980 | // { 8, 0xd3, "Beckhoff Automation"}, |
| 981 | // { 8, 0x54, "Harmony Semiconductor Corp"}, |
| 982 | // { 8, 0xd5, "Air Computers SRL"}, |
| 983 | { 8, 0xd6, "TMT Memory"}, |
| 984 | { 9, 0xff, ""} |
| 985 | }; |
| 986 | |