Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
/*	$NetBSD: acpidevs_data.h,v 1.26 2011/06/22 19:26:36 jruoho Exp $	*/

/*
 * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.
 *
 * generated from:
 *	# NetBSD: acpidevs,v 1.35 2011/06/22 19:26:22 jruoho Exp
 */

const struct { const char *pnp, *str; } acpi_knowndevs[] = {
	{
	    "PNP0000",
	    "AT Interrupt Controller",
	},
	{
	    "PNP0001",
	    "EISA Interrupt Controller",
	},
	{
	    "PNP0002",
	    "MCA Interrupt Controller",
	},
	{
	    "PNP0003",
	    "APIC",
	},
	{
	    "PNP0004",
	    "Cyrix SLiC MP interrupt controller",
	},
	{
	    "PNP0100",
	    "AT Timer",
	},
	{
	    "PNP0101",
	    "EISA Timer",
	},
	{
	    "PNP0102",
	    "MCA Timer",
	},
	{
	    "PNP0103",
	    "HPET Timer",
	},
	{
	    "PNP0200",
	    "AT DMA Controller",
	},
	{
	    "PNP0201",
	    "EISA DMA Controller",
	},
	{
	    "PNP0202",
	    "MCA DMA Controller",
	},
	{
	    "PNP0300",
	    "IBM PC/XT keyboard controller (83-key)",
	},
	{
	    "PNP0301",
	    "IBM PC/AT keyboard controller (86-key)",
	},
	{
	    "PNP0302",
	    "IBM PC/XT keyboard controller (84-key)",
	},
	{
	    "PNP0303",
	    "IBM Enhanced (101/102-key, PS/2 mouse support)",
	},
	{
	    "PNP0304",
	    "Olivetti Keyboard (83-key)",
	},
	{
	    "PNP0305",
	    "Olivetti Keyboard (102-key)",
	},
	{
	    "PNP0306",
	    "Olivetti Keyboard (86-key)",
	},
	{
	    "PNP0307",
	    "Microsoft Windows(R) Keyboard",
	},
	{
	    "PNP0308",
	    "General Input Device Emulation Interface (GIDEI) legacy",
	},
	{
	    "PNP0309",
	    "Olivetti Keyboard (A101/102 key)",
	},
	{
	    "PNP030A",
	    "AT&T 302 keyboard",
	},
	{
	    "PNP030B",
	    "Reserved by Microsoft",
	},
	{
	    "PNP0320",
	    "Japanese 106-key keyboard A01",
	},
	{
	    "PNP0321",
	    "Japanese 101-key keyboard",
	},
	{
	    "PNP0322",
	    "Japanese AX keyboard",
	},
	{
	    "PNP0323",
	    "Japanese 106-key keyboard 002/003",
	},
	{
	    "PNP0324",
	    "Japanese 106-key keyboard 001",
	},
	{
	    "PNP0325",
	    "Japanese Toshiba Desktop keyboard",
	},
	{
	    "PNP0326",
	    "Japanese Toshiba Laptop keyboard",
	},
	{
	    "PNP0327",
	    "Japanese Toshiba Notebook keyboard",
	},
	{
	    "PNP0340",
	    "Korean 84-key keyboard",
	},
	{
	    "PNP0341",
	    "Korean 86-key keyboard",
	},
	{
	    "PNP0342",
	    "Korean Enhanced keyboard",
	},
	{
	    "PNP0343",
	    "Korean Enhanced keyboard 101b",
	},
	{
	    "PNP0343",
	    "Korean Enhanced keyboard 101c",
	},
	{
	    "PNP0344",
	    "Korean Enhanced keyboard 103",
	},
	{
	    "PNP0400",
	    "Standard LPT printer port",
	},
	{
	    "PNP0401",
	    "ECP printer port",
	},
	{
	    "PNP0500",
	    "Standard PC COM port",
	},
	{
	    "PNP0501",
	    "16550A-compatible COM port",
	},
	{
	    "PNP0502",
	    "Multiport serial device (non-intelligent 16550)",
	},
	{
	    "PNP0600",
	    "Generic ESDI/IDE/ATA compatible hard disk controller",
	},
	{
	    "PNP0601",
	    "Plus Hardcard II",
	},
	{
	    "PNP0602",
	    "Plus Hardcard IIXL/EZ",
	},
	{
	    "PNP0603",
	    "Generic IDE supporting Microsoft Device Bay Specification",
	},
	{
	    "PNP0700",
	    "PC standard floppy disk controller",
	},
	{
	    "PNP0701",
	    "Standard floppy controller supporting MS Device Bay Spec",
	},
	{
	    "PNP0802",
	    "Microsoft Sound System compatible device",
	},
	{
	    "PNP0900",
	    "VGA Compatible",
	},
	{
	    "PNP0901",
	    "Video Seven VRAM/VRAM II/1024i",
	},
	{
	    "PNP0902",
	    "8514/A Compatible",
	},
	{
	    "PNP0903",
	    "Trident VGA",
	},
	{
	    "PNP0904",
	    "Cirrus Logic Laptop VGA",
	},
	{
	    "PNP0905",
	    "Cirrus Logic VGA",
	},
	{
	    "PNP0906",
	    "Tseng ET4000",
	},
	{
	    "PNP0907",
	    "Western Digital VGA",
	},
	{
	    "PNP0908",
	    "Western Digital Laptop VGA",
	},
	{
	    "PNP0909",
	    "S3 Inc. 911/924",
	},
	{
	    "PNP090A",
	    "ATI Ultra Pro/Plus (Mach 32)",
	},
	{
	    "PNP090B",
	    "ATI Ultra (Mach 8)",
	},
	{
	    "PNP090C",
	    "XGA Compatible",
	},
	{
	    "PNP090D",
	    "ATI VGA Wonder",
	},
	{
	    "PNP090E",
	    "Weitek P9000 Graphics Adapter",
	},
	{
	    "PNP090F",
	    "Oak Technology VGA",
	},
	{
	    "PNP0910",
	    "Compaq QVision",
	},
	{
	    "PNP0911",
	    "XGA/2",
	},
	{
	    "PNP0912",
	    "Tseng Labs W32/W32i/W32p",
	},
	{
	    "PNP0913",
	    "S3 Inc. 801/928/964",
	},
	{
	    "PNP0914",
	    "Cirrus Logic 5429/5434 (memory mapped)",
	},
	{
	    "PNP0915",
	    "Compaq Advanced VGA (AVGA)",
	},
	{
	    "PNP0916",
	    "ATI Ultra Pro Turbo (Mach64)",
	},
	{
	    "PNP0917",
	    "Reserved by Microsoft",
	},
	{
	    "PNP0918",
	    "Matrox MGA",
	},
	{
	    "PNP0919",
	    "Compaq QVision 2000",
	},
	{
	    "PNP091A",
	    "Tseng W128",
	},
	{
	    "PNP0930",
	    "Chips & Technologies Super VGA",
	},
	{
	    "PNP0931",
	    "Chips & Technologies Accelerator",
	},
	{
	    "PNP0940",
	    "NCR 77c22e Super VGA",
	},
	{
	    "PNP0941",
	    "NCR 77c32blt",
	},
	{
	    "PNP09FF",
	    "Plug and Play Monitors (VESA DDC)",
	},
	{
	    "PNP0A00",
	    "ISA Bus",
	},
	{
	    "PNP0A01",
	    "EISA Bus",
	},
	{
	    "PNP0A02",
	    "MCA Bus",
	},
	{
	    "PNP0A03",
	    "PCI/PCI-X Host Bridge",
	},
	{
	    "PNP0A04",
	    "VESA/VL Bus",
	},
	{
	    "PNP0A05",
	    "Generic Container Device",
	},
	{
	    "PNP0A06",
	    "Generic Container Device",
	},
	{
	    "PNP0A08",
	    "PCI Express/PCI-X Mode-2 Host Bridge",
	},
	{
	    "PNP0800",
	    "AT-style speaker sound",
	},
	{
	    "PNP0B00",
	    "AT Real-Time Clock",
	},
	{
	    "PNP0B01",
	    "AT Real-Time Clock (PIIX4)",
	},
	{
	    "PNP0B02",
	    "AT Real-Time Clock (Dallas Semiconductor)",
	},
	{
	    "PNP0C00",
	    "Plug and Play BIOS",
	},
	{
	    "PNP0C01",
	    "System Board",
	},
	{
	    "PNP0C02",
	    "Motherboard Register Resources",
	},
	{
	    "PNP0C03",
	    "BIOS Event Notification Interrupt",
	},
	{
	    "PNP0C04",
	    "Math Coprocessor",
	},
	{
	    "PNP0C05",
	    "APM BIOS",
	},
	{
	    "PNP0C06",
	    "Reserved",
	},
	{
	    "PNP0C07",
	    "Reserved",
	},
	{
	    "PNP0C08",
	    "ACPI System Board Hardware",
	},
	{
	    "PNP0C09",
	    "ACPI Embedded Controller",
	},
	{
	    "PNP0C0A",
	    "ACPI Control Method Battery",
	},
	{
	    "PNP0C0B",
	    "ACPI Fan",
	},
	{
	    "PNP0C0C",
	    "ACPI Power Button Device",
	},
	{
	    "PNP0C0D",
	    "ACPI Lid Device",
	},
	{
	    "PNP0C0E",
	    "ACPI Sleep Button Device",
	},
	{
	    "PNP0C0F",
	    "PCI Interrupt Link Device",
	},
	{
	    "PNP0C10",
	    "ACPI System Indicator Device",
	},
	{
	    "PNP0C11",
	    "ACPI Thermal Zone",
	},
	{
	    "PNP0C12",
	    "Device Bay Controller",
	},
	{
	    "PNP0C13",
	    "Plug and Play BIOS (for non-ACPI)",
	},
	{
	    "PNP0C14",
	    "WMI Mapper Device",
	},
	{
	    "PNP0C15",
	    "ACPI Docking Station",
	},
	{
	    "PNP0C32",
	    "ACPI Quickstart Button",
	},
	{
	    "PNP0C33",
	    "ACPI Hardware Error Device",
	},
	{
	    "PNP0C80",
	    "Hotplug Memory Device",
	},
	{
	    "PNP0E00",
	    "Intel 82365-Compatible PCMCIA Controller",
	},
	{
	    "PNP0E01",
	    "Cirrus Logic CL-PD6720 PCMCIA Controller",
	},
	{
	    "PNP0E02",
	    "VLSI VL82C146 PCMCIA Controller",
	},
	{
	    "PNP0E03",
	    "Intel 82365-compatible CardBus controller",
	},
	{
	    "PNP0F00",
	    "Microsoft Bus Mouse",
	},
	{
	    "PNP0F01",
	    "Microsoft Serial Mouse",
	},
	{
	    "PNP0F02",
	    "Microsoft InPort Mouse",
	},
	{
	    "PNP0F03",
	    "Microsoft PS/2-style Mouse",
	},
	{
	    "PNP0F04",
	    "Mouse Systems Mouse",
	},
	{
	    "PNP0F05",
	    "Mouse Systems 3-Button Mouse (COM2)",
	},
	{
	    "PNP0F06",
	    "Genius Mouse (COM1)",
	},
	{
	    "PNP0F07",
	    "Genius Mouse (COM2)",
	},
	{
	    "PNP0F08",
	    "Logitech Serial Mouse",
	},
	{
	    "PNP0F09",
	    "Microsoft BallPoint Serial Mouse",
	},
	{
	    "PNP0F0A",
	    "Microsoft Plug and Play Mouse",
	},
	{
	    "PNP0F0B",
	    "Microsoft Plug and Play BallPoint Mouse",
	},
	{
	    "PNP0F0C",
	    "Microsoft-compatible Serial Mouse",
	},
	{
	    "PNP0F0D",
	    "Microsoft-compatible InPort-compatible Mouse",
	},
	{
	    "PNP0F0E",
	    "Microsoft-compatible PS/2-style Mouse",
	},
	{
	    "PNP0F0F",
	    "Microsoft-compatible Serial BallPoint-compatible Mouse",
	},
	{
	    "PNP0F10",
	    "Texas Instruments QuickPort Mouse",
	},
	{
	    "PNP0F11",
	    "Microsoft-compatible Bus Mouse",
	},
	{
	    "PNP0F12",
	    "Logitech PS/2-style Mouse",
	},
	{
	    "PNP0F13",
	    "PS/2 Port for PS/2-style Mice",
	},
	{
	    "PNP0F14",
	    "Microsoft Kids Mouse",
	},
	{
	    "PNP0F15",
	    "Logitech bus mouse",
	},
	{
	    "PNP0F16",
	    "Logitech SWIFT device",
	},
	{
	    "PNP0F17",
	    "Logitech-compatible serial mouse",
	},
	{
	    "PNP0F18",
	    "Logitech-compatible bus mouse",
	},
	{
	    "PNP0F19",
	    "Logitech-compatible PS/2-style Mouse",
	},
	{
	    "PNP0F1A",
	    "Logitech-compatible SWIFT Device",
	},
	{
	    "PNP0F1B",
	    "HP Omnibook Mouse",
	},
	{
	    "PNP0F1C",
	    "Compaq LTE Trackball PS/2-style Mouse",
	},
	{
	    "PNP0F1D",
	    "Compaq LTE Trackball Serial Mouse",
	},
	{
	    "PNP0F1E",
	    "Microsoft Kids Trackball Mouse",
	},
	{
	    "PNP0F1F",
	    "Reserved by Microsoft Input Device Group",
	},
	{
	    "PNP0F20",
	    "Reserved by Microsoft Input Device Group",
	},
	{
	    "PNP0F21",
	    "Reserved by Microsoft Input Device Group",
	},
	{
	    "PNP0F22",
	    "Reserved by Microsoft Input Device Group",
	},
	{
	    "PNP0F23",
	    "Reserved by Microsoft Input Device Group",
	},
	{
	    "PNP0FFF",
	    "Reserved by Microsoft Systems",
	},
	{
	    "SYN1003",
	    "Synaptics PS/2-style Touchpad",
	},
	{
	    "SYN013B",
	    "Synaptics PS/2-style Touchpad",
	},
	{
	    "PNP8001",
	    "Novell/Anthem NE3200",
	},
	{
	    "PNP8004",
	    "Compaq NE3200",
	},
	{
	    "PNP8006",
	    "Intel EtherExpress/32",
	},
	{
	    "PNP8008",
	    "HP EtherTwist EISA LAN Adapter/32 (HP27248A)",
	},
	{
	    "PNP8065",
	    "Ungermann-Bass NIUps or NIUps/EOTP",
	},
	{
	    "PNP8072",
	    "DEC (DE211) EtherWorks MC/TP",
	},
	{
	    "PNP8073",
	    "DEC (DE212) EtherWorks MC/TP_BNC",
	},
	{
	    "PNP8078",
	    "DCA 10 Mb MCA",
	},
	{
	    "PNP8074",
	    "HP MC LAN Adapter/16 TP (PC27246)",
	},
	{
	    "PNP80C9",
	    "IBM Token Ring",
	},
	{
	    "PNP80CA",
	    "IBM Token Ring II",
	},
	{
	    "PNP80CB",
	    "IBM Token Ring II/Short",
	},
	{
	    "PNP80CC",
	    "IBM Token Ring 4/16Mbs",
	},
	{
	    "PNP80D3",
	    "Novell/Anthem NE1000",
	},
	{
	    "PNP80D4",
	    "Novell/Anthem NE2000",
	},
	{
	    "PNP80D5",
	    "NE1000 Compatible",
	},
	{
	    "PNP80D6",
	    "NE2000 Compatible",
	},
	{
	    "PNP80D7",
	    "Novell/Anthem NE1500T",
	},
	{
	    "PNP80D8",
	    "Novell/Anthem NE2100",
	},
	{
	    "PNP80DD",
	    "SMC ARCNETPC",
	},
	{
	    "PNP80DE",
	    "SMC ARCNET PC100, PC200",
	},
	{
	    "PNP80DF",
	    "SMC ARCNET PC110, PC210, PC250",
	},
	{
	    "PNP80E0",
	    "SMC ARCNET PC130/E",
	},
	{
	    "PNP80E1",
	    "SMC ARCNET PC120, PC220, PC260",
	},
	{
	    "PNP80E2",
	    "SMC ARCNET PC270/E",
	},
	{
	    "PNP80E5",
	    "SMC ARCNET PC600W, PC650W",
	},
	{
	    "PNP80E7",
	    "DEC DEPCA",
	},
	{
	    "PNP80E8",
	    "DEC (DE100) EtherWorks LC",
	},
	{
	    "PNP80E9",
	    "DEC (DE200) EtherWorks Turbo",
	},
	{
	    "PNP80EA",
	    "DEC (DE101) EtherWorks LC/TP",
	},
	{
	    "PNP80EB",
	    "DEC (DE201) EtherWorks Turbo/TP",
	},
	{
	    "PNP80EC",
	    "DEC (DE202) EtherWorks Turbo/TP_BNC",
	},
	{
	    "PNP80ED",
	    "DEC (DE102) EtherWorks LC/TP_BNC",
	},
	{
	    "PNP80EE",
	    "DEC EE101 (Built-In)",
	},
	{
	    "PNP80EF",
	    "DECpc 433 WS (Built-In)",
	},
	{
	    "PNP80F1",
	    "3Com EtherLink Plus",
	},
	{
	    "PNP80F3",
	    "3Com EtherLink II or IITP (8 or 16-bit)",
	},
	{
	    "PNP80F4",
	    "3Com TokenLink",
	},
	{
	    "PNP80F6",
	    "3Com EtherLink 16",
	},
	{
	    "PNP80F7",
	    "3Com EtherLink III",
	},
	{
	    "PNP80F8",
	    "3Com Generic Etherlink Plug and Play Device",
	},
	{
	    "PNP80FB",
	    "Thomas Conrad TC6045",
	},
	{
	    "PNP80FC",
	    "Thomas Conrad TC6042",
	},
	{
	    "PNP80FD",
	    "Thomas Conrad TC6142",
	},
	{
	    "PNP80FE",
	    "Thomas Conrad TC6145",
	},
	{
	    "PNP80FF",
	    "Thomas Conrad TC6242",
	},
	{
	    "PNP8100",
	    "Thomas Conrad TC6245",
	},
	{
	    "PNP8105",
	    "DCA 10 MB",
	},
	{
	    "PNP8106",
	    "DCA 10 MB Fiber Optic",
	},
	{
	    "PNP8107",
	    "DCA 10 MB Twisted Pair",
	},
	{
	    "PNP8113",
	    "Racal NI6510",
	},
	{
	    "PNP811C",
	    "Ungermann-Bass NIUpc",
	},
	{
	    "PNP8120",
	    "Ungermann-Bass NIUpc/EOTP",
	},
	{
	    "PNP8123",
	    "SMC StarCard PLUS (WD/8003S)",
	},
	{
	    "PNP8124",
	    "SMC StarCard PLUS With On Board Hub (WD/8003SH)",
	},
	{
	    "PNP8125",
	    "SMC EtherCard PLUS (WD/8003E)",
	},
	{
	    "PNP8126",
	    "SMC EtherCard PLUS With Boot ROM Socket (WD/8003EBT)",
	},
	{
	    "PNP8127",
	    "SMC EtherCard PLUS With Boot ROM Socket (WD/8003EB)",
	},
	{
	    "PNP8128",
	    "SMC EtherCard PLUS TP (WD/8003WT)",
	},
	{
	    "PNP812A",
	    "SMC EtherCard PLUS 16 With Boot ROM Socket (WD/8013EBT)",
	},
	{
	    "PNP812D",
	    "Intel EtherExpress 16 or 16TP",
	},
	{
	    "PNP812F",
	    "Intel TokenExpress 16/4",
	},
	{
	    "PNP8130",
	    "Intel TokenExpress MCA 16/4",
	},
	{
	    "PNP8132",
	    "Intel EtherExpress 16 (MCA)",
	},
	{
	    "PNP8137",
	    "Artisoft AE-1",
	},
	{
	    "PNP8138",
	    "Artisoft AE-2 or AE-3",
	},
	{
	    "PNP8141",
	    "Amplicard AC 210/XT",
	},
	{
	    "PNP8142",
	    "Amplicard AC 210/AT",
	},
	{
	    "PNP814B",
	    "Everex SpeedLink /PC16 (EV2027)",
	},
	{
	    "PNP8155",
	    "HP PC LAN Adapter/8 TP (HP27245)",
	},
	{
	    "PNP8156",
	    "HP PC LAN Adapter/16 TP (HP27247A)",
	},
	{
	    "PNP8157",
	    "HP PC LAN Adapter/8 TL (HP27250)",
	},
	{
	    "PNP8158",
	    "HP PC LAN Adapter/16 TP Plus (HP27247B)",
	},
	{
	    "PNP8159",
	    "HP PC LAN Adapter/16 TL Plus (HP27252)",
	},
	{
	    "PNP815F",
	    "National Semiconductor Ethernode *16AT",
	},
	{
	    "PNP8160",
	    "National Semiconductor AT/LANTIC EtherNODE 16-AT3",
	},
	{
	    "PNP816A",
	    "NCR Token-Ring 4 Mbs ISA",
	},
	{
	    "PNP816D",
	    "NCR Token-Ring 16/4 Mbs ISA",
	},
	{
	    "PNP8191",
	    "Olicom 16/4 Token-Ring Adapter",
	},
	{
	    "PNP81C3",
	    "SMC EtherCard PLUS Elite (WD/8003EP)",
	},
	{
	    "PNP81C4",
	    "SMC EtherCard PLUS 10T (WD/8003W)",
	},
	{
	    "PNP81C5",
	    "SMC EtherCard PLUS Elite 16 (WD/8013EP)",
	},
	{
	    "PNP81C6",
	    "SMC EtherCard PLUS Elite 16T (WD/8013W)",
	},
	{
	    "PNP81C7",
	    "SMC EtherCard PLUS Elite 16 Combo (WD/8013EW or 8013EWC)",
	},
	{
	    "PNP81C8",
	    "SMC EtherElite Ultra 16",
	},
	{
	    "PNP81E4",
	    "Pure Data PDI9025-32 (Token Ring)",
	},
	{
	    "PNP81E6",
	    "Pure Data PDI508+ (ArcNet)",
	},
	{
	    "PNP81E7",
	    "Pure Data PDI516+ (ArcNet)",
	},
	{
	    "PNP81EB",
	    "Proteon Token Ring (P1390)",
	},
	{
	    "PNP81EC",
	    "Proteon Token Ring (P1392)",
	},
	{
	    "PNP81ED",
	    "Proteon ISA Token Ring (1340)",
	},
	{
	    "PNP81EE",
	    "Proteon ISA Token Ring (1342)",
	},
	{
	    "PNP81EF",
	    "Proteon ISA Token Ring (1346)",
	},
	{
	    "PNP81F0",
	    "Proteon ISA Token Ring (1347)",
	},
	{
	    "PNP81FF",
	    "Cabletron E2000 Series DNI",
	},
	{
	    "PNP8200",
	    "Cabletron E2100 Series DNI",
	},
	{
	    "PNP8209",
	    "Zenith Data Systems Z-Note",
	},
	{
	    "PNP820A",
	    "Zenith Data Systems NE2000-Compatible",
	},
	{
	    "PNP8213",
	    "Xircom Pocket Ethernet II",
	},
	{
	    "PNP8214",
	    "Xircom Pocket Ethernet I",
	},
	{
	    "PNP821D",
	    "RadiSys EXM-10",
	},
	{
	    "PNP8227",
	    "SMC 3000 Series",
	},
	{
	    "PNP8228",
	    "SMC 91C2 controller",
	},
	{
	    "PNP8231",
	    "Advanced Micro Devices AM2100/AM1500T",
	},
	{
	    "PNP8263",
	    "Tulip NCC-16",
	},
	{
	    "PNP8277",
	    "Exos 105",
	},
	{
	    "PNP828A",
	    "Intel '595 based Ethernet",
	},
	{
	    "PNP828B",
	    "TI2000-style Token Ring",
	},
	{
	    "PNP828C",
	    "AMD PCNet Family cards",
	},
	{
	    "PNP828D",
	    "AMD PCNet32 (VL version)",
	},
	{
	    "PNP82BD",
	    "IBM PCMCIA-NIC",
	},
	{
	    "PNP82C2",
	    "Xircom CE10",
	},
	{
	    "PNP82C3",
	    "Xircom CEM2",
	},
	{
	    "PNP8321",
	    "DEC Ethernet (All Types)",
	},
	{
	    "PNP8323",
	    "SMC EtherCard (All Types except 8013/A)",
	},
	{
	    "PNP8324",
	    "ARCNET Compatible",
	},
	{
	    "PNP8326",
	    "Thomas Conrad (All Arcnet Types)",
	},
	{
	    "PNP8327",
	    "IBM Token Ring (All Types)",
	},
	{
	    "PNP8385",
	    "Remote Network Access Driver",
	},
	{
	    "PNP8387",
	    "RNA Point-to-point Protocol Driver",
	},
	{
	    "PNP8388",
	    "Reserved for Microsoft Networking components",
	},
	{
	    "PNP8390",
	    "Generic network adapter",
	},
	{
	    "PNP0510",
	    "Generic IrDA-compatible device",
	},
	{
	    "PNP0511",
	    "Generic IrDA-compatible device",
	},
	{
	    "PNP8294",
	    "IrDA Infrared NDIS driver (Microsoft-supplied)",
	},
	{
	    "PNP8389",
	    "Peer IrLAN infrared driver (Microsoft-supplied)",
	},
	{
	    "HWPC224",
	    "NSC SuperIO chip (inc. IrDA device)",
	},
	{
	    "IBM0071",
	    "NSC SuperIO chip (inc. IrDA device)",
	},
	{
	    "ITE8708",
	    "ITE Tech IrDA Infrared device",
	},
	{
	    "NSC6001",
	    "NSC SuperIO chip (inc. IrDA device)",
	},
	{
	    "PNPA002",
	    "Future Domain 16-700 compatible controller",
	},
	{
	    "PNPA003",
	    "Panasonic proprietary CD-ROM adapter (SBPro/SB16)",
	},
	{
	    "PNPA01B",
	    "Trantor 128 SCSI Controller",
	},
	{
	    "PNPA01D",
	    "Trantor T160 SCSI Controller",
	},
	{
	    "PNPA01E",
	    "Trantor T338 Parallel SCSI controller",
	},
	{
	    "PNPA01F",
	    "Trantor T348 Parallel SCSI controller",
	},
	{
	    "PNPA020",
	    "Trantor Media Vision SCSI controller",
	},
	{
	    "PNPA022",
	    "Always IN-2000 SCSI controller",
	},
	{
	    "PNPA02B",
	    "Sony proprietary CD-ROM controller",
	},
	{
	    "PNPA02D",
	    "Trantor T13b 8-bit SCSI controller",
	},
	{
	    "PNPA02F",
	    "Trantor T358 Parallel SCSI controller",
	},
	{
	    "PNPA030",
	    "Mitsumi LU-005 Single Speed CD-ROM controller + drive",
	},
	{
	    "PNPA031",
	    "Mitsumi FX-001 Single Speed CD-ROM controller + drive",
	},
	{
	    "PNPA032",
	    "Mitsumi FX-001 Double Speed CD-ROM controller + drive",
	},
	{
	    "PNPB000",
	    "Sound Blaster 1.5 sound device",
	},
	{
	    "PNPB001",
	    "Sound Blaster 2.0 sound device",
	},
	{
	    "PNPB002",
	    "Sound Blaster Pro sound device",
	},
	{
	    "PNPB003",
	    "Sound Blaster 16 sound device",
	},
	{
	    "PNPB004",
	    "Thunderboard-compatible sound device",
	},
	{
	    "PNPB005",
	    "Adlib-compatible FM synthesizer device",
	},
	{
	    "PNPB006",
	    "MPU401 compatible",
	},
	{
	    "PNPB007",
	    "Microsoft Windows Sound System-compatible sound device",
	},
	{
	    "PNPB008",
	    "Compaq Business Audio",
	},
	{
	    "PNPB009",
	    "Plug and Play Microsoft Windows Sound System Device",
	},
	{
	    "PNPB00A",
	    "MediaVision Pro Audio Spectrum (SCSI)",
	},
	{
	    "PNPB00B",
	    "MediaVision Pro Audio 3D",
	},
	{
	    "PNPB00C",
	    "MusicQuest MQX-32M",
	},
	{
	    "PNPB00D",
	    "MediaVision Pro Audio Spectrum Basic (Thunder Chip)",
	},
	{
	    "PNPB00E",
	    "MediaVision Pro Audio Spectrum (SCSI, Thunder Chip)",
	},
	{
	    "PNPB00F",
	    "MediaVision Jazz-16 chipset (OEM Versions)",
	},
	{
	    "PNPB010",
	    "Auravision VxP500 chipset - Orchid Videola",
	},
	{
	    "PNPB018",
	    "MediaVision Pro Audio Spectrum 8-bit",
	},
	{
	    "PNPB019",
	    "MediaVision Pro Audio Spectrum Basic",
	},
	{
	    "PNPB020",
	    "Yamaha OPL3-compatible FM synthesizer device",
	},
	{
	    "PNPB02F",
	    "Joystick/Game port",
	},
	{
	    "CSC0000",
	    "Crystal PnP Audio (codec)",
	},
	{
	    "CSC0003",
	    "Crystal PnP Audio (MPU-401)",
	},
	{
	    "CSC0010",
	    "Crystal PnP Audio (registers)",
	},
	{
	    "PNPC000",
	    "Compaq 14400 Modem (TBD)",
	},
	{
	    "PNPC001",
	    "Compaq 2400/9600 Modem (TBD)",
	},
	{
	    "ATM1200",
	    "Atmel Trusted Platform Module",
	},
	{
	    "BCM0101",
	    "Broadcom Trusted Platform Module",
	},
	{
	    "BCM0102",
	    "Broadcom Trusted Platform Module",
	},
	{
	    "ICO0102",
	    "Intel Trusted Platform Module",
	},
	{
	    "IFX0102",
	    "Infineon Trusted Platform Module",
	},
	{
	    "INTC0102",
	    "Intel Trusted Platform Module",
	},
	{
	    "NSC1100",
	    "NSC Trusted Platform Module",
	},
	{
	    "NSC1200",
	    "NSC Trusted Platform Module",
	},
	{
	    "PNP0C31",
	    "Trusted Platform Module",
	},
	{
	    "SMO1200",
	    "STMicroelectronics Trusted Platform Module",
	},
	{
	    "ACPI0001",
	    "SMBus 1.0 Host Controller",
	},
	{
	    "ACPI0002",
	    "Smart Battery Subsystem",
	},
	{
	    "ACPI0003",
	    "AC Device",
	},
	{
	    "ACPI0004",
	    "Module Device",
	},
	{
	    "ACPI0005",
	    "SMBus 2.0 Host Controller",
	},
	{
	    "ACPI0006",
	    "GPE Block Device",
	},
	{
	    "ACPI0007",
	    "Processor Device",
	},
	{
	    "ACPI0008",
	    "Ambient Light Sensor",
	},
	{
	    "ACPI0009",
	    "I/O APIC/SAPIC Device",
	},
	{
	    "ACPI000A",
	    "I/O APIC Device",
	},
	{
	    "ACPI000B",
	    "I/O SAPIC Device",
	},
	{
	    "ACPI000C",
	    "Processor Aggregator",
	},
	{
	    "ACPI000D",
	    "Power Meter",
	},
	{
	    "ACPI000E",
	    "Wake Alarm Device",
	},
	{
	    "ENE0100",
	    "KB3924-based CIR Port Reciever",
	},
	{
	    "HPQ0004",
	    "Hewlett-Packard 3D DriveGuard accelerometer",
	},
	{
	    "IBM0079",
	    "IBM Docking Station",
	},
	{
	    "INT0800",
	    "Intel Firmware Hub Device",
	},
	{
	    "IPI0001",
	    "Intelligent Platform Management Interface",
	},
	{
	    "LEN0014",
	    "Lenovo ThinkPad Extras",
	},
	{
	    "SMO8800",
	    "ST Microelectronics Accelerometer",
	},
};