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
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE article PUBLIC "-//FreeBSD//DTD DocBook XML V5.0-Based Extension//EN"
	"../../../share/xml/freebsd50.dtd" [
<!ENTITY % release PUBLIC "-//FreeBSD//ENTITIES Release Specification//EN" "release.ent">
%release;
<!ENTITY % devauto PUBLIC "-//FreeBSD//ENTITIES Auto Generated Device Lists//EN" "nonexistent">
%devauto;
]>
<article xmlns="http://docbook.org/ns/docbook"
  xmlns:xlink="http://www.w3.org/1999/xlink"
  xml:id="top"
  version="5.0">

  <info>
    <title>&os; &release.current; Hardware Notes</title>

    <author>
      <orgname>The &os; Documentation Project</orgname>
    </author>

    <pubdate>$FreeBSD$</pubdate>

    <copyright>
      <year>2000</year>
      <year>2001</year>
      <year>2002</year>
      <year>2003</year>
      <year>2004</year>
      <year>2005</year>
      <year>2006</year>
      <year>2007</year>
      <year>2008</year>
      <year>2009</year>
      <year>2010</year>
      <year>2011</year>
      <year>2012</year>
      <year>2013</year>
      <year>2014</year>
      <year>2015</year>
      <year>2016</year>
      <year>2017</year>
      <year>2018</year>
      <holder role="mailto:doc@FreeBSD.org">The &os; Documentation
	Project</holder>
    </copyright>

    <legalnotice xml:id="trademarks" role="trademarks">
      &tm-attrib.freebsd;
      &tm-attrib.amd;
      &tm-attrib.fujitsu;
      &tm-attrib.ibm;
      &tm-attrib.intel;
      &tm-attrib.sparc;
      &tm-attrib.sun;
      &tm-attrib.general;
    </legalnotice>

  </info>

  <sect1 xml:id="intro">
    <title>Introduction</title>

    <para>This document contains the hardware compatibility notes for
      &os; &release.current;.  It lists the hardware platforms
      supported by &os;, as well as the various types of hardware
      devices (storage controllers, network interfaces, and so on),
      along with known working instances of these devices.</para>
  </sect1>

  <sect1 xml:id="proc">
    <title>Supported Processors and System Boards</title>

    <para>This section provides some architecture-specific information
      about the specific processors and systems that are supported by
      each architecture.</para>

    <sect2 xml:id="proc-amd64">
      <title>amd64</title>

      <para>Since mid-2003 &os;/&arch.amd64; has supported the AMD64
	(<quote>Hammer</quote>) and &intel; EM64T architecture, and is
	now one of the Tier-1 platforms (fully supported
	architecture), which are expected to be Production Quality
	with respects to all aspects of the &os; operating system,
	including installation and development environments.</para>

      <para>Note that there are two names for this architecture, AMD64
	(AMD) and Intel EM64T (Extended Memory 64-bit Technology).
	64-bit mode of the two architectures are almost compatible
	with each other, and &os;/&arch.amd64; supports them
	both.</para>

      <para>As of this writing, the following processors are
	supported:</para>

      <itemizedlist>
	<listitem>
	  <para>&amd.athlon;64 (<quote>Clawhammer</quote>).</para>
	</listitem>

	<listitem>
	  <para>&amd.opteron; (<quote>Sledgehammer</quote>).</para>
	</listitem>

	<listitem>
	  <para>&amd.sempron;.</para>
	</listitem>

	<listitem>
	  <para>&amd.turion;.</para>
	</listitem>

	<listitem>
	  <para>&amd.phenom;.</para>
	</listitem>

	<listitem>
	  <para>All multi-core &intel; &xeon; processors except
	    Sossaman have EM64T support.</para>
	</listitem>

	<listitem>
	  <para>The single-core &intel; &xeon; processors
	    <quote>Nocona</quote>, <quote>Irwindale</quote>,
	    <quote>Potomac</quote>, and <quote>Cranford</quote> have
	    EM64T support.</para>
	</listitem>

	<listitem>
	  <para>All &intel; &core; 2 (not &core; Duo) and later
	    processors</para>
	</listitem>

	<listitem>
	  <para>All &intel; &core; i range of processors</para>
	</listitem>

	<listitem>
	  <para>All &intel; &pentium; D processors</para>
	</listitem>

	<listitem>
	  <para>All &intel; &centrino; Duo and &centrino; Pro
	    platforms</para>
	</listitem>

	<listitem>
	  <para>&intel; &pentium; 4s and &celeron; Ds using
	    the <quote>Cedar Mill</quote> core have EM64T
	    support.</para>
	</listitem>

	<listitem>
	  <para>Some &intel; &pentium; 4s and &celeron; Ds using the
	    <quote>Prescott</quote> core have EM64T support.  See the
	    <link xlink:href="http://processorfinder.intel.com">Intel
	      Processor Spec Finder</link> for the definitive answer
	    about EM64T support in Intel processors.</para>
	</listitem>

      </itemizedlist>

      <para>&intel; EM64T is an extended version of IA-32 (x86) and
	different from &intel; IA-64 (Itanium) architecture.  Some of
	&intel;'s old documentation refers to &intel; EM64T as
	<quote>64-bit extension technology</quote> or
	<quote>IA-32e</quote>.</para>

      <para>Both Uniprocessor (UP) and Symmetric Multi-processor (SMP)
	configurations are supported.</para>

      <para>In many respects, &os;/&arch.amd64; is similar to
	&os;/&arch.i386;, in terms of drivers supported.  Generally,
	drivers that already function correctly on other 64-bit
	platforms should work.</para>

    </sect2>

    <sect2 xml:id="proc-i386">
      <title>i386</title>

      <para>&os;/&arch.i386; runs on a wide variety of <quote>IBM PC
	  compatible</quote> machines.  Due to the wide range of
	hardware available for this architecture, it is impossible
	to exhaustively list all combinations of equipment supported
	by &os;.  Nevertheless, some general guidelines are
	presented here.</para>

      <para>Almost all &i386;-compatible processors with a floating
	point unit are supported.  All &intel; processors beginning
	with the 80486 are supported, including the 80486, &pentium;,
	&pentium; Pro, &pentium; II, &pentium; III, &pentium; 4, and
	variants thereof, such as the &xeon; and &celeron; processors.
	All &i386;-compatible AMD processors are also supported,
	including the &am486;, &am5x86;, K5, &amd.k6; (and variants),
	&amd.athlon; (including Athlon-MP, Athlon-XP, Athlon-4, and
	Athlon Thunderbird), and &amd.duron; processors.  The AMD
	&Eacute;lan SC520 embedded processor is supported.  The
	Transmeta Crusoe is recognized and supported, as are
	&i386;-compatible processors from Cyrix and NexGen.</para>

      <para>There is a wide variety of motherboards available for this
	architecture.  Motherboards using the ISA, VLB, EISA, AGP, and
	PCI expansion buses are well-supported.  There is some
	limited support for the MCA (<quote>MicroChannel</quote>)
	expansion bus used in the IBM PS/2 line of PCs.</para>

      <para>Symmetric multi-processor (SMP) systems are generally
	supported by &os;, although in some cases, BIOS or motherboard
	bugs may generate some problems.  Perusal of the archives of
	the &a.smp; may yield some clues.</para>

      <para>&os; will take advantage of SMT (Symmetric MultiThreading,
	also known as HyperThreading on &intel; CPUs) on the supported
	CPUs.  The <filename>GENERIC</filename> kernel which is
	installed by default will automatically detect the additional
	logical processors.  The default &os; scheduler recognizes
	processor topology on the system and selects logical and
	physical processors to obtain optimal performance.
	The &man.smp.4; manual page has more details.</para>

      <para>&os; will take advantage of Physical Address Extensions
	(PAE) support on CPUs that support this feature.  A kernel
	with the <literal>PAE</literal> feature enabled will detect
	memory above 4 gigabytes and allow it to be used by the
	system.  This feature places constraints on the device drivers
	and other features of &os; which may be used; consult the
	&man.pae.4; manual page for more details.</para>

      <para>&os; will generally run on i386-based laptops, albeit with
	varying levels of support for certain hardware features such
	as sound, graphics, power management, and PCCARD expansion
	slots.  These features tend to vary in idiosyncratic ways
	between machines, and frequently require special-case support
	in &os; to work around hardware bugs or other oddities.  When
	in doubt, a search of the archives of the &a.mobile; may be
	useful.</para>

      <para>Most modern laptops (as well as many desktops) use the
	Advanced Configuration and Power Management (ACPI) standard.
	&os; supports ACPI via the ACPI Component Architecture
	reference implementation from &intel;, as described in the
	&man.acpi.4; manual page.  The use of ACPI causes
	instabilities on some machines and it may be necessary to
	disable the ACPI driver, which is normally loaded via a kernel
	module.  This may be accomplished by adding the following line
	to <filename>/boot/device.hints</filename>:</para>

      <programlisting>hint.acpi.0.disabled="1"</programlisting>

      <para>Users debugging ACPI-related problems may find it useful
	to disable portions of the ACPI functionality.  The
	&man.acpi.4; manual page has more information on how to do
	this via loader tunables.</para>

      <para>ACPI depends on a Differentiated System Descriptor Table
	(DSDT) provided by each machine's BIOS.  Some machines have
	bad or incomplete DSDTs, which prevents ACPI from functioning
	correctly.  Replacement DSDTs for some machines can be found
	at the <link
	  xlink:href="http://acpi.sourceforge.net/dsdt/index.php">DSDT</link>
	section of the <link
	  xlink:href="http://acpi.sourceforge.net/">ACPI4Linux</link>
	project Web site.  &os; can use these DSDTs to override the
	DSDT provided by the BIOS; see the &man.acpi.4; manual page
	for more information.</para>
    </sect2>

    <sect2 xml:id="proc-pc98">
      <title>pc98</title>

      <para>NEC PC-9801/9821 series with almost all &i386;-compatible
	processors, including 80486, &pentium;, &pentium; Pro,
	&pentium; II, and variants.  All &i386;-compatible processors
	by AMD, Cyrix, IBM, and IDT are also supported.</para>

      <para>NEC FC-9801/9821 series, and NEC SV-98 series (both of
	them are compatible with PC-9801/9821 series) should be
	supported.</para>

      <para>EPSON PC-386/486/586 series, which are compatible with NEC
	PC-9801 series are supported.</para>

      <para>High-resolution mode is not supported.  NEC
	PC-98XA/XL/RL/XL^2, and NEC PC-H98 series are supported in
	normal (PC-9801 compatible) mode only.</para>

      <para>Although there are some multi-processor systems (such as
	Rs20/B20), SMP-related features of &os; are not supported
	yet.</para>

      <para>PC-9801/9821 standard bus (called C-Bus), PC-9801NOTE
	expansion bus (110pin), and PCI bus are supported.  New Extend
	Standard Architecture (NESA) bus (used in PC-H98, SV-H98, and
	FC-H98 series) is not supported.</para>
    </sect2>

    <sect2 xml:id="proc-powerpc">
      <title>powerpc</title>

      <para>All Apple PowerPC machines with built-in USB are
	supported, as well a limited selection of non-Apple machines,
	including KVM on POWER7</para>

      <para>SMP is supported on all systems with more than
	1 processor.</para>
    </sect2>

    <sect2 xml:id="proc-sparc64">
      <title>sparc64</title>

      <para>This section describes the systems currently known to be
	supported by &os; on the Fujitsu &sparc64; and Sun
	&ultrasparc; platforms.</para>

      <para>SMP is supported on all systems with more than 1
	processor.</para>

      <para>When using the <filename>GENERIC</filename> kernel,
	&os;/&arch.sparc64; systems not equipped with a framebuffer
	supported by the &man.creator.4; (Sun Creator, Sun Creator3D
	and Sun Elite3D) or &man.machfb.4; (Sun PGX and Sun PGX64
	as well as the ATI Mach64 chips found onboard in for example
	&sun.blade; 100, &sun.blade; 150, &sun.ultra; 5 and
	&sun.ultra; 10) driver must use the serial console.</para>

      <para>If you have a system that is not listed here, it may not
	have been tested with &os; &release.current;.  We encourage
	you to try it and send a note to the &a.sparc; with your
	results, including which devices work and which do not.</para>

      <para>The following systems are fully supported by &os;:</para>

      <itemizedlist>
	<listitem>
	  <para>Naturetech GENIALstation 777S</para>
	</listitem>

	<listitem>
	  <para>&sun.blade; 100</para>
	</listitem>

	<listitem>
	  <para>&sun.blade; 150</para>
	</listitem>

	<listitem>
	  <para>&sun.enterprise; 150</para>
	</listitem>

	<listitem>
	  <para>&sun.enterprise; 220R</para>
	</listitem>

	<listitem>
	  <para>&sun.enterprise; 250</para>
	</listitem>

	<listitem>
	  <para>&sun.enterprise; 420R</para>
	</listitem>

	<listitem>
	  <para>&sun.enterprise; 450</para>
	</listitem>

	<listitem>
	  <para>&sun.fire; B100s (support for the on-board NICs first
	    appeared in 8.1-RELEASE)</para>
	</listitem>

	<listitem>
	  <para>&sun.fire; V100</para>
	</listitem>

	<listitem>
	  <para>&sun.fire; V120</para>
	</listitem>

	<listitem>
	  <para>Sun &netra; t1 100/105</para>
	</listitem>

	<listitem>
	  <para>Sun &netra; T1 AC200/DC200</para>
	</listitem>

	<listitem>
	  <para>Sun &netra; t 1100</para>
	</listitem>

	<listitem>
	  <para>Sun &netra; t 1120</para>
	</listitem>

	<listitem>
	  <para>Sun &netra; t 1125</para>
	</listitem>

	<listitem>
	  <para>Sun &netra; t 1400/1405</para>
	</listitem>

	<listitem>
	  <para>Sun &netra; 120</para>
	</listitem>

	<listitem>
	  <para>Sun &netra; X1</para>
	</listitem>

	<listitem>
	  <para>Sun &sparcengine; Ultra AX1105</para>
	</listitem>

	<listitem>
	  <para>Sun &sparcengine; Ultra AXe</para>
	</listitem>

	<listitem>
	  <para>Sun &sparcengine; Ultra AXi</para>
	</listitem>

	<listitem>
	  <para>Sun &sparcengine; Ultra AXmp</para>
	</listitem>

	<listitem>
	  <para>Sun &sparcengine; CP1500</para>
	</listitem>

	<listitem>
	  <para>&sun.ultra; 1</para>
	</listitem>

	<listitem>
	  <para>&sun.ultra; 1E</para>
	</listitem>

	<listitem>
	  <para>&sun.ultra; 2</para>
	</listitem>

	<listitem>
	  <para>&sun.ultra; 5</para>
	</listitem>

	<listitem>
	  <para>&sun.ultra; 10</para>
	</listitem>

	<listitem>
	  <para>&sun.ultra; 30</para>
	</listitem>

	<listitem>
	  <para>&sun.ultra; 60</para>
	</listitem>

	<listitem>
	  <para>&sun.ultra; 80</para>
	</listitem>

	<listitem>
	  <para>&sun.ultra; 450</para>
	</listitem>
      </itemizedlist>

      <para>The following systems are partially supported by &os;.  In
	particular the fiber channel controllers in SBus-based systems
	are not supported.  However, it is possible to use these with
	a SCSI controller supported by the &man.esp.4; driver (Sun ESP
	SCSI, Sun FAS Fast-SCSI and Sun FAS366 Fast-Wide SCSI
	controllers).</para>

      <itemizedlist>
	<listitem>
	  <para>&sun.enterprise; 3500</para>
	</listitem>

	<listitem>
	  <para>&sun.enterprise; 4500</para>
	</listitem>
      </itemizedlist>

      <para>Starting with 7.2-RELEASE, &arch.sparc64; systems based on
	Sun &ultrasparc; III and beyond are also supported by &os;,
	which includes the following known working systems:</para>

      <itemizedlist>
	<listitem>
	  <para>&sun.blade; 1000</para>
	</listitem>

	<listitem>
	  <para>&sun.blade; 1500</para>
	</listitem>

	<listitem>
	  <para>&sun.blade; 2000</para>
	</listitem>

	<listitem>
	  <para>&sun.blade; 2500</para>
	</listitem>

	<listitem>
	  <para>&sun.fire; 280R</para>
	</listitem>

	<listitem>
	  <para>&sun.fire; V210</para>
	</listitem>

	<listitem>
	  <para>&sun.fire; V215 (support first appeared in 7.3-RELEASE
	    and 8.1-RELEASE)</para>
	</listitem>

	<listitem>
	  <para>&sun.fire; V240</para>
	</listitem>

	<listitem>
	  <para>&sun.fire; V245 (support first appeared in 7.3-RELEASE
	    and 8.1-RELEASE)</para>
	</listitem>

	<listitem>
	  <para>&sun.fire; V250</para>
	</listitem>

	<listitem>
	  <para>&sun.fire; V440 (support for the on-board NICs first
	    appeared in 7.3-RELEASE and 8.0-RELEASE)</para>
	</listitem>

	<listitem>
	  <para>&sun.fire; V480 (501-6780 and 501-6790 centerplanes
	    only, for which support first appeared in 7.3-RELEASE and
	    8.1-RELEASE, other centerplanes might work beginning with
	    8.3-RELEASE and 9.0-RELEASE)</para>
	</listitem>

	<listitem>
	  <para>&sun.fire; V880</para>
	</listitem>

	<listitem>
	  <para>&sun.fire; V890 (support first appeared in 7.4-RELEASE
	    and 8.1-RELEASE, non-mixed &ultrasparc; IV/IV+
	    CPU-configurations only)</para>
	</listitem>

	<listitem>
	  <para>&netra; 20/&netra; T4</para>
	</listitem>
      </itemizedlist>

      <para>The following Sun &ultrasparc; systems are not tested but
	believed to be supported by &os; as well:</para>

      <itemizedlist>
	<listitem>
	  <para>&sun.fire; V125</para>
	</listitem>

	<listitem>
	  <para>&sun.fire; V490 (support first appeared in 7.4-RELEASE
	    and 8.1-RELEASE, non-mixed &ultrasparc; IV/IV+
	    CPU-configurations only)</para>
	</listitem>
      </itemizedlist>

      <para>Starting with 7.4-RELEASE and 8.1-RELEASE, &arch.sparc64;
	systems based on Fujitsu &sparc64; V are also supported by
	&os;, which includes the following known working
	systems:</para>

      <itemizedlist>
	<listitem>
	  <para>Fujitsu &primepower; 250</para>
	</listitem>
      </itemizedlist>

      <para>The following Fujitsu &primepower; systems are not tested
	but believed to be supported by &os; as well:</para>

      <itemizedlist>
	<listitem>
	  <para>Fujitsu &primepower; 450</para>
	</listitem>

	<listitem>
	  <para>Fujitsu &primepower; 650</para>
	</listitem>

	<listitem>
	  <para>Fujitsu &primepower; 850</para>
	</listitem>
      </itemizedlist>

    </sect2>
  </sect1>

  <!--

  The "Supported Devices" section of the release notes.
  Generally processor-independent, with conditional text
  inclusion handling any architecture-dependent text.

  Within each subsection describing a class of hardware
  (i.e. Ethernet interfaces), list broad groups of devices
  alphabetically as paragraphs sorted alphabetically (frequently
  these groups will be arranged by manufacturer, i.e. 3Com
  Ethernet interfaces).

  Where applicable, a "Miscellaneous" section may follow all
  other named sections.

  These guidelines are not hard-and-fast rules, and exceptions
  will occur.  Following these guidelines (vague as they may be)
  is highly recommended to try to keep the formatting of
  this section consistent.

  We give manual page references using the &man entities where
  possible.  If a driver has no manual page (and consequently no
  &man entity, we simply give the name of the driver).
  Please avoid doing &man entity conversions unless you
  know for sure that an entity and manual page exist; sweeps through
  this file to fix "missed" conversions are likely to break the
  build.
  -->

  <sect1 xml:id="support">
    <title>Supported Devices</title>

    <para>This section describes the devices currently known to be
      supported by &os;.  Other configurations may also work, but
      simply have not been tested yet.  Feedback, updates, and
      corrections to this list are encouraged.</para>

    <para>Where possible, the drivers applicable to each device or
      class of devices is listed.  If the driver in question has a
      manual page in the &os; base distribution (most should), it is
      referenced here.  Information on specific models of supported
      devices, controllers, etc. can be found in the manual
      pages.</para>

    <note>
      <para>The device lists in this document are being generated
	automatically from &os; manual pages.  This means that some
	devices, which are supported by multiple drivers, may appear
	multiple times.</para>
    </note>

    <sect2 xml:id="disk">
      <title>Disk Controllers</title>

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;, &arch.sparc64;]
	IDE/ATA controllers (&man.ata.4; driver)</para>

      <para>[&arch.pc98;] IDE/ATA controllers (wdc driver)</para>

      <itemizedlist>
	<listitem>
	  <para>On-board IDE controller</para>
	</listitem>
      </itemizedlist>

      &hwlist.aac;

      &hwlist.adv;

      &hwlist.adw;

      &hwlist.aha;

      &hwlist.ahb;

      &hwlist.ahc;

      &hwlist.ahci;

      &hwlist.ahd;

      &hwlist.aic;

      &hwlist.amr;

      &hwlist.arcmsr;

      &hwlist.bt;

      &hwlist.ciss;

      &hwlist.ct;

      &hwlist.dpt;

      <note>
	<para>[&arch.amd64;, &arch.i386;] Booting from these
	  controllers is supported.  EISA adapters are not
	  supported.</para>
      </note>

      &hwlist.esp;

      &hwlist.hpt27xx;

      &hwlist.hptiop;

      &hwlist.hptmv;

      &hwlist.hptrr;

      &hwlist.ida;

      &hwlist.iir;

      &hwlist.ips;

      &hwlist.isci;

      &hwlist.isp;

      &hwlist.mfi;

      &hwlist.mlx;

      <note>
	<para>[&arch.amd64;, &arch.i386;] Booting from these
	  controllers is supported.  EISA adapters are not
	  supported.</para>
      </note>

      &hwlist.mly;

      &hwlist.mpr;

      &hwlist.mps;

      &hwlist.mpt;

      &hwlist.mrsas;

      &hwlist.mvs;

      &hwlist.ncr;

      &hwlist.ncv;

      &hwlist.nsp;

      &hwlist.pms;

      &hwlist.pst;

      &hwlist.siis;

      &hwlist.stg;

      &hwlist.sym;

      &hwlist.trm;

      &hwlist.twa;

      &hwlist.twe;

      &hwlist.tws;

      &hwlist.vpo;

      <para>[&arch.i386;] The wds(4) driver supports the WD7000 SCSI
	controller.</para>

      <para>With all supported SCSI controllers, full support is
	provided for SCSI-I, SCSI-II, and SCSI-III peripherals,
	including hard disks, optical disks, tape drives (including
	DAT, 8mm Exabyte, Mammoth, and DLT), medium changers,
	processor target devices and CD-ROM drives.  WORM devices that
	support CD-ROM commands are supported for read-only access by
	the CD-ROM drivers (such as &man.cd.4;).  WORM/CD-R/CD-RW
	writing support is provided by &man.cdrecord.1;, which is a
	part of the <package>sysutils/cdrtools</package> port in the
	Ports Collection.</para>

      <para>The following CD-ROM type systems are supported at this
	time:</para>

      <itemizedlist>
	<listitem>
	  <para>SCSI interface (also includes ProAudio Spectrum and
	    SoundBlaster SCSI) (&man.cd.4;)</para>
	</listitem>

	<listitem>
	  <para>[&arch.i386;] Sony proprietary interface (all models)
	    (&man.scd.4;)</para>
	</listitem>

	<listitem>
	  <para>ATAPI IDE interface (&man.acd.4;)</para>
	</listitem>
      </itemizedlist>

      <para>[&arch.i386;] The following device is unmaintained:</para>

      <itemizedlist>
	<listitem>
	  <para>Mitsumi proprietary CD-ROM interface (all models)
	    (&man.mcd.4;)</para>
	</listitem>
      </itemizedlist>
    </sect2>

    <sect2 xml:id="ethernet">
      <title>Ethernet Interfaces</title>

      &hwlist.ae;

      &hwlist.age;

      &hwlist.ale;

      &hwlist.aue;

      &hwlist.axe;

      <para>ASIX Electronics AX88178A/AX88179 USB Gigabit Ethernet
	adapters (&man.axge.4; driver)</para>

      &hwlist.bce;

      <para>[&arch.amd64;, &arch.i386;] Broadcom BCM4401 based Fast
	Ethernet adapters (&man.bfe.4; driver)</para>

      &hwlist.bge;

      &hwlist.bnxt;

      &hwlist.bxe;

      &hwlist.cas;

      &hwlist.cdce;

      <para>[&arch.amd64;, &arch.i386;] Crystal Semiconductor
	CS89x0-based NICs (&man.cs.4; driver)</para>

      &hwlist.cue;

      &hwlist.cxgb;

      &hwlist.cxgbe;

      &hwlist.dc;

      &hwlist.de;

      &hwlist.ed;

      &hwlist.em;

      &hwlist.ep;

      <para>Agere ET1310 Gigabit Ethernet adapters
	(&man.et.4; driver)</para>

      &hwlist.ex;

      &hwlist.fe;

      &hwlist.fxp;

      &hwlist.gem;

      &hwlist.hme;

      &hwlist.ie;

      &hwlist.igb;

      &hwlist.ipheth;

      &hwlist.ixgb;

      &hwlist.ixgbe;

      &hwlist.ixl;

      &hwlist.jme;

      &hwlist.kue;

      &hwlist.lge;

      &hwlist.mlx4en;

      &hwlist.mlx5en;

      &hwlist.msk;

      &hwlist.mxge;

      &hwlist.my;

      &hwlist.nfe;

      &hwlist.nge;

      &hwlist.nxge;

      &hwlist.oce;

      &hwlist.pcn;

      &hwlist.qlnxe;

      &hwlist.qlxgb;

      &hwlist.qlxgbe;

      &hwlist.qlxge;

      &hwlist.re;

      &hwlist.rl;

      &hwlist.rue;

      &hwlist.sf;

      &hwlist.sfxge;

      &hwlist.sge;

      &hwlist.sis;

      &hwlist.sk;

      &hwlist.smsc;

      &hwlist.sn;

      &hwlist.snc;

      &hwlist.ste;

      &hwlist.stge;

      &hwlist.ti;

      &hwlist.tl;

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;] SMC 83c17x
	(EPIC)-based Ethernet NICs (&man.tx.4; driver)</para>

      &hwlist.txp;

      &hwlist.udav;

      &hwlist.urndis;

      &hwlist.vge;

      &hwlist.vr;

      &hwlist.vte;

      &hwlist.vx;

      &hwlist.vxge;

      &hwlist.wb;

      &hwlist.xe;

      &hwlist.xl;

    </sect2>

    <sect2 xml:id="fddi">
      <title>FDDI Interfaces</title>

      <para>[&arch.i386;, &arch.pc98;] DEC DEFPA PCI (&man.fpa.4;
	driver)</para>

      <para>[&arch.i386;] DEC DEFEA EISA (&man.fpa.4; driver)</para>
    </sect2>

    <sect2 xml:id="atm">
      <title>ATM Interfaces</title>

      <para>[&arch.i386;, &arch.pc98;] Midway-based ATM interfaces
	(&man.en.4; driver)</para>

      <para>[&arch.i386;, &arch.pc98; &arch.sparc64;] FORE Systems,
	Inc. PCA-200E ATM PCI Adapters (hfa and &man.fatm.4;
	drivers)</para>

      <para>[&arch.i386;, &arch.pc98;] IDT NICStAR 77201/211-based ATM
	Adapters (&man.idt.4; driver)</para>

      <para>[&arch.i386;, &arch.pc98; &arch.sparc64;] FORE Systems,
	Inc. HE155 and HE622 ATM interfaces (&man.hatm.4;
	driver)</para>

      <para>[&arch.i386;, &arch.pc98;] IDT77252-based ATM cards
	(&man.patm.4; driver)</para>
    </sect2>

    <sect2 xml:id="wlan">
      <title>Wireless Network Interfaces</title>

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;] Cisco/Aironet
	802.11b wireless adapters (&man.an.4; driver)</para>

      &hwlist.ath;

      &hwlist.bwi;

      &hwlist.bwn;

      <para>[&arch.i386;, &arch.amd64;] Intel PRO/Wireless 2100
	MiniPCI network adapter (&man.ipw.4; driver)</para>

      <para>[&arch.i386;, &arch.amd64;] Intel PRO/Wireless
	2200BG/2915ABG MiniPCI and 2225BG PCI network adapters
	(&man.iwi.4; driver)</para>

      <para>[&arch.i386;, &arch.amd64;] Intel Dual Band Wireless AC
	3160/7260/7265 IEEE 802.11ac network adapters (&man.iwm.4;
	driver)</para>

      <para>[&arch.i386;, &arch.amd64;] Intel Wireless WiFi Link
	4965AGN IEEE 802.11n PCI network adapters
	(&man.iwn.4; driver)</para>

      <para>[&arch.i386;, &arch.amd64;] Marvell Libertas IEEE
	802.11b/g PCI network adapters (&man.malo.4; driver)</para>

      <para>Marvell 88W8363 IEEE 802.11n wireless network
	adapters (&man.mwl.4; driver)</para>

      &hwlist.otus;

      &hwlist.ral;

      &hwlist.rsu;

      <para>Realtek RTL8188CE based PCIe IEEE 802.11b/g/n wireless
	network adapters (&man.rtwn.4; driver)</para>

      &hwlist.rum;

      &hwlist.run;

      &hwlist.uath;

      &hwlist.upgt;

      &hwlist.ural;

      &hwlist.urtw;

      &hwlist.urtwn;

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;] Lucent
	Technologies WaveLAN/IEEE 802.11b wireless network adapters
	and workalikes using the Lucent Hermes, Intersil PRISM-II,
	Intersil PRISM-2.5, Intersil Prism-3, and Symbol Spectrum24
	chipsets (&man.wi.4; driver)</para>

      <para>[&arch.i386;] NCR / AT&amp;T / Lucent Technologies WaveLan
	T1-speed ISA/radio LAN cards (&man.wl.4; driver)</para>

      <para>[&arch.i386;, &arch.amd64;] Intel PRO/Wireless 3945ABG
	MiniPCI network adapters (&man.wpi.4; driver)</para>

      &hwlist.zyd;
    </sect2>

    <sect2 xml:id="misc-network">
      <title>Miscellaneous Networks</title>

      &hwlist.ce;

      &hwlist.cx;

      &hwlist.cp;

      &hwlist.ctau;

      &hwlist.cm;
    </sect2>

    <sect2 xml:id="serial">
      <title>Serial Interfaces</title>

      <para>[&arch.amd64;, &arch.i386;] <quote>PC standard</quote>
	8250, 16450, and 16550-based serial ports (&man.sio.4;
	driver)</para>

      &hwlist.uart;

      &hwlist.scc;

      <para>[&arch.amd64;, &arch.i386;] AST 4 port serial card using
	shared IRQ</para>

      <itemizedlist>
	<listitem>
	  <para>ARNET 8 port serial card using shared IRQ</para>
	</listitem>

	<listitem>
	  <para>ARNET (now Digiboard) Sync 570/i high-speed
	    serial</para>
	</listitem>
      </itemizedlist>

      <para>[&arch.i386;] Boca multi-port serial cards</para>

      <itemizedlist>
	<listitem>
	  <para>Boca BB1004 4-Port serial card (Modems
	    <emphasis>not</emphasis> supported)</para>
	</listitem>

	<listitem>
	  <para>Boca IOAT66 6-Port serial card (Modems
	    supported)</para>
	</listitem>

	<listitem>
	  <para>Boca BB1008 8-Port serial card (Modems
	    <emphasis>not</emphasis> supported)</para>
	</listitem>

	<listitem>
	  <para>Boca BB2016 16-Port serial card (Modems
	    supported)</para>
	</listitem>
      </itemizedlist>

      <para>[&arch.i386;] Comtrol Rocketport card (&man.rp.4;
	driver)</para>

      <para>[&arch.i386;] Cyclades Cyclom-Y serial board (&man.cy.4;
	driver)</para>

      <para>[&arch.i386;] STB 4 port card using shared IRQ</para>

      <para>[&arch.i386;] DigiBoard intelligent serial cards (digi
	driver)</para>

      <para>[&arch.amd64;, &arch.i386;] PCI-Based multi-port serial
	boards (&man.puc.4; driver)</para>

      <itemizedlist>
	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] Actiontech 56K PCI</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] Avlab Technology, PCI IO
	    2S and PCI IO 4S</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] Comtrol RocketPort
	    550</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] Decision Computers PCCOM
	    4-port serial and dual port RS232/422/485</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] Dolphin Peripherals
	    4025/4035/4036</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] IC Book Labs Dreadnought
	    16x Lite and Pro</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] Lava Computers
	    2SP-PCI/DSerial-PCI/Quattro-PCI/Octopus-550</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] Middle Digital, Weasle
	    serial port</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] Moxa Industio CP-114,
	    Smartio C104H-PCI and C168H/PCI</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] NEC PK-UG-X001 and
	    PK-UG-X008</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] Netmos NM9835
	    PCI-2S-550</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] Oxford Semiconductor
	    OX16PCI954 PCI UART</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] Syba Tech SD-LAB
	    PCI-4S2P-550-ECP</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] SIIG Cyber I/O PCI
	    16C550/16C650/16C850</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] SIIG Cyber 2P1S PCI
	    16C550/16C650/16C850</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] SIIG Cyber 2S1P PCI
	    16C550/16C650/16C850</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] SIIG Cyber 4S PCI
	    16C550/16C650/16C850</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] SIIG Cyber Serial (Single
	    and Dual) PCI 16C550/16C650/16C850</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] Syba Tech
	    Ltd. PCI-4S2P-550-ECP</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] Titan PCI-200H and
	    PCI-800H</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] US Robotics (3Com) 3CP5609
	    modem</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] VScom PCI-400 and
	    PCI-800</para>
	</listitem>
      </itemizedlist>

      &hwlist.rc;

      <para>[&arch.i386;, &arch.amd64;] Specialix SI/XIO/SX multiport
	serial cards, with both the older SIHOST2.x and the
	<quote>enhanced</quote> (transputer based, aka JET) host cards
	(ISA, EISA and PCI) are supported.  Note that the newer SX+
	PCI cards are not currently supported.  (&man.si.4;
	driver)</para>

      <para>[&arch.pc98;] Internel serial interfaces (&man.sio.4;
	driver)</para>

      <itemizedlist>
	<listitem>
	  <para>PC-9801 on-board</para>
	</listitem>
	<listitem>
	  <para>PC-9821 2'nd CCU (flags 0x12000000)</para>
	</listitem>
      </itemizedlist>

      <para>[&arch.pc98;] NEC PC-9861K, PC-9801-101 and Midori-Denshi
	MDC-926Rs (&man.sio.4; driver)</para>

      <itemizedlist>
	<listitem>
	  <para>COM2 (flags 0x01000000)</para>
	</listitem>

	<listitem>
	  <para>COM3 (flags 0x02000000)</para>
	</listitem>
      </itemizedlist>

      <para>[&arch.pc98;] NEC PC-9801-120 (&man.sio.4; driver)</para>

      <note>
	<para>"flags 0x11000000" is necessary in kernel
	  configuration.</para>
      </note>

      <para>[&arch.pc98;] Microcore MC-16550, MC-16550II, MC-RS98
	(&man.sio.4; driver)</para>

      <note>
	<para>"flags 0x14000?01" is necessary in kernel
	  configuration.</para>
      </note>

      <para>[&arch.pc98;] Media Intelligent RSB-2000, RSB-3000 and
	AIWA B98-02 (&man.sio.4; driver)</para>

      <note>
	<para>"flags 0x15000?01" is necessary in kernel
	  configuration.</para>
      </note>

      <para>[&arch.pc98;] Media Intelligent RSB-384 (&man.sio.4;
	driver)</para>

      <note>
	<para>"flags 0x16000001" is necessary in kernel
	  configuration.</para>
      </note>

      <para>[&arch.pc98;] I-O DATA RSA-98III (&man.sio.4;
	driver)</para>

      <note>
	<para>"flags 0x18000?01" is necessary in kernel
	  configuration.</para>
      </note>

      <para>[&arch.pc98;] Hayes ESP98 (&man.sio.4; driver)</para>

      <note>
	<para>"options COM_ESP" and "flags 0x19000000" are necessary
	  in kernel configuration.</para>
      </note>

    </sect2>

    <sect2 xml:id="sound">
      <title>Sound Devices</title>

      &hwlist.snd.ad1816;

      &hwlist.snd.als4000;

      &hwlist.snd.atiixp;

      &hwlist.snd.audiocs;

      &hwlist.snd.cmi;

      &hwlist.snd.cs4281;

      &hwlist.snd.csa;

      &hwlist.snd.ds1;

      &hwlist.snd.emu10k1;

      &hwlist.snd.emu10kx;

      &hwlist.snd.envy24;

      &hwlist.snd.envy24ht;

      &hwlist.snd.es137x;

      &hwlist.snd.ess;

      &hwlist.snd.fm801;

      &hwlist.snd.gusc;

      &hwlist.snd.hda;

      &hwlist.snd.hdspe;

      &hwlist.snd.ich;

      &hwlist.snd.maestro;

      &hwlist.snd.maestro3;

      &hwlist.snd.mss;

      &hwlist.snd.neomagic;

      &hwlist.snd.sbc;

      &hwlist.snd.solo;

      &hwlist.snd.spicds;

      &hwlist.snd.t4dwave;

      &hwlist.snd.via8233;

      &hwlist.snd.via82c686;

      &hwlist.snd.vibes;

      <para>[&arch.pc98;] NEC PC-9801-73, 86 and compatibles (nss
	driver)</para>

      <itemizedlist>
	<listitem>
	  <para>NEC A-MATE internal sound</para>
	</listitem>

	<listitem>
	  <para>Q-Vision WaveStar, WaveMaster</para>
	</listitem>
      </itemizedlist>

      <para>[&arch.pc98;] NEC X-MATE, CanBe, ValueStar internal (mss
	driver)</para>

      <para>[&arch.pc98;] Creative Technologies SoundBlaster(98)
	(&man.sb.4; driver)</para>

      <para>[&arch.pc98;] I-O DATA CD-BOX (&man.sb.4; driver)</para>

      <para>[&arch.pc98;] MPU-401 and compatible interfaces (mpu
	driver)</para>

      <itemizedlist>
	<listitem>
	  <para>Q-Vision WaveStar</para>
	</listitem>
      </itemizedlist>
    </sect2>

    <sect2 xml:id="camera">
      <title>Camera and Video Capture Devices</title>

      &hwlist.bktr;

      <para>[&arch.i386;] Connectix QuickCam</para>
    </sect2>

    <sect2 xml:id="usb">
      <title>USB Devices</title>

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;] A
	range of USB peripherals are supported; devices known to work
	are listed in this section.  Owing to the generic nature of
	most USB devices, with some exceptions any device of a given
	class will be supported, even if not explicitly listed
	here.</para>

      <note>
	<para>[&arch.amd64;, &arch.i386;, &arch.pc98;]
	  USB Ethernet adapters can be found in the section listing
	  <link linkend="ethernet">Ethernet
	    interfaces</link>.</para>
      </note>

      <note>
	<para>[&arch.amd64;, &arch.i386;, &arch.pc98;] USB Bluetooth
	  adapters can be found in <link
	    linkend="bluetooth">Bluetooth</link> section.</para>
      </note>

      &hwlist.ohci;

      &hwlist.uhci;

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;] USB
	2.0 controllers using the EHCI interface (&man.ehci.4;
	driver)</para>

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;]
	Hubs</para>

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;]
	Keyboards (&man.ukbd.4; driver)</para>

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;]
	Miscellaneous</para>

      <itemizedlist>
	<listitem>
	  <para>Assist Computer Systems PC Camera C-M1</para>
	</listitem>

	<listitem>
	  <para>ActiveWire I/O Board</para>
	</listitem>

	<listitem>
	  <para>Creative Technology Video Blaster WebCam Plus</para>
	</listitem>

	<listitem>
	  <para>D-Link DSB-R100 USB Radio (&man.ufm.4; driver)</para>
	</listitem>

	<listitem>
	  <para>Mirunet AlphaCam Plus</para>
	</listitem>
      </itemizedlist>

      &hwlist.urio;

      &hwlist.umodem;

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;] Mice
	(&man.ums.4; driver)</para>

      &hwlist.ulpt;

      &hwlist.ubsa;

      &hwlist.ubser;

      &hwlist.uftdi;

      &hwlist.uplcom;

      &hwlist.umct;

      &hwlist.umass;

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;] Audio Devices
	(&man.uaudio.4; driver)</para>

      &hwlist.uvisor;
    </sect2>

    <sect2 xml:id="firewire">
      <title>IEEE 1394 (Firewire) Devices</title>

      &hwlist.fwohci;

      <para>[&arch.amd64;, &arch.i386;, &arch.sparc64;] Serial Bus
	Protocol 2 (SBP-2) storage devices (&man.sbp.4; driver)</para>
    </sect2>

    <sect2 xml:id="bluetooth">
      <title>Bluetooth Devices</title>

      &hwlist.ng.bt3c;

      &hwlist.ng.ubt;
    </sect2>

    <sect2 xml:id="crypto-accel">
      <title>Cryptographic Accelerators</title>

      &hwlist.hifn;

      &hwlist.safe;

      &hwlist.ubsec;
    </sect2>

    <sect2 xml:id="misc">
      <title>Miscellaneous</title>

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;]
	FAX-Modem/PCCARD</para>

      <itemizedlist>
	<listitem>
	  <para>MELCO IGM-PCM56K/IGM-PCM56KH</para>
	</listitem>

	<listitem>
	  <para>Nokia Card Phone 2.0 (gsm900/dcs1800 HSCSD
	    terminal)</para>
	</listitem>
      </itemizedlist>

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;] Floppy drives
	(&man.fdc.4; driver)</para>

      <para>[&arch.amd64;, &arch.i386;] VGA-compatible video cards
	(&man.vga.4; driver)</para>

      <note>
	<para>Information regarding specific video cards and
	  compatibility with <application>Xorg</application> can be
	  found at <uri
	    xlink:href="http://www.x.org/">http://www.x.org/</uri>.</para>
      </note>

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;]
	Keyboards including:</para>

      <itemizedlist>
	<listitem>
	  <para>[&arch.i386;] AT-style keyboards (&man.atkbd.4;
	    driver)</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] PS/2 keyboards
	    (&man.atkbd.4; driver)</para>
	</listitem>

	<listitem>
	  <para>[&arch.pc98;] Standard keyboards</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;, &arch.pc98;]
	    USB keyboards (&man.ukbd.4; driver)</para>
	</listitem>
      </itemizedlist>

      <para>[&arch.amd64;, &arch.i386;, &arch.pc98;]
	Pointing devices including:</para>

      <itemizedlist>
	<listitem>
	  <para>[&arch.amd64;, &arch.i386;, &arch.pc98;] Bus mice and
	    compatible devices (&man.mse.4; driver)</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;] PS/2 mice and compatible
	    devices, including many laptop pointing devices
	    (&man.psm.4; driver)</para>
	</listitem>

	<listitem>
	  <para>Serial mice and compatible devices</para>
	</listitem>

	<listitem>
	  <para>[&arch.amd64;, &arch.i386;, &arch.pc98;]
	    USB mice (&man.ums.4; driver)</para>
	</listitem>
      </itemizedlist>

      <note>
	<para>&man.moused.8; has more information on using pointing
	  devices with &os;.  Information on using pointing devices
	  with <application>Xorg</application> can be found at <uri
	    xlink:href="http://www.x.org/">http://www.x.org/</uri>.</para>
      </note>

      <para>[&arch.amd64;, &arch.i386;] <quote>PC standard</quote>
	parallel ports (&man.ppc.4; driver)</para>

      <para>[&arch.pc98;] <quote>PC-9821 standard</quote> parallel
	ports (&man.ppc.4; driver)</para>

      <para>[&arch.i386;, &arch.amd64;] PC-compatible joysticks
	(&man.joy.4; driver)</para>

      <para>[&arch.pc98;] Joystick port of SoundBlaster(98)
	(&man.joy.4; driver)</para>

      <para>[&arch.i386;, &arch.pc98;] PHS Data Communication
	Card/PCCARD</para>

      <itemizedlist>
	<listitem>
	  <para>NTT DoCoMo P-in Comp@ct</para>
	</listitem>

	<listitem>
	  <para>Panasonic KX-PH405</para>
	</listitem>

	<listitem>
	  <para>SII MC-P200</para>
	</listitem>
      </itemizedlist>

      <para>[&arch.i386;] Xilinx XC6200-based reconfigurable hardware
	cards compatible with the HOT1 from <link
	  xlink:href="http://www.vcc.com/">Virtual Computers</link>
	(xrpu driver).</para>

      <para>[&arch.pc98;] Power Management Controller of NEC PC-98
	Note (pmc driver)</para>
    </sect2>
  </sect1>
</article>