1# $NetBSD: GENERIC32_IP3x,v 1.24 2005/04/15 17:27:21 itohy Exp $ 2# 3# GENERIC32_IP3x 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. 8# 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. 20# 21# 22# Currently this config file supports O2 (IP32). 23# 24 25include "arch/sgimips/conf/std.sgimips" 26 27makeoptions TEXTADDR="0x80069000" # entry point 28 29options INCLUDE_CONFIG_FILE # embed config file in kernel binary 30 31#ident "GENERIC32_IP3x-$Revision: 1.24 $" 32 33maxusers 32 34 35# CPU related options 36options MIPS3 # MIPS3 support 37options ENABLE_MIPS4_CACHE_R10K # enable R10000 cache ops 38#options BLINK # blinkenlitzen 39 40# Standard system options 41#options INSECURE # disable kernel security levels 42 43#options NTP # NTP phase/frequence locked loop 44options KTRACE # system call tracing via ktrace(1) 45options SYSTRACE # system call vetting via systrace(1) 46 47options SYSVMSG # System V message queues 48options SYSVSEM # System V semaphores 49#options SEMMNI=10 # number of semaphore identifiers 50#options SEMMNS=60 # number of semaphores in system 51#options SEMUME=10 # max number of undo entries per process 52#options SEMMNU=30 # number of undo structures in system 53options SYSVSHM # System V shared memory 54#options SHMMAXPGS=1024 # 1024 pages is the default 55options P1003_1B_SEMAPHORE # p1003.1b semaphore support 56 57#options LKM # loadable kernel modules (XXX: working?) 58 59options USERCONF # userconf(4) support 60#options PIPE_SOCKETPAIR # smaller, but slower pipe(2) 61options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel 62 63# Enable experimental buffer queue strategy for better responsiveness under 64# high disk I/O load. Use it with caution - it's not proven to be stable yet. 65#options NEW_BUFQ_STRATEGY 66 67# Diagnostic/debugging support options 68#options DIAGNOSTIC # expensive kernel consistency checks 69#options DEBUG # expensive debugging checks/support 70#options KMEMSTATS # kernel memory statistics (vmstat -m) 71options DDB # in-kernel debugger 72options DDB_HISTORY_SIZE=512 # enable history editing in DDB 73#options KGDB # remote debugger 74#options KGDB_DEV=0x2301 # KGDB port - this is Serial(1) 75#options KGDB_DEVRATE=19200 # KGDB Baud Rate 76#makeoptions DEBUG="-g" # compile full symbol table 77 78# Compatibility options 79options COMPAT_15 # NetBSD 1.5 80options COMPAT_16 # NetBSD 1.6 81options COMPAT_20 # NetBSD 2.0 82#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 83 84options COMPAT_IRIX # binary compatibility with IRIX 85#options COMPAT_LINUX # binary compatibility with Linux 86#options COMPAT_ULTRIX # binary compatibility with Ultrix 87options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 88 89# File systems 90file-system FFS # UFS 91file-system EXT2FS # second extended file system (linux) 92file-system LFS # log-structured file system 93file-system MFS # memory file system 94file-system NFS # Network File System client 95file-system NTFS # Windows/NT file system (experimental) 96file-system CD9660 # ISO 9660 + Rock Ridge file system 97file-system MSDOSFS # MS-DOS file system 98file-system FDESC # /dev/fd 99file-system KERNFS # /kern 100file-system NULLFS # loopback file system 101file-system OVERLAY # overlay file system 102file-system PORTAL # portal filesystem (still experimental) 103file-system PROCFS # /proc 104file-system UMAPFS # NULLFS + uid and gid remapping 105file-system UNION # union file system 106file-system CODA # Coda File System; also needs vcoda (below) 107 108# File system options 109options QUOTA # UFS quotas 110#options FFS_EI # FFS Endian Independent support 111options SOFTDEP # FFS soft updates support. 112#options UFS_DIRHASH # UFS Large Directory Hashing - Experimental 113options NFSSERVER # Network File System server 114#options FFS_NO_SNAPSHOT # ffs snapshots 115#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and 116 # immutable) behave as system flags. 117 118# Networking options 119#options GATEWAY # packet forwarding 120options INET # IP + ICMP + TCP + UDP 121options INET6 # IPV6 122#options IPSEC # IP security 123#options IPSEC_ESP # IP security (encryption part; define w/IPSEC) 124#options IPSEC_DEBUG # debug for IP security 125#options MROUTING # IP multicast routing 126#options PIM # Protocol Independent Multicast 127options NS # XNS 128#options NSIP # XNS tunneling over IP 129options ISO,TPIP # OSI 130#options EON # OSI tunneling over IP 131options CCITT,LLC,HDLC # X.25 132options NETATALK # AppleTalk networking protocols 133options PPP_BSDCOMP # BSD-Compress compression support for PPP 134options PPP_DEFLATE # Deflate compression support for PPP 135options PPP_FILTER # Active filter support for PPP (requires bpf) 136options PFIL_HOOKS # pfil(9) packet filter hooks 137options IPFILTER_LOG # ipmon(8) log support 138#options IPFILTER_DEFAULT_BLOCK # block all packets by default 139#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 140 141#options ALTQ # Manipulate network interfaces' output queues 142#options ALTQ_BLUE # Stochastic Fair Blue 143#options ALTQ_CBQ # Class-Based Queueing 144#options ALTQ_CDNR # Diffserv Traffic Conditioner 145#options ALTQ_FIFOQ # First-In First-Out Queue 146#options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box) 147#options ALTQ_HFSC # Hierarchical Fair Service Curve 148#options ALTQ_LOCALQ # Local queueing discipline 149#options ALTQ_PRIQ # Priority Queueing 150#options ALTQ_RED # Random Early Detection 151#options ALTQ_RIO # RED with IN/OUT 152#options ALTQ_WFQ # Weighted Fair Queueing 153 154# These options enable verbose messages for several subsystems. 155# Warning, these may compile large string tables into the kernel! 156options MIIVERBOSE # verbose PHY autoconfig messages 157options PCIVERBOSE # verbose PCI device autoconfig messages 158#options PCI_CONFIG_DUMP # verbosely dump PCI config space 159options SCSIVERBOSE # human readable SCSI error messages 160 161options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM 162 163#options MEMORY_DISK_HOOKS 164#options MEMORY_DISK_IS_ROOT 165#options MEMORY_DISK_SERVER=0 166#options MINIROOTSIZE=8192 167 168#options SCSI_DELAY=5 169 170# Kernel root file system and dump configuration. 171config netbsd root on ? type ? 172 173# Main bus and CPU 174mainbus0 at root 175cpu0 at mainbus? 176 177# O2 busses 178crime0 at mainbus0 addr 0x14000000 179mace0 at mainbus0 addr 0x1f000000 180macepci0 at mace0 offset 0x080000 intr 7 181pci0 at macepci0 bus 0 182 183# MACE devices 184mec0 at mace0 offset 0x280000 intr 3 185pckbc0 at mace0 offset 0x320000 intr 5 186lpt0 at mace0 offset 0x380000 intr 4 intrmask 0x000f0000 187com0 at mace0 offset 0x390000 intr 4 intrmask 0x03f00000 188com1 at mace0 offset 0x398000 intr 4 intrmask 0xfc000000 189mcclock0 at mace0 offset 0x3a0000 190 191# PCI cryptographic devices 192hifn* at pci? dev ? function ? # Hifn 7755/7811/795x 193ubsec* at pci? dev ? function ? # Broadcom 5501/5601/580x/582x 194 195# PCI network devices 196#an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11) 197#bge* at pci? dev ? function ? # Broadcom 570x gigabit Ethernet 198#en* at pci? dev ? function ? # ENI/Adaptec ATM 199ep* at pci? dev ? function ? # 3Com 3c59x 200epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet 201esh* at pci? dev ? function ? # Essential HIPPI card 202ex* at pci? dev ? function ? # 3Com 90x[BC] 203fpa* at pci? dev ? function ? # DEC DEFPA FDDI 204fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B 205#gsip* at pci? dev ? function ? # NS83820 Gigabit Ethernet 206#hme* at pci? dev ? function ? # Sun Microelectronics STP2002-STQ 207le* at pci? dev ? function ? # PCnet-PCI Ethernet 208lmc* at pci? dev ? function ? # Lan Media Corp SSI/HSSI/DS3 209mtd* at pci? dev ? function ? # Myson MTD803 3-in-1 Ethernet 210ne* at pci? dev ? function ? # NE2000-compatible Ethernet 211ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial 212pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet 213rtk* at pci? dev ? function ? # Realtek 8129/8139 214sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet 215sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet 216#skc* at pci? dev ? function ? # SysKonnect SK9821 Gigabit Ethernet 217#sk* at skc? # SysKonnect SK9821 Gigabit Ethernet 218ste* at pci? dev ? function ? # Sundance ST-201 Ethernet 219#stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 Gigabit 220ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet 221tl* at pci? dev ? function ? # ThunderLAN-based Ethernet 222tlp* at pci? dev ? function ? # DECchip 21x4x and clones 223vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet 224wi* at pci? dev ? function ? # Intersil Prism Mini-PCI (802.11b) 225wm* at pci? dev ? function ? # Intel 82543/82544 gigabit 226 227# MII/PHY support 228acphy* at mii? phy ? # Altima AC101 and AMD Am79c874 PHYs 229amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs 230bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs 231brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs 232dmphy* at mii? phy ? # Davicom DM9101 PHYs 233exphy* at mii? phy ? # 3Com internal PHYs 234gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs 235glxtphy* at mii? phy ? # Level One LXT-1000 PHYs 236gphyter* at mii? phy ? # NS83861 Gig-E PHY 237icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x 238inphy* at mii? phy ? # Intel 82555 PHYs 239iophy* at mii? phy ? # Intel 82553 PHYs 240lxtphy* at mii? phy ? # Level One LXT-970 PHYs 241makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs 242nsphy* at mii? phy ? # NS83840 PHYs 243nsphyter* at mii? phy ? # NS83843 PHYs 244pnaphy* at mii? phy ? # generic HomePNA PHYs 245qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs 246sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs 247tlphy* at mii? phy ? # ThunderLAN PHYs 248tqphy* at mii? phy ? # TDK Semiconductor PHYs 249ukphy* at mii? phy ? # generic unknown PHYs 250urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs 251 252# O2 SCSI 253ahc* at pci? dev ? function ? 254scsibus* at scsi? 255 256sd* at scsibus? target ? lun ? # SCSI disks 257st* at scsibus? target ? lun ? # SCSI tapes 258cd* at scsibus? target ? lun ? # SCSI CD-ROMs 259ch* at scsibus? target ? lun ? # SCSI changer devices 260ss* at scsibus? target ? lun ? # SCSI scanners 261ses* at scsibus? target ? lun ? # SCSI SES/SAF-TE devices 262uk* at scsibus? target ? lun ? # unknown SCSI 263 264pckbd* at pckbc? 265pms* at pckbc? 266wskbd* at pckbd? console ? 267wsmouse* at pms? mux 0 268#wsdisplay* at foofb? console ? 269 270# USB Controller and Devices 271 272# PCI USB controllers 273ehci* at pci? dev ? function ? # Enhanced Host Controller 274ohci* at pci? dev ? function ? # Open Host Controller 275uhci* at pci? dev ? function ? # Universal Host Controller (Intel) 276 277# USB bus support 278usb* at ehci? 279usb* at ohci? 280usb* at uhci? 281 282# USB Hubs 283uhub* at usb? 284uhub* at uhub? port ? configuration ? interface ? 285 286# USB HID device 287uhidev* at uhub? port ? configuration ? interface ? 288 289# USB Mice 290ums* at uhidev? reportid ? 291wsmouse* at ums? mux 0 292 293# USB Keyboards 294ukbd* at uhidev? reportid ? 295wskbd* at ukbd? console ? mux 1 296 297# USB Generic HID devices 298uhid* at uhidev? reportid ? 299 300# USB Printer 301ulpt* at uhub? port ? configuration ? interface ? 302 303# USB Modem 304umodem* at uhub? port ? configuration ? 305ucom* at umodem? 306 307# USB Mass Storage 308umass* at uhub? port ? configuration ? interface ? 309#wd* at umass? 310 311# USB audio 312uaudio* at uhub? port ? configuration ? 313 314# USB MIDI 315umidi* at uhub? port ? configuration ? 316 317# USB IrDA 318# USB-IrDA bridge spec 319uirda* at uhub? port ? configuration ? interface ? 320irframe* at uirda? 321 322# SigmaTel STIr4200 USB/IrDA Bridge 323ustir* at uhub? port ? 324irframe* at ustir? 325 326# USB Ethernet adapters 327aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters 328axe* at uhub? port ? # ASIX AX88172 based adapters 329cue* at uhub? port ? # CATC USB-EL1201A based adapters 330kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters 331url* at uhub? port ? # Realtek RTL8150L based adapters 332udav* at uhub? port ? # Davicom DM9601 based adapters 333 334# Prolific PL2301/PL2302 host-to-host adapter 335upl* at uhub? port ? 336 337# Serial adapters 338ubsa* at uhub? port ? # Belkin serial adapter 339ucom* at ubsa? portno ? 340 341uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter 342ucom* at uftdi? portno ? 343 344umct* at uhub? port ? # MCT USB-RS232 serial adapter 345ucom* at umct? portno ? 346 347uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter 348ucom* at uplcom? portno ? 349 350uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter 351ucom* at uvscom? portno ? 352 353# Diamond Multimedia Rio 500 354urio* at uhub? port ? 355 356# USB Handspring Visor 357uvisor* at uhub? port ? 358ucom* at uvisor? 359 360# Kyocera AIR-EDGE PHONE 361ukyopon* at uhub? port ? 362ucom* at ukyopon? portno ? 363 364# USB scanners 365uscanner* at uhub? port ? 366 367# USB scanners that use SCSI emulation, e.g., HP5300 368usscanner* at uhub? port ? 369 370# Y@P firmware loader 371uyap* at uhub? port ? 372 373# D-Link DSB-R100 USB radio 374udsbr* at uhub? port ? 375radio* at udsbr? 376 377# USB Generic driver 378ugen* at uhub? port ? 379 380# Audio support 381audio* at audiobus? 382 383# MIDI support 384midi* at midibus? 385 386# Pseudo-Devices 387 388pseudo-device crypto # opencrypto framework 389 390# disk/mass storage pseudo-devices 391pseudo-device ccd 4 # concatenated/striped disk devices 392#pseudo-device cgd 4 # cryptographic disk devices 393#pseudo-device raid 4 # RAIDframe disk driver 394#options RAID_AUTOCONFIG # auto-configuration of RAID components 395pseudo-device fss 4 # file system snapshot device 396pseudo-device md 1 # memory disk device (ramdisk) 397pseudo-device vnd 4 # disk-like interface to files 398 399# network pseudo-devices 400pseudo-device bpfilter 8 # Berkeley packet filter 401pseudo-device ipfilter # IP filter (firewall) and NAT 402pseudo-device loop # network loopback 403pseudo-device ppp 2 # Point-to-Point Protocol 404pseudo-device sl 2 # Serial Line IP 405pseudo-device strip 2 # Starmode Radio IP (Metricom) 406pseudo-device tun 2 # network tunneling over tty 407pseudo-device tap # virtual Ethernet 408pseudo-device gre 2 # generic L3 over IP tunnel 409pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933) 410#pseudo-device faith 1 # IPv[46] tcp relay translation i/f 411#pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation 412pseudo-device vlan # IEEE 802.1q encapsulation 413pseudo-device bridge # simple inter-network bridging 414#options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too 415#pseudo-device pf # PF packet filter 416#pseudo-device pflog # PF log if 417 418# miscellaneous pseudo-devices 419pseudo-device pty # pseudo-terminals 420pseudo-device tb 1 # tablet line discipline 421pseudo-device sequencer 1 # MIDI sequencer 422pseudo-device rnd # /dev/random and in-kernel generator 423pseudo-device clockctl # user control of clock subsystem 424pseudo-device ksyms # /dev/ksyms 425#pseudo-device wsfont 426 427# a pseudo device needed for Coda # also needs CODA (above) 428pseudo-device vcoda 4 # coda minicache <-> venus comm. 429 430# pseudo devices used for IRIX binary compatibility 431pseudo-device irix_kmem # IRIX /dev/kmem 432pseudo-device irix_usema # IRIX /dev/usema 433