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

Annotation of src/sys/arch/macppc/conf/GENERIC, Revision 1.365

1.365   ! nia         1: # $NetBSD: GENERIC,v 1.364 2020/01/27 20:54:59 macallan Exp $
1.1       tsubai      2: #
1.116     gmcgarry    3: # GENERIC machine description file
                      4: #
                      5: # This machine description file is used to generate the default NetBSD
                      6: # kernel.  The generic kernel does not include all options, subsystems
                      7: # and device drivers, but should be useful for most applications.
1.1       tsubai      8: #
1.116     gmcgarry    9: # The machine description file can be customised for your specific
                     10: # machine to reduce the kernel size and improve its performance.
                     11: #
                     12: # For further information on compiling NetBSD kernels, see the config(8)
                     13: # man page.
                     14: #
                     15: # For further information on hardware support for this architecture, see
                     16: # the intro(4) man page.  For further information about kernel options
                     17: # for this architecture, see the options(4) man page.  For an explanation
                     18: # of each device driver in this file see the section 4 man page for the
                     19: # device.
1.1       tsubai     20:
1.11      thorpej    21: include                "arch/macppc/conf/std.macppc"
1.48      hubertf    22:
1.127     atatat     23: options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
                     24:
1.365   ! nia        25: #ident                 "GENERIC-$Revision: 1.364 $"
1.1       tsubai     26:
                     27: maxusers       32
                     28:
1.135     matt       29: options        ALTIVEC         # Include AltiVec support
                     30:
1.1       tsubai     31: # Standard system options
1.173     mrg        32: options        INSECURE        # disable kernel security levels
1.98      wiz        33:
1.365   ! nia        34: options                AUDIO_BLK_MS=4  # make software with low latency needs performant
        !            35:                                # no substantial CPU overhead on this platform
        !            36:
1.98      wiz        37: options        RTC_OFFSET=0    # hardware clock is this many mins. west of GMT
1.148     manu       38: options        NTP             # NTP phase/frequency locked loop
1.20      tsubai     39: options        KTRACE          # system call tracing via ktrace(1)
1.1       tsubai     40:
                     41: options        SYSVMSG         # System V message queues
                     42: options        SYSVSEM         # System V semaphores
                     43: options        SYSVSHM         # System V shared memory
                     44:
1.288     tsutsui    45: options        MODULAR         # new style module(7) framework
1.316     jnemeth    46: options        MODULAR_DEFAULT_AUTOLOAD
1.121     jdolecek   47:
1.141     lukem      48: options        USERCONF        # userconf(4) support
1.128     wiz        49: #options       PIPE_SOCKETPAIR # smaller, but slower pipe(2)
1.180     atatat     50: options        SYSCTL_INCLUDE_DESCR    # Include sysctl descriptions in kernel
1.147     junyoung   51:
1.339     sevan      52: # Alternate buffer queue strategies for better responsiveness under high
                     53: # disk I/O load.
1.199     tsutsui    54: #options       BUFQ_READPRIO
1.342     sevan      55: options        BUFQ_PRIOCSCAN
1.1       tsubai     56:
                     57: # Diagnostic/debugging support options
1.214     chs        58: #options       DIAGNOSTIC      # cheap kernel consistency checks
1.1       tsubai     59: #options       DEBUG           # expensive debugging checks/support
1.135     matt       60: options        ZS_CONSOLE_ABORT# allow break to get into DDB on serial
1.1       tsubai     61: options        DDB             # in-kernel debugger
1.135     matt       62: #options       DDB_ONPANIC=0   # don't go into ddb on panic.
1.81      mycroft    63: options        DDB_HISTORY_SIZE=512    # enable history editing in DDB
1.135     matt       64: #options       TRAP_PANICWAIT
1.340     sevan      65: #options       DDB_COMMANDONENTER="bt"
1.1       tsubai     66:
1.128     wiz        67: #makeoptions   DEBUG="-g"      # compile full symbol table
1.1       tsubai     68:
                     69: # Compatibility options
1.334     mrg        70:
                     71: include        "conf/compat_netbsd09.config"
1.1       tsubai     72: #options       COMPAT_386BSD_MBRPART # recognize old partition ID
1.334     mrg        73:
1.250     macallan   74: #options       COMPAT_LINUX    # Linux binary compatibility
1.1       tsubai     75:
1.300     riz        76: # Wedge support
                     77: options         DKWEDGE_AUTODISCOVER    # Automatically add dk(4) instances
                     78: options         DKWEDGE_METHOD_GPT      # Supports GPT partitions as wedges
1.328     rin        79: #options       DKWEDGE_METHOD_BSDLABEL # Support disklabel entries as wedges
                     80: #options       DKWEDGE_METHOD_MBR      # Support MBR partitions as wedges
                     81: #options       DKWEDGE_METHOD_APPLE    # Support Apple partitions as wedges
                     82: #options       DKWEDGE_METHOD_RDB      # Support RDB partitions as wedges
1.300     riz        83:
1.1       tsubai     84: # File systems
1.355     sevan      85: include "conf/filesystems.config"
1.1       tsubai     86:
                     87: # File system options
1.289     bouyer     88: options        QUOTA           # legacy UFS quotas
                     89: options        QUOTA2          # new, in-filesystem UFS quotas
1.292     wiz        90: #options       FFS_EI          # FFS Endian Independent support
1.295     dholland   91: options        WAPBL           # File system journaling support
1.247     uwe        92: #options       UFS_DIRHASH     # UFS Large Directory Hashing - Experimental
1.1       tsubai     93: options        NFSSERVER       # Network File System server
1.218     tsutsui    94: #options       FFS_NO_SNAPSHOT # No FFS snapshot support
1.319     manu       95: options        UFS_EXTATTR     # Extended attribute support for UFS1
1.1       tsubai     96: #options       EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
                     97:                                # immutable) behave as system flags.
1.144     dbj        98: options        APPLE_UFS       # Apple UFS support in FFS
1.8       thorpej    99:
                    100: options        NFS_BOOT_DHCP   # Support DHCP NFS root
1.43      itojun    101:
1.1       tsubai    102: # Networking options
                    103: #options       GATEWAY         # packet forwarding
                    104: options        INET            # IP + ICMP + TCP + UDP
1.43      itojun    105: options        INET6           # IPV6
1.347     sevan     106: options        IPSEC           # IP security
1.43      itojun    107: #options       IPSEC_DEBUG     # debug for IP security
1.1       tsubai    108: #options       MROUTING        # IP multicast routing
1.181     manu      109: #options       PIM             # Protocol Independent Multicast
1.1       tsubai    110: options        NETATALK        # AppleTalk networking protocols
1.30      christos  111: options        PPP_BSDCOMP     # BSD-Compress compression support for PPP
                    112: options        PPP_DEFLATE     # Deflate compression support for PPP
                    113: options        PPP_FILTER      # Active filter support for PPP (requires bpf)
1.103     abs       114: #options       TCP_DEBUG       # Record last TCP_NDEBUG packets with SO_DEBUG
1.1       tsubai    115:
1.178     abs       116: #options       ALTQ            # Manipulate network interfaces' output queues
                    117: #options       ALTQ_BLUE       # Stochastic Fair Blue
                    118: #options       ALTQ_CBQ        # Class-Based Queueing
                    119: #options       ALTQ_CDNR       # Diffserv Traffic Conditioner
                    120: #options       ALTQ_FIFOQ      # First-In First-Out Queue
                    121: #options       ALTQ_FLOWVALVE  # RED/flow-valve (red-penalty-box)
                    122: #options       ALTQ_HFSC       # Hierarchical Fair Service Curve
                    123: #options       ALTQ_LOCALQ     # Local queueing discipline
                    124: #options       ALTQ_PRIQ       # Priority Queueing
                    125: #options       ALTQ_RED        # Random Early Detection
                    126: #options       ALTQ_RIO        # RED with IN/OUT
                    127: #options       ALTQ_WFQ        # Weighted Fair Queueing
                    128:
1.1       tsubai    129: # These options enable verbose messages for several subsystems.
                    130: # Warning, these may compile large string tables into the kernel!
                    131: options        PCIVERBOSE      # verbose PCI device autoconfig messages
1.64      augustss  132: options        MIIVERBOSE      # verbose PHY autoconfig messages
1.58      cgd       133: #options       PCI_CONFIG_DUMP # verbosely dump PCI config space
1.1       tsubai    134: options        SCSIVERBOSE     # human readable SCSI error messages
1.22      tsubai    135: options        USBVERBOSE      # verbose USB device autoconfig messages
1.1       tsubai    136:
1.14      tsubai    137: # wscons options
1.140     aymeric   138: #options       WSEMUL_SUN                      # sun terminal emulation
                    139: options        WSEMUL_VT100                    # VT100 / VT220 emulation
1.305     macallan  140: options        WSDISPLAY_COMPAT_PCVT           # emulate some ioctls
                    141: options        WSDISPLAY_COMPAT_SYSCONS        # emulate some ioctls
                    142: options        WSDISPLAY_COMPAT_USL            # VT handling
1.228     macallan  143:
                    144: options        WS_DEFAULT_FG=WSCOL_BLACK
                    145: options        WS_DEFAULT_BG=WSCOL_LIGHT_WHITE
                    146: options        WS_KERNEL_FG=WSCOL_GREEN
                    147: options        WS_KERNEL_BG=WSCOL_LIGHT_WHITE
                    148:
1.140     aymeric   149: #options       WSDISPLAY_COMPAT_RAWKBD         # can get raw scancodes
1.53      tsubai    150: options        FONT_GALLANT12x22
1.296     macallan  151: options        FONT_QVSS8x15           # a smaller font for lower resolutions
1.159     nathanw   152:
                    153: # Optional Mac keyboard tweaks
                    154:
                    155: # Tweak the keyboard driver to treat the caps lock key on an ADB
                    156: # keyboard as a control key; requires special remapping because of
                    157: # ADB's strange emulation of a mechanically-locked key.
1.247     uwe       158: #options       CAPS_IS_CONTROL
1.159     nathanw   159:
                    160: # On Mac laptops, several function keys double as "hot keys"
                    161: # (brightness, volume, eject) when the Fn modifier is held down.  Mac
                    162: # OS X likes to reprogram the keyboard controller to send hot key
                    163: # events when Fn is not held down and send function key events when it
                    164: # is.  This option transforms the non-keyboard "button" events back
                    165: # into function key events.
1.250     macallan  166: # enabled by default since trying to control brightness with those causes
                    167: # trouble on pretty much all halfway recent Apple laptops
                    168: options        FORCE_FUNCTION_KEYS
1.14      tsubai    169:
1.1       tsubai    170: # Kernel root file system and dump configuration.
                    171: config         netbsd  root on ? type ?
                    172:
                    173: #
                    174: # Device configuration
                    175: #
                    176:
1.26      tsubai    177: mainbus* at root
1.1       tsubai    178:
1.26      tsubai    179: cpu*   at mainbus?
1.51      tsubai    180: bandit*        at mainbus?
                    181: grackle* at mainbus?
1.54      tsubai    182: uninorth* at mainbus?
1.208     macallan  183: uni_n* at mainbus?
1.268     macallan  184: memory*        at mainbus?
                    185: spdmem*        at memory? addr ?
1.51      tsubai    186:
1.335     macallan  187: valkyriefb0    at mainbus0     # Performa 6360 onboard video
                    188:
1.51      tsubai    189: pci*   at bandit? bus ?
                    190: pci*   at grackle? bus ?
1.54      tsubai    191: pci*   at uninorth? bus ?
1.26      tsubai    192: pci*   at ppb? bus ?
1.1       tsubai    193:
                    194: pchb*  at pci? dev ? function ?        # PCI-Host bridges
1.25      tsubai    195: ppb*   at pci? dev ? function ?        # PCI-PCI bridges
1.129     bjh21     196: # XXX 'puc's aren't really bridges, but there's no better place for them here
                    197: puc*   at pci? dev ? function ?        # PCI "universal" comm. cards
1.166     christos  198: lpt*   at puc? port ?                  # || ports on > "universal" comm boards
1.6       tsubai    199:
1.150     matt      200: # PCI Network devices
                    201: an*    at pci? dev ? function ?        # Aironet PC4500/PC4800 (802.11)
1.239     dyoung    202: ath*   at pci? dev ? function ?        # Atheros 5210/5211/5212 802.11
1.169     dyoung    203: atw*   at pci? dev ? function ?        # ADMtek ADM8211 (802.11)
1.150     matt      204: bge*   at pci? dev ? function ?        # Broadcom 570x Gigabit Ethernet
1.275     macallan  205: bwi*   at pci? dev ? function ?        # Broadcom / Apple Airport Extreme
1.26      tsubai    206: ep*    at pci? dev ? function ?        # 3Com 3c59x
1.66      tsutsui   207: epic*  at pci? dev ? function ?        # SMC EPIC/100 Ethernet
1.105     hubertf   208: ex*    at pci? dev ? function ?        # 3Com 90x[BC]
1.65      tsutsui   209: fxp*   at pci? dev ? function ?        # Intel EtherExpress PRO 10+/100B
1.150     matt      210: gem*   at pci? dev ? function ?        # gmac ethernet
                    211: #gm*   at pci? dev ? function ?        # gmac ethernet (old)
                    212: gsip*  at pci? dev ? function ?        # NS83820 Gigabit Ethernet
                    213: mtd*   at pci? dev ? function ?        # Myson MTD803 3-in-1 Ethernet
1.1       tsubai    214: ne*    at pci? dev ? function ?        # NE2000-compatible Ethernet
1.150     matt      215: pcn*   at pci? dev ? function ?        # AMD PCnet-PCI Ethernet
1.221     xtraeme   216: ral*   at pci? dev ? function ?        # Ralink Technology RT25x0 802.11a/b/g
1.177     mrg       217: re*    at pci? dev ? function ?        # Realtek 8139C+/8169/8169S/8110S
1.63      tsubai    218: rtk*   at pci? dev ? function ?        # Realtek 8129/8139
1.150     matt      219: sf*    at pci? dev ? function ?        # Adaptec AIC-6915 Ethernet
1.78      tsutsui   220: sip*   at pci? dev ? function ?        # SiS 900/7016 Ethernet
1.233     riz       221: skc*   at pci? dev ? function ?        # SysKonnect SK9821 Gigabit Ethernet
                    222: sk*    at skc?                         # SysKonnect SK9821 Gigabit Ethernet
1.150     matt      223: ste*   at pci? dev ? function ?        # Sundance ST-201 Ethernet
                    224: stge*  at pci? dev ? function ?        # Sundance/Tamarack TC9021 Gigabit
                    225: #ti*   at pci? dev ? function ?        # Alteon ACEnic gigabit Ethernet
                    226: tl*    at pci? dev ? function ?        # ThunderLAN-based Ethernet
1.126     mycroft   227: tlp*   at pci? dev ? function ?        # DECchip 21x4x and clones
1.240     tsutsui   228: vge*   at pci? dev ? function ?        # VIA VT612x Gigabit Ethernet
1.150     matt      229: vr*    at pci? dev ? function ?        # VIA Rhine Fast Ethernet
                    230: wi*    at pci? dev ? function ?        # Intersil Prism Mini-PCI (802.11b)
                    231: wm*    at pci? dev ? function ?        # Intel 82543/82544 gigabit
                    232:
                    233: # PCI SCSI controllers
1.16      dante     234: adv*   at pci? dev ? function ?        # AdvanSys 1200[A,B], 9xx[U,UA] SCSI
1.107     briggs    235: adw*   at pci? dev ? function ?        # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
1.26      tsubai    236: ahc*   at pci? dev ? function ?        # Adaptec 294x, aic78x0 SCSI
1.29      wrstuden  237: bha*   at pci? dev ? function ?        # BusLogic 9xx SCSI
1.150     matt      238: esiop* at pci? dev ? function ?        # NCR 53c8xx SCSI (enhanced)
1.99      tsutsui   239: iha*   at pci? dev ? function ?        # Initio INIC-940/950 SCSI
1.86      mjacob    240: isp*   at pci? dev ? function ?        # Qlogic ISP 10x0/2xx0 SCSI/Fibre Chan
1.281     chs       241: mpt*   at pci? dev ? function ?        # LSILogic 9x9 and 53c1030
1.111     tsutsui   242: pcscp* at pci? dev ? function ?        # AMD Am53c974 PCscsi-PCI SCSI
1.82      matt      243: siop*  at pci? dev ? function ?        # NCR 53c8xx SCSI
1.111     tsutsui   244: trm*   at pci? dev ? function ?        # Tekram DC-395U/UW/F, DC-315/U SCSI
1.150     matt      245:
1.242     macallan  246: # Display devices
1.260     garbled   247: # ofb* at pci? dev ? function ?        # Generic Open Firmware Framebuffer
1.249     uwe       248: #options       OFB_FAKE_VGA_FB         # Allow X to mmap VGA regs
1.269     macallan  249: #
                    250: # ofb is considered obsolete and machine-independent genfb should be used
                    251: # instead.
                    252:
1.242     macallan  253: chipsfb*       at pci? function ?      # C&T 65550
1.312     macallan  254: gffb*          at pci? function ?      # NVIDIA GeForce2 MX
1.242     macallan  255: machfb*                at pci? function ?      # ATI Mach 64, Rage, Rage Pro
1.323     macallan  256: pm3fb*         at pci? function ?      # 3Dlabs Permedia 3 Graphics
1.312     macallan  257: tdvfb*         at pci? function ?      # 3Dfx Voodoo2
                    258: r128fb*                at pci? function ?      # ATI Rage 128
                    259: voodoofb*      at pci? function ?      # 3Dfx Voodoo3
1.245     macallan  260:
1.312     macallan  261: # ATI Radeon. Still has problems on some hardware
                    262: radeonfb*      at pci? function ?
1.337     sevan     263: options        RADEONFB_ALWAYS_ACCEL_PUTCHAR
1.245     macallan  264:
1.312     macallan  265: # generic PCI framebuffer, should work with everything supported by OF
1.260     garbled   266: genfb*         at pci? function ?
1.242     macallan  267:
                    268: # make sure the console display is always wsdisplay0
                    269: wsdisplay0     at wsemuldisplaydev? console 1
                    270: wsdisplay*     at wsemuldisplaydev?
                    271:
                    272: # Other  PCI devices
1.163     bouyer    273: pciide* at pci? dev ? function ? flags 0x0000  # GENERIC pciide driver
                    274: acardide* at pci? dev ? function ?     # Acard IDE controllers
                    275: aceride* at pci? dev ? function ?      # Acer Lab IDE controllers
1.284     macallan  276: ahcisata*      at pci? dev ? function ?        # AHCI SATA controllers
1.168     thorpej   277: artsata* at pci? dev ? function ?      # Intel i31244 SATA controller
1.163     bouyer    278: cmdide* at pci? dev ? function ?       # CMD tech IDE controllers
                    279: cypide* at pci? dev ? function ?       # Cypress IDE controllers
                    280: hptide* at pci? dev ? function ?       # Triones/HighPoint IDE controllers
1.284     macallan  281: iteide* at pci? dev ? function ?       # IT Express IDE controllers
1.163     bouyer    282: optiide* at pci? dev ? function ?      # Opti IDE controllers
                    283: pdcide* at pci? dev ? function ?       # Promise IDE controllers
1.185     bouyer    284: pdcsata* at pci? dev ? function ?      # Promise SATA150 controllers
1.167     thorpej   285: satalink* at pci? dev ? function ?     # SiI SATALink controllers
1.163     bouyer    286: siside* at pci? dev ? function ?       # SiS IDE controllers
                    287: slide*  at pci? dev ? function ?       # Symphony Labs IDE controllers
1.284     macallan  288: stpcide*       at pci? dev ? function ?        # STMicro STPC IDE controllers
1.163     bouyer    289: viaide* at pci? dev ? function ?       # VIA/AMD/Nvidia IDE controllers
1.157     hamajima  290: wdc*   at pci? dev ? function ?        # Kauai ATA
1.52      tsubai    291: cbb*   at pci? dev ? function ?        # PCI-CardBus bridge
1.186     briggs    292: obio*  at pci? dev ? function ?
1.16      dante     293:
1.150     matt      294: acphy* at mii? phy ?                   # DAltima AC101 and AMD Am79c874 PHYs
                    295: amhphy*        at mii? phy ?                   # AMD 79c901 Ethernet PHYs
1.104     tsubai    296: bmtphy*        at mii? phy ?                   # Broadcom BCM5201/BCM5202 PHYs
1.114     matt      297: brgphy*        at mii? phy ?                   # Broadcom BCM5400 PHYs
1.240     tsutsui   298: ciphy* at mii? phy ?                   # Cicada CS8201 Gig-E PHYs
1.150     matt      299: dmphy* at mii? phy ?                   # Davicom DM9101 PHYs
1.50      tsubai    300: exphy* at mii? phy ?                   # 3Com internal PHYs
1.150     matt      301: glxtphy* at mii? phy ?                 # Level One LXT-1000 PHYs
                    302: gphyter* at mii? phy ?                 # NS83861 Gig-E PHY
1.122     wiz       303: icsphy*        at mii? phy ?                   # Integrated Circuit Systems ICS189x
1.241     bouyer    304: ikphy* at mii? phy ?                   # Intel 82563 PHYs
1.50      tsubai    305: inphy* at mii? phy ?                   # Intel 82555 PHYs
                    306: iophy* at mii? phy ?                   # Intel 82553 PHYs
                    307: lxtphy*        at mii? phy ?                   # Level One LXT-970 PHYs
1.150     matt      308: makphy* at mii? phy ?                  # Marvell Semiconductor 88E1000 PHYs
1.26      tsubai    309: nsphy* at mii? phy ?                   # NS83840 PHYs
1.50      tsubai    310: nsphyter* at mii? phy ?                        # NS83843 PHYs
1.150     matt      311: pnaphy* at mii? phy ?                  # generic HomePNA PHYs
1.50      tsubai    312: qsphy* at mii? phy ?                   # Quality Semiconductor QS6612 PHYs
1.246     tsutsui   313: rgephy* at mii? phy ?                  # Realtek 8169S/8110S internal PHYs
1.220     xtraeme   314: rlphy* at mii? phy ?                   # Realtek 8139/8201L PHYs
1.50      tsubai    315: sqphy* at mii? phy ?                   # Seeq 80220/80221/80223 PHYs
                    316: tlphy* at mii? phy ?                   # ThunderLAN PHYs
                    317: tqphy* at mii? phy ?                   # TDK Semiconductor PHYs
                    318: ukphy* at mii? phy ?                   # generic unknown PHYs
1.150     matt      319: urlphy* at mii? phy ?                  # Realtek RTL8150L internal PHYs
1.67      wrstuden  320:
1.68      tsubai    321: # PCI serial interfaces
1.129     bjh21     322: com*   at puc? port ?                  # 16x50s on "universal" comm boards
1.68      tsubai    323: cy*    at pci? dev ? function ?        # Cyclades Cyclom-Y serial boards
1.67      wrstuden  324: #cz*   at pci? dev ? function ?        # Cyclades-Z multi-port serial boards
1.13      tsubai    325:
1.151     fair      326: bktr*   at      pci? dev ? function ?           # Brooktree video/audio capture/tuner
                    327: radio*  at      bktr?
                    328:
1.26      tsubai    329: bm*    at obio?                        # bmac ethernet
                    330: mc*    at obio?                        # MACE ethernet
                    331: esp*   at obio? flags 0x00ff           # 53c9x SCSI
                    332: mesh*  at obio? flags 0xffff           # MESH SCSI
                    333: nvram* at obio?                        # nvram
1.362     macallan  334: options OBIO_SPEED_CONTROL             # CPU speed / voltage control via GPIOs
                    335:                                        # and/or DFS, found on most *Book G4
                    336:
1.251     macallan  337:
                    338: # the traditional ADB subsystem
                    339:
1.260     garbled   340: #adb*  at obio?                        # Apple Desktop Bus
                    341: #apm0  at adb?                         # APM emulation
                    342: #aed*  at adb?                         # ADB Event Device
                    343: #akbd* at adb?                         # ADB keyboard
                    344: #ams*  at adb?                         # ADB mouse
                    345: #abtn* at adb?
                    346:
1.284     macallan  347: # the new, improved ADB subsystem
1.267     tsutsui   348:
1.336     macallan  349: cuda*  at obio?                # CUDA, for Old World PowerMacs
                    350: iic*           at cuda?        # CUDA's IIC bus
                    351:
                    352: pmu*   at obio?                # PMU, *Books and newer PowerMacs
                    353: nadb*  at adb_bus?             # ADB bus enumerator, at cuda or pmu
                    354: adbkbd* at nadb?               # ADB keyboard
                    355: adbms* at nadb?                # ADB mice and touchpads
1.357     macallan  356: ktm*   at nadb?                # Kensington Turbo Mouse
1.336     macallan  357: adbbt* at nadb?                # button device found on *Books
1.260     garbled   358:
                    359: wskbd*         at wskbddev? console ?
                    360: wsmouse*       at wsmousedev?
1.251     macallan  361:
1.336     macallan  362: battery*       at pmu?         # legacy battery, for ohare-based PowerBooks
                    363: smartbat*      at pmu?         # Smart battery, found in newer *Books
1.242     macallan  364:
1.332     macallan  365: iic*           at pmu?         # some PMUs have IIC
1.251     macallan  366:
1.26      tsubai    367: zsc*   at obio?
                    368: zstty* at zsc? channel ?
1.33      tsubai    369: mediabay* at obio?
                    370: wdc*   at mediabay? flags 0
1.343     sevan     371: awacs* at obio?                        # Apple audio device
1.208     macallan  372: ki2c*  at obio?                        # Keywest I2C
                    373: ki2c*  at uni_n?                       # Keywest I2C
                    374: iic*   at ki2c?
1.335     macallan  375:
1.336     macallan  376: # I2C devices
1.335     macallan  377: dbcool*        at iic?         # dbCool thermal monitor & fan control
1.359     macallan  378: lmtemp*        at iic?         # temperature sensor, found in PowerBook5,6
1.335     macallan  379: deq*           at iic?         # mixer/equalizer, used by snapper
                    380: admtemp*       at iic?         # temperature sensor found in Mini, G5
1.358     macallan  381: psoc*          at iic?         # fan controller found in TiBooks
1.360     macallan  382: lmu*           at iic?         # ambient / keyboard lights
1.336     macallan  383: videopll*      at iic?         # for valkyriefb
                    384: sgsmix*        at iic?         # Additional mixer found in beige G3
                    385:                                # use with awacs.
1.208     macallan  386:
1.336     macallan  387: wi*            at obio?        # AirMac
                    388: snapper*       at obio?        # Snapper audio device
1.38      tsubai    389:
                    390: cardslot* at cbb?
                    391: cardbus* at cardslot?
                    392: pcmcia*        at cardslot?
                    393:
1.39      tsubai    394: com*   at pcmcia? function ?           # Modems and serial cards
1.38      tsubai    395: wdc*   at pcmcia? function ?           # PCMCIA IDE controllers
                    396: ep*    at pcmcia? function ?           # 3Com 3c589 and 3c562 Ethernet
                    397: mbe*   at pcmcia? function ?           # MB8696x based Ethernet
                    398: ne*    at pcmcia? function ?           # NE2000-compatible Ethernet
1.93      tsubai    399: awi*   at pcmcia? function ?           # BayStack 650/660 (802.11FH/DS)
1.97      tsubai    400: wi*    at pcmcia? function ?           # Lucent WaveLan IEEE (802.11)
1.239     dyoung    401: ath*   at cardbus? function ?  # Atheros 5210/5211/5212 802.11
1.212     drochner  402: atw*   at cardbus? function ?  # ADMtek ADM8211 (802.11)
                    403: ex*    at cardbus? function ?  # 3Com 3C575TX
                    404: tlp*   at cardbus? function ?  # DECchip 21143
1.221     xtraeme   405: ral*   at cardbus? function ?  # Ralink Technology RT25x0 802.11a/b/g
1.212     drochner  406: rtk*   at cardbus? function ?  # Realtek 8129/8139
                    407: rtw*   at cardbus? function ?  # Realtek 8180L (802.11)
1.13      tsubai    408:
1.171     jonathan  409: # Cryptographic Devices
                    410:
                    411: # PCI cryptographic devices
                    412: # (disabled, requires opencrypto framework which requires generic softints
                    413: #hifn* at pci? dev ? function ?        # Hifn 7755/7811/795x
                    414: #ubsec*        at pci? dev ? function ?        # Broadcom 5501/5601/580x/582x
                    415:
                    416:
1.196     tron      417: scsibus* at scsi?
1.1       tsubai    418:
                    419: sd*    at scsibus? target ? lun ?      # SCSI disks
                    420: st*    at scsibus? target ? lun ?      # SCSI tape drives
                    421: cd*    at scsibus? target ? lun ?      # SCSI CD-ROM drives
                    422: ch*    at scsibus? target ? lun ?      # SCSI autochangers
                    423: ss*    at scsibus? target ? lun ?      # SCSI scanners
                    424: uk*    at scsibus? target ? lun ?      # SCSI unknown
1.20      tsubai    425:
1.69      tsubai    426: wdc*   at obio? flags 0x1
1.165     lukem     427: atabus* at ata?
1.162     bouyer    428: wd*    at atabus? drive ? flags 0x0000
1.20      tsubai    429:
1.165     lukem     430: atapibus* at atapi?
1.20      tsubai    431:
                    432: cd*    at atapibus? drive ? flags 0x0000       # ATAPI CD-ROM drives
                    433: sd*    at atapibus? drive ? flags 0x0000       # ATAPI disk drives
                    434: uk*    at atapibus? drive ? flags 0x0000       # ATAPI unknown
1.22      tsubai    435:
                    436: # PCI USB controllers
1.190     matt      437: ohci*  at pci? dev ? function ?        # USB Open Host Controller
                    438: ehci*  at pci? dev ? function ?        # USB Enhanced Host Controller
                    439:
1.212     drochner  440: ohci*  at cardbus? function ?  # USB Open Host Controller
                    441: ehci*  at cardbus? function ?  # USB Enhanced Host Controller
1.22      tsubai    442:
1.259     kiyohara  443: slhci* at pcmcia? function ?   # ScanLogic SL811HS
                    444:
                    445: usb*   at ehci?                                        # USB bus support
1.93      tsubai    446: usb*   at ohci?                                        # USB bus support
1.259     kiyohara  447: usb*   at slhci?                                       # USB bus support
1.22      tsubai    448:
1.356     sevan     449: include "dev/usb/usbdevices.config"
1.118     augustss  450:
1.364     macallan  451: uatp*  at uhidev? reportid ?   # Apple multi-touchpads found in late *Books
                    452: #pbms* at uhidev? reportid ?   # older driver for touchpads
1.225     christos  453:
1.345     sevan     454: # Bluetooth Controller and Device support
                    455:
                    456: # Bluetooth PCMCIA Controllers
                    457: bt3c* at pcmcia? function ?            # 3Com 3CRWB6096-A
                    458: btbc* at pcmcia? function ?            # AnyCom BlueCard LSE041/039/139
                    459:
                    460: # Bluetooth USB Controllers
                    461: ubt* at uhub? port ?
                    462: aubtfwl* at uhub? port ?
                    463:
                    464: # Bluetooth Device Hub
                    465: bthub* at bcsp?
                    466: bthub* at bt3c?
                    467: bthub* at btbc?
                    468: bthub* at btuart?
                    469: bthub* at ubt?
                    470:
1.356     sevan     471: include "dev/bluetooth/bluetoothdevices.config"
1.345     sevan     472:
1.84      matt      473: # PCI IEEE1394 controllers
                    474: fwohci*        at pci? dev ? function ?        # IEEE1394 Open Host Controller
                    475:
1.203     kiyohara  476: # CardBus IEEE1394 controllers
1.212     drochner  477: #fwohci*       at cardbus? function ?  # IEEE1394 Open Host Controller
1.203     kiyohara  478:
                    479: ieee1394if* at fwohci?
                    480: fwip*  at ieee1394if?                  # IP over IEEE1394
                    481: sbp*   at ieee1394if? euihi ? euilo ?
1.84      matt      482:
1.73      wrstuden  483: # Audio Devices
                    484:
                    485: # PCI audio devices
                    486: #clcs* at pci? dev ? function ?        # Cirrus Logic CS4280
                    487: #cmpci*        at pci? dev ? function ?        # C-Media CMI8338/8738
                    488: eap*   at pci? dev ? function ?        # Ensoniq AudioPCI
                    489: #eso*  at pci? dev ? function ?        # ESS Solo-1 PCI AudioDrive
                    490: #fms*  at pci? dev ? function ?        # Forte Media FM801
                    491: #sv*   at pci? dev ? function ?        # S3 SonicVibes
                    492:
                    493: # OPL[23] FM synthesizers
1.112     itohy     494: #opl*  at cmpci? flags 1
1.73      wrstuden  495: #opl*  at eso?
                    496: #opl*  at fms?
                    497:
                    498: # Audio support
1.248     uwe       499: audio* at audiobus?
1.73      wrstuden  500:
1.326     christos  501: spkr*  at audio?               # PC speaker (synthesized)
1.324     nat       502:
1.73      wrstuden  503: # MPU 401 UARTs
1.112     itohy     504: #mpu*  at cmpci?
1.73      wrstuden  505: #mpu*  at eso?
                    506: #mpu*  at fms?
                    507:
                    508: # MIDI support
                    509: midi*  at eap?                 # 137[01] MIDI port
                    510: #midi* at mpu?                 # MPU 401
1.1       tsubai    511:
1.266     tls       512: #
                    513: # accept filters
                    514: pseudo-device   accf_data              # "dataready" accept filter
                    515: pseudo-device   accf_http              # "httpready" accept filter
                    516:
1.216     thorpej   517: #pseudo-device         crypto                  # /dev/crypto device
1.171     jonathan  518:                                        # (disabled, requires generic softints)
1.217     thorpej   519: #pseudo-device swcrypto                # software crypto implementation
1.224     cube      520: pseudo-device  vnd                     # disk-like interface to files
1.204     hubertf   521: #options       VND_COMPRESSION         # compressed vnd(4)
1.308     christos  522: pseudo-device  ccd                     # concatenated/striped disk devices
                    523: #pseudo-device cgd                     # cryptographic disk devices
1.309     christos  524: pseudo-device  raid                    # RAIDframe disk driver
1.198     tron      525: options        RAID_AUTOCONFIG         # auto-configuration of RAID components
1.120     oster     526: # Options to enable various other RAIDframe RAID types.
1.128     wiz       527: # options      RF_INCLUDE_EVENODD=1
                    528: # options      RF_INCLUDE_RAID5_RS=1
                    529: # options      RF_INCLUDE_PARITYLOGGING=1
                    530: # options      RF_INCLUDE_CHAINDECLUSTER=1
                    531: # options      RF_INCLUDE_INTERDECLUSTER=1
1.120     oster     532: # options      RF_INCLUDE_PARITY_DECLUSTERING=1
1.128     wiz       533: # options      RF_INCLUDE_PARITY_DECLUSTERING_DS=1
1.280     pooka     534: pseudo-device  fss                     # file system snapshot device
1.283     hannken   535: pseudo-device  md                      # memory disk device
1.1       tsubai    536: pseudo-device  loop                    # network loopback
1.223     rpaulo    537: pseudo-device  bpfilter                # packet filter
1.353     sevan     538: pseudo-device  carp                    # Common Address Redundancy Protocol
1.348     maxv      539: pseudo-device  npf                     # NPF packet filter
1.224     cube      540: pseudo-device  ppp                     # Point-to-Point Protocol
1.117     martin    541: pseudo-device  pppoe                   # PPP over Ethernet (RFC 2516)
1.224     cube      542: pseudo-device  sl                      # Serial Line IP
                    543: pseudo-device  tun                     # network tunneling over tty
1.187     cube      544: pseudo-device  tap                     # virtual Ethernet
1.224     cube      545: #pseudo-device gre                     # generic L3 over IP tunnel
                    546: pseudo-device  gif                     # IPv[46] over IPv[46] tunnel (RFC1933)
1.347     sevan     547: pseudo-device  ipsecif                 # tunnel interface for routing based ipsec
1.224     cube      548: #pseudo-device faith                   # IPv[46] tcp relay translation i/f
1.229     pavel     549: pseudo-device  stf                     # 6to4 IPv6 over IPv4 encapsulation
1.87      bouyer    550: pseudo-device  vlan                    # IEEE 802.1q encapsulation
1.115     atatat    551: pseudo-device  bridge                  # simple inter-network bridging
1.247     uwe       552: #options       BRIDGE_IPF              # bridge uses IP/IPv6 pfil hooks too
1.256     martin    553: pseudo-device  agr                     # IEEE 802.3ad link aggregation
1.77      jdolecek  554: pseudo-device  pty                     # pseudo-terminals
1.85      kei       555: pseudo-device  openfirm                # /dev/openfirm
1.297     hauke     556: pseudo-device  wsmux                   # mouse and keyboard multiplexer
1.331     macallan  557: pseudo-device  wsfont
1.297     hauke     558: pseudo-device  swwdog                  # software watchdog driver - swwdog(4)
1.131     lukem     559: pseudo-device  clockctl                # user control of clock subsystem
1.156     ragge     560: pseudo-device  ksyms                   # /dev/ksyms
1.219     elad      561:
1.299     riz       562: # userland interface to drivers, including autoconf and properties retrieval
                    563: pseudo-device   drvctl
                    564:
1.354     sevan     565: include "dev/veriexec.config"
1.236     elad      566:
1.237     elad      567: #options PAX_MPROTECT=0                        # PaX mprotect(2) restrictions

CVSweb <webmaster@jp.NetBSD.org>