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

Annotation of src/sys/arch/alpha/conf/GENERIC, Revision 1.288

1.221     itohy       1: #
1.199     gmcgarry    2: # This machine description file is used to generate the default NetBSD
                      3: # kernel.  The generic kernel on NetBSD/alpha does enough to get booted,
                      4: # etc., but not much more.  For a more complete kernel see the ALPHA
                      5: # machine description file.
1.145     cjs         6: #
1.199     gmcgarry    7: # The machine description file can be customised for your specific
                      8: # machine to reduce the kernel size and improve its performance.
                      9: #
                     10: # For further information on compiling NetBSD kernels, see the config(8)
                     11: # man page.
                     12: #
                     13: # For further information on hardware support for this architecture, see
                     14: # the intro(4) man page.  For further information about kernel options
                     15: # for this architecture, see the options(4) man page.  For an explanation
                     16: # of each device driver in this file see the section 4 man page for the
                     17: # device.
                     18:
1.145     cjs        19: # If you add stuff to this, please add it to the ALPHA configuration, too.
1.1       cgd        20:
1.199     gmcgarry   21: include                "arch/alpha/conf/std.alpha"
1.141     hubertf    22:
1.208     atatat     23: options        INCLUDE_CONFIG_FILE     # embed config file in kernel binary
                     24:
1.288   ! liamjfoy   25: #ident                 "GENERIC-$Revision: 1.287 $"
1.1       cgd        26:
1.77      thorpej    27: maxusers 32
1.36      cgd        28:
1.1       cgd        29: # CPU Support
1.161     thorpej    30: options        DEC_2000_300    # "Jensen":     2000/300 (DECpc AXP 150)
1.58      mellon     31: options        DEC_2100_A50    # Avanti etc:   AlphaStation 400, 200, etc.
1.176     thorpej    32: options        DEC_2100_A500   # Sable:        AlphaServer 2100
                     33: options        DEC_2100A_A500  # Lynx:         AlphaServer 2100A
1.58      mellon     34: options        DEC_3000_500    # Flamingo etc: 3000/[4-9]00*
                     35: options        DEC_3000_300    # Pelican etc:  3000/300*
                     36: options        DEC_AXPPCI_33   # NoName:       AXPpci33, etc.
                     37: options        DEC_EB164       # EB164:        AlphaPC 164
                     38: options        DEC_EB64PLUS    # EB64+:        AlphaPC 64, etc.
                     39: options        DEC_KN20AA      # KN20AA:       AlphaStation 500 and 600
                     40: options        DEC_KN8AE       # KN8AE:        AlphaServer 8200 and 8400
1.153     thorpej    41: options        DEC_KN300       # KN300:        AlphaServer 4100 and 1200
1.89      thorpej    42: options        DEC_550         # Miata:        Digital Personal Workstation
1.93      ross       43: options        DEC_1000        # Mikasa etc:   Digital AlphaServer 1000
1.90      ross       44: options        DEC_1000A       # Corelle etc:  Digital AlphaServer 800/1000A
1.92      thorpej    45: options        DEC_ALPHABOOK1  # AlphaBook1:   Tadpole/DEC AlphaBook
1.94      thorpej    46: options        DEC_EB66        # EB66:         21066 Evaluation Board
1.122     ross       47: options        DEC_6600        # EV6:          264DP OEM Board
1.156     thorpej    48: options        API_UP1000      # EV6:          Alpha Processor, Inc. UP1000
1.1       cgd        49:
                     50: # Standard system options
1.58      mellon     51: options        KTRACE                  # System call tracing support
1.216     provos     52: options        SYSTRACE                # System call vetting via systrace(1)
1.180     lukem      53: options        NTP                     # kernel PLL for NTP
1.218     junyoung   54:
1.221     itohy      55: # Enable experimental buffer queue strategy for better responsiveness under
1.218     junyoung   56: # high disk I/O load. Use it with caution - it's not proven to be stable yet.
1.265     tsutsui    57: #options       BUFQ_READPRIO
                     58: #options       BUFQ_PRIOCSCAN
1.1       cgd        59:
1.38      cgd        60: # Diagnostic/debugging support options
1.277     chs        61: #options       DIAGNOSTIC              # Cheap kernel consistency checks
1.108     thorpej    62: options        DDB                     # kernel debugger
1.250     mycroft    63: options        DDB_HISTORY_SIZE=512    # enable history editing in DDB
1.111     ross       64: #makeoptions   DEBUG="-g"
1.185     ross       65: #makeoptions   DEBUGLIST="pattern1 pattern2 ..."
1.38      cgd        66:
1.193     thorpej    67: #options       KGDB                    # Remote kernel GDB support
1.197     lukem      68: #options       KGDB_DEVNAME="\"com\""  # device to use for KGDB
1.193     thorpej    69: #options       KGDB_DEVADDR=0x2f8      # at this address
                     70: #options       KGDB_DEVRATE=57600      # at this comm. rate
                     71:
1.37      thorpej    72: # File systems
1.65      cgd        73: file-system    FFS             # Fast file system
                     74: file-system    MFS             # Memory-based file system
                     75: file-system    CD9660          # ISO-9660 CD-ROM FS (w/RockRidge extensions)
                     76: file-system    MSDOSFS         # MS-DOS-compatible file system
1.140     cjs        77: file-system    NTFS            # Windows/NT file system (experimental)
1.65      cgd        78: file-system    NFS             # Sun NFS-compatible file system client
1.210     jdolecek   79: file-system    KERNFS          # Kernel variable file system (/kern)
                     80: file-system    PROCFS          # Process file system (/proc)
1.287     mrg        81: file-system    NULLFS          # Null file system layer
1.274     christos   82: file-system    PTYFS           # /dev/pts/N support
1.275     jmmv       83: #file-system   TMPFS           # experimental - Efficient memory file-system
1.283     reinoud    84: #file-system   UDF             # experimental - OSTA UDF CD/DVD file-system
1.37      thorpej    85:
1.1       cgd        86: # File system options
1.214     jdolecek   87: options        QUOTA           # UFS quotas
1.78      bouyer     88: #options       FFS_EI          # FFS Endian Independant support
1.158     fvdl       89: options        SOFTDEP         # FFS soft updates support.
1.258     rumble     90: #options       UFS_DIRHASH     # UFS Large Directory Hashing - Experimental
1.214     jdolecek   91: options        NFSSERVER       # Sun NFS-compatible file system server
1.281     tsutsui    92: #options       FFS_NO_SNAPSHOT # No FFS snapshot support
1.137     itojun     93:
1.1       cgd        94: # Networking options
1.225     grant      95: #options       GATEWAY         # packet forwarding
                     96: options        INET            # IP + ICMP + TCP + UDP
1.137     itojun     97: options        INET6           # IPV6
                     98: #options       IPSEC           # IP security
                     99: #options       IPSEC_ESP       # IP security (encryption part; define w/IPSEC)
1.267     tron      100: #options       IPSEC_NAT_T     # IPsec NAT traversal (NAT-T)
1.137     itojun    101: #options       IPSEC_DEBUG     # debug for IP security
1.225     grant     102: #options       MROUTING        # IP multicast routing
1.251     manu      103: #options       PIM             # Protocol Independent Multicast
1.225     grant     104: #options       NS              # XNS
                    105: #options       NSIP            # XNS tunneling over IP
                    106: #options       ISO,TPIP        # OSI
                    107: #options       EON             # OSI tunneling over IP
                    108: #options       CCITT,LLC,HDLC  # X.25
                    109: #options       NETATALK        # AppleTalk networking protocols
                    110: #options       PPP_BSDCOMP     # BSD-Compress compression support for PPP
                    111: #options       PPP_DEFLATE     # Deflate compression support for PPP
                    112: #options       PPP_FILTER      # Active filter support for PPP (requires bpf)
                    113: #options       PFIL_HOOKS      # pfil(9) packet filter hooks
1.276     abs       114: options        IPFILTER_LOG    # ipmon(8) log support
1.225     grant     115: #options       IPFILTER_DEFAULT_BLOCK  # block all packets by default
                    116: #options       TCP_DEBUG       # Record last TCP_NDEBUG packets with SO_DEBUG
1.1       cgd       117:
1.245     abs       118: #options       ALTQ            # Manipulate network interfaces' output queues
                    119: #options       ALTQ_BLUE       # Stochastic Fair Blue
                    120: #options       ALTQ_CBQ        # Class-Based Queueing
                    121: #options       ALTQ_CDNR       # Diffserv Traffic Conditioner
                    122: #options       ALTQ_FIFOQ      # First-In First-Out Queue
                    123: #options       ALTQ_FLOWVALVE  # RED/flow-valve (red-penalty-box)
                    124: #options       ALTQ_HFSC       # Hierarchical Fair Service Curve
                    125: #options       ALTQ_LOCALQ     # Local queueing discipline
                    126: #options       ALTQ_PRIQ       # Priority Queueing
                    127: #options       ALTQ_RED        # Random Early Detection
                    128: #options       ALTQ_RIO        # RED with IN/OUT
                    129: #options       ALTQ_WFQ        # Weighted Fair Queueing
                    130:
1.1       cgd       131: # 4.3BSD compatibility.  Should be optional, but necessary for now.
1.58      mellon    132: options        COMPAT_43
1.1       cgd       133:
1.9       cgd       134: # Binary compatibility with previous versions of NetBSD.
1.58      mellon    135: #options       COMPAT_09
                    136: options        COMPAT_10
                    137: options        COMPAT_11
                    138: options        COMPAT_12
1.72      mjacob    139: options        COMPAT_13
1.123     augustss  140: options        COMPAT_14
1.233     skd       141: options                COMPAT_16
1.254     reinoud   142: options                COMPAT_20
1.273     christos  143: options        COMPAT_30       # NetBSD 3.0 compatibility.
1.118     cgd       144: # OSF/1 binary compatibility
                    145: options        COMPAT_OSF1
1.174     mycroft   146:
                    147: # Linux binary compatibility
                    148: options        COMPAT_LINUX
1.70      mjacob    149:
1.256     christos  150: options                COMPAT_BSDPTY   # /dev/[pt]ty?? ptys.
                    151:
1.70      mjacob    152: # System V-like message queues
                    153: options        SYSVMSG
1.198     lukem     154: #options       SEMMNI=10       # number of semaphore identifiers
                    155: #options       SEMMNS=60       # number of semaphores in system
                    156: #options       SEMUME=10       # max number of undo entries per process
                    157: #options       SEMMNU=30       # number of undo structures in system
1.70      mjacob    158:
                    159: # System V-like semaphores
                    160: options        SYSVSEM
1.9       cgd       161:
1.34      cgd       162: # System V-like shared memory
1.58      mellon    163: options        SYSVSHM
                    164: #options       SHMMAXPGS=1024          # 1024 pages is the default
1.1       cgd       165:
1.246     bouyer    166: # p1003.1b semaphore support
                    167: options        P1003_1B_SEMAPHORE
                    168:
1.7       cgd       169: # Loadable Kernel Modules
1.58      mellon    170: options        LKM
1.5       cgd       171:
                    172: # Disable kernel security.
1.116     ross      173: #options       INSECURE
1.2       cgd       174:
1.7       cgd       175: # Misc. options
1.58      mellon    176: options        EISAVERBOSE             # recognize "unknown" EISA devices
                    177: options        PCIVERBOSE              # recognize "unknown" PCI devices
1.151     augustss  178: options        MIIVERBOSE              # verbose PHY autoconfig messages
1.146     cgd       179: #options       PCI_CONFIG_DUMP         # verbosely dump PCI config space
1.71      mjacob    180: options        SCSIVERBOSE             # Verbose SCSI errors
1.254     reinoud   181: options                USBVERBOSE              # verbose USB device autoconfig messages
1.58      mellon    182: options        TCVERBOSE               # recognize "unknown" TC devices
1.177     mycroft   183: #options       PCMCIAVERBOSE
1.213     lukem     184: options        USERCONF                # userconf(4) support
1.221     itohy     185: #options       PIPE_SOCKETPAIR         # smaller, but slower pipe(2)
1.247     atatat    186: options        SYSCTL_INCLUDE_DESCR    # Include sysctl descriptions in kernel
1.221     itohy     187: options        FONT_GALLANT12x22       # Console font for TC devices
1.73      drochner  188:
                    189: # The Alpha console firmware network boots using the BOOTP
1.76      cgd       190: # protocol, so we ask the NFS code to use BOOTP/DHCP as well,
                    191: # in case we have NFS root.
                    192: options        NFS_BOOT_DHCP           # superset of BOOTP
1.7       cgd       193:
1.117     ross      194: # WS console uses SUN or VT100 terminal emulation
                    195: options        WSEMUL_VT100
1.101     drochner  196:
                    197: # realtime clock compatible to OSF/1
                    198: #options       CLOCK_COMPAT_OSF1
1.81      drochner  199:
1.37      thorpej   200: config         netbsd  root on ? type ?
1.57      mrg       201: #config                netbsd  root on sd0 type ffs
1.37      thorpej   202: #config                netbsd  root on ? type nfs
1.7       cgd       203:
                    204: mainbus0 at    root
                    205: cpu*   at      mainbus0
1.1       cgd       206:
1.41      cgd       207: # TurboLaser bus support and devices
                    208: tlsb*  at      mainbus0
                    209: gbus*  at      tlsb? node ? offset ?
                    210: tlsbmem* at    tlsb? node ? offset ?
                    211: kft*   at      tlsb? node ? offset ?
                    212:
                    213: # Gbus Devices
1.85      thorpej   214: mcclock* at    gbus? offset ?
1.41      cgd       215:
1.80      mjacob    216: # MCBUS bus support
                    217: mcbus* at      mainbus0
                    218: mcmem* at      mcbus? mid ?
                    219:
                    220: #i2c   at      mcbus?
                    221:
1.122     ross      222: #EV6 Tsunami Core Logic
                    223:
                    224: tsc*   at      mainbus0
                    225:
1.161     thorpej   226: # DECpc AXP150 (Jensen) internal bus support
                    227: jensenio* at   mainbus0
                    228:
                    229: com*   at      jensenio? port ?
                    230: lpt*   at      jensenio? port ?
                    231: mcclock* at    jensenio? port ?
                    232: pckbc* at      jensenio? port ?
                    233:
1.170     tsutsui   234: # TURBOchannel host bus adapter support
1.10      cgd       235: tcasic*        at      mainbus0
                    236:
1.170     tsutsui   237: # TURBOchannel bus support
1.10      cgd       238: tc*    at      tcasic?
1.8       cgd       239:
1.170     tsutsui   240: # TURBOchannel devices
1.29      cgd       241: ioasic*        at      tc? slot ? offset ?
                    242: mcclock* at    ioasic? offset ?
1.12      cgd       243: le*    at      ioasic? offset ?
1.221     itohy     244: zsc0   at      ioasic? offset 0x100000
                    245: zsc1   at      ioasic? offset 0x180000
1.170     tsutsui   246: bba0   at      ioasic? offset ?
1.87      thorpej   247: tcds*  at      tc? slot ? offset ?
                    248: asc*   at      tcds? chip ?
1.194     simonb    249: asc*   at      tc? slot ? offset ?
1.12      cgd       250: le*    at      tc? slot ? offset ?
1.15      cgd       251: fta*   at      tc? slot ? offset ?             # DEC DEFTA FDDI cards
1.215     ad        252: cfb*   at      tc? slot ? offset ?
                    253: mfb*   at      tc? slot ? offset ?
                    254: tfb*   at      tc? slot ? offset ?
                    255: sfb*   at      tc? slot ? offset ?
                    256: #sfbp* at      tc? slot ? offset ?
                    257: px*    at      tc? slot ? offset ?
                    258: pxg*   at      tc? slot ? offset ?
                    259:
                    260: # TurboChannel serial attachments
                    261: zstty* at      zsc? channel ?                  # serial ports on B channels
                    262: lkkbd0 at      zsc1 channel ?                  # keyboard port on A channels
                    263: vsms0  at      zsc0 channel ?                  # mouse port on A channels
1.1       cgd       264:
1.8       cgd       265: # PCI host bus adapter support
1.7       cgd       266: apecs* at      mainbus?
1.9       cgd       267: cia*   at      mainbus?
1.156     thorpej   268: irongate* at   mainbus?
1.9       cgd       269: lca*   at      mainbus?
1.41      cgd       270: dwlpx* at      kft?
1.80      mjacob    271: mcpcia*        at      mcbus? mid ?
1.122     ross      272: tsp*   at      tsc?
1.176     thorpej   273: ttwoga*        at      mainbus?
1.161     thorpej   274:
                    275: # Sable PCI and STDIO bus and devices
1.176     thorpej   276: ttwopci* at    ttwoga? hose ?
                    277: sableio* at    ttwopci? bus ?
                    278: com*   at      sableio? port ?
                    279: lpt*   at      sableio? port ?
                    280: pckbc* at      sableio? port ?
                    281: fdc*   at      sableio? port ?
1.7       cgd       282:
1.8       cgd       283: # PCI bus support
1.7       cgd       284: pci*   at      apecs?
1.9       cgd       285: pci*   at      cia?
1.156     thorpej   286: pci*   at      irongate?
1.9       cgd       287: pci*   at      lca?
                    288: pci*   at      ppb?
1.41      cgd       289: pci*   at      dwlpx?
1.80      mjacob    290: pci*   at      mcpcia?
1.122     ross      291: pci*   at      tsp?
1.176     thorpej   292: pci*   at      ttwopci?
1.193     thorpej   293:
                    294: # AGP support
                    295: agp*   at      irongate?
1.7       cgd       296:
1.8       cgd       297: # PCI devices
1.239     jonathan  298:
                    299: # PCI cryptographic devices
                    300: hifn*  at pci? dev ? function ?        # Hifn 7755/7811/795x
                    301: ubsec* at pci? dev ? function ?        # Broadcom 5501/5601/580x/582x
                    302:
1.126     thorpej   303: adv*   at      pci? dev ? function ?           # AdvanSys SCSI
                    304: adw*   at      pci? dev ? function ?           # AdvanSys Wide SCSI
1.211     wiz       305: #options       SCSI_ADW_WDTR_DISABLE           #       disable WDTR
                    306: #options       SCSI_ADW_SDTR_DISABLE           #       disable SDTR
                    307: #options       SCSI_ADW_TAGQ_DISABLE           #       disable Tag Queuing
1.43      cgd       308: ahc*   at      pci? dev ? function ?           # Adaptec [23]94x, aic78x0 SCSI
1.212     nathanw   309: autri* at      pci? dev ? function ?           # Trident 4DWAVE based AC'97 Audio
1.43      cgd       310: bha*   at      pci? dev ? function ?           # BusLogic 9xx SCSI (untested)
1.150     ad        311: cac*   at      pci? dev ? function ?           # Compaq array controller (untested)
1.195     itohy     312: cmpci* at      pci? dev ? function ?           # C-Media CMI8338/8738 Audio
1.49      cgd       313: cy*    at      pci? dev ? function ?           # Cyclades Cyclom-Y (untested)
1.155     matt      314: cz*    at      pci? dev ? function ?           # Cyclades-Z (untested)
1.129     ad        315: dpt*   at      pci? dev ? function ?           # DPT SmartCache/SmartRAID
1.120     christos  316: eap*   at      pci? dev ? function ?           # Ensoniq AudioPCI
1.20      cgd       317: en*    at      pci? dev ? function ?           # ENI PCI ATM (untested)
1.103     fvdl      318: ep*    at      pci? dev ? function ?           # 3COM 3c59x
1.120     christos  319: epic*  at      pci? dev ? function ?           # SMC EPIC/100 Ethernet
1.130     kleink    320: eso*   at      pci? dev ? function ?           # ESS Solo-1 PCI AudioDrive
1.191     hubertf   321: ex*    at      pci? dev ? function ?           # 3COM 3c90x[BC] Ethernet
1.43      cgd       322: fpa*   at      pci? dev ? function ?           # DEC DEFPA FDDI
1.75      enami     323: fxp*   at      pci? dev ? function ?           # Intel EEPRO 10+/100B
1.187     thorpej   324: gsip*  at      pci? dev ? function ?           # NS DP83820 Gigabit Ethernet
1.186     lukem     325: iha*   at      pci? dev ? function ?           # Initio INIC-940/950 SCSI
1.43      cgd       326: isp*   at      pci? dev ? function ?           # Qlogic ISP 10x0 SCSI
1.20      cgd       327: le*    at      pci? dev ? function ?           # PCI LANCE Ethernet (untested)
1.187     thorpej   328: sf*    at      pci? dev ? function ?           # Adaptec AIC-6915 Ethernet
1.161     thorpej   329: siop*  at      pci? dev ? function ?           # Symbios 53c8xx SCSI
1.231     bouyer    330: esiop* at      pci? dev ? function ?           # Symbios 53c875 SCSI and newer
1.181     ad        331: mlx*   at      pci? dev ? function ?           # Mylex DAC960 / DEC SWXCR (untested)
1.228     thorpej   332: mpt*   at      pci? dev ? function ?           # LSI Fusion SCSI/FC
1.120     christos  333: ne*    at      pci? dev ? function ?           # NE2000-compatible Ethernet
                    334: ohci*  at      pci? dev ? function ?           # USB Open Host Controller
1.252     reinoud   335: ehci*  at      pci? dev ? function ?           # USB-2 Host controller
1.43      cgd       336: pceb*  at      pci? dev ? function ?           # Intel PCI-EISA Bridges
1.254     reinoud   337: pciide* at     pci? dev ? function ? flags 0x0000      # GENERIC pciide driver
                    338: acardide* at   pci? dev ? function ?           # Acard IDE controllers
                    339: aceride* at    pci? dev ? function ?           # Acer Lab IDE controllers
                    340: artsata* at    pci? dev ? function ?           # Intel i31244 SATA controller
                    341: cmdide* at     pci? dev ? function ?           # CMD tech IDE controllers
                    342: cypide* at     pci? dev ? function ?           # Cypress IDE controllers
                    343: hptide* at     pci? dev ? function ?           # Triones/HighPoint IDE controllers
                    344: optiide* at    pci? dev ? function ?           # Opti IDE controllers
                    345: pdcide* at     pci? dev ? function ?           # Promise IDE controllers
1.257     bouyer    346: pdcsata* at    pci? dev ? function ?           # Promise SATA150 controllers
1.254     reinoud   347: satalink* at   pci? dev ? function ?           # SiI SATALink controllers
                    348: siside* at     pci? dev ? function ?           # SiS IDE controllers
                    349: slide*  at     pci? dev ? function ?           # Symphony Labs IDE controllers
                    350: viaide* at     pci? dev ? function ?           # VIA/AMD/Nvidia IDE controllers
1.108     thorpej   351: pcscp* at      pci? dev ? function ?           # AMD Am53c974 PCscsi-PCI
1.43      cgd       352: ppb*   at      pci? dev ? function ?           # PCI-PCI Bridges
1.287     mrg       353: re*    at      pci? dev ? function ?           # Realtek 8169 Ethernet
1.240     wiz       354: rtk*   at      pci? dev ? function ?           # Realtek 8129/8139 Ethernet
1.43      cgd       355: sio*   at      pci? dev ? function ?           # Intel PCI-ISA Bridges
1.131     thorpej   356: sip*   at      pci? dev ? function ?           # SiS 900 Ethernet
1.223     mjacob    357: stge*  at      pci? dev ? function ?           # Sundance/Tamarack TC9021 GigE
1.120     christos  358: sv*    at      pci? dev ? function ?           # S3 SonicVibes
1.43      cgd       359: tga*   at      pci? dev ? function ?           # DEC ZLXp-E[123] Graphics
1.131     thorpej   360: ti*    at      pci? dev ? function ?           # Alteon Tigon Gig-E
1.99      thorpej   361: tl*    at      pci? dev ? function ?           # TI ThunderLAN Ethernet
1.131     thorpej   362: tlp*   at      pci? dev ? function ?           # DECchip 21x4x and clones
1.120     christos  363: uhci*  at      pci? dev ? function ?           # USB Univ. Host Controller
1.49      cgd       364: vga*   at      pci? dev ? function ?           # PCI VGA Graphics
1.120     christos  365: vr*    at      pci? dev ? function ?           # VIA Rhine Fast Ethernet
1.222     grant     366: wi*    at      pci? dev ? function ?           # Lucent/Intersil WaveLAN/IEEE
1.183     minoura   367: yds*   at      pci? dev ? function ?           # Yamaha DS-1 PCI Audio
1.120     christos  368:
1.195     itohy     369: opl*   at      cmpci? flags 1
1.130     kleink    370: opl*   at      eso?
1.107     augustss  371: #opl*  at      sv?
1.183     minoura   372: opl*   at      yds?
1.130     kleink    373:
1.195     itohy     374: mpu*   at      cmpci?
1.130     kleink    375: mpu*   at      eso?
1.183     minoura   376: mpu*   at      yds?
1.196     itohy     377:
1.99      thorpej   378: # MII/PHY support
1.121     christos  379: exphy* at mii? phy ?                   # 3Com internal PHYs
1.205     wiz       380: icsphy*        at mii? phy ?                   # Integrated Circuit Systems ICS189x
1.121     christos  381: inphy* at mii? phy ?                   # Intel 82555 PHYs
                    382: lxtphy*        at mii? phy ?                   # Level One LXT-970 PHYs
1.187     thorpej   383: gphyter* at mii? phy ?                 # NS83861 Gig-E PHY
1.121     christos  384: nsphy* at mii? phy ?                   # NS83840 PHYs
                    385: qsphy* at mii? phy ?                   # Quality Semiconductor QS6612 PHYs
                    386: sqphy* at mii? phy ?                   # Seeq 80220/80221/80223 PHYs
                    387: tlphy* at mii? phy ?                   # ThunderLAN PHYs
                    388: ukphy* at mii? phy ?                   # generic unknown PHYs
1.7       cgd       389:
1.9       cgd       390: # ISA/EISA bus support
1.161     thorpej   391: isa*   at      jensenio?
                    392: eisa*  at      jensenio?
1.9       cgd       393: isa*   at      pceb?
                    394: eisa*  at      pceb?
                    395: isa*   at      sio?
1.177     mycroft   396: #isapnp*       at      isa?
1.8       cgd       397:
                    398: # ISA devices
1.29      cgd       399: mcclock* at    isa? port 0x70
1.140     cjs       400: pckbc* at      isa?                            # PC keyboard controller
1.81      drochner  401: pckbd* at      pckbc?                          # PC keyboard (kbd port)
1.109     drochner  402: pms*   at      pckbc?                          # PS/2-style mouse (aux port)
1.262     cube      403: attimer* at    isa?                            # AT Timer
1.83      thorpej   404: pcppi* at      isa?                            # PC prog. periph. interface
                    405: spkr0  at      pcppi?                          # IBM BASIC emulation
1.98      drochner  406: isabeep0 at    pcppi?                          # "keyboard" beep
1.29      cgd       407: com*   at      isa? port 0x3f8 irq 4           # standard serial ports
                    408: com*   at      isa? port 0x2f8 irq 3
1.97      thorpej   409: cs*    at      isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet
1.170     tsutsui   410: ec0    at      isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet
1.52      cjs       411: ep*    at      isa? port ? irq ?               # 3COM 3c509 Ethernet
1.177     mycroft   412: #ep*   at      isapnp?
                    413: #ix0   at      isa? port 0x300 irq 10          # EtherExpress/16
                    414: #iy0   at      isa? port 0x360 irq ?           # EtherExpress PRO 10 ISA
1.112     thorpej   415: fdc0   at      isa? port 0x3f0 irq 6 drq 2     # floppy controller
1.86      matt      416: lc0    at      isa? port 0x300 iomem ? irq ?   # DEC EtherWORKS III (LEMAC)
                    417: lc1    at      isa? port 0x320 iomem ? irq ?   # DEC EtherWORKS III (LEMAC)
                    418: depca0 at      isa? port 0x300 iomem 0xd0000 iosiz 0x10000 irq 5       # DEPCA
                    419: depca1 at      isa? port 0x200 iomem 0xd8000 iosiz 0x8000 irq 10       # DEPCA
                    420: le*    at      depca?
1.29      cgd       421: lpt*   at      isa? port 0x3bc irq 7           # standard parallel port
                    422: vga*   at      isa?                            # ISA (EISA: XXX) VGA
1.74      thorpej   423: wdc0   at      isa? port 0x1f0 irq 14          # ST506/ESDI/IDE controllers
                    424: wdc1   at      isa? port 0x170 irq 15
1.177     mycroft   425: #wdc*  at      isapnp?
1.198     lukem     426: we0    at      isa? port 0x280 iomem 0xd0000 irq 9     # WD/SMC Ethernet
                    427: we1    at      isa? port 0x300 iomem 0xcc000 irq 10
1.108     thorpej   428: #wss*  at      isa? port 0x530 irq 9 drq 0     # Windows Sound System
1.177     mycroft   429: #wss*  at      isapnp?
1.204     ross      430:
                    431: ess0   at      isa? port 0x220 irq 5 drq 1 drq2 5   # ESS 18XX
1.114     ross      432: sb*    at      isa? port 0x220 irq 5 drq 1     # SoundBlaster
                    433: #sb*   at      isapnp?
1.119     dante     434: #adv*  at      isa? port ? irq ? drq ?         # AdvanSys APB-514[02]
1.56      thorpej   435: aha*   at      isa? port 0x330 irq ? drq ?     # Adaptec 154[02] SCSI
                    436: aha*   at      isa? port 0x334 irq ? drq ?     # Adaptec 154[02] SCSI
                    437: bha*   at      isa? port 0x330 irq ? drq ?     # BusLogic [57]4X SCSI (unt.)
                    438: bha*   at      isa? port 0x334 irq ? drq ?     # BusLogic [57]4X SCSI (unt.)
                    439: uha*   at      isa? port 0x330 irq ? drq ?     # UltraStor [13]4f SCSI (unt.)
                    440: uha*   at      isa? port 0x334 irq ? drq ?     # UltraStor [13]4f SCSI (unt.)
1.152     matt      441: pcic0  at      isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
                    442: pcic1  at      isa? port 0x3e2 iomem 0xcc000 iosiz 0x10000
                    443: pcmcia*        at      pcic? controller ? socket ?
1.15      cgd       444:
                    445: # EISA devices
1.56      thorpej   446: ahb*   at      eisa? slot ?                    # Adaptec 174[024] SCSI (unt.)
1.44      cgd       447: ahc*   at      eisa? slot ?                    # Adaptec 274x, aic7770 SCSI
                    448: bha*   at      eisa? slot ?                    # BusLogic 7xx SCSI
1.53      cjs       449: ep*    at      eisa? slot ?                    # 3COM 3c579 Ethernet (untested)
1.50      cgd       450: fea*   at      eisa? slot ?                    # DEC DEFEA FDDI
1.184     ad        451: mlx*   at      eisa? slot ?                    # Mylex DAC960 / DEC SWXCR (untested)
1.131     thorpej   452: tlp*   at      eisa? slot ?                    # DEC DE-425 Ethernet
1.163     thorpej   453: depca* at      eisa? slot ?                    # DEC DE-422 Ethernet
                    454: le*    at      depca?
1.56      thorpej   455: uha*   at      eisa? slot ?                    # UltraStor 24f SCSI (unt.)
1.7       cgd       456:
1.152     matt      457: # PCMCIA device
1.249     mycroft   458: com*   at      pcmcia? function ?      # Modems and serial cards
                    459:
                    460: aic*   at      pcmcia? function ?      # Adaptec APA-1460 SCSI
                    461: spc*   at      pcmcia? function ?      # Fujitsu MB87030 SCSI
                    462:
                    463: wdc*   at      pcmcia? function ?      # PCMCIA IDE controllers
                    464:
                    465: ep*    at      pcmcia? function ?      # 3Com 3c589 and 3c562 Eth.
                    466: mbe*   at      pcmcia? function ?      # MB8696x based Ethernet
                    467: ne*    at      pcmcia? function ?      # NE2000-compatible Eth.
                    468: ray*   at      pcmcia? function ?      # Raytheon Raylink (802.11)
                    469: sm*    at      pcmcia? function ?      # Megahertz Ethernet
                    470: wi*    at      pcmcia? function ?      # Lucent/Intersil WaveLAN/IEEE
                    471: xirc*  at      pcmcia? function ?      # Xircom CreditCard Ethernet
                    472: com*   at      xirc?
                    473: xi*    at      xirc?
                    474: mhzc*  at      pcmcia? function ?      # Megahertz Ethernet/Modem combo cards
                    475: com*   at      mhzc?
                    476: sm*    at      mhzc?
1.152     matt      477:
1.8       cgd       478: # SCSI bus support
1.241     fair      479: scsibus* at    scsi?
1.1       cgd       480:
1.8       cgd       481: # SCSI devices
1.31      cgd       482: cd*    at      scsibus? target ? lun ?         # SCSI CD-ROM drives
                    483: sd*    at      scsibus? target ? lun ?         # SCSI disk drives
                    484: st*    at      scsibus? target ? lun ?         # SCSI tape drives
1.51      cgd       485:
1.236     lukem     486: # ATA (IDE) bus support
                    487: atabus* at ata?
1.234     bouyer    488:
1.236     lukem     489: # IDE drives
1.234     bouyer    490: wd*    at      atabus? drive ?
1.74      thorpej   491:
                    492: # ATAPI bus support
1.236     lukem     493: atapibus* at   atapi?
1.74      thorpej   494:
                    495: # ATAPI devices
                    496: sd*    at      atapibus? drive ?               # ATAPI disk devices
                    497: cd*    at      atapibus? drive ?               # ATAPI CD-ROM devices
1.112     thorpej   498:
                    499: # Floppy drives
                    500: fd*    at      fdc? drive ?
1.150     ad        501:
                    502: # Hardware RAID devices
1.173     ad        503: ld*    at      cac? unit ?
1.182     itojun    504: ld*    at      mlx? unit ?
1.108     thorpej   505:
                    506: # USB bus support
                    507: usb*   at uhci?
                    508: usb*   at ohci?
1.252     reinoud   509: usb*   at ehci?
1.108     thorpej   510:
1.127     augustss  511: # USB Hubs
1.108     thorpej   512: uhub*  at usb?
1.127     augustss  513: uhub*  at uhub? port ? configuration ? interface ?
1.108     thorpej   514:
1.201     augustss  515: # USB HID device
                    516: uhidev*        at uhub? port ? configuration ? interface ?
                    517:
1.127     augustss  518: # USB Mice
1.201     augustss  519: ums*   at uhidev? reportid ?
1.133     mycroft   520: wsmouse*       at ums?
1.108     thorpej   521:
                    522: # USB Keyboards
1.201     augustss  523: ukbd*  at uhidev? reportid ?
1.133     mycroft   524: wskbd* at ukbd? console ?
1.253     reinoud   525: options         WSDISPLAY_COMPAT_RAWKBD
1.108     thorpej   526:
1.272     skrll     527: # USB serial adpater
                    528: ucycom*        at uhidev? reportid ?
                    529:
1.108     thorpej   530: # USB Generic HID devices
1.201     augustss  531: uhid*  at uhidev? reportid ?
1.108     thorpej   532:
1.127     augustss  533: # USB Printer
                    534: ulpt*  at uhub? port ? configuration ? interface ?
                    535:
                    536: # USB Modem
                    537: umodem*        at uhub? port ? configuration ?
1.142     augustss  538: ucom*  at umodem?
1.128     thorpej   539:
                    540: # USB Mass Storage
                    541: umass* at uhub? port ? configuration ? interface ?
1.234     bouyer    542: atapibus* at umass?
1.128     thorpej   543: scsibus* at umass? channel ?
1.138     augustss  544:
1.254     reinoud   545: # USB audio
                    546: uaudio*        at uhub? port ? configuration ?
                    547:
                    548: # USB MIDI
                    549: umidi* at uhub? port ? configuration ?
                    550:
                    551: # USB IrDA
                    552: # USB-IrDA bridge spec
                    553: uirda* at uhub? port ? configuration ? interface ?
                    554: irframe* at uirda?
                    555:
                    556: # SigmaTel STIr4200 USB/IrDA Bridge
                    557: ustir* at uhub? port ?
                    558: irframe* at ustir?
                    559:
1.138     augustss  560: # USB Ethernet adapters
                    561: aue*   at uhub? port ?         # ADMtek AN986 Pegasus based adapters
1.255     augustss  562: axe*   at uhub? port ?         # ASIX AX88172 based adapters
1.138     augustss  563: cue*   at uhub? port ?         # CATC USB-EL1201A based adapters
                    564: kue*   at uhub? port ?         # Kawasaki LSI KL5KUSB101B based adapters
1.224     augustss  565: url*   at uhub? port ?         # Realtek RTL8150L based adapters
1.232     itojun    566: udav*  at uhub? port ?         # Davicom DM9601 based adapters
1.178     nathanw   567:
                    568: # Serial adapters
                    569: # FTDI FT8U100AX serial adapter
                    570: uftdi* at uhub? port ?
                    571: ucom*  at uftdi? portno ?
1.169     augustss  572:
1.263     itohy     573: # Kyocera AIR-EDGE PHONE
                    574: #ukyopon* at uhub? port ?
                    575: #ucom* at ukyopon? portno ?
                    576:
1.169     augustss  577: # USB scanners
                    578: uscanner* at uhub? port ?
1.179     augustss  579:
                    580: # Y@P firmware loader
                    581: uyap* at uhub? port ?
1.219     fair      582:
                    583: # D-Link DSB-R100 USB FM radio tuner
                    584: udsbr* at uhub? port ?
                    585: radio* at udsbr?
1.127     augustss  586:
                    587: # USB Generic driver
                    588: ugen*  at uhub? port ?
1.11      cgd       589:
1.268     kiyohara  590: # PCI IEEE1394 controllers
                    591: #fwohci*       at pci? dev ? function ?        # IEEE1394 Open Host Controller
                    592:
                    593: #ieee1394if* at fwohci?
                    594: #fwip* at ieee1394if?                  # IP over IEEE1394
                    595: #sbp*  at ieee1394if? euihi ? euilo ?
                    596:
1.254     reinoud   597: # Audio support
                    598: audio* at audiobus?
                    599: midi*  at midibus?
                    600: midi*  at pcppi?
                    601:
1.11      cgd       602: # Workstation Console attachments
1.215     ad        603: wsdisplay*     at      cfb?
                    604: wsdisplay*     at      mfb?
                    605: wsdisplay*     at      tfb?
                    606: wsdisplay*     at      sfb?
                    607: #wsdisplay*    at      sfbp?
                    608: wsdisplay*     at      px?
                    609: wsdisplay*     at      pxg?
1.81      drochner  610: wsdisplay*     at      vga?
                    611: wsdisplay*     at      tga?
1.215     ad        612: wskbd*         at      lkkbd? console ?
                    613: wsmouse*       at      vsms?
1.133     mycroft   614: wskbd*         at      pckbd?
                    615: wsmouse*       at      pms?
1.1       cgd       616:
1.279     thorpej   617: pseudo-device  crypto                  # /dev/crypto device
1.280     thorpej   618: pseudo-device  swcrypto                # software crypto implementation
1.239     jonathan  619:
1.284     rpaulo    620: pseudo-device  bpfilter
1.288   ! liamjfoy  621: #pseudo-device carp                    # Common Address Redundancy Protocol
1.34      cgd       622: pseudo-device  ccd             4
1.217     elric     623: #pseudo-device cgd             4       # cryptographic disk devices
1.202     oster     624: pseudo-device  raid            8       # RAIDframe disk driver
                    625: options        RAID_AUTOCONFIG         # auto-configuration of RAID components
                    626: # Options to enable various other RAIDframe RAID types.
1.221     itohy     627: # options      RF_INCLUDE_EVENODD=1
                    628: # options      RF_INCLUDE_RAID5_RS=1
                    629: # options      RF_INCLUDE_PARITYLOGGING=1
                    630: # options      RF_INCLUDE_CHAINDECLUSTER=1
                    631: # options      RF_INCLUDE_INTERDECLUSTER=1
1.202     oster     632: # options      RF_INCLUDE_PARITY_DECLUSTERING=1
1.221     itohy     633: # options      RF_INCLUDE_PARITY_DECLUSTERING_DS=1
1.259     hannken   634: pseudo-device  fss             4       # file system snapshot device
1.67      cjs       635: pseudo-device  ipfilter        1
1.34      cgd       636: pseudo-device  loop            1
                    637: pseudo-device  md              1
1.285     cube      638: pseudo-device  ppp
1.200     martin    639: pseudo-device  pppoe                   # PPP over Ethernet (RFC 2516)
1.166     jdolecek  640: pseudo-device  pty                     # pseudo-terminals
1.285     cube      641: pseudo-device  sl
                    642: pseudo-device  vnd
1.269     hubertf   643: #options       VND_COMPRESSION         # compressed vnd(4)
1.285     cube      644: #pseudo-device gre                     # generic L3 over IP tunnel
                    645: pseudo-device  gif                     # IPv[46] over IPv[46] tunnel (RFC1933)
                    646: #pseudo-device faith                   # IPv[46] tcp relay translation i/f
1.286     pavel     647: pseudo-device  stf                     # 6to4 IPv6 over IPv4 encapsulation
1.175     bouyer    648: pseudo-device  vlan                    # IEEE 802.1q encapsulation
1.192     atatat    649: pseudo-device  bridge                  # simple inter-network bridging
1.226     perseant  650: #options       BRIDGE_IPF              # bridge uses IP/IPv6 pfil hooks too
1.139     mycroft   651: pseudo-device  sequencer       1       # MIDI sequencer
1.167     itojun    652: pseudo-device  rnd                     # /dev/random and in-kernel generator
1.69      explorer  653: #options       RND_COM                 # use "com" randomness too
1.209     lukem     654: pseudo-device  clockctl                # user control of clock subsystem
1.230     gmcgarry  655: pseudo-device  wsfont
1.253     reinoud   656: pseudo-device  wsmux                   # mouse and keyboad multiplexing
1.229     ragge     657: pseudo-device  ksyms                   # /dev/ksyms
1.244     itojun    658: #pseudo-device pf                      # PF packet filter
                    659: #pseudo-device pflog                   # PF log if
1.282     elad      660:
                    661: # Veriexec
                    662: #options VERIFIED_EXEC
                    663: #
                    664: # a pseudo device needed for veriexec
                    665: #pseudo-device veriexec                1
                    666: #
                    667: # Uncomment the fingerprint methods below that are desired. Note that
                    668: # removing fingerprint methods will have almost no impact on the kernel
                    669: # code size.
                    670: #
                    671: #options VERIFIED_EXEC_FP_RMD160
                    672: #options VERIFIED_EXEC_FP_SHA256
                    673: #options VERIFIED_EXEC_FP_SHA384
                    674: #options VERIFIED_EXEC_FP_SHA512
                    675: #options VERIFIED_EXEC_FP_SHA1
                    676: #options VERIFIED_EXEC_FP_MD5

CVSweb <webmaster@jp.NetBSD.org>