[BACK]Return to ALL CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / arch / i386 / conf

Annotation of src/sys/arch/i386/conf/ALL, Revision 1.198

1.198   ! pgoyette    1: # $NetBSD: ALL,v 1.197 2009/04/21 22:47:55 nonaka Exp $
1.66      christos    2: # From NetBSD: GENERIC,v 1.787 2006/10/01 18:37:54 bouyer Exp
1.7       cgd         3: #
1.58      christos    4: # ALL machine description file
                      5: #
                      6: # This machine description includes all devices and options and it is
                      7: # used to compile-test the source and does not necessarily produce a
                      8: # bootable or useful kernel.
                      9: #
                     10: # For further information on hardware support for this architecture, see
                     11: # the intro(4) man page.  For further information about kernel options
                     12: # for this architecture, see the options(4) man page.  For an explanation
                     13: # of each device driver in this file see the section 4 man page for the
                     14: # device.
                     15:
                     16: include        "arch/i386/conf/std.i386"
                     17:
                     18: options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
                     19:
1.198   ! pgoyette   20: #ident                 "ALL-$Revision: 1.197 $"
1.58      christos   21:
                     22: maxusers       32              # estimated number of users
                     23:
                     24: # CPU-related options.
                     25: options        VM86            # virtual 8086 emulation
                     26: options        USER_LDT        # user-settable LDT; used by WINE
                     27:
                     28: # Enhanced SpeedStep Technology in the Pentium M
                     29: options        ENHANCED_SPEEDSTEP
                     30: options        EST_FREQ_USERWRITE      # any user can set frequency
                     31:
                     32: # AMD PowerNow! K7
                     33: options        POWERNOW_K7
                     34:
                     35: # AMD PowerNow! and Cool`n'Quiet technology
1.63      jmmv       36: options        POWERNOW_K8
1.58      christos   37:
1.113     daniel     38: # VIA PadLock
1.153     martti     39: options        VIA_PADLOCK
1.113     daniel     40:
1.90      xtraeme    41: # Intel(R) On Demand Clock Modulation (aka ODCM)
1.100     xtraeme    42: options        INTEL_ONDEMAND_CLOCKMOD
1.90      xtraeme    43:
1.158     jmcneill   44: # XBOX support
                     45: options                XBOX
                     46:
1.58      christos   47: options        MTRR            # memory-type range register syscall support
                     48: # doesn't work with MP just yet..
                     49: options        PERFCTRS        # performance-monitoring counters support
                     50:
                     51: options        MULTIBOOT       # Multiboot support (see multiboot(8))
                     52:
                     53: # delay between "rebooting ..." message and hardware reset, in milliseconds
                     54: options        CPURESET_DELAY=2000
                     55:
                     56: # This option allows you to force a serial console at the specified
                     57: # I/O address.   see console(4) for details.
                     58: options        CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600
1.133     xtraeme    59: #      you don't want the option below ON iff you are using the
1.58      christos   60: #      serial console option of the new boot strap code.
                     61: options        CONS_OVERRIDE   # Always use above! independent of boot info
                     62:
                     63: # The following options override the memory sizes passed in from the boot
                     64: # block.  Use them *only* if the boot block is unable to determine the correct
                     65: # values.  Note that the BIOS may *correctly* report less than 640k of base
                     66: # memory if the extended BIOS data area is located at the top of base memory
                     67: # (as is the case on most recent systems).
                     68: options        REALBASEMEM=639         # size of base memory (in KB)
                     69: options        REALEXTMEM=15360        # size of extended memory (in KB)
                     70:
                     71: # Standard system options
                     72:
                     73: options        INSECURE        # disable kernel security levels - X needs this
                     74:
                     75: options        RTC_OFFSET=0    # hardware clock is this many mins. west of GMT
                     76: options        NTP             # NTP phase/frequency locked loop
                     77:
                     78: options        KTRACE          # system call tracing via ktrace(1)
                     79:
                     80: options        SYSVMSG         # System V-like message queues
                     81: options        SYSVSEM         # System V-like semaphores
                     82: options        SEMMNI=10       # number of semaphore identifiers
                     83: options        SEMMNS=60       # number of semaphores in system
                     84: options        SEMUME=10       # max number of undo entries per process
                     85: options        SEMMNU=30       # number of undo structures in system
                     86: options        SYSVSHM         # System V-like memory sharing
                     87: options        P1003_1B_SEMAPHORE      # p1003.1b semaphore support
                     88:
1.160     jmmv       89: options        MODULAR         # new modules framework
1.58      christos   90:
                     91: options        USERCONF        # userconf(4) support
                     92: options        PIPE_SOCKETPAIR # smaller, but slower pipe(2)
                     93: options        SYSCTL_INCLUDE_DESCR    # Include sysctl descriptions in kernel
                     94:
                     95: # Beep when it is safe to power down the system (requires sysbeep)
                     96: options        BEEP_ONHALT
                     97: # Some tunable details of the above feature (default values used below)
                     98: options        BEEP_ONHALT_COUNT=3     # Times to beep
                     99: options        BEEP_ONHALT_PITCH=1500  # Default frequency (in Hz)
                    100: options        BEEP_ONHALT_PERIOD=250  # Default duration (in msecs)
                    101:
                    102: # Enable experimental buffer queue strategy for better responsiveness under
                    103: # high disk I/O load. Likely stable but not yet the default.
                    104: options        BUFQ_READPRIO
                    105: options        BUFQ_PRIOCSCAN
                    106:
                    107: # Diagnostic/debugging support options
                    108: options        DIAGNOSTIC      # expensive kernel consistency checks
1.125     ad        109: options        DEBUG           # expensive debugging checks/support
1.58      christos  110: options        KMEMSTATS       # kernel memory statistics (vmstat -m)
                    111: options        DDB             # in-kernel debugger
                    112: options        DDB_ONPANIC=1   # see also sysctl(8): `ddb.onpanic'
                    113: options        DDB_HISTORY_SIZE=512    # enable history editing in DDB
1.123     xtraeme   114: options        DDB_VERBOSE_HELP
1.58      christos  115: options        KGDB            # remote debugger
                    116: options        KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
1.153     martti    117: makeoptions    DEBUG="-g"      # compile full symbol table
1.82      xtraeme   118: options        SYSCALL_STATS   # per syscall counts
                    119: options        SYSCALL_TIMES   # per syscall times
                    120: options        SYSCALL_TIMES_HASCOUNTER        # use 'broken' rdtsc (soekris)
1.58      christos  121:
                    122: # Compatibility options
                    123: options        COMPAT_NOMID    # NetBSD 0.8, 386BSD, and BSDI
                    124: options        COMPAT_09       # NetBSD 0.9
                    125: options        COMPAT_10       # NetBSD 1.0
                    126: options        COMPAT_11       # NetBSD 1.1
                    127: options        COMPAT_12       # NetBSD 1.2, 386BSD, and BSDI
                    128: options        COMPAT_13       # NetBSD 1.3, 386BSD, and BSDI
                    129: options        COMPAT_14       # NetBSD 1.4
                    130: options        COMPAT_15       # NetBSD 1.5
                    131: options        COMPAT_16       # NetBSD 1.6
                    132: options        COMPAT_20       # NetBSD 2.0
                    133: options        COMPAT_30       # NetBSD 3.0
1.101     christos  134: options        COMPAT_40       # NetBSD 4.0
1.58      christos  135: options        COMPAT_43       # 4.3BSD, 386BSD, and BSDI
                    136: options        COMPAT_386BSD_MBRPART # recognize old partition ID
                    137: options        TCP_COMPAT_42   # 4.2BSD TCP/IP bug compat. Not recommended.
                    138:
                    139: options        COMPAT_OSSAUDIO # OSS (Voxware) audio driver compatibility
                    140: options        COMPAT_SVR4     # binary compatibility with SVR4
                    141: options        COMPAT_IBCS2    # binary compatibility with SCO and ISC
                    142: options        COMPAT_LINUX    # binary compatibility with Linux
                    143: options        COMPAT_FREEBSD  # binary compatibility with FreeBSD
                    144: options        COMPAT_MACH     # binary compatibility with Mach binaries
                    145: options        COMPAT_DARWIN   # binary compatibility with Darwin binaries
                    146: options        EXEC_MACHO      # exec MACH-O binaries
                    147: options        COMPAT_NDIS     # NDIS network driver
1.135     dsl       148: options        COMPAT_PECOFF   # kernel support to run Win32 apps
1.58      christos  149: options        COMPAT_BSDPTY   # /dev/[pt]ty?? ptys.
                    150:
1.153     martti    151: options        X86EMU          # 386 Real Mode emulator
1.147     joerg     152:
1.58      christos  153: # File systems
                    154: file-system    FFS             # UFS
                    155: file-system    EXT2FS          # second extended file system (linux)
                    156: file-system    LFS             # log-structured file system
                    157: file-system    MFS             # memory file system
                    158: file-system    NFS             # Network File System client
                    159: file-system    NTFS            # Windows/NT file system (experimental)
                    160: file-system    CD9660          # ISO 9660 + Rock Ridge file system
                    161: file-system    MSDOSFS         # MS-DOS file system
                    162: file-system    FDESC           # /dev/fd
                    163: file-system    KERNFS          # /kern
                    164: file-system    NULLFS          # loopback file system
                    165: file-system    OVERLAY         # overlay file system
                    166: file-system    PORTAL          # portal filesystem (still experimental)
                    167: file-system    PROCFS          # /proc
                    168: file-system    UMAPFS          # NULLFS + uid and gid remapping
                    169: file-system    UNION           # union file system
1.121     martti    170: file-system    CODA            # Coda File System; also needs vcoda (below)
                    171: file-system    SMBFS           # experimental - CIFS; also needs nsmb (below)
                    172: file-system    SYSVBFS         # System V boot file system
                    173: file-system    PTYFS           # /dev/ptm support
                    174: file-system    TMPFS           # Efficient memory file-system
                    175: file-system    UDF             # experimental - OSTA UDF CD/DVD file-system
                    176: file-system    PUFFS           # experimental - Userspace file system support
                    177: file-system    HFS             # experimental - Apple HFS+ file system
                    178: file-system    EFS             # Silicon Graphics Extent File System
                    179: file-system    FILECORE        # Acorn filecore file system
                    180: file-system    ADOSFS          # AmigaDOS file system
1.58      christos  181:
                    182: # File system options
                    183: options        QUOTA           # UFS quotas
                    184: options        FFS_EI          # FFS Endian Independent support
1.174     simonb    185: options        WAPBL           # File system journaling support - Experimental
1.58      christos  186: # Note that UFS_DIRHASH is suspected of causing kernel memory corruption.
                    187: # It is not recommended for general use.
                    188: options        UFS_DIRHASH     # UFS Large Directory Hashing - Experimental
1.159     ad        189: options                UFS_EXTATTR
1.58      christos  190: options        NFSSERVER       # Network File System server
                    191: options        FFS_NO_SNAPSHOT # No FFS snapshot support
                    192: options        EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
                    193:                                # immutable) behave as system flags.
1.153     martti    194: options        VNODE_LOCKDEBUG
1.58      christos  195:
                    196: # Networking options
                    197: options        GATEWAY         # packet forwarding
                    198: options        INET            # IP + ICMP + TCP + UDP
                    199: options        INET6           # IPV6
                    200: options        IPSEC           # IP security
                    201: options        IPSEC_ESP       # IP security (encryption part; define w/IPSEC)
                    202: options        IPSEC_NAT_T     # IPsec NAT traversal (NAT-T)
1.67      christos  203: #options       IPSEC_DEBUG     # debug for IP security
1.58      christos  204: options        MROUTING        # IP multicast routing
                    205: options        PIM             # Protocol Independent Multicast
                    206: options        ISO,TPIP        # OSI
                    207: options        EON             # OSI tunneling over IP
                    208: options        NETATALK        # AppleTalk networking protocols
                    209: options        PPP_BSDCOMP     # BSD-Compress compression support for PPP
                    210: options        PPP_DEFLATE     # Deflate compression support for PPP
                    211: options        PPP_FILTER      # Active filter support for PPP (requires bpf)
                    212: options        PFIL_HOOKS      # pfil(9) packet filter hooks
                    213: options        IPFILTER_LOG    # ipmon(8) log support
1.59      christos  214: options        IPFILTER_LOOKUP # ippool(8) support
1.58      christos  215: options        IPFILTER_DEFAULT_BLOCK  # block all packets by default
1.67      christos  216: #options       TCP_DEBUG       # Record last TCP_NDEBUG packets with SO_DEBUG
1.98      riz       217: options        TCP_SIGNATURE   # RFC2385 support, used with BGP
1.58      christos  218:
1.78      hubertf   219: options        ALTQ            # Manipulate network interfaces' output queues
                    220: options        ALTQ_BLUE       # Stochastic Fair Blue
                    221: options        ALTQ_CBQ        # Class-Based Queueing
                    222: options        ALTQ_CDNR       # Diffserv Traffic Conditioner
                    223: options        ALTQ_FIFOQ      # First-In First-Out Queue
                    224: options        ALTQ_FLOWVALVE  # RED/flow-valve (red-penalty-box)
                    225: options        ALTQ_HFSC       # Hierarchical Fair Service Curve
                    226: options        ALTQ_LOCALQ     # Local queueing discipline
                    227: options        ALTQ_PRIQ       # Priority Queueing
                    228: options        ALTQ_RED        # Random Early Detection
                    229: options        ALTQ_RIO        # RED with IN/OUT
                    230: options        ALTQ_WFQ        # Weighted Fair Queueing
                    231:
1.58      christos  232: # These options enable verbose messages for several subsystems.
                    233: # Warning, these may compile large string tables into the kernel!
                    234: options        ACPIVERBOSE     # verbose ACPI device autoconfig messages
                    235: options        EISAVERBOSE     # verbose EISA device autoconfig messages
                    236: options        MIIVERBOSE      # verbose PHY autoconfig messages
                    237: options        PCIVERBOSE      # verbose PCI device autoconfig messages
                    238: options        PCI_CONFIG_DUMP # verbosely dump PCI config space
                    239: options        PCMCIAVERBOSE   # verbose PCMCIA configuration messages
                    240: options        SCSIVERBOSE     # human readable SCSI error messages
                    241: options        USBVERBOSE      # verbose USB device autoconfig messages
                    242: options        PNPBIOSVERBOSE  # verbose PnP BIOS messages
                    243: #options       PNPBIOSDEBUG    # more fulsome PnP BIOS debugging messages
                    244: options        MCAVERBOSE      # verbose MCA device autoconfig messages
1.179     pgoyette  245: options                I2C_SCAN        # Scan i2c bus for responses
1.58      christos  246:
                    247: options        NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
                    248:
                    249: #
                    250: # wscons options
                    251: #
                    252: # builtin terminal emulations
                    253: options        WSEMUL_SUN              # sun terminal emulation
                    254: options        WSEMUL_VT100            # VT100 / VT220 emulation
                    255: # customization of console and kernel output - see dev/wscons/wsdisplayvar.h
                    256: options        WSDISPLAY_CUSTOM_OUTPUT # color customization from wsconsctl(8)
                    257: options        WS_DEFAULT_FG=WSCOL_WHITE
                    258: options        WS_DEFAULT_BG=WSCOL_BLACK
                    259: options        WS_DEFAULT_COLATTR="(0)"
                    260: options        WS_DEFAULT_MONOATTR="(0)"
                    261: options        WS_KERNEL_FG=WSCOL_GREEN
                    262: options        WS_KERNEL_BG=WSCOL_BLACK
                    263: options        WS_KERNEL_COLATTR="(0)"
                    264: options        WS_KERNEL_MONOATTR="(0)"
                    265: # customization of console border color
                    266: options        WSDISPLAY_CUSTOM_BORDER # custom border colors via wsconsctl(8)
                    267: options        WSDISPLAY_BORDER_COLOR=WSCOL_BLUE       # default color
                    268: # compatibility to other console drivers
                    269: options        WSDISPLAY_COMPAT_PCVT           # emulate some ioctls
                    270: options        WSDISPLAY_COMPAT_SYSCONS        # emulate some ioctls
                    271: options        WSDISPLAY_COMPAT_USL            # VT handling
                    272: options        WSDISPLAY_COMPAT_RAWKBD         # can get raw scancodes
                    273: options        WSKBD_EVENT_AUTOREPEAT          # auto repeat in event mode
1.66      christos  274: #options       WSKBD_USONLY                    # strip off non-US keymaps
1.58      christos  275: # don't attach pckbd as the console if no PS/2 keyboard is found
                    276: options        PCKBD_CNATTACH_MAY_FAIL
                    277: # see dev/pckbport/wskbdmap_mfii.c for implemented layouts
                    278: options        PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" # for pckbd driver
                    279: options        UKBD_LAYOUT="(KB_DE | KB_NODEAD)"  # for ukbd driver
                    280: # allocate a number of virtual screens at autoconfiguration time
                    281: options        WSDISPLAY_DEFAULTSCREENS=4
                    282: # use a large software cursor that doesn't blink
                    283: options        PCDISPLAY_SOFTCURSOR
                    284: # modify the screen type of the console; defaults to "80x25"
                    285: options        VGA_CONSOLE_SCREENTYPE="\"80x24\""
                    286: # work around a hardware bug that loaded fonts don't work; found on ATI cards
                    287: options        VGA_CONSOLE_ATI_BROKEN_FONTSEL
1.149     joerg     288: # issue VGA BIOS POST on resume
1.153     martti    289: options        VGA_POST
1.58      christos  290: # console scrolling support.
                    291: options        WSDISPLAY_SCROLLSUPPORT
                    292: # enable VGA raster mode capable of displaying multilingual text on console
1.89      dogcow    293: #options       VGA_RASTERCONSOLE
1.58      christos  294: # enable splash screen support; requires hw driver support
                    295: #options       SPLASHSCREEN
                    296: #options       SPLASHSCREEN_PROGRESS
                    297:
                    298: # Kernel root file system and dump configuration.
                    299: config         netbsd  root on ? type ?
                    300: #config                netbsd  root on sd0a type ffs
                    301: #config                netbsd  root on ? type nfs
                    302:
                    303: #
                    304: # Device configuration
1.7       cgd       305: #
1.22      mycroft   306:
1.58      christos  307: # Doesn't do anything yet.
                    308: p64h2apic* at pci? dev? function?      # P64H2 IOxAPIC
                    309:
                    310: #apm0  at mainbus0                     # Advanced power management
                    311:
                    312: # Tuning for power management, see apm(4) for more details.
                    313: #options       APM_NO_IDLE             # Don't call BIOS CPU idle function
                    314: #options       APM_V10_ONLY            # Use only the APM 1.0 calls
                    315: #options       APM_NO_POWEROFF         # Don't power off on halt(8)
                    316: #options       APM_POWER_PRINT         # Print stats on the console
                    317: #options       APM_DISABLE_INTERRUPTS=0 # Don't disable interrupts
                    318:
                    319:
                    320: # Basic Bus Support
                    321:
1.66      christos  322: #IPMI support
                    323: ipmi0          at mainbus?
                    324:
1.58      christos  325: # Advanced Configuration and Power Interface
                    326:
                    327: # This option can be used to retrieve CPU and APIC information.
                    328: # that I/O APICs can be used if ACPI is enabled below.
                    329: #options       MPBIOS_SCANPCI  # find PCI roots using MPBIOS
                    330: #options       ACPI_SCANPCI    # find PCI roots using ACPI
                    331:
                    332: acpi0          at mainbus0
                    333:
                    334: options        ACPI_ACTIVATE_DEV       # If set, activate inactive devices
                    335: options        ACPICA_PEDANTIC         # force strict conformance to the Spec.
                    336:
                    337: # ACPI devices
                    338: acpiacad*      at acpi?                # ACPI AC Adapter
                    339: acpibat*       at acpi?                # ACPI Battery
                    340: acpibut*       at acpi?                # ACPI Button
1.146     jmcneill  341: # The ACPI Embedded Controller is generally configured via the special ECDT.
                    342: # This is required as parts of the DSDT can reference the EC before the normal
                    343: # attach phase.
                    344: acpiec*        at acpi?                # ACPI Embedded Controller (late binding)
                    345: acpiecdt*      at acpi?                # ACPI Embedded Controller (early binding)
1.58      christos  346: acpilid*       at acpi?                # ACPI Lid Switch
                    347: acpitz*        at acpi?                # ACPI Thermal Zone
                    348:
                    349: # Mainboard devices
1.86      xtraeme   350: aiboost*       at acpi?                # ASUS AI Booster Hardware monitor
1.162     jmcneill  351: asus*          at acpi?                # ASUS hotkeys
1.58      christos  352: attimer*       at acpi?                # AT Timer
                    353: com*           at acpi?                # Serial communications interface
                    354: fdc*           at acpi?                # Floppy disk controller
1.170     cegger    355: hpqlb*         at acpi?                # HP Quick Launch Buttons
1.138     njoly     356: hpet*          at acpi?                # High Precision Event Timer
1.58      christos  357: joy*           at acpi?                # Joystick/Game port
                    358: lpt*           at acpi?                # Parallel port
                    359: mpu*           at acpi?                # Roland MPU-401 MIDI UART
                    360: npx*           at acpi?                # Math coprocessor
                    361: pckbc*         at acpi?                # PC keyboard controller
                    362: pcppi*         at acpi?                # AT-style speaker sound
1.148     jmcneill  363: thinkpad*      at acpi?                # IBM/Lenovo Thinkpad hotkeys
1.96      xtraeme   364: ug*            at acpi?                # Abit uGuru Hardware monitor
1.58      christos  365: wss*           at acpi?                # NeoMagic 256AV in wss mode
                    366: ym*            at acpi?                # Yamaha OPL3-SA[23] audio
                    367:
                    368: # Sony Vaio jog dial
                    369: spic*          at acpi?                # Sony Programmable I/O Controller
                    370: wsmouse*       at spic?
                    371:
                    372: # Sony LCD brightness etc.
                    373: sony*          at acpi?                # Sony Miscellaneous Controller
                    374:
                    375: # Toshiba Libretto devices
                    376: vald* at acpi?
                    377:
                    378: # Plug-and-Play BIOS and attached devices
                    379:
                    380: pnpbios*       at mainbus?
                    381:
                    382: # mainboard audio chips
                    383: ess*           at pnpbios? index ?     # ESS AudioDrive
                    384: sb*            at pnpbios? index ?     # NeoMagic 256AV in sb mode
                    385: wss*           at pnpbios? index ?     # NeoMagic 256AV in wss mode
                    386: ym*            at pnpbios? index ?     # Yamaha OPL3-SA[23] audio
                    387:
                    388: # com port
                    389: # If enabled, consider changing "com0", "com1", and "com2" under "ISA Serial
                    390: # Interfaces" to "com*", otherwise com2 will attach at pnpbios? and there
                    391: # will be no com0.  A side effect is pcmcia (and other) com? previously
                    392: # starting at com3 may attach as com1 or com2.
                    393: com*           at pnpbios? index ?     # serial ports
                    394:
                    395: # parallel port
                    396: # The above "com*" comments apply, cf. "lpt0" under "ISA parallel
                    397: # "printer interfaces".
                    398: lpt*           at pnpbios? index ?     # parallel ports
                    399:
                    400: pckbc*         at pnpbios? index ?     # PC keyboard/mouse controller
                    401: fdc*           at pnpbios? index ?     # floppy controller
                    402: npx*           at pnpbios? index ?     # Math coprocessor
                    403:
                    404: # IDE controller on Toshiba Portege 3000 series (crippled PCI device)
                    405: pciide*        at pnpbios? index ?
                    406:
                    407: # PCI bus support
                    408: pci*   at mainbus? bus ?
                    409: pci*   at pchb? bus ?
                    410: pci*   at ppb? bus ?
                    411:
                    412: # Configure PCI using BIOS information
                    413: options        PCIBIOS                 # PCI BIOS support
                    414: options        PCIBIOSVERBOSE          # PCI BIOS verbose info
                    415: options        PCIBIOS_IRQS_HINT=0x0a00 # PCI interrupts hint. IRQ 9 or 11
                    416: options        PCIBIOS_INTR_GUESS      # see pcibios(4)
                    417: options        PCIBIOS_LIBRETTO_FIXUP  # this code makes the Toshiba Libretto
                    418:                                        # L2/L3 work, but should not be enabled
                    419:                                        # on anything else.
                    420: options        PCIBIOS_SHARP_MM20_FIXUP # this code makes the Sharp MM 20
                    421:                                        # work, but should not be enabled
                    422:                                        # on anything else.
                    423: #options       PCIINTR_DEBUG           # super-verbose PCI interrupt fixup
                    424:
                    425: # PCI fixups, for both PCIBIOS and ACPI
                    426: options        PCI_ADDR_FIXUP          # fixup PCI I/O addresses
                    427: options        PCI_BUS_FIXUP           # fixup PCI bus numbering
                    428: options        PCI_INTR_FIXUP          # fixup PCI interrupt routing
                    429:
                    430: # System Controllers
1.165     dyoung    431: elansc* at mainbus? bus ?              # AMD Elan SC520 System Controller
1.58      christos  432: gpio*  at elansc?
1.156     dyoung    433: elanpar*       at elansc?
                    434: elanpex*       at elansc?
1.58      christos  435:
                    436: # PCI bridges
1.129     xtraeme   437: amdpcib* at pci? dev ? function ?      # AMD 8111 PCI-ISA w/ HPET
                    438: hpet*  at amdpcib?
1.58      christos  439: ichlpcib* at pci? dev ? function ?     # Intel ICH PCI-ISA w/ watchdog and
                    440:                                        # SpeedStep support
1.146     jmcneill  441: hpet0          at ichlpcib?            # High Precision Event Timer
1.154     xtraeme   442: gcscpcib* at pci? dev ? function ?     # AMD CS5535/CS5536 PCI-ISA w/
                    443: gpio*  at gcscpcib?                    # timecounter, watchdog and GPIO
1.58      christos  444: piixpcib* at pci? dev ? function ?     # Intel PIIX4 PCI-ISA w/ SpeedStep
                    445: gscpcib* at pci? dev ? function ?      # NS Geode PCI-ISA w/ GPIO support
                    446: viapcib* at pci? dev ? function ?      # VIA VT8235 PCI-ISA w/ SMBus support
                    447: iic*   at viapcib?
                    448: pchb*  at pci? dev ? function ?        # PCI-Host bridges
                    449: pceb*  at pci? dev ? function ?        # PCI-EISA bridges
                    450: pcib*  at pci? dev ? function ?        # PCI-ISA bridges
                    451: pcmb*  at pci? dev ? function ?        # PCI-MCA bridges
                    452: ppb*   at pci? dev ? function ?        # PCI-PCI bridges
                    453: # XXX 'puc's aren't really bridges, but there's no better place for them here
                    454: puc*   at pci? dev ? function ?        # PCI "universal" comm. cards
                    455:
                    456: agp*   at pchb?
                    457:
                    458:
                    459: # EISA bus support
                    460: eisa0  at mainbus?
                    461: eisa0  at pceb?
                    462:
                    463: # ISA bus support
1.129     xtraeme   464: isa0   at amdpcib?
1.154     xtraeme   465: isa0   at gcscpcib?
1.58      christos  466: isa0   at ichlpcib?
                    467: isa0   at piixpcib?
                    468: isa0   at gscpcib?
                    469: isa0   at viapcib?
                    470: isa0   at mainbus?
                    471: isa0   at pceb?
                    472: isa0   at pcib?
                    473:
                    474: # PCMCIA bus support
                    475: pcmcia* at pcic? controller ? socket ?
                    476: pcmcia* at tcic? controller ? socket ?
                    477:
                    478: # MCA bus support
                    479: mca0   at mainbus?
                    480:
                    481: # ISA PCMCIA controllers
                    482: pcic0  at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
                    483: pcic1  at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000
                    484: pcic2  at isa? port 0x3e4 iomem 0xe0000 iosiz 0x4000
                    485: tcic0  at isa? port 0x240 iomem 0xd0000 iosiz 0x10000
                    486:
                    487: # PCI PCMCIA controllers
                    488: pcic0  at pci? dev? function ?
                    489:
                    490: # ISA Plug-and-Play bus support
                    491: isapnp0 at isa?
                    492:
                    493: # ISA Plug-and-Play PCMCIA controllers
                    494: pcic*  at isapnp?
                    495:
                    496: # CardBus bridge support
                    497: cbb*           at pci? dev ? function ?
                    498: cardslot*      at cbb?
                    499:
                    500: # CardBus bus support
                    501: cardbus*       at cardslot?
                    502: pcmcia*        at cardslot?
                    503:
                    504: # Coprocessor Support
                    505:
                    506: # Math Coprocessor support
                    507: npx0   at isa? port 0xf0 irq 13        # x86 math coprocessor
                    508:
                    509:
                    510: # Console Devices
                    511:
                    512: # wscons
                    513: pckbc0         at isa?                 # pc keyboard controller
                    514: pckbd*         at pckbc?               # PC keyboard
                    515: pms*           at pckbc?               # PS/2 mouse for wsmouse
                    516: options        PMS_DISABLE_POWERHOOK   # Disable PS/2 reset on resume
                    517: options        PMS_SYNAPTICS_TOUCHPAD  # Enable support for Synaptics Touchpads
1.186     jmcneill  518: options        PMS_ELANTECH_TOUCHPAD   # Enable support for Elantech Touchpads
1.58      christos  519: vga0           at isa?
                    520: vga*           at pci? dev ? function ?
                    521: pcdisplay0     at isa?                 # CGA, MDA, EGA, HGA
                    522: machfb*        at pci? dev ? function ? # ATI Mach64 framebuffer driver
1.192     jmcneill  523: genfb*         at pci? dev ? function ? # generic linear framebuffer driver
1.58      christos  524: wsdisplay*     at vga? console ?
                    525: wsdisplay*     at pcdisplay? console ?
                    526: wsdisplay*     at machfb? console ?
1.192     jmcneill  527: wsdisplay*     at wsemuldisplaydev?
1.58      christos  528: wskbd*         at pckbd? console ?
                    529: wsmouse*       at pms? mux 0
                    530:
1.87      xtraeme   531: # VIA Unichrome framebuffer console
1.158     jmcneill  532: unichromefb*   at pci? dev ? function ?
                    533: wsdisplay*     at unichromefb?
                    534:
                    535: # XBOX framebuffer console
                    536: xboxfb0                at pci? dev ? function ?
                    537: wsdisplay*     at xboxfb? console ?
1.87      xtraeme   538:
1.93      dillo     539: # DRI driver
                    540: i915drm*       at vga?         # Intel i915, i945 DRM driver
                    541: mach64drm*     at vga?         # mach64 (3D Rage Pro, Rage) DRM driver
                    542: mgadrm*                at vga?         # Matrox G[24]00, G[45]50 DRM driver
                    543: r128drm*       at vga?         # ATI Rage 128 DRM driver
                    544: radeondrm*     at vga?         # ATI Radeon DRM driver
                    545: savagedrm*     at vga?         # S3 Savage DRM driver
                    546: sisdrm*                at vga?         # SiS DRM driver
                    547: tdfxdrm*       at vga?         # 3dfx (voodoo) DRM driver
                    548:
1.58      christos  549: attimer0       at isa?
                    550: pcppi0         at isa?
                    551: sysbeep0       at pcppi?
                    552:
                    553: # Serial Devices
                    554:
                    555: # PCI serial interfaces
                    556: com*   at puc? port ?                  # 16x50s on "universal" comm boards
                    557: cy*    at pci? dev ? function ?        # Cyclades Cyclom-Y serial boards
                    558: cz*    at pci? dev ? function ?        # Cyclades-Z multi-port serial boards
                    559:
                    560: # ISA Plug-and-Play serial interfaces
                    561: com*   at isapnp?                      # Modems and serial boards
                    562:
                    563: # PCMCIA serial interfaces
                    564: com*   at pcmcia? function ?           # Modems and serial cards
                    565:
                    566: pcmcom* at pcmcia? function ?          # PCMCIA multi-port serial cards
                    567: com*   at pcmcom? slave ?              # ...and the slave devices
                    568:
                    569: # CardBus serial interfaces
                    570: com*   at cardbus? function ?  # Modems and serial cards
                    571:
                    572: # ISA serial interfaces
                    573: #options       COM_HAYESP              # adds Hayes ESP serial board support
                    574: com0   at isa? port 0x3f8 irq 4        # Standard PC serial ports
                    575: com1   at isa? port 0x2f8 irq 3
                    576: com2   at isa? port 0x3e8 irq 5
                    577: com3   at isa? port 0x2e8 irq 9
                    578: ast0   at isa? port 0x1a0 irq 5        # AST 4-port serial cards
                    579: com*   at ast? slave ?
                    580: boca0  at isa? port 0x100 irq 5        # BOCA 8-port serial cards
                    581: boca0  at isa? port 0x100 irq 5        # BOCA 16-port serial cards (BB2016)
                    582: boca1  at isa? port 0x140 irq 5        # this line is also needed for BB2016
                    583: com*   at boca? slave ?
                    584: tcom0  at isa? port 0x100 irq 7        # TC-800 8-port serial cards
                    585: com*   at tcom? slave ?
                    586: rtfps0 at isa? port 0x1230 irq 10      # RT 4-port serial cards
                    587: com*   at rtfps? slave ?
                    588: cy0    at isa? iomem 0xd4000 irq 12    # Cyclades serial cards
                    589: addcom0 at isa? port 0x108 irq 5       # Addonics FlexPort 8S
                    590: com*   at addcom? slave ?
                    591: moxa0  at isa? port 0x100 irq 5        # MOXA C168H serial card (experimental)
                    592: com*   at moxa? slave ?
                    593: ioat*  at isa? port 0x220 irq 5        # BOCA IOAT66 6-port serial card
                    594: com*   at ioat? slave ?
                    595:
                    596: # MCA serial interfaces
                    597: com*   at mca? slot ?                  # 16x50s on comm boards
                    598:
                    599: # Parallel Printer Interfaces
                    600:
                    601: # PCI parallel printer interfaces
                    602: lpt*   at puc? port ?                  # || ports on "universal" comm boards
                    603:
                    604: # ISA parallel printer interfaces
                    605: lpt0   at isa? port 0x378 irq 7        # standard PC parallel ports
                    606: lpt1   at isa? port 0x278
                    607: lpt2   at isa? port 0x3bc
                    608:
                    609: # Hardware monitors
                    610:
1.167     cegger    611: amdtemp* at pci? dev ? function ?      # AMD CPU Temperature sensors
                    612:
1.58      christos  613: # AMD 768 and 8111 power/ACPI controllers
                    614: amdpm* at pci? dev ? function ?        # RNG and SMBus 1.0 interface
                    615: iic*   at amdpm?                       # sensors below are on this bus
1.110     kiyohara  616:
1.130     xtraeme   617: # Intel Core's on-die Thermal sensor
1.131     xtraeme   618: options        INTEL_CORETEMP
1.130     xtraeme   619:
1.115     kiyohara  620: # Intel ICH SMBus controller
                    621: ichsmb*        at pci? dev ? function ?
                    622: iic*   at ichsmb?
                    623:
1.110     kiyohara  624: # NVIDIA nForce2/3/4 SMBus controller
                    625: nfsmbc*        at pci? dev ? function ?
                    626: nfsmb* at nfsmbc?
                    627: iic*   at nfsmb?
                    628:
1.111     kiyohara  629: # Intel PIIX4 power management controllers
                    630: piixpm* at pci? dev ? function ?       # PIIX4 compatible PM controller
                    631: iic*   at piixpm?                      # SMBus on PIIX4
                    632:
1.182     pgoyette  633: # dbCool thermal monitor and fan controller
                    634: dbcool* at iic? addr 0x2C              # Unknown other motherboard(s)
                    635: dbcool* at iic? addr 0x2D              # Tyan S2881
                    636: dbcool* at iic? addr 0x2E              # Tyan S2882-D
1.58      christos  637:
1.183     pgoyette  638: # LM7[89] and compatible hardware monitors
                    639: lm0    at iic? addr 0x2e
                    640:
1.158     jmcneill  641: pic16lc*       at iic? addr 0x10       # XBOX PIC16LC
                    642: xbseeprom*     at iic? addr 0x54       # XBOX serial EEPROM
                    643:
1.122     xtraeme   644: # IBM Thinkpad Active Protection System
                    645: aps0   at isa? port 0x1600
                    646:
1.163     xtraeme   647: # Fintek Super I/O with hardware monitor
                    648: finsio0        at isa? port 0x4e
                    649:
1.151     xtraeme   650: # iTE IT87xxF Super I/O with watchdog and sensors support
1.140     xtraeme   651: itesio0        at isa? port 0x2e
1.58      christos  652:
                    653: # LM7[89] and compatible hardware monitors
                    654: lm0    at isa? port 0x290              # other common: 0x280, 0x310
                    655:
1.102     blymn     656: # SMSC LPC47B397 hardware monitor functions
                    657: smsc0  at isa? port 0x02e
                    658:
1.58      christos  659: # PC87366 hardware monitor
                    660: nsclpcsio*     at isa?
                    661: gpio*          at nsclpcsio?
                    662:
1.94      xtraeme   663: # Abit uGuru Hardware system monitor
                    664: ug0    at isa? port 0xe0
                    665:
1.77      xtraeme   666: # VIA VT82C686A/VT8231 Hardware Monitor and Power Management Timer
                    667: viaenv*        at pci? dev ? function ?
1.58      christos  668:
1.198   ! pgoyette  669: # Serial Presence Detect capable memory modules and optional temp sensors
1.116     tnn       670: spdmem*        at iic? addr 0x50
1.198   ! pgoyette  671: sdtemp*        at iic? addr 0x18
1.58      christos  672:
                    673: # I2O devices
                    674: iop*   at pci? dev ? function ?        # I/O processor
                    675: iopsp* at iop? tid ?                   # SCSI/FC-AL ports
                    676: ld*    at iop? tid ?                   # block devices
                    677: dpti*  at iop? tid 0                   # DPT/Adaptec control interface
                    678:
                    679: # GPIO devices
                    680: gpio*  at gscpcib?
                    681:
                    682: # 1-Wire support
                    683: gpioow*        at gpio? offset 6 mask 0x1      # 1-wire bitbanging via gpio
                    684: onewire*       at gpioow?
                    685:
                    686: # 1-Wire devices
                    687: owtemp*        at onewire?                     # Temperature sensors
                    688:
                    689: # SCSI Controllers and Devices
                    690:
                    691: # PCI SCSI controllers
                    692: adv*   at pci? dev ? function ?        # AdvanSys 1200[A,B], 9xx[U,UA] SCSI
                    693: adw*   at pci? dev ? function ?        # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
                    694: ahc*   at pci? dev ? function ?        # Adaptec [23]94x, aic78x0 SCSI
                    695: ahd*   at pci? dev ? function ?        # Adaptec 29320, 39320 (aic790x) SCSI
                    696: bha*   at pci? dev ? function ?        # BusLogic 9xx SCSI
                    697: dpt*   at pci? dev ? function ?        # DPT SmartCache/SmartRAID
                    698: iha*   at pci? dev ? function ?        # Initio INIC-940/950 SCSI
                    699: isp*   at pci? dev ? function ?        # Qlogic ISP [12]0x0 SCSI/FibreChannel
1.75      bouyer    700: mfi*   at pci? dev ? function ?        # LSI MegaRAID SAS
1.58      christos  701: mly*   at pci? dev ? function ?        # Mylex AcceleRAID and eXtremeRAID
                    702: mpt*   at pci? dev ? function ?        # LSI Fusion SCSI/FC
                    703: njs*   at pci? dev ? function ?        # Workbit NinjaSCSI-32
                    704: pcscp* at pci? dev ? function ?        # AMD 53c974 PCscsi-PCI SCSI
                    705: siop*  at pci? dev ? function ?        # Symbios 53c8xx SCSI
                    706: esiop* at pci? dev ? function ?        # Symbios 53c875 SCSI and newer
                    707: options        SIOP_SYMLED             # drive the act. LED in software
                    708: trm*   at pci? dev ? function ?        # Tekram DC-395U/UW/F, DC-315/U SCSI
                    709:
                    710: # EISA SCSI controllers
                    711: ahb*   at eisa? slot ?                 # Adaptec 174[02] SCSI
                    712: ahc*   at eisa? slot ?                 # Adaptec 274x, aic7770 SCSI
                    713: bha*   at eisa? slot ?                 # BusLogic 7xx SCSI
                    714: dpt*   at eisa? slot ?                 # DPT EATA SCSI
                    715: uha*   at eisa? slot ?                 # UltraStor 24f SCSI
                    716:
                    717: # PCMCIA SCSI controllers
                    718: aic*   at pcmcia? function ?           # Adaptec APA-1460 SCSI
                    719: esp*   at pcmcia? function ?           # Qlogic ESP406/FAS408 SCSI
1.164     tsutsui   720: nca*   at pcmcia? function ?           # NCR53C400 SCSI
1.58      christos  721: spc*   at pcmcia? function ?           # Fujitsu MB87030/MB89352 SCSI
                    722:
                    723: # ISA Plug-and-Play SCSI controllers
                    724: aha*   at isapnp?                      # Adaptec AHA-154[02
                    725: aic*   at isapnp?                      # Adaptec AHA-1520B
                    726:
                    727: # ISA SCSI controllers
                    728: adv0   at isa? port ? irq ? drq ?      # AdvanSys APB-514[02] SCSI
                    729: aha0   at isa? port 0x330 irq ? drq ?  # Adaptec 154[02] SCSI
                    730: aha1   at isa? port 0x334 irq ? drq ?
                    731: ahc0   at isa? port ? irq ?            # Adaptec 284x SCSI
                    732: aic0   at isa? port 0x340 irq 11       # Adaptec 152[02] SCSI
                    733: bha0   at isa? port 0x330 irq ? drq ?  # BusLogic [457]4X SCSI
                    734: bha1   at isa? port 0x334 irq ? drq ?
                    735: # The "nca" and "dpt" probes might give false hits or hang your machine.
                    736: dpt0   at isa? port 0x170 irq ? drq ?  # DPT SmartCache/SmartRAID
1.166     tsutsui   737: esp0   at isa? port 0x230 irq ?        # Emulex ESP406 and Qlogic FAS408 SCSI
1.58      christos  738: nca0   at isa? port 0x360 irq 15       # Port-mapped NCR 53C80 controller
                    739: nca1   at isa? iomem 0xd8000 irq 5     # Memory-mapped controller (T128, etc.)
                    740: sea0   at isa? iomem 0xc8000 irq 5     # Seagate/Future Domain SCSI
                    741: uha0   at isa? port 0x330 irq ? drq ?  # UltraStor [13]4f SCSI
                    742: uha1   at isa? port 0x340 irq ? drq ?
                    743: wds0   at isa? port 0x350 irq 15 drq 6 # WD7000 and TMC-7000 controllers
                    744: wds1   at isa? port 0x358 irq 11 drq 5
                    745:
                    746: # CardBus SCSI cards
                    747: adv*   at cardbus? function ?  # AdvanSys 1200[A,B], 9xx[U,UA] SCSI
                    748: ahc*   at cardbus? function ?  # Adaptec ADP-1480
                    749: njs*   at cardbus? function ?  # Workbit NinjaSCSI-32
                    750:
                    751: # MCA SCSI cards
                    752: aha*   at mca? slot ?                  # Adaptec AHA-1640
1.188     tsutsui   753: esp*   at mca? slot ?                  # NCR 53C90 SCSI Adapter
1.58      christos  754:
                    755: # SCSI bus support
                    756: scsibus* at scsi?
                    757:
                    758: # SCSI devices
                    759: sd*    at scsibus? target ? lun ?      # SCSI disk drives
                    760: st*    at scsibus? target ? lun ?      # SCSI tape drives
                    761: cd*    at scsibus? target ? lun ?      # SCSI CD-ROM drives
                    762: ch*    at scsibus? target ? lun ?      # SCSI autochangers
                    763: ses*   at scsibus? target ? lun ?      # SCSI Enclosure Services devices
                    764: ss*    at scsibus? target ? lun ?      # SCSI scanners
                    765: uk*    at scsibus? target ? lun ?      # SCSI unknown
                    766:
1.119     dyoung    767: # SCSI NIC
                    768: se* at scsibus? target ? lun ?
1.58      christos  769:
                    770: # RAID controllers and devices
                    771: aac*   at pci? dev ? function ?        # Adaptec AAC family
                    772: amr*   at pci? dev ? function ?        # AMI/LSI Logic MegaRAID
1.145     xtraeme   773: arcmsr* at pci? dev ? function ?       # Areca SATA RAID controllers
1.58      christos  774: cac*   at eisa? slot ?                 # Compaq EISA array controllers
                    775: cac*   at pci? dev ? function ?        # Compaq PCI array controllers
                    776: ciss*  at pci? dev ? function ?        # HP Smart Array controllers
                    777: icp*   at pci? dev ? function ?        # ICP-Vortex GDT & Intel RAID
                    778: mlx*   at pci? dev ? function ?        # Mylex DAC960 & DEC SWXCR family
                    779: mlx*   at eisa? slot ?                 # Mylex DAC960 & DEC SWXCR family
                    780: twa*   at pci? dev ? function ?        # 3ware Escalade 95xx RAID controllers
                    781: twe*   at pci? dev ? function ?        # 3ware Escalade RAID controllers
                    782:
                    783: ld*    at aac? unit ?                  # logical disk devices
                    784: ld*    at amr? unit ?
                    785: ld*    at cac? unit ?
                    786: ld*    at icp? unit ?
                    787: ld*    at twa? unit ?
                    788: ld*    at twe? unit ?
                    789: ld*    at mlx? unit ?
                    790:
                    791: icpsp* at icp? unit ?                  # SCSI pass-through
                    792:
                    793: # IDE and related devices
                    794: # PCI IDE controllers - see pciide(4) for supported hardware.
                    795: # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
                    796: # how to set up DMA modes for this chip. This may work, or may cause
                    797: # a machine hang with some controllers.
                    798: pciide*        at pci? dev ? function ? flags 0x0000   # GENERIC pciide driver
                    799: acardide*      at pci? dev ? function ?        # Acard IDE controllers
                    800: aceride*       at pci? dev ? function ?        # Acer Lab IDE controllers
1.78      hubertf   801: ahcisata*      at pci? dev ? function ?        # AHCI SATA controllers
1.58      christos  802: artsata*       at pci? dev ? function ?        # Intel i31244 SATA controller
                    803: cmdide*        at pci? dev ? function ?        # CMD tech IDE controllers
                    804: cypide*        at pci? dev ? function ?        # Cypress IDE controllers
1.106     xtraeme   805: gcscide*       at pci? dev ? function ?        # AMD CS5535 Companion IDE controllers
1.58      christos  806: geodeide*      at pci? dev ? function ?        # AMD Geode IDE controllers
                    807: hptide*        at pci? dev ? function ?        # Triones/HighPoint IDE controllers
                    808: iteide*        at pci? dev ? function ?        # IT Express IDE controllers
                    809: ixpide*        at pci? dev ? function ?        # ATI IXP IDE controllers
1.127     xtraeme   810: jmide*                 at pci? dev ? function ?        # JMicron PCI-e PATA/SATA controllers
1.128     dogcow    811: ahcisata*      at jmide?
1.58      christos  812: optiide*       at pci? dev ? function ?        # Opti IDE controllers
                    813: piixide*       at pci? dev ? function ?        # Intel IDE controllers
                    814: pdcide*        at pci? dev ? function ?        # Promise IDE controllers
                    815: pdcsata*       at pci? dev ? function ?        # Promise SATA150 controllers
                    816: rccide*        at pci? dev ? function ?        # ServerWorks IDE controllers
                    817: satalink*      at pci? dev ? function ?        # SiI SATALink controllers
1.172     jnemeth   818: siisata*       at pci? dev ? function ?        # SiI SteelVine controllers
1.58      christos  819: siside*        at pci? dev ? function ?        # SiS IDE controllers
                    820: slide*         at pci? dev ? function ?        # Symphony Labs IDE controllers
                    821: svwsata*       at pci? dev ? function ?        # ServerWorks SATA controllers
                    822: stpcide*       at pci? dev ? function ?        # STMicro STPC IDE controllers
                    823: viaide*        at pci? dev ? function ?        # VIA/AMD/Nvidia IDE controllers
                    824:
                    825: # ISA Plug-and-Play IDE controllers
                    826: wdc*   at isapnp?
                    827:
                    828: # PCMCIA IDE controllers
                    829: wdc*   at pcmcia? function ?
                    830:
1.60      itohy     831: # CardBus IDE controllers
1.64      itohy     832: njata* at cardbus? function ? flags 0x01       # Workbit NinjaATA-32
1.60      itohy     833:
1.58      christos  834: # ISA ST506, ESDI, and IDE controllers
                    835: # Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
                    836: # fall back to 16bits I/O if 32bits I/O are not functional).
                    837: # Some controllers pass the initial 32bit test, but will fail later.
                    838: wdc0   at isa? port 0x1f0 irq 14 flags 0x00
                    839: wdc1   at isa? port 0x170 irq 15 flags 0x00
                    840:
                    841: # ATA (IDE) bus support
                    842: atabus* at ata?
1.95      dyoung    843: options        ATADEBUG
1.58      christos  844:
                    845: # IDE drives
                    846: # Flags are used only with controllers that support DMA operations
                    847: # and mode settings (e.g. some pciide controllers)
                    848: # The lowest order four bits (rightmost digit) of the flags define the PIO
                    849: # mode to use, the next set of four bits the DMA mode and the third set the
                    850: # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
                    851: # to use, and the last bit must be 1 for this setting to be used.
                    852: # For DMA and UDMA, 0xf (1111) means 'disable'.
                    853: # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
                    854: # (0xc=1100, 0xa=1010, 0xf=1111)
                    855: # 0x0000 means "use whatever the drive claims to support".
                    856: wd*    at atabus? drive ? flags 0x0000
                    857:
                    858: # ATA RAID configuration support, as found on some Promise controllers.
                    859: pseudo-device  ataraid
                    860: ld*    at ataraid? vendtype ? unit ?
                    861:
                    862: # ATAPI bus support
                    863: atapibus* at atapi?
                    864:
                    865: # ATAPI devices
                    866: # flags have the same meaning as for IDE drives.
                    867: cd*    at atapibus? drive ? flags 0x0000       # ATAPI CD-ROM drives
                    868: sd*    at atapibus? drive ? flags 0x0000       # ATAPI disk drives
                    869: st*    at atapibus? drive ? flags 0x0000       # ATAPI tape drives
                    870: uk*    at atapibus? drive ? flags 0x0000       # ATAPI unknown
                    871:
                    872:
                    873: # Miscellaneous mass storage devices
                    874:
                    875: # ISA floppy
                    876: fdc0   at isa? port 0x3f0 irq 6 drq 2  # standard PC floppy controllers
                    877: #fdc1  at isa? port 0x370 irq ? drq ?
                    878: fd*    at fdc? drive ?                 # the drives themselves
                    879: # some machines need you to do this instead of fd*
                    880: fd0    at fdc0 drive 0
                    881:
                    882: # ISA CD-ROM devices
                    883: mcd0   at isa? port 0x300 irq 10       # Mitsumi CD-ROM drives
                    884:
                    885: # ISA tape devices
                    886: # note: the wt driver conflicts unpleasantly with SMC boards at the
                    887: # same I/O address. The probe reprograms their EEPROMs. Don't
                    888: # uncomment it unless you are actually using it.
                    889: wt0    at isa? port 0x308 irq 5 drq 1  # Archive and Wangtek QIC tape drives
                    890:
                    891: # MCA ESDI devices
                    892: edc*   at mca? slot ?                  # IBM ESDI Disk Controllers
                    893: ed*    at edc?
                    894:
                    895:
                    896: # Network Interfaces
                    897:
                    898: # PCI network interfaces
1.189     cegger    899: age*   at pci? dev ? function ?        # Attansic/Atheros L1 gigabit Ethernet
1.58      christos  900: an*    at pci? dev ? function ?        # Aironet PC4500/PC4800 (802.11)
1.196     cegger    901: ale*   at pci? dev ? function ?        # Attansic/Atheros L1E Ethernet
1.58      christos  902: ath*   at pci? dev ? function ?        # Atheros 5210/5211/5212 802.11
                    903: atw*   at pci? dev ? function ?        # ADMtek ADM8211 (802.11)
                    904: bce*   at pci? dev ? function ?        # Broadcom 4401 10/100 Ethernet
                    905: bge*   at pci? dev ? function ?        # Broadcom 570x gigabit Ethernet
1.76      bouyer    906: bnx*   at pci? dev ? function ?        # Broadcom NetXtremeII gigabit Ethernet
1.191     cegger    907: bwi*   at pci? dev ? function ?        # Broadcom BCM43xx wireless
1.58      christos  908: dge*   at pci? dev ? function ?        # Intel 82597 10GbE LR
                    909: en*    at pci? dev ? function ?        # ENI/Adaptec ATM
                    910: ep*    at pci? dev ? function ?        # 3Com 3c59x
                    911: epic*  at pci? dev ? function ?        # SMC EPIC/100 Ethernet
                    912: esh*   at pci? dev ? function ?        # Essential HIPPI card
                    913: ex*    at pci? dev ? function ?        # 3Com 90x[BC]
                    914: fpa*   at pci? dev ? function ?        # DEC DEFPA FDDI
                    915: fxp*   at pci? dev ? function ?        # Intel EtherExpress PRO 10+/100B
                    916: gsip*  at pci? dev ? function ?        # NS83820 Gigabit Ethernet
                    917: hme*   at pci? dev ? function ?        # Sun Microelectronics STP2002-STQ
                    918: ipw*   at pci? dev ? function ?        # Intel PRO/Wireless 2100
                    919: iwi*   at pci? dev ? function ?        # Intel PRO/Wireless 2200BG
1.178     ober      920: iwn*    at pci? dev ? function ?        # Intel PRO/Wireless 4965AGN
1.58      christos  921: le*    at pci? dev ? function ?        # PCnet-PCI Ethernet
1.161     cube      922: lii*   at pci? dev ? function ?        # Atheros L2 Fast-Ethernet
1.58      christos  923: lmc*   at pci? dev ? function ?        # Lan Media Corp SSI/HSSI/DS3
1.61      riz       924: mskc*  at pci? dev ? function ?        # Marvell Yukon 2 Gigabit Ethernet
                    925: msk*   at mskc?                        # Marvell Yukon 2 Gigabit Ethernet
1.58      christos  926: mtd*   at pci? dev ? function ?        # Myson MTD803 3-in-1 Ethernet
                    927: #ndis*         at pci? dev ? function ?        # Experimental - NDIS Network Driver
                    928: ne*    at pci? dev ? function ?        # NE2000-compatible Ethernet
                    929: nfe*   at pci? dev ? function ?        # NVIDIA nForce Ethernet
                    930: ntwoc* at pci? dev ? function ?        # Riscom/N2 PCI Sync Serial
                    931: pcn*   at pci? dev ? function ?        # AMD PCnet-PCI Ethernet
                    932: ral*   at pci? dev ? function ?        # Ralink Technology RT25x0 802.11a/b/g
                    933: re*    at pci? dev ? function ?        # Realtek 8139C+/8169/8169S/8110S
                    934: rtk*   at pci? dev ? function ?        # Realtek 8129/8139
1.78      hubertf   935: rtw*   at pci? dev ? function ?        # Realtek 8180L (802.11)
1.58      christos  936: sf*    at pci? dev ? function ?        # Adaptec AIC-6915 Ethernet
                    937: sip*   at pci? dev ? function ?        # SiS 900/DP83815 Ethernet
                    938: skc*   at pci? dev ? function ?        # SysKonnect SK9821 Gigabit Ethernet
                    939: sk*    at skc?                         # SysKonnect SK9821 Gigabit Ethernet
                    940: ste*   at pci? dev ? function ?        # Sundance ST-201 Ethernet
                    941: stge*  at pci? dev ? function ?        # Sundance/Tamarack TC9021 Gigabit
                    942: ti*    at pci? dev ? function ?        # Alteon ACEnic gigabit Ethernet
                    943: tl*    at pci? dev ? function ?        # ThunderLAN-based Ethernet
                    944: tlp*   at pci? dev ? function ?        # DECchip 21x4x and clones
                    945: txp*   at pci? dev ? function ?        # 3com 3cr990
                    946: vge*   at pci? dev ? function ?        # VIATech VT612X Gigabit Ethernet
                    947: vr*    at pci? dev ? function ?        # VIA Rhine Fast Ethernet
                    948: wi*    at pci? dev ? function ?        # Intersil Prism Mini-PCI (802.11b)
                    949: wm*    at pci? dev ? function ?        # Intel 8254x gigabit
                    950: wpi*   at pci? dev ? function ?        # Intel PRO/Wireless 3945ABG
                    951: xge*   at pci? dev ? function ?        # Neterion (S2io) Xframe-I 10GbE
                    952:
                    953: # EISA network interfaces
                    954: ep*    at eisa? slot ?                 # 3Com 3c579 Ethernet
                    955: fea*   at eisa? slot ?                 # DEC DEFEA FDDI
                    956: tlp*   at eisa? slot ?                 # DEC DE-425 Ethernet
                    957:
                    958: # ISA Plug-and-Play network interfaces
                    959: an*    at isapnp?                      # Aironet 802.11
                    960: ep*    at isapnp?                      # 3Com 3c509 Ethernet
                    961: fmv*   at isapnp?                      # Fujitsu FMV-183
                    962: le*    at isapnp?                      # AMD PCnet-ISA Ethernet
                    963: ne*    at isapnp?                      # NE2000-compatible Ethernet
                    964: tr*    at isapnp?                      # IBM/3COM TROPIC Token-Ring
                    965:
                    966: # PCMCIA network interfaces
                    967: an*    at pcmcia? function ?           # Aironet PC4500/PC4800 (802.11)
                    968: awi*   at pcmcia? function ?           # BayStack 650/660 (802.11FH/DS)
                    969: cnw*   at pcmcia? function ?           # Xircom/Netwave AirSurfer
                    970: cs*    at pcmcia? function ?           # CS89xx Ethernet
                    971: ep*    at pcmcia? function ?           # 3Com 3c589 and 3c562 Ethernet
                    972: mbe*   at pcmcia? function ?           # MB8696x based Ethernet
                    973: ne*    at pcmcia? function ?           # NE2000-compatible Ethernet
                    974: ray*   at pcmcia? function ?           # Raytheon Raylink (802.11)
                    975: sm*    at pcmcia? function ?           # Megahertz Ethernet
                    976: # tr at pcmcia has problems with Cardbus bridges
                    977: tr*    at pcmcia? function ?           # TROPIC based Token-Ring
                    978: wi*    at pcmcia? function ?           # Lucent/Intersil WaveLan IEEE (802.11)
                    979: xirc*  at pcmcia? function ?           # Xircom CreditCard Ethernet
                    980: com*   at xirc?
                    981: xi*    at xirc?
                    982: mhzc*  at pcmcia? function ?           # Megahertz Ethernet/Modem combo cards
                    983: com*   at mhzc?
                    984: sm*    at mhzc?
                    985:
                    986: # ISA network interfaces
                    987: ate0   at isa? port 0x2a0 irq ?                # AT1700
                    988: cs0    at isa? port 0x300 iomem ? irq ? drq ?  # CS8900 Ethernet
                    989: ec0    at isa? port 0x250 iomem 0xd8000 irq 9  # 3Com 3c503 Ethernet
                    990: eg0    at isa? port 0x280 irq 9                # 3C505 ethernet cards
                    991: el0    at isa? port 0x300 irq 9                # 3C501 ethernet cards
                    992: ep*    at isa? port ? irq ?                    # 3C509 ethernet cards
                    993: ef0    at isa? port 0x360 iomem 0xd0000 irq 7  # 3C507
                    994: ai0    at isa? port 0x360 iomem 0xd0000 irq 7  # StarLAN
                    995: fmv0   at isa? port 0x2a0 irq ?                # FMV-181/182
                    996: ix0    at isa? port 0x300 irq 10               # EtherExpress/16
                    997: iy0    at isa? port 0x360 irq ?                # EtherExpress PRO 10 ISA
                    998: lc0    at isa? port 0x320 iomem ? irq ?        # DEC EtherWORKS III (LEMAC)
                    999: depca0 at isa? port 0x300 iomem 0xc8000 iosiz 0x8000 irq 5     # DEPCA
                   1000: le*    at depca?
                   1001: nele0  at isa? port 0x320 irq 9 drq 7          # NE2100
                   1002: le*    at nele?
                   1003: ntwoc0 at isa? port 0x300 irq 5 iomem 0xc8000 flags 1  # Riscom/N2 sync serial
                   1004: bicc0  at isa? port 0x320 irq 10 drq 7         # BICC IsoLan
                   1005: le*    at bicc?
                   1006: ne0    at isa? port 0x280 irq 9                # NE[12]000 ethernet cards
                   1007: ne1    at isa? port 0x300 irq 10
                   1008: sm0    at isa? port 0x300 irq 10               # SMC91C9x Ethernet
                   1009: tr0    at isa? port 0xa20 iomem 0xd8000 irq ?  # IBM TROPIC based Token-Ring
                   1010: tr1    at isa? port 0xa24 iomem 0xd0000 irq ?  # IBM TROPIC based Token-Ring
                   1011: tr*    at isa? port ? irq ?                    # 3COM TROPIC based Token-Ring
                   1012: we0    at isa? port 0x280 iomem 0xd0000 irq 9  # WD/SMC Ethernet
                   1013: we1    at isa? port 0x300 iomem 0xcc000 irq 10
                   1014:
                   1015: # CardBus network cards
                   1016: ath*   at cardbus? function ?  # Atheros 5210/5211/5212 802.11
                   1017: atw*   at cardbus? function ?  # ADMtek ADM8211 (802.11)
                   1018: ex*    at cardbus? function ?  # 3Com 3C575TX
                   1019: fxp*   at cardbus? function ?  # Intel i8255x
1.124     joerg    1020: re*    at cardbus? function ?  # Realtek 8139C+/8169/8169S/8110S
1.58      christos 1021: rtk*   at cardbus? function ?  # Realtek 8129/8139
                   1022: ral*   at cardbus? function ?  # Ralink Technology
                   1023: rtw*   at cardbus? function ?  # Realtek 8180L (802.11)
                   1024: tlp*   at cardbus? function ?  # DECchip 21143
                   1025:
                   1026: # MCA network cards
                   1027: elmc*  at mca? slot ?                  # 3Com EtherLink/MC (3c523)
                   1028: ep*    at mca? slot ?                  # 3Com EtherLink III (3c529)
                   1029: we*    at mca? slot ?                  # WD/SMC Ethernet
                   1030: ate*   at mca? slot ?                  # Allied Telesis AT1720
                   1031: ne*    at mca? slot ?                  # Novell NE/2 and clones
                   1032: tr*    at mca? slot ?                  # IBM Token Ring adapter
                   1033: tra*   at mca? slot ?                  # Tiara LANCard/E and clones
                   1034: le*    at mca? slot ?                  # SKNET Personal/MC2+
                   1035:
                   1036: # MII/PHY support
1.189     cegger   1037: atphy*  at mii? phy ?                  # Attansic F1 10/100/1000 PHYs
1.58      christos 1038: acphy* at mii? phy ?                   # Altima AC101 and AMD Am79c874 PHYs
                   1039: amhphy* at mii? phy ?                  # AMD 79c901 Ethernet PHYs
                   1040: bmtphy* at mii? phy ?                  # Broadcom BCM5201 and BCM5202 PHYs
                   1041: brgphy* at mii? phy ?                  # Broadcom BCM5400-family PHYs
                   1042: ciphy* at mii? phy ?                   # Cicada CS8201 Gig-E PHYs
                   1043: dmphy* at mii? phy ?                   # Davicom DM9101 PHYs
                   1044: exphy* at mii? phy ?                   # 3Com internal PHYs
                   1045: gentbi* at mii? phy ?                  # Generic Ten-Bit 1000BASE-[CLS]X PHYs
                   1046: glxtphy* at mii? phy ?                 # Level One LXT-1000 PHYs
                   1047: gphyter* at mii? phy ?                 # NS83861 Gig-E PHY
                   1048: icsphy* at mii? phy ?                  # Integrated Circuit Systems ICS189x
                   1049: igphy* at mii? phy ?                   # Intel IGP01E1000
1.68      bouyer   1050: ikphy* at mii? phy ?                   # Intel 82563 PHYs
1.58      christos 1051: inphy* at mii? phy ?                   # Intel 82555 PHYs
                   1052: iophy* at mii? phy ?                   # Intel 82553 PHYs
                   1053: lxtphy* at mii? phy ?                  # Level One LXT-970 PHYs
                   1054: makphy* at mii? phy ?                  # Marvell Semiconductor 88E1000 PHYs
                   1055: nsphy* at mii? phy ?                   # NS83840 PHYs
                   1056: nsphyter* at mii? phy ?                # NS83843 PHYs
                   1057: pnaphy* at mii? phy ?                  # generic HomePNA PHYs
                   1058: qsphy* at mii? phy ?                   # Quality Semiconductor QS6612 PHYs
                   1059: rgephy* at mii? phy ?                  # Realtek 8169S/8110S internal PHYs
                   1060: rlphy* at mii? phy ?                   # Realtek 8139/8201L PHYs
                   1061: sqphy* at mii? phy ?                   # Seeq 80220/80221/80223 PHYs
                   1062: tlphy* at mii? phy ?                   # ThunderLAN PHYs
                   1063: tqphy* at mii? phy ?                   # TDK Semiconductor PHYs
                   1064: ukphy* at mii? phy ?                   # generic unknown PHYs
                   1065: urlphy* at mii? phy ?                  # Realtek RTL8150L internal PHYs
                   1066:
                   1067:
                   1068: # USB Controller and Devices
                   1069:
                   1070: # PCI USB controllers
                   1071: ehci*  at pci? dev ? function ?        # Enhanced Host Controller
1.109     jmcneill 1072: gcscehci* at pci? dev ? function ?     # Enhanced Host Controller (Geode CSC)
1.58      christos 1073: ohci*  at pci? dev ? function ?        # Open Host Controller
                   1074: uhci*  at pci? dev ? function ?        # Universal Host Controller (Intel)
                   1075:
                   1076: # CardBus USB controllers
                   1077: ehci*  at cardbus? function ?  # Enhanced Host Controller
                   1078: ohci*  at cardbus? function ?  # Open Host Controller
                   1079: uhci*  at cardbus? function ?  # Universal Host Controller (Intel)
                   1080:
                   1081: # ISA USB controllers
                   1082: slhci0 at isa? port 0x300 irq 5        # ScanLogic SL811HS
                   1083:
1.118     kiyohara 1084: # PCMCIA USB controllers
                   1085: slhci* at pcmcia? function ?           # ScanLogic SL811HS
                   1086:
1.58      christos 1087: # USB bus support
                   1088: usb*   at ehci?
1.109     jmcneill 1089: usb*   at gcscehci?
1.58      christos 1090: usb*   at ohci?
1.118     kiyohara 1091: usb*   at slhci?
1.58      christos 1092: usb*   at uhci?
                   1093:
                   1094: # USB Hubs
                   1095: uhub*  at usb?
1.88      drochner 1096: uhub*  at uhub? port ?
1.58      christos 1097:
                   1098: # USB HID device
                   1099: uhidev*        at uhub? port ? configuration ? interface ?
                   1100:
                   1101: # USB Mice
                   1102: ums*   at uhidev? reportid ?
                   1103: wsmouse* at ums? mux 0
                   1104:
                   1105: # USB eGalax touch-panel
                   1106: uep*   at uhub? port ?
                   1107: wsmouse* at uep? mux 0
                   1108:
                   1109: # USB Keyboards
                   1110: ukbd*  at uhidev? reportid ?
                   1111: wskbd* at ukbd? console ? mux 1
                   1112:
                   1113: # USB serial adapter
                   1114: ucycom*        at uhidev? reportid ?
                   1115:
                   1116: # USB Generic HID devices
                   1117: uhid*  at uhidev? reportid ?
                   1118:
                   1119: # USB Printer
                   1120: ulpt*  at uhub? port ? configuration ? interface ?
                   1121:
                   1122: # USB Modem
                   1123: umodem*        at uhub? port ? configuration ?
                   1124: ucom*  at umodem?
                   1125:
1.157     ichiro   1126: # Huawei E220 3G/HSDPA modem
                   1127: uhmodem* at uhub? port ? configuration ? interface ?
                   1128: ucom*  at uhmodem? portno ?
                   1129:
1.58      christos 1130: # USB Mass Storage
                   1131: umass* at uhub? port ? configuration ? interface ?
                   1132: wd*    at umass?
                   1133:
                   1134: # USB audio
                   1135: uaudio*        at uhub? port ? configuration ?
                   1136:
                   1137: # USB MIDI
                   1138: umidi* at uhub? port ? configuration ?
                   1139:
                   1140: # USB IrDA
                   1141: # USB-IrDA bridge spec
                   1142: uirda* at uhub? port ? configuration ? interface ?
                   1143: irframe* at uirda?
                   1144:
                   1145: # SigmaTel STIr4200 USB/IrDA Bridge
                   1146: ustir* at uhub? port ?
                   1147: irframe* at ustir?
                   1148:
                   1149: # USB Ethernet adapters
                   1150: aue*   at uhub? port ?         # ADMtek AN986 Pegasus based adapters
                   1151: axe*   at uhub? port ?         # ASIX AX88172 based adapters
                   1152: cdce*  at uhub? port ?         # CDC, Ethernet Networking Control Model
                   1153: cue*   at uhub? port ?         # CATC USB-EL1201A based adapters
                   1154: kue*   at uhub? port ?         # Kawasaki LSI KL5KUSB101B based adapters
                   1155: udav*  at uhub? port ?         # Davicom DM9601 based adapters
                   1156: url*   at uhub? port ?         # Realtek RTL8150L based adapters
                   1157:
                   1158: # USB 802.11 adapters
                   1159: atu*   at uhub? port ?         # Atmel AT76C50XX based adapters
                   1160: ral*   at uhub? port ?         # Ralink Technology RT25x0 802.11a/b/g
1.70      joerg    1161: rum*   at uhub? port ?         # Ralink Technology RT2501/RT2601 802.11a/b/g
1.103     kiyohara 1162: zyd*   at uhub? port ?         # Zydas ZD1211
1.58      christos 1163:
                   1164: # Prolific PL2301/PL2302 host-to-host adapter
                   1165: upl*   at uhub? port ?
                   1166:
                   1167: # Serial adapters
                   1168: ubsa*  at uhub? port ?         # Belkin serial adapter
                   1169: ucom*  at ubsa? portno ?
                   1170:
1.120     xtraeme  1171: uchcom* at uhub? port ?        # WinChipHead CH341/CH340 serial adapter
                   1172: ucom*   at uchcom? portno ?
                   1173:
1.58      christos 1174: uftdi* at uhub? port ?         # FTDI FT8U100AX serial adapter
                   1175: ucom*  at uftdi? portno ?
                   1176:
                   1177: uipaq* at uhub? port ?         # iPAQ PDAs
                   1178: ucom*  at uipaq? portno ?
                   1179:
                   1180: umct*  at uhub? port ?         # MCT USB-RS232 serial adapter
                   1181: ucom*  at umct? portno ?
                   1182:
                   1183: uplcom* at uhub? port ?        # I/O DATA USB-RSAQ2 serial adapter
                   1184: ucom*  at uplcom? portno ?
                   1185:
1.99      dogcow   1186: uslsa* at uhub? port ?         # Silicon Labs USB-RS232 serial adapter
                   1187: ucom*  at uslsa? portno ?
                   1188:
1.58      christos 1189: uvscom* at uhub? port ?        # SUNTAC Slipper U VS-10U serial adapter
                   1190: ucom*  at uvscom? portno ?
                   1191:
1.173     christos 1192: # RIM BlackBerry
                   1193: uberry*        at uhub? port ?
                   1194:
1.58      christos 1195: # Diamond Multimedia Rio 500
                   1196: urio*  at uhub? port ?
                   1197:
                   1198: # USB Handspring Visor
                   1199: uvisor*        at uhub? port ?
                   1200: ucom*  at uvisor?
                   1201:
                   1202: # Kyocera AIR-EDGE PHONE
                   1203: ukyopon* at uhub? port ?
                   1204: ucom*  at ukyopon? portno ?
                   1205:
                   1206: # USB scanners
                   1207: uscanner* at uhub? port ?
                   1208:
                   1209: # USB scanners that use SCSI emulation, e.g., HP5300
                   1210: usscanner* at uhub? port ?
                   1211:
                   1212: # Topfield TF5000PVR range of DVB recorders
                   1213: utoppy*        at uhub? port ?
                   1214:
                   1215: # Y@P firmware loader
                   1216: uyap* at uhub? port ?
                   1217:
                   1218: # D-Link DSB-R100 USB radio
                   1219: udsbr* at uhub? port ?
                   1220: radio* at udsbr?
                   1221:
1.158     jmcneill 1222: # XBOX controller
                   1223: xboxcontroller*        at uhub? port ?
                   1224: wsmouse*       at xboxcontroller? mux 0
                   1225:
1.58      christos 1226: # USB Generic driver
                   1227: ugen*  at uhub? port ?
                   1228: # On ugen bulk endpoints, perform read-ahead and write-behind.
                   1229: options        UGEN_BULK_RA_WB
                   1230:
                   1231:
                   1232: # IrDA and Consumer Ir devices
                   1233:
                   1234: # Toshiba Oboe
                   1235: oboe*  at pci? dev ? function ?
                   1236: irframe* at oboe?
                   1237:
                   1238:
                   1239: # PCI IEEE1394 controllers
                   1240: fwohci*        at pci? dev ? function ?        # IEEE1394 Open Host Controller
                   1241:
                   1242: # CardBus IEEE1394 controllers
                   1243: fwohci*        at cardbus? function ?  # IEEE1394 Open Host Controller
                   1244:
                   1245: ieee1394if* at fwohci?
                   1246: fwip*  at ieee1394if?                  # IP over IEEE1394
                   1247: sbp*   at ieee1394if? euihi ? euilo ?  # SCSI over IEEE1394
                   1248:
                   1249:
1.197     nonaka   1250: # SD/MMC/SDIO Controller and Device support
                   1251:
                   1252: # SD/MMC controller
                   1253: sdhc*  at pci?                         # SD Host Controller
                   1254: sdmmc* at sdhc?                                # SD/MMC bus
                   1255:
                   1256: ld*    at sdmmc?
                   1257:
                   1258:
1.58      christos 1259: # Audio Devices
                   1260:
                   1261: # PCI audio devices
                   1262: auacer* at pci? dev ? function ?       # ALi M5455 integrated AC'97 Audio
                   1263: auich* at pci? dev ? function ?        # Intel ICH integrated AC'97 Audio
                   1264: auixp* at pci? dev ? function ?        # ATI IXP AC'97 Audio
                   1265: autri* at pci? dev ? function ?        # Trident 4DWAVE based AC'97 Audio
                   1266: auvia* at pci? dev ? function ?        # VIA VT82C686A integrated AC'97 Audio
                   1267: azalia*        at pci? dev ? function ?        # High Definition Audio
                   1268: clcs*  at pci? dev ? function ?        # Cirrus Logic CS4280
                   1269: clct*  at pci? dev ? function ?        # Cirrus Logic CS4281
                   1270: cmpci* at pci? dev ? function ?        # C-Media CMI8338/8738
                   1271: eap*   at pci? dev ? function ?        # Ensoniq AudioPCI
                   1272: emuxki* at pci? dev ? function ?       # Creative SBLive! and PCI512
                   1273: esa*   at pci? dev ? function ?        # ESS Allegro-1 / Maestro-3 PCI Audio
                   1274: esm*   at pci? dev ? function ?        # ESS Maestro-1/2/2e PCI Audio Accelerator
                   1275: eso*   at pci? dev ? function ?        # ESS Solo-1 PCI AudioDrive
                   1276: fms*   at pci? dev ? function ?        # Forte Media FM801
1.187     jmcneill 1277: gcscaudio* at pci? dev ? function ?    # AMD Geode CS5536 Companion Audio
1.58      christos 1278: neo*   at pci? dev ? function ?        # NeoMagic 256 AC'97 Audio
                   1279: sv*    at pci? dev ? function ?        # S3 SonicVibes
                   1280: yds*   at pci? dev ? function ?        # Yamaha DS-1 PCI Audio
                   1281:
                   1282: # ISA Plug-and-Play audio devices
                   1283: ess*   at isapnp?                      # ESS Tech ES1887, ES1888, ES888 audio
                   1284: guspnp* at isapnp?                     # Gravis Ultra Sound PnP audio
                   1285: sb*    at isapnp?                      # SoundBlaster-compatible audio
                   1286: wss*   at isapnp?                      # Windows Sound System
                   1287: ym*    at isapnp?                      # Yamaha OPL3-SA[23] audio
                   1288:
                   1289: # ISA audio devices
                   1290: # the "aria" probe might give false hits
                   1291: aria0  at isa? port 0x290 irq 10               # Aria
                   1292: ess0   at isa? port 0x220 irq 5 drq 1 drq2 5   # ESS 18XX
                   1293: gus0   at isa? port 0x220 irq 7 drq 1 drq2 6   # Gravis Ultra Sound
                   1294: pas0   at isa? port 0x220 irq 7 drq 1          # ProAudio Spectrum
                   1295: sb0    at isa? port 0x220 irq 5 drq 1 drq2 5   # SoundBlaster
                   1296: wss0   at isa? port 0x530 irq 10 drq 0 drq2 1  # Windows Sound System
                   1297: cms0   at isa? port 0x220                      # Creative Music System
                   1298:
                   1299: # OPL[23] FM synthesizers
                   1300: opl0   at isa? port 0x388      # use only if not attached to sound card
                   1301: opl*   at cmpci? flags 1
                   1302: opl*   at eso?
                   1303: opl*   at ess?
                   1304: opl*   at fms?
                   1305: opl*   at sb?
                   1306: opl*   at sv?
                   1307: opl*   at wss?
                   1308: opl*   at yds?
                   1309: opl*   at ym?
                   1310:
                   1311: # Audio support
                   1312: audio* at audiobus?
                   1313:
                   1314: # MPU 401 UARTs
                   1315: mpu*   at isa? port 0x330 irq 9        # MPU401 or compatible card
                   1316: mpu*   at isapnp?
                   1317: mpu*   at cmpci?
                   1318: mpu*   at eso?
                   1319: mpu*   at fms?
                   1320: mpu*   at sb?
                   1321: mpu*   at yds?
                   1322: mpu*   at ym?
                   1323:
                   1324: # MIDI support
                   1325: midi*  at midibus?
                   1326: midi*  at pcppi?               # MIDI interface to the PC speaker
                   1327:
                   1328: # The spkr driver provides a simple tone interface to the built in speaker.
                   1329: spkr0  at pcppi?               # PC speaker
                   1330:
                   1331:
                   1332: # FM-Radio devices
                   1333: # ISA radio devices
                   1334: az0    at isa? port 0x350      # Aztech/PackardBell FM Radio Card
                   1335: az1    at isa? port 0x358
                   1336: rt0    at isa? port 0x20c      # AIMS Lab Radiotrack & compatible
                   1337: rt1    at isa? port 0x284
                   1338: rt2    at isa? port 0x30c
                   1339: rt3    at isa? port 0x384
                   1340: rtii0  at isa? port 0x20c      # AIMS Lab Radiotrack II FM Radio Card
                   1341: rtii1  at isa? port 0x30c
                   1342: sf2r0  at isa? port 0x384      # SoundForte RadioLink SF16-FMR2 FM Radio Card
                   1343:
                   1344: # PCI radio devices
                   1345: gtp*   at pci? dev ? function ? # Guillemot Maxi Radio FM 2000 Radio Card
                   1346:
                   1347: # Radio support
                   1348: radio* at az?
                   1349: radio* at gtp?
                   1350: radio* at rt?
                   1351: radio* at rtii?
                   1352: radio* at sf2r?
                   1353:
                   1354:
1.180     jmcneill 1355: # Video capture devices
                   1356:
                   1357: pseye* at uhub?                        # Sony PLAYSTATION(R) Eye webcam
                   1358: uvideo* at uhub?               # USB Video Class capture devices
                   1359: video* at videobus?
                   1360:
                   1361:
1.58      christos 1362: # TV cards
                   1363:
                   1364: # Brooktree 848/849/878/879 based TV cards
                   1365: bktr* at pci? dev ? function ?
                   1366: radio* at bktr?
                   1367:
1.194     dyoung   1368: isv* at isa? port 0x3e0                        # IDEC Supervision/16 image capture
1.58      christos 1369:
                   1370: # Bluetooth Controller and Device support
                   1371:
                   1372: # Bluetooth PCMCIA Controllers
                   1373: bt3c* at pcmcia? function ?            # 3Com 3CRWB6096-A
1.117     kiyohara 1374: btbc* at pcmcia? function ?            # AnyCom BlueCard LSE041/039/139
1.58      christos 1375:
                   1376: # Bluetooth USB Controllers
1.88      drochner 1377: ubt* at uhub? port ?
1.58      christos 1378:
1.62      plunky   1379: # Bluetooth Device Hub
1.143     kiyohara 1380: bthub* at bcsp?
1.62      plunky   1381: bthub* at bt3c?
1.117     kiyohara 1382: bthub* at btbc?
1.83      kiyohara 1383: bthub* at btuart?
1.62      plunky   1384: bthub* at ubt?
1.58      christos 1385:
                   1386: # Bluetooth HID support
1.62      plunky   1387: bthidev* at bthub?
1.58      christos 1388:
                   1389: # Bluetooth Mouse
                   1390: btms* at bthidev? reportid ?
                   1391: wsmouse* at btms? mux 0
                   1392:
                   1393: # Bluetooth Keyboard
                   1394: btkbd* at bthidev? reportid ?
                   1395: wskbd* at btkbd? console ? mux 1
                   1396:
                   1397: # Bluetooth Audio support
1.62      plunky   1398: btsco* at bthub?
1.58      christos 1399:
                   1400:
                   1401: # Mice
                   1402:
                   1403: # ISA busmice
                   1404: lms0   at isa? port 0x23c irq 5        # Logitech bus mouse
                   1405: lms1   at isa? port 0x238 irq 5
                   1406: mms0   at isa? port 0x23c irq 5        # Microsoft InPort mouse
                   1407: mms1   at isa? port 0x238 irq 5
                   1408: wsmouse*       at lms? mux 0
                   1409: wsmouse*       at mms? mux 0
                   1410:
                   1411:
                   1412: # Cryptographic Devices
                   1413:
                   1414: # PCI cryptographic devices
1.104     jmcneill 1415: glxsb* at pci? dev ? function ?        # AMD Geode LX Security Block
1.58      christos 1416: hifn*  at pci? dev ? function ?        # Hifn 7755/7811/795x
                   1417: ubsec* at pci? dev ? function ?        # Broadcom 5501/5601/580x/582x
                   1418:
                   1419:
                   1420: # Joysticks
                   1421:
                   1422: joy*   at pnpbios? index ?             # Game port
                   1423:
                   1424: # ISA Plug-and-Play joysticks
                   1425: joy*   at isapnp?                      # Game ports (usually on audio cards)
                   1426:
                   1427: # PCI joysticks
                   1428: joy*   at pci?                         # Game ports (usually on audio cards)
                   1429: joy*   at eap?                         # See CAVEATS in eap(4) before enabling
                   1430: joy*   at eso?                         # ESS Solo-1 on-board joystick
                   1431:
                   1432: # ISA joysticks. Probe is a little strange; add only if you have one.
                   1433: joy0   at isa? port 0x201
                   1434:
                   1435:
                   1436: # Miscellaneous Devices
                   1437: geodegcb*  at pci? dev ? function ?    # Geode GCB area
                   1438: geodewdog* at geodegcb?                # AMD Geode SC1100 watchdog timer
                   1439: geodecntr* at geodegcb?                # AMD Geode SC1100 high res. counter
                   1440:
                   1441: # Planetconnect Satellite receiver driver.
                   1442: satlink0 at isa? port 0x300 drq 1
                   1443:
                   1444: # Middle Digital, Inc. PCI-Weasel serial console board control
                   1445: # devices (watchdog timer, etc.)
                   1446: weasel* at pci?
                   1447:
                   1448: # Pull in optional local configuration
                   1449: #include       "arch/i386/conf/ALL.local"
                   1450:
                   1451:
                   1452: # Pseudo-Devices
                   1453:
                   1454: pseudo-device  crypto          # /dev/crypto device
                   1455: pseudo-device  swcrypto        # software crypto implementation
                   1456:
                   1457: # disk/mass storage pseudo-devices
                   1458: pseudo-device  ccd             4       # concatenated/striped disk devices
                   1459: pseudo-device  cgd             4       # cryptographic disk devices
                   1460: pseudo-device  raid            8       # RAIDframe disk driver
                   1461: options        RAID_AUTOCONFIG         # auto-configuration of RAID components
                   1462: # Options to enable various other RAIDframe RAID types.
                   1463: options        RF_INCLUDE_EVENODD=1
                   1464: options        RF_INCLUDE_RAID5_RS=1
                   1465: options        RF_INCLUDE_PARITYLOGGING=1
                   1466: options        RF_INCLUDE_CHAINDECLUSTER=1
                   1467: options        RF_INCLUDE_INTERDECLUSTER=1
                   1468: options        RF_INCLUDE_PARITY_DECLUSTERING=1
                   1469: options        RF_INCLUDE_PARITY_DECLUSTERING_DS=1
                   1470: pseudo-device  fss             4       # file system snapshot device
                   1471:
                   1472: pseudo-device  md              1       # memory disk device (ramdisk)
                   1473: pseudo-device  vnd                     # disk-like interface to files
                   1474: options        VND_COMPRESSION         # compressed vnd(4)
                   1475:
1.190     haad     1476: pseudo-device  dm                      # device-mapper disk driver
                   1477:
1.58      christos 1478: # network pseudo-devices
1.97      xtraeme  1479: pseudo-device  agr                     # Link aggregation agr(4)
1.58      christos 1480: pseudo-device  bpfilter                # Berkeley packet filter
                   1481: pseudo-device  carp                    # Common Address Redundancy Protocol
                   1482: pseudo-device  ipfilter                # IP filter (firewall) and NAT
                   1483: pseudo-device  loop                    # network loopback
                   1484: pseudo-device  ppp                     # Point-to-Point Protocol
                   1485: pseudo-device  pppoe                   # PPP over Ethernet (RFC 2516)
                   1486: pseudo-device  sl                      # Serial Line IP
                   1487: pseudo-device  strip                   # Starmode Radio IP (Metricom)
                   1488: pseudo-device  irframetty              # IrDA frame line discipline
                   1489: pseudo-device  tap                     # virtual Ethernet
                   1490: pseudo-device  tun                     # network tunneling over tty
                   1491: pseudo-device  gre                     # generic L3 over IP tunnel
                   1492: pseudo-device  gif                     # IPv[46] over IPv[46] tunnel (RFC1933)
                   1493: pseudo-device  faith                   # IPv[46] tcp relay translation i/f
                   1494: pseudo-device  stf                     # 6to4 IPv6 over IPv4 encapsulation
                   1495: pseudo-device  vlan                    # IEEE 802.1q encapsulation
                   1496: pseudo-device  bridge                  # simple inter-network bridging
                   1497: options        BRIDGE_IPF              # bridge uses IP/IPv6 pfil hooks too
                   1498: pseudo-device  pf                      # PF packet filter
                   1499: pseudo-device  pflog                   # PF log if
1.65      rpaulo   1500: pseudo-device  kttcp
1.72      rpaulo   1501: pseudo-device  etherip                 # EtherIP
1.78      hubertf  1502: # srt is EXPERIMENTAL
                   1503: pseudo-device  srt                     # source-address-based routing
1.58      christos 1504:
                   1505: # miscellaneous pseudo-devices
                   1506: pseudo-device  pty                     # pseudo-terminals
                   1507: pseudo-device  sequencer       1       # MIDI sequencer
                   1508: # rnd works; RND_COM does not on port i386 yet.
                   1509: pseudo-device  rnd                     # /dev/random and in-kernel generator
                   1510: options        RND_COM                 # use "com" randomness as well (BROKEN)
                   1511: pseudo-device  clockctl                # user control of clock subsystem
                   1512: pseudo-device  ksyms                   # /dev/ksyms
1.143     kiyohara 1513: pseudo-device  bcsp                    # BlueCore Serial Protocol
1.83      kiyohara 1514: pseudo-device  btuart                  # Bluetooth HCI UART (H4)
1.58      christos 1515:
                   1516: # a pseudo device needed for Coda      # also needs CODA (above)
                   1517: pseudo-device  vcoda           4       # coda minicache <-> venus comm.
                   1518:
                   1519: # a pseudo device needed for SMBFS
                   1520: pseudo-device  nsmb                    # experimental - SMB requester
                   1521:
                   1522: # wscons pseudo-devices
                   1523: pseudo-device  wsmux                   # mouse & keyboard multiplexor
                   1524: pseudo-device  wsfont
                   1525:
1.63      jmmv     1526: options        FILEASSOC               # fileassoc(9) - required for Veriexec
1.58      christos 1527:
                   1528: # Veriexec
                   1529: pseudo-device  veriexec
1.80      xtraeme  1530:
1.73      xtraeme  1531: # drvctl - needed to show device dictionary via drvctl(8)
                   1532: pseudo-device  drvctl
                   1533:
1.80      xtraeme  1534: # pseudo-device lockstat needed for lockstat(8)
                   1535: pseudo-device  lockstat
                   1536:
                   1537: # software watchdog driver - swwdog(4)
1.81      xtraeme  1538: pseudo-device  swwdog
                   1539:
                   1540: # cmos(4) pseudo-device
                   1541: pseudo-device  cmos
1.80      xtraeme  1542:
1.136     pooka    1543: # Pass-to-Userspace Transporter
                   1544: pseudo-device  putter
                   1545:
1.142     pooka    1546: # Userspace block/char drivers
                   1547: pseudo-device  pud
                   1548:
1.137     jmcneill 1549: # pseudo audio device driver
                   1550: pseudo-device  pad
                   1551:
1.58      christos 1552: # Uncomment the fingerprint methods below that are desired. Note that
                   1553: # removing fingerprint methods will have almost no impact on the kernel
                   1554: # code size.
                   1555: #
                   1556: options VERIFIED_EXEC_FP_RMD160
                   1557: options VERIFIED_EXEC_FP_SHA256
                   1558: options VERIFIED_EXEC_FP_SHA384
                   1559: options VERIFIED_EXEC_FP_SHA512
                   1560: options VERIFIED_EXEC_FP_SHA1
                   1561: options VERIFIED_EXEC_FP_MD5
1.35      cgd      1562:
1.66      christos 1563: options PAX_MPROTECT=0                 # PaX mprotect(2) restrictions
1.150     christos 1564: options PAX_SEGVGUARD=0                        # PaX Segmentation fault guard
                   1565: options PAX_ASLR=0                     # PaX Address Space Layout Randomization
1.168     ad       1566:
                   1567: options ATHHAL_DEBUG
                   1568: options A9PCIC_DEBUG
                   1569: options AAC_DEBUG
                   1570: options AAU_DEBUG
                   1571: options AC97_DEBUG
                   1572: options AC97_IO_DEBUG
                   1573: options ACPI_ACAD_DEBUG
                   1574: options ACPI_APM_DEBUG
                   1575: options ACPI_BAT_DEBUG
                   1576: options ACPI_BUT_DEBUG
                   1577: #options ACPI_DEBUG
                   1578: options ACPI_EXTRA_DEBUG
                   1579: options ACPI_FDC_DEBUG
                   1580: options ACPI_LID_DEBUG
                   1581: options ACPI_MADT_DEBUG
                   1582: #options ACPI_MUTEX_DEBUG
                   1583: options ADB_DEBUG
                   1584: options ADM1030_DEBUG
                   1585: options ADT7467_DEBUG
                   1586: options AE_DEBUG
                   1587: options AGP_DEBUG
                   1588: options AHADEBUG
                   1589: options AHBDEBUG
                   1590: options AHC_DEBUG=1
                   1591: options AHD_DEBUG
                   1592: options AHD_DEBUG_OPTS=1
                   1593: options AH_DEBUG_ALQ
                   1594: options AIC_DEBUG
                   1595: options ALTQ_DEBUG
                   1596: options AMD756_DEBUG
                   1597: options AMRR_DEBUG
                   1598: options AN_DEBUG
                   1599: options APMDEBUG
                   1600: options APMDEBUG_VALUE=1
                   1601: options ARCKBD_DEBUG
                   1602: options ARGO_DEBUG
                   1603: options ARP_DEBUG
                   1604: options ASC_DEBUG
                   1605: options ATAPI_DEBUG_PROBE
                   1606: options ATA_DEBUG
                   1607: options ATA_RAID_DEBUG
                   1608: options ATE_DEBUG
                   1609: options ATMEL_DEBUG
                   1610: options ATPPC_DEBUG
                   1611: options ATW_BBPDEBUG
                   1612: options ATW_DEBUG
                   1613: options ATW_SYNDEBUG
                   1614: options AUACER_DEBUG
                   1615: options AUCCDEBUG
                   1616: options AUCONV_DEBUG
                   1617: options AUDIO_DEBUG
                   1618: options AUE_DEBUG
                   1619: options AUICH_DEBUG
                   1620: options AUICH_MODEM_DEBUG
                   1621: options AURATECONV_DEBUG
                   1622: options AUSMBUS_PSC_DEBUG
                   1623: options AWACS_DEBUG
                   1624: options AWI_DEBUG
                   1625: options AXE_DEBUG
                   1626: options AZALIA_DEBUG
                   1627: options BAH_DEBUG
                   1628: options BCACHE_DEBUG
                   1629: options BDEBUG
                   1630: options BEDEBUG
                   1631: options BHADEBUG
                   1632: options BIOS_MEMORY_DEBUG
                   1633: options BIT3DEBUG
                   1634: options BKTR_RADIO_DEBUG
                   1635: options BLUETOOTH_DEBUG
                   1636: options BMAC_DEBUG
                   1637: options BMD_DEBUG
                   1638: options BOOTP_DEBUG
                   1639: options BOOTP_DEBUGx
                   1640: options BOOTXX_DEBUG
                   1641: options BOOT_DEBUG
                   1642: options BT463_DEBUG
                   1643: options BTDEBUG
                   1644: options BTHSET_DEBUG
                   1645: options BTLBDEBUG
                   1646: options BTNMGRDEBUG
                   1647: options BUS_DMA_DEBUG
                   1648: options BUS_SPACE_DEBUG
                   1649: options CACHE_DEBUG
                   1650: options CARDBUS_DEBUG
                   1651: options CD18XXDEBUG
                   1652: options CGSIX_DEBUG
                   1653: options CHANGER_DEBUG
                   1654: options CISS_DEBUG
                   1655: options CKSUMDEBUG
                   1656: options CLOCKDEBUG
                   1657: options CLOCK_DEBUG
                   1658: options CNW_DEBUG
                   1659: options COMDEBUG
                   1660: options COMVRIPDEBUG
                   1661: options COM_DEBUG
                   1662: options COM_HPCIODEBUG
                   1663: options CONSDEBUG
                   1664: options CRYPTO_DEBUG
                   1665: options CS4280_DEBUG
                   1666: options CS_DEBUG
                   1667: options CUE_DEBUG
                   1668: options CY_DEBUG
                   1669: options CZ_DEBUG
                   1670: options DAIC_DEBUG
                   1671: options DBRI_DEBUG
                   1672: options DDB_DEBUG
                   1673: options DEBUGBUG
                   1674: options DEBUGGER_THREADING
                   1675: options DEBUGTERM
                   1676: options DEBUGXXX
                   1677: options DEBUG_1284
                   1678: options DEBUG_1543
                   1679: options DEBUG_A4000
                   1680: options DEBUG_ALIGN
                   1681: options DEBUG_ALLOC
                   1682: options DEBUG_AMIGA_IF_ED
                   1683: options DEBUG_AOUTM68K
                   1684: options DEBUG_BEFOREMMU
                   1685: options DEBUG_BIOSCALL
                   1686: options DEBUG_CHUNK_DIR
                   1687: options DEBUG_CLOCK
                   1688: options DEBUG_COFF
                   1689: options DEBUG_CP0_ACCESS
                   1690: options DEBUG_CURSOR
                   1691: options DEBUG_DARWIN
                   1692: options DEBUG_DDB
                   1693: options DEBUG_DR
                   1694: options DEBUG_EMUL
                   1695: options DEBUG_ET4000
                   1696: options DEBUG_EXEC
                   1697: options DEBUG_EXT2
                   1698: options DEBUG_FAULT_CORRECTION
                   1699: options DEBUG_FFB
                   1700: options DEBUG_FIND_COMPORT
                   1701: options DEBUG_FIND_PCIC
                   1702: options DEBUG_FIND_PCIC_I82365SL_ONLY
                   1703: options DEBUG_FPE
                   1704: options DEBUG_FREEBSD_ELF
                   1705: options DEBUG_GPIO
                   1706: options DEBUG_GPIO2
                   1707: options DEBUG_HPUX
                   1708: options DEBUG_IBCS2
                   1709: options DEBUG_IPR_VJ
                   1710: options DEBUG_IRIX
                   1711: options DEBUG_ISAPNP
                   1712: options DEBUG_ISSIGNAL
                   1713: options DEBUG_KERNADDR_ACCESS
                   1714: options DEBUG_KERNEL_START
                   1715: options DEBUG_KGDB
                   1716: options DEBUG_LED
                   1717: options DEBUG_LINUX
                   1718: options DEBUG_LINUX_FUTEX
                   1719: options DEBUG_MACH
                   1720: options DEBUG_MACHFB
                   1721: options DEBUG_MACHO
                   1722: options DEBUG_MACH_MSG
                   1723: options DEBUG_MACH_RIGHT
                   1724: options DEBUG_MACH_VM
                   1725: options DEBUG_MEMLOAD
                   1726: options DEBUG_MEMORY_LIST
                   1727: options DEBUG_MEMSIZE
                   1728: options DEBUG_NEG
                   1729: options DEBUG_NFS_BOOT_DHCP
                   1730: options DEBUG_P9100
                   1731: options DEBUG_PAGE0
                   1732: options DEBUG_PCI_MACHDEP
                   1733: options DEBUG_PECOFF
                   1734: options DEBUG_PGRP
                   1735: options DEBUG_POOL
                   1736: options DEBUG_PORTF
                   1737: options DEBUG_PROM
                   1738: options DEBUG_PTM
                   1739: options DEBUG_RAWFS
                   1740: options DEBUG_RPC
                   1741: options DEBUG_SNAPPER
                   1742: options DEBUG_SVR4
                   1743: options DEBUG_SYNC
                   1744: options DEBUG_TERM
                   1745: options DEBUG_UL
                   1746: options DEBUG_VAL
                   1747: options DEBUG_WITH_STDIO
                   1748: options DEVSW_DEBUG
                   1749: options DEV_DEBUG
                   1750: options DISKLABEL_DEBUG
                   1751: options DISK_DEBUG
                   1752: options DL_DEBUG
                   1753: options DMAC_DEBUG
                   1754: options DMA_DEBUG
                   1755: options DMCDEBUG
                   1756: options DO_I4B_MAXDEBUG
                   1757: options DRACORAWKEYDEBUG
                   1758: options EARLY_DEBUG_EVENT
                   1759: options EBUS_DEBUG
                   1760: options EDC_DEBUG
                   1761: options EDEBUG
                   1762: options ED_DEBUG
                   1763: options EFINET_DEBUG
                   1764: options EGAFONTDEBUG
                   1765: options EGDEBUG
                   1766: options EHCI_DEBUG
                   1767: options EL_DEBUG
                   1768: options EMAC3_DEBUG
                   1769: options EMUXKI_DEBUG
                   1770: options EM_DEBUG
                   1771: options EN_DEBUG
                   1772: options EN_DEBUG_RANGE
                   1773: options EPGPIO_DEBUG
                   1774: options EPICMEDIADEBUG
                   1775: options EPPCIC_DEBUG
                   1776: options ESDEBUG
                   1777: options ESP_DEBUG
                   1778: options ESP_SBUS_DEBUG
                   1779: options ESS_ISA_DEBUG
                   1780: options ETHER_DEBUG
                   1781: options EWSKBD_DEBUG
                   1782: options EXEC_DEBUG
                   1783: options EXTENT_DEBUG
                   1784: options EXTREME_DEBUG
                   1785: options EXTREME_EXTREME_DEBUG
                   1786: options FBDEBUG
                   1787: options FDDEBUG
                   1788: options FD_DEBUG
                   1789: options FFBDEBUG
                   1790: options FILECORE_DEBUG
                   1791: options FILECORE_DEBUG_BR
                   1792: options FIRESTARDEBUG
                   1793: options FLASH_DEBUG
                   1794: options FLP_DEBUG
                   1795: options FMV_DEBUG
                   1796: options FOO_DEBUG
                   1797: options FPU_DEBUG
                   1798: options GDROMDEBUG
                   1799: options GEM_DEBUG
                   1800: options GEM_DEBUG1
                   1801: options GEODE_DEBUG
                   1802: options GEOM_DEBUG
                   1803: options GE_DEBUG
                   1804: options GMAC_DEBUG
                   1805: options GRE_DEBUG
                   1806: options GSFB_DEBUG_MONITOR
                   1807: options GTFDEBUG
                   1808: options HD64461PCMCIA_DEBUG
                   1809: options HD64461VIDEO_DEBUG
                   1810: options HD64465PCMCIA_DEBUG
                   1811: options HDLCDEBUG
                   1812: options HIFN_DEBUG
                   1813: options HMEDEBUG
                   1814: options HPCAPMDEBUG
                   1815: options HPC_DEBUG_INTERRUPT_MONITOR
                   1816: options HPC_DEBUG_LCD
                   1817: options HP_DEBUG
                   1818: options HSCXADEBUG
                   1819: options HSCXBDEBUG
                   1820: options I2ODEBUG
                   1821: options I4BISPPPDEBUG
                   1822: options I4B_CD_DEBUG_PRINT
                   1823: options I4B_MBUF_DEBUG
                   1824: options I4B_MBUF_TYPE_DEBUG
                   1825: options IBCS2_DEBUG
                   1826: options ICONV_DEBUG
                   1827: options ICP_DEBUG
                   1828: options IEDEBUG
                   1829: options IEEE80211_DEBUG_REFCNT
                   1830: options IFAREF_DEBUG
                   1831: options IFMEDIA_DEBUG
                   1832: options IHA_DEBUG_STATE
                   1833: options INTRDEBUG
                   1834: options INTR_DEBUG
                   1835: options IPAQ_LCD_DEBUG
                   1836: options IPF_DEBUG
                   1837: options IPSEC_DEBUG
                   1838: options IPW_DEBUG
                   1839: options IP_RCMD_PROXY_DEBUG
                   1840: options IRFRAMET_DEBUG
                   1841: options IRFRAME_DEBUG
                   1842: options IRQ_DEBUG
                   1843: options ISACDEBUG
                   1844: options ISADMA_DEBUG
                   1845: options ISO_DEBUG
                   1846: options IT8368DEBUG
                   1847: options ITE8181DEBUG
                   1848: options ITK_PROBE_DEBUG
                   1849: options IWI_DEBUG
                   1850: options IWM_DEBUG
                   1851: options IYDEBUG
                   1852: options IYMEMDEBUG
                   1853: options J6X0TP_DEBUG
                   1854: options J720TP_DEBUG
                   1855: options KBD_DEBUG
                   1856: options KB_DEBUG
                   1857: options KERNEL_DEBUG
                   1858: options KLOADER_DEBUG
                   1859: options KSTACK_DEBUG
                   1860: options KSYMS_DEBUG
                   1861: options KUE_DEBUG
                   1862: options KVM86DEBUG
                   1863: options LANA_DEBUG
                   1864: options LCD_DEBUG
                   1865: options LDT_DEBUG
                   1866: options LEDEBUG
                   1867: options LE_DEBUG
                   1868: options LIFDEBUG
                   1869: options LINUX_SG_DEBUG
                   1870: options LLCDEBUG
                   1871: options LLC_DEBUG
                   1872: options LOADER_DEBUG
                   1873: options LOAD_DEBUG_INFO
                   1874: options LOCKDEBUG
                   1875: options LOCKF_DEBUG
                   1876: options LPT_DEBUG
                   1877: options MAGMA_DEBUG
                   1878: options MALLOC_DEBUG
                   1879: options MAPLE_DEBUG
                   1880: options MB8795_DEBUG
                   1881: options MCDDEBUG
                   1882: options MCDEBUG
                   1883: options MCHAIN_DEBUG
                   1884: options MEC_DEBUG
                   1885: options MEDIABAY_DEBUG
                   1886: options MEMORY_MAP_DEBUG
                   1887: options MESH_DEBUG
                   1888: options MIDI_DEBUG
                   1889: options MLYDEBUG
                   1890: options MMEYEPCMCIADEBUG
                   1891: options MOUSE_DEBUG
                   1892: options MPDEBUG
                   1893: options MQ200_DEBUG
                   1894: options MRT6DEBUG
                   1895: options MSDOSFS_DEBUG
                   1896: options MSG_DEBUG_OK
                   1897: options MULAW_DEBUG
                   1898: options MYDEV_DEBUG
                   1899: options NB_DEBUG
                   1900: options NCR5380_DEBUG
                   1901: options NCR53C9X_DEBUG
                   1902: options ND6_DEBUG
                   1903: options NDEBUG
                   1904: options ND_DEBUG
                   1905: options NETATALKDEBUG
                   1906: options NETDOCK_DEBUG_DRIVER
                   1907: options NETIF_DEBUG
                   1908: options NET_DEBUG
                   1909: options NFE_DEBUG
                   1910: options NFS_DEBUG
                   1911: options NFS_DEBUG_COMMIT
                   1912: options NIDEBUG
                   1913: options NJSC32_DEBUG
                   1914: options NON_DEBUG
                   1915: options NOTDEF_DEBUG
                   1916: options NOT_DEBUG
                   1917: options NSIODEBUG
                   1918: options NTFS_DEBUG
                   1919: options NV_DEBUG
                   1920: options OBOE_DEBUG
                   1921: options OFW_DEBUG
                   1922: options OHCI_DEBUG
                   1923: options OLD_ELF_DEBUG
                   1924: options ONEWIRE_DEBUG
                   1925: options ONOE_DEBUG
                   1926: options OPTPOINTDEBUG
                   1927: options OSIOP_DEBUG
                   1928: options OST_DEBUG
                   1929: options P1212_DEBUG
                   1930: options PARDEBUG
                   1931: options PBMS_DEBUG
                   1932: options PCIINTR_DEBUG
                   1933: options PCI_DEBUG
                   1934: options PCKBCDEBUG
                   1935: options PCKBPORTDEBUG
                   1936: options PCMCIACISDEBUG
                   1937: options PCMCIADEBUG
                   1938: options PDCDEBUG
                   1939: options PDINFO_DEBUG
                   1940: options PFCKBD_DEBUG
                   1941: options PFDEBUG
                   1942: options PFLOGDEBUG
                   1943: options PHYSMEMDEBUG
                   1944: options PI1PPC_DEBUG
                   1945: options PIIXPM_DEBUG
                   1946: options PIIX_DEBUG
                   1947: options PIOC_DEBUG
                   1948: options PLCOM_DEBUG
                   1949: options PLD_WDOG_DEBUG
                   1950: options PLIP_DEBUG
                   1951: options PLUMICUDEBUG
                   1952: options PLUMIOBUSDEBUG
                   1953: options PLUMPCMCIA_DEBUG
                   1954: options PLUMPOWERDEBUG
                   1955: options PLUMVIDEODEBUG
                   1956: options PMAPDEBUG
                   1957: options PMAP_COUNT_DEBUG
                   1958: options PMAP_DEBUG
                   1959: options PMAP_DEBUG_MODIFIED
                   1960: options PMON_DEBUG
                   1961: options PMSDEBUG
                   1962: options PNPBIOSDEBUG
                   1963: options PNPBIOSDEBUG_VALUE=1
                   1964: options PNPBIOSEVENTSDEBUG
                   1965: options PORT_DEBUG
                   1966: options PPBUS_DEBUG
                   1967: options PPPOE_DEBUG
                   1968: options PROFILER_DEBUG
                   1969: options PSH3TP_DEBUG
                   1970: options PWCTLDEBUG
                   1971: options QEDEBUG
                   1972: options QN_DEBUG
                   1973: options QN_DEBUG1
                   1974: options QTDEBUG
                   1975: options RAL_DEBUG
                   1976: options RARP_DEBUG
                   1977: options RBUS_DEBUG
                   1978: options RCONS_DEBUG
                   1979: options RDDEBUG
                   1980: options REALLYDEBUG
                   1981: options RND_DEBUG
                   1982: options ROMDEBUG
                   1983: options RPC_DEBUG
                   1984: options RQDEBUG
                   1985: options RTC_DEBUG
                   1986: options RTW_DEBUG
                   1987: options SACKBCDEBUG
                   1988: options SBC_DEBUG
                   1989: options SBJCN_DEBUG
                   1990: options SBMACDEBUG
                   1991: options SBSCN_DEBUG
                   1992: options SCC_DEBUG
                   1993: options SCHED_DEBUG
                   1994: options SCIF_DEBUG
                   1995: options SCI_DEBUG
                   1996: options SCR_DEBUG
                   1997: options SCSIDEBUG
                   1998: options SCSIPI_DEBUG
                   1999: options SCSI_DEBUG
                   2000: options SD_DEBUG
                   2001: options SEA_DEBUG
                   2002: options SEA_DEBUGQUEUE
                   2003: options SEDEBUG
                   2004: options SED_DEBUG
                   2005: options SEEQ8005_DEBUG
                   2006: options SEM_DEBUG
                   2007: options SEQUENCER_DEBUG
                   2008: options SER_DEBUG
                   2009: options SFAS_DEBUG
                   2010: options SGMAP_DEBUG
                   2011: options SHMDEBUG
                   2012: options SIF_DEBUG
                   2013: options SIOP_DEBUG
                   2014: options SIOP_DEBUG_DR
                   2015: options SIOP_DEBUG_INTR
                   2016: options SIOP_DEBUG_SCHED
                   2017: options SK_DEBUG
                   2018: options SMAP_DEBUG
                   2019: options SMB_IOD_DEBUG
                   2020: options SMB_SOCKETDATA_DEBUG
                   2021: options SMB_SOCKET_DEBUG
                   2022: options SMB_VNODE_DEBUG
                   2023: options SNAPPER_DEBUG
                   2024: options SNDEBUG
                   2025: options SOCKBUF_DEBUG
                   2026: options SONIC_DEBUG
                   2027: options SPARC_PCI_DEBUG
                   2028: options SPC_DEBUG
                   2029: options SPIC_DEBUG
                   2030: options SPIFI_DEBUG
                   2031: options SPKRDEBUG
                   2032: options SPLDEBUG
                   2033: options SPPDEBUG
                   2034: options SSCOM_DEBUG
                   2035: options STIDEBUG
                   2036: options STP4020_DEBUG
                   2037: options SUNSCPAL_DEBUG
                   2038: options SYNAPTICSDEBUG
                   2039: options SYSCALL_DEBUG
                   2040: options SYSCTL_DEBUG_CREATE
                   2041: options SYSCTL_DEBUG_SETUP
                   2042: options SYSVBFS_VNOPS_DEBUG
                   2043: options TC5165DEBUG
                   2044: options TCICDEBUG
                   2045: options TCICISADEBUG
                   2046: options TCPISS_DEBUG
                   2047: options TCPREASS_DEBUG
                   2048: options TCP_DEBUG
                   2049: options TCTRLDEBUG
                   2050: options TIMECOUNTER_DEBUG
                   2051: options TIMEKEEPER_DEBUG
                   2052: options TLDEBUG
                   2053: options TLDEBUG_ADDR
                   2054: options TLDEBUG_RX
                   2055: options TLDEBUG_TX
                   2056: options TLP_DEBUG
                   2057: options TP_DEBUG
                   2058: options TRACE_DEBUG
                   2059: options TRAPDEBUG
                   2060: options TRAP_SIGDEBUG
                   2061: options TRISADEBUG
                   2062: options TRM_DEBUG
                   2063: options TROPICDEBUG
                   2064: options TRTCMISADEBUG
                   2065: options TSDEBUG
                   2066: options TSLOT_DEBUG
                   2067: options TTY_DEBUG
                   2068: options TUDEBUG
                   2069: options TULIP_DEBUG
                   2070: options TWA_DEBUG
                   2071: options TWE_DEBUG
                   2072: options TX3912VIDEO_DEBUG
                   2073: options TX39BIU_DEBUG
                   2074: options TX39CLOCK_DEBUG
                   2075: options TX39ICU_DEBUG
                   2076: options TX39ICU_DEBUG_PRINT_PENDING_INTERRUPT
                   2077: options TX39IO_DEBUG
                   2078: options TX39IRDEBUG
                   2079: options TX39POWER_DEBUG
                   2080: options TX39SIBDEBUG
                   2081: options TX39UARTDEBUG
                   2082: options TX39UART_DEBUG
                   2083: options UAUDIO_DEBUG
                   2084: options UBSA_DEBUG
                   2085: options UBSEC_DEBUG
                   2086: options UBT_DEBUG
                   2087: options UCB1200_DEBUG
                   2088: options UCBIO_DEBUG
                   2089: options UCBSNDDEBUG
                   2090: options UCBTPDEBUG
                   2091: options UCOM_DEBUG
                   2092: options UCYCOM_DEBUG
                   2093: options UDAV_DEBUG
                   2094: options UDSBR_DEBUG
                   2095: options UFTDI_DEBUG
                   2096: options UGENSA_DEBUG
                   2097: options UGEN_DEBUG
                   2098: options UHADEBUG
                   2099: options UHCI_DEBUG
                   2100: options UHIDEV_DEBUG
                   2101: options UHID_DEBUG
                   2102: options UHUB_DEBUG
                   2103: options UIPAQ_DEBUG
                   2104: options UIRDA_DEBUG
                   2105: options UISDATA_DEBUG
                   2106: options UKBD_DEBUG
                   2107: options UKYOPON_DEBUG
                   2108: options ULPT_DEBUG
                   2109: options UL_DEBUG
                   2110: options UMASS_DEBUG
                   2111: options UMCT_DEBUG
                   2112: options UMIDIQUIRK_DEBUG
                   2113: options UMIDI_DEBUG
                   2114: options UMODEM_DEBUG
                   2115: options UNIV_DEBUG
                   2116: options UPLCOM_DEBUG
                   2117: options UPL_DEBUG
                   2118: options URIO_DEBUG
                   2119: options URLPHY_DEBUG
                   2120: options URL_DEBUG
                   2121: options USB_DEBUG
                   2122: options USCANNER_DEBUG
                   2123: options USEFULL_DEBUG
                   2124: options USSCANNER_DEBUG
                   2125: options USTIR_DEBUG
                   2126: options UTOPPY_DEBUG
1.180     jmcneill 2127: options UVIDEO_DEBUG
1.168     ad       2128: options UVISOR_DEBUG
                   2129: options UVSCOM_DEBUG
                   2130: options VALD_ACPI_DEBUG
                   2131: options VCONS_DEBUG
                   2132: options VERYLOWDEBUG
                   2133: options VGAFONTDEBUG
                   2134: options VIA8231_DEBUG
                   2135: options VIAENV_DEBUG
                   2136: options VIAPCIB_DEBUG
                   2137: options VIDCAUDIO_DEBUG
                   2138: options VMEDEBUG
                   2139: options VOODOOFB_DEBUG
                   2140: options VR4181AIU_DEBUG
                   2141: options VRAIU_DEBUG
                   2142: options VRBCUDEBUG
                   2143: options VRC2GPIODEBUG
                   2144: options VRC2PWMDEBUG
                   2145: options VRC4173BCU_DEBUG
                   2146: options VRDCU_DEBUG
                   2147: options VRDMAAU_DEBUG
                   2148: options VRGIUDEBUG
                   2149: options VRIP_DEBUG
                   2150: options VRISADEBUG
                   2151: options VRKIUDEBUG
                   2152: options VRLEDDEBUG
                   2153: options VRPIUDEBUG
                   2154: options VRPMUDEBUG
                   2155: options VRRTCDEBUG
                   2156: options VS_DEBUG
                   2157: options VT100_DEBUG
                   2158: options VTOC_DEBUG
                   2159: options WDCNDELAY_DEBUG
                   2160: options WDSDEBUG
                   2161: options WE_DEBUG
                   2162: options WFQ_DEBUG
                   2163: options WI_DEBUG
                   2164: options WI_RING_DEBUG
                   2165: options WM_DEBUG
                   2166: options WSKBD_DEBUG
                   2167: options WSMUX_DEBUG
                   2168: options XBD_DEBUG
                   2169: options XDC_DEBUG
                   2170: options XDDEBUG
                   2171: options XDEBUG
                   2172: options XENDEBUG
                   2173: options XENDEBUG_LOW
                   2174: options XENDEBUG_NET
                   2175: options XENDEBUG_SYNC
                   2176: options XENDEBUG_VBD
                   2177: options XENNET_DEBUG
                   2178: options XENNET_DEBUG_DUMP
                   2179: options XEN_CLOCK_DEBUG
                   2180: options XE_DEBUG
                   2181: options XXXXENDEBUG_LOW
                   2182: options XYC_DEBUG
                   2183: options ZSKBD_DEBUG
                   2184: options ZSMACDEBUG
                   2185: options xSCSI_DEBUG
                   2186: options xSD_DEBUG

CVSweb <webmaster@jp.NetBSD.org>