1# 2# NOTES -- Lines that can be cut/pasted into kernel and hints configs. 3# 4# This file contains machine dependent kernel configuration notes. For 5# machine independent notes, look in /sys/conf/NOTES. 6# 7# $FreeBSD$ 8# 9 10# 11# This directive is mandatory; it defines the architecture to be 12# configured for; in this case, the 386 family based IBM-PC and 13# compatibles. 14# 15machine i386 16 17# 18# We want LINT to cover profiling as well 19profile 2 20 21 22##################################################################### 23# SMP OPTIONS: 24# 25# APIC_IO enables the use of the IO APIC for Symmetric I/O. 26# 27# Notes: 28# 29# An SMP kernel will ONLY run on an Intel MP spec. qualified motherboard. 30# 31# Be sure to disable 'cpu I386_CPU' && 'cpu I486_CPU' for SMP kernels. 32# 33# Check the 'Rogue SMP hardware' section to see if additional options 34# are required by your hardware. 35# 36 37# Mandatory: 38options APIC_IO # Symmetric (APIC) I/O 39 40# 41# Rogue SMP hardware: 42# 43 44# Bridged PCI cards: 45# 46# The MP tables of most of the current generation MP motherboards 47# do NOT properly support bridged PCI cards. To use one of these 48# cards you should refer to ??? 49 50 51##################################################################### 52# CPU OPTIONS 53 54# 55# You must specify at least one CPU (the one you intend to run on); 56# deleting the specification for CPUs you don't need to use may make 57# parts of the system run faster. 58# I386_CPU is mutually exclusive with the other CPU types. 59# 60#cpu I386_CPU 61cpu I486_CPU 62cpu I586_CPU # aka Pentium(tm) 63cpu I686_CPU # aka Pentium Pro(tm) 64 65# 66# Options for CPU features. 67# 68# CPU_ATHLON_SSE_HACK tries to enable SSE instructions when the BIOS has 69# forgotten to enable them. 70# 71# CPU_BLUELIGHTNING_FPU_OP_CACHE enables FPU operand cache on IBM 72# BlueLightning CPU. It works only with Cyrix FPU, and this option 73# should not be used with Intel FPU. 74# 75# CPU_BLUELIGHTNING_3X enables triple-clock mode on IBM Blue Lightning 76# CPU if CPU supports it. The default is double-clock mode on 77# BlueLightning CPU box. 78# 79# CPU_BTB_EN enables branch target buffer on Cyrix 5x86 (NOTE 1). 80# 81# CPU_DIRECT_MAPPED_CACHE sets L1 cache of Cyrix 486DLC CPU in direct 82# mapped mode. Default is 2-way set associative mode. 83# 84# CPU_CYRIX_NO_LOCK enables weak locking for the entire address space 85# of Cyrix 6x86 and 6x86MX CPUs by setting the NO_LOCK bit of CCR1. 86# Otherwise, the NO_LOCK bit of CCR1 is cleared. (NOTE 3) 87# 88# CPU_DISABLE_5X86_LSSER disables load store serialize (i.e. enables 89# reorder). This option should not be used if you use memory mapped 90# I/O device(s). 91# 92# CPU_ELAN enables support for AMDs ElanSC520 CPU. 93# 94# CPU_ENABLE_SSE enables SSE/MMX2 instructions support. This is default 95# on I686_CPU and above. 96# CPU_DISABLE_SSE explicitly prevent I686_CPU from turning on SSE. 97# 98# CPU_FASTER_5X86_FPU enables faster FPU exception handler. 99# 100# CPU_I486_ON_386 enables CPU cache on i486 based CPU upgrade products 101# for i386 machines. 102# 103# CPU_IORT defines I/O clock delay time (NOTE 1). Default values of 104# I/O clock delay time on Cyrix 5x86 and 6x86 are 0 and 7,respectively 105# (no clock delay). 106# 107# CPU_L2_LATENCY specifed the L2 cache latency value. This option is used 108# only when CPU_PPRO2CELERON is defined and Mendocino Celeron is detected. 109# The default value is 5. 110# 111# CPU_LOOP_EN prevents flushing the prefetch buffer if the destination 112# of a jump is already present in the prefetch buffer on Cyrix 5x86(NOTE 113# 1). 114# 115# CPU_PPRO2CELERON enables L2 cache of Mendocino Celeron CPUs. This option 116# is useful when you use Socket 8 to Socket 370 converter, because most Pentium 117# Pro BIOSs do not enable L2 cache of Mendocino Celeron CPUs. 118# 119# CPU_RSTK_EN enables return stack on Cyrix 5x86 (NOTE 1). 120# 121# CPU_SUSP_HLT enables suspend on HALT. If this option is set, CPU 122# enters suspend mode following execution of HALT instruction. 123# 124# CPU_UPGRADE_HW_CACHE eliminates unneeded cache flush instruction(s). 125# 126# CPU_WT_ALLOC enables write allocation on Cyrix 6x86/6x86MX and AMD 127# K5/K6/K6-2 cpus. 128# 129# CYRIX_CACHE_WORKS enables CPU cache on Cyrix 486 CPUs with cache 130# flush at hold state. 131# 132# CYRIX_CACHE_REALLY_WORKS enables (1) CPU cache on Cyrix 486 CPUs 133# without cache flush at hold state, and (2) write-back CPU cache on 134# Cyrix 6x86 whose revision < 2.7 (NOTE 2). 135# 136# NO_F00F_HACK disables the hack that prevents Pentiums (and ONLY 137# Pentiums) from locking up when a LOCK CMPXCHG8B instruction is 138# executed. This option is only needed if I586_CPU is also defined, 139# and should be included for any non-Pentium CPU that defines it. 140# 141# NO_MEMORY_HOLE is an optimisation for systems with AMD K6 processors 142# which indicates that the 15-16MB range is *definitely* not being 143# occupied by an ISA memory hole. 144# 145# NOTE 1: The options, CPU_BTB_EN, CPU_LOOP_EN, CPU_IORT, 146# CPU_LOOP_EN and CPU_RSTK_EN should not be used because of CPU bugs. 147# These options may crash your system. 148# 149# NOTE 2: If CYRIX_CACHE_REALLY_WORKS is not set, CPU cache is enabled 150# in write-through mode when revision < 2.7. If revision of Cyrix 151# 6x86 >= 2.7, CPU cache is always enabled in write-back mode. 152# 153# NOTE 3: This option may cause failures for software that requires 154# locked cycles in order to operate correctly. 155# 156options CPU_ATHLON_SSE_HACK 157options CPU_BLUELIGHTNING_FPU_OP_CACHE 158options CPU_BLUELIGHTNING_3X 159options CPU_BTB_EN 160options CPU_DIRECT_MAPPED_CACHE 161options CPU_DISABLE_5X86_LSSER 162options CPU_ELAN 163options CPU_ENABLE_SSE 164#options CPU_DISABLE_SSE 165options CPU_FASTER_5X86_FPU 166options CPU_I486_ON_386 167options CPU_IORT 168options CPU_L2_LATENCY=5 169options CPU_LOOP_EN 170options CPU_PPRO2CELERON 171options CPU_RSTK_EN 172options CPU_SUSP_HLT 173options CPU_UPGRADE_HW_CACHE 174options CPU_WT_ALLOC 175options CYRIX_CACHE_WORKS 176options CYRIX_CACHE_REALLY_WORKS 177#options NO_F00F_HACK 178 179# 180# A math emulator is mandatory if you wish to run on hardware which 181# does not have a floating-point processor. Pick either the original, 182# bogus (but freely-distributable) math emulator, or a much more 183# fully-featured but GPL-licensed emulator taken from Linux. 184# 185options MATH_EMULATE #Support for x87 emulation 186# Don't enable both of these in a real config. 187options GPL_MATH_EMULATE #Support for x87 emulation via 188 #new math emulator 189 190# 191# PERFMON causes the driver for Pentium/Pentium Pro performance counters 192# to be compiled. See perfmon(4) for more information. 193# 194options PERFMON 195 196 197##################################################################### 198# NETWORKING OPTIONS 199 200# 201# DEVICE_POLLING adds support for mixed interrupt-polling handling 202# of network device drivers, which has significant benefits in terms 203# of robustness to overloads and responsivity, as well as permitting 204# accurate scheduling of the CPU time between kernel network processing 205# and other activities. The drawback is a moderate (up to 1/HZ seconds) 206# potential increase in response times. 207# It is strongly recommended to use HZ=1000 or 2000 with DEVICE_POLLING 208# to achieve smoother behaviour. 209# Additionally, you can enable/disable polling at runtime with the 210# sysctl variable kern.polling.enable (defaults off), and select 211# the CPU fraction reserved to userland with the sysctl variable 212# kern.polling.user_frac (default 50, range 0..100). 213# 214# Only the "dc" "fxp" and "sis" devices support this mode of operation at 215# the time of this writing. 216 217options DEVICE_POLLING 218 219 220##################################################################### 221# CLOCK OPTIONS 222 223# The following options are used for debugging clock behavior only, and 224# should not be used for production systems. 225# 226# CLK_CALIBRATION_LOOP will run the clock calibration loop at startup 227# until the user presses a key. 228 229options CLK_CALIBRATION_LOOP 230 231# The following two options measure the frequency of the corresponding 232# clock relative to the RTC (onboard mc146818a). 233 234options CLK_USE_I8254_CALIBRATION 235options CLK_USE_TSC_CALIBRATION 236 237 238##################################################################### 239# MISCELLANEOUS DEVICES AND OPTIONS 240 241device speaker #Play IBM BASIC-style noises out your speaker 242device gzip #Exec gzipped a.out's. REQUIRES COMPAT_AOUT! 243device apm_saver # Requires APM 244 245 246##################################################################### 247# HARDWARE BUS CONFIGURATION 248 249# 250# ISA bus 251# 252device isa 253 254# 255# Options for `isa': 256# 257# AUTO_EOI_1 enables the `automatic EOI' feature for the master 8259A 258# interrupt controller. This saves about 0.7-1.25 usec for each interrupt. 259# This option breaks suspend/resume on some portables. 260# 261# AUTO_EOI_2 enables the `automatic EOI' feature for the slave 8259A 262# interrupt controller. This saves about 0.7-1.25 usec for each interrupt. 263# Automatic EOI is documented not to work for for the slave with the 264# original i8259A, but it works for some clones and some integrated 265# versions. 266# 267# MAXMEM specifies the amount of RAM on the machine; if this is not 268# specified, FreeBSD will first read the amount of memory from the CMOS 269# RAM, so the amount of memory will initially be limited to 64MB or 16MB 270# depending on the BIOS. If the BIOS reports 64MB, a memory probe will 271# then attempt to detect the installed amount of RAM. If this probe 272# fails to detect >64MB RAM you will have to use the MAXMEM option. 273# The amount is in kilobytes, so for a machine with 128MB of RAM, it would 274# be 131072 (128 * 1024). 275# 276# BROKEN_KEYBOARD_RESET disables the use of the keyboard controller to 277# reset the CPU for reboot. This is needed on some systems with broken 278# keyboard controllers. 279 280options COMPAT_OLDISA #Use ISA shims and glue for old drivers 281options AUTO_EOI_1 282#options AUTO_EOI_2 283 284options MAXMEM="(128*1024)" 285#options BROKEN_KEYBOARD_RESET 286 287# 288# EISA bus 289# 290# The EISA bus device is `eisa'. It provides auto-detection and 291# configuration support for all devices on the EISA bus. 292 293device eisa 294 295# By default, only 10 EISA slots are probed, since the slot numbers 296# above clash with the configuration address space of the PCI subsystem, 297# and the EISA probe is not very smart about this. This is sufficient 298# for most machines, but in particular the HP NetServer LC series comes 299# with an onboard AIC7770 dual-channel SCSI controller on EISA slot #11, 300# thus you need to bump this figure to 12 for them. 301options EISA_SLOTS=12 302 303# 304# MCA bus: 305# 306# The MCA bus device is `mca'. It provides auto-detection and 307# configuration support for all devices on the MCA bus. 308# No hints are required for MCA. 309 310device mca 311 312# 313# PCI bus & PCI options: 314# 315device pci 316 317# 318# AGP GART support 319device agp 320 321 322##################################################################### 323# HARDWARE DEVICE CONFIGURATION 324 325# 326# Mandatory devices: 327# 328 329# To include support for VGA VESA video modes 330options VESA 331 332# Turn on extra debugging checks and output for VESA support. 333options VESA_DEBUG 334 335# The pcvt console driver (vt220 compatible). 336device vt 337hint.vt.0.at="isa" 338options XSERVER # support for running an X server on vt 339options FAT_CURSOR # start with block cursor 340# This PCVT option is for keyboards such as those used on really old ThinkPads 341options PCVT_SCANSET=2 342# Other PCVT options are documented in pcvt(4). 343options PCVT_24LINESDEF 344options PCVT_CTRL_ALT_DEL 345options PCVT_META_ESC 346options PCVT_NSCREENS=9 347options PCVT_PRETTYSCRNS 348options PCVT_SCREENSAVER 349options PCVT_USEKBDSEC 350options PCVT_VT220KEYB 351options PCVT_GREENSAVER 352 353# 354# The Numeric Processing eXtension driver. In addition to this, you 355# may configure a math emulator (see above). If your machine has a 356# hardware FPU and the kernel configuration includes the npx device 357# *and* a math emulator compiled into the kernel, the hardware FPU 358# will be used, unless it is found to be broken or unless "flags" to 359# npx0 includes "0x08", which requests preference for the emulator. 360device npx 361hint.npx.0.at="nexus" 362hint.npx.0.port="0x0F0" 363hint.npx.0.flags="0x0" 364hint.npx.0.irq="13" 365 366# 367# `flags' for npx0: 368# 0x01 don't use the npx registers to optimize bcopy. 369# 0x02 don't use the npx registers to optimize bzero. 370# 0x04 don't use the npx registers to optimize copyin or copyout. 371# 0x08 use emulator even if hardware FPU is available. 372# The npx registers are normally used to optimize copying and zeroing when 373# all of the following conditions are satisfied: 374# I586_CPU is an option 375# the cpu is an i586 (perhaps not a Pentium) 376# the probe for npx0 succeeds 377# INT 16 exception handling works. 378# Then copying and zeroing using the npx registers is normally 30-100% faster. 379# The flags can be used to control cases where it doesn't work or is slower. 380# Setting them at boot time using userconfig works right (the optimizations 381# are not used until later in the bootstrap when npx0 is attached). 382# Flag 0x08 automatically disables the i586 optimized routines. 383# 384 385# 386# Optional devices: 387# 388 389# 390# ACPI support using the Intel ACPI Component Architecture reference 391# implementation. 392# 393# ACPI_DEBUG enables the use of the debug.acpi.level and debug.acpi.layer 394# kernel environment variables to select initial debugging levels for the 395# Intel ACPICA code. (Note that the Intel code must also have USE_DEBUGGER 396# defined when it is built). 397# 398# Note that building ACPI into the kernel is deprecated; the module is 399# normally loaded automatically by the loader. 400# 401device acpica 402options ACPI_DEBUG 403 404# M-systems DiskOnchip products see src/sys/contrib/dev/fla/README 405device fla 406hint.fla.0.at="isa" 407 408# 409# mse: Logitech and ATI InPort bus mouse ports 410 411device mse 412hint.mse.0.at="isa" 413hint.mse.0.port="0x23c" 414hint.mse.0.irq="5" 415 416# 417# Network interfaces: 418# 419 420# cx: Cronyx/Sigma multiport sync/async (with Cisco or PPP framing) 421# el: 3Com 3C501 (slow!) 422# ie: AT&T StarLAN 10 and EN100; 3Com 3C507; unknown NI5210; 423# Intel EtherExpress 424# le: Digital Equipment EtherWorks 2 and EtherWorks 3 (DEPCA, DE100, 425# DE101, DE200, DE201, DE202, DE203, DE204, DE205, DE422) 426# oltr: Olicom ISA token-ring adapters OC-3115, OC-3117, OC-3118 and OC-3133 427# (no hints needed). 428# Olicom PCI token-ring adapters OC-3136, OC-3137, OC-3139, OC-3140, 429# OC-3141, OC-3540, OC-3250 430# rdp: RealTek RTL 8002-based pocket ethernet adapters 431# sbni: Granch SBNI12-xx ISA and PCI adapters 432# wl: Lucent Wavelan (ISA card only). 433 434# Order for ISA/EISA devices is important here 435 436device cx 1 437hint.cx.0.at="isa" 438hint.cx.0.port="0x240" 439hint.cx.0.irq="15" 440hint.cx.0.drq="7" 441device el 1 442hint.el.0.at="isa" 443hint.el.0.port="0x300" 444hint.el.0.irq="9" 445device ie 2 446hint.ie.0.at="isa" 447hint.ie.0.port="0x300" 448hint.ie.0.irq="5" 449hint.ie.0.maddr="0xd0000" 450hint.ie.1.at="isa" 451hint.ie.1.port="0x360" 452hint.ie.1.irq="7" 453hint.ie.1.maddr="0xd0000" 454device le 1 455hint.le.0.at="isa" 456hint.le.0.port="0x300" 457hint.le.0.irq="5" 458hint.le.0.maddr="0xd0000" 459device rdp 1 460hint.rdp.0.at="isa" 461hint.rdp.0.port="0x378" 462hint.rdp.0.irq="7" 463hint.rdp.0.flags="2" 464device sbni 465hint.sbni.0.at="isa" 466hint.sbni.0.port="0x210" 467hint.sbni.0.irq="0xefdead" 468hint.sbni.0.flags="0" 469device oltr 470hint.oltr.0.at="isa" 471device wl 472hint.wl.0.at="isa" 473hint.wl.0.port="0x300" 474options WLCACHE # enables the signal-strength cache 475options WLDEBUG # enables verbose debugging output 476 477# 478# Audio drivers: `pca' 479# 480# pca: PCM audio through your PC speaker 481 482device pca 483hint.pca.0.at="isa" 484hint.pca.0.port="0x040" 485 486# 487# SCSI host adapters: 488# 489# ncv: NCR 53C500 based SCSI host adapters. 490# nsp: Workbit Ninja SCSI-3 based PC Card SCSI host adapters. 491# stg: TMC 18C30, 18C50 based SCSI host adapters. 492 493device ncv 494device nsp 495device stg 496hint.stg.0.at="isa" 497hint.stg.0.port="0x140" 498hint.stg.0.port="11" 499 500# 501# Adaptec FSA RAID controllers, including integrated DELL controllers, 502# the Dell PERC 2/QC and the HP NetRAID-4M 503device aac 504device aacp # SCSI Passthrough interface (optional, CAM required) 505 506# 507# Miscellaneous hardware: 508# 509# mcd: Mitsumi CD-ROM using proprietary (non-ATAPI) interface 510# scd: Sony CD-ROM using proprietary (non-ATAPI) interface 511# matcd: Matsushita/Panasonic CD-ROM using proprietary (non-ATAPI) interface 512# wt: Wangtek and Archive QIC-02/QIC-36 tape drives 513# ctx: Cortex-I frame grabber 514# apm: Laptop Advanced Power Management (experimental) 515# pmtimer: Timer device driver for power management events (APM or ACPI) 516# spigot: The Creative Labs Video Spigot video-acquisition board 517# gp: National Instruments AT-GPIB and AT-GPIB/TNT board, PCMCIA-GPIB 518# asc: GI1904-based hand scanners, e.g. the Trust Amiscan Grey 519# gsc: Genius GS-4500 hand scanner. 520# rc: RISCom/8 multiport card 521# tw: TW-523 power line interface for use with X-10 home control products 522# spic: Sony Programmable I/O controller (VAIO notebooks) 523# stl: Stallion EasyIO and EasyConnection 8/32 (cd1400 based) 524# stli: Stallion EasyConnection 8/64, ONboard, Brumby (intelligent) 525# dgb: Digiboard PC/Xi and PC/Xe series driver (ALPHA QUALITY!) 526 527# Notes on APM 528# The flags takes the following meaning for apm0: 529# 0x0020 Statclock is broken. 530# If apm is omitted, some systems require sysctl kern.timecounter.method=1 531# for correct timekeeping. 532 533# Notes on the spigot: 534# The video spigot is at 0xad6. This port address can not be changed. 535# The irq values may only be 10, 11, or 15 536# I/O memory is an 8kb region. Possible values are: 537# 0a0000, 0a2000, ..., 0fffff, f00000, f02000, ..., ffffff 538# The start address must be on an even boundary. 539# Add the following option if you want to allow non-root users to be able 540# to access the spigot. This option is not secure because it allows users 541# direct access to the I/O page. 542# options SPIGOT_UNSECURE 543 544# Notes on the Specialix SI/XIO driver: 545# The host card is memory, not IO mapped. 546# The Rev 1 host cards use a 64K chunk, on a 32K boundary. 547# The Rev 2 host cards use a 32K chunk, on a 32K boundary. 548# The cards can use an IRQ of 11, 12 or 15. 549 550# Notes on the Sony Programmable I/O controller 551# This is a temporary driver that should someday be replaced by something 552# that hooks into the ACPI layer. The device is hooked to the PIIX4's 553# General Device 10 decoder, which means you have to fiddle with PCI 554# registers to map it in, even though it is otherwise treated here as 555# an ISA device. At the moment, the driver polls, although the device 556# is capable of generating interrupts. It largely undocumented. 557# The port location in the hint is where you WANT the device to be 558# mapped. 0x10a0 seems to be traditional. At the moment the jogdial 559# is the only thing truly supported, but aparently a fair percentage 560# of the Vaio extra features are controlled by this device. 561 562# Notes on the Stallion stl and stli drivers: 563# See src/i386/isa/README.stl for complete instructions. 564# This is version 0.0.5alpha, unsupported by Stallion. 565# The stl driver has a secondary IO port hard coded at 0x280. You need 566# to change src/i386/isa/stallion.c if you reconfigure this on the boards. 567# The "flags" and "msize" settings on the stli driver depend on the board: 568# EasyConnection 8/64 ISA: flags 23 msize 0x1000 569# EasyConnection 8/64 EISA: flags 24 msize 0x10000 570# EasyConnection 8/64 MCA: flags 25 msize 0x1000 571# ONboard ISA: flags 4 msize 0x10000 572# ONboard EISA: flags 7 msize 0x10000 573# ONboard MCA: flags 3 msize 0x10000 574# Brumby: flags 2 msize 0x4000 575# Stallion: flags 1 msize 0x10000 576 577# Notes on the Digiboard PC/Xi and PC/Xe series driver 578# 579# The NDGBPORTS option specifies the number of ports controlled by the 580# dgb(4) driver. The default value is 16 ports per device. 581 582device mcd 1 583hint.mcd.0.at="isa" 584hint.mcd.0.port="0x300" 585hint.mcd.0.irq="10" 586# for the Sony CDU31/33A CDROM 587device scd 1 588hint.scd.0.at="isa" 589hint.scd.0.port="0x230" 590# for the SoundBlaster 16 multicd - up to 4 devices 591device matcd 1 592hint.matcd.0.at="isa" 593hint.matcd.0.port="0x230" 594device wt 1 595hint.wt.0.at="isa" 596hint.wt.0.port="0x300" 597hint.wt.0.irq="5" 598hint.wt.0.drq="1" 599device ctx 1 600hint.ctx.0.at="isa" 601hint.ctx.0.port="0x230" 602hint.ctx.0.maddr="0xd0000" 603device spigot 1 604hint.spigot.0.at="isa" 605hint.spigot.0.port="0xad6" 606hint.spigot.0.irq="15" 607hint.spigot.0.maddr="0xee000" 608device apm 609hint.apm.0.flags="0x20" 610device pmtimer # Adjust system timer at wakeup time 611hint.pmtimer.0.at="isa" 612device gp 613hint.gp.0.at="isa" 614hint.gp.0.port="0x2c0" 615device gsc 1 616hint.gsc.0.at="isa" 617hint.gsc.0.port="0x270" 618hint.gsc.0.drq="3" 619device rc 1 620hint.rc.0.at="isa" 621hint.rc.0.port="0x220" 622hint.rc.0.irq="12" 623# the port and irq for tw0 are fictitious 624device tw 1 625hint.tw.0.at="isa" 626hint.tw.0.port="0x380" 627hint.tw.0.irq="11" 628device asc 1 629hint.asc.0.at="isa" 630hint.asc.0.port="0x3EB" 631hint.asc.0.drq="3" 632hint.asc.0.irq="10" 633device spic 634hint.spic.0.at="isa" 635hint.spic.0.port="0x10a0" 636device stl 637hint.stl.0.at="isa" 638hint.stl.0.port="0x2a0" 639hint.stl.0.irq="10" 640device stli 641hint.stli.0.at="isa" 642hint.stli.0.port="0x2a0" 643hint.stli.0.maddr="0xcc000" 644hint.stli.0.flags="23" 645hint.stli.0.msize="0x1000" 646device dgb 1 647options NDGBPORTS=17 648hint.dgb.0.at="isa" 649hint.dgb.0.port="0x220" 650hint.dgb.0.maddr="0xfc000" 651# You are unlikely to have the hardware for loran <phk@FreeBSD.org> 652device loran 653hint.loran.0.at="isa" 654hint.loran.0.irq="5" 655 656# 657# Laptop/Notebook options: 658# 659# See also: 660# apm under `Miscellaneous hardware' 661# above. 662 663# For older notebooks that signal a powerfail condition (external 664# power supply dropped, or battery state low) by issuing an NMI: 665 666options POWERFAIL_NMI # make it beep instead of panicing 667 668# 669# I2C Bus 670# 671# Philips i2c bus support is provided by the `iicbus' device. 672# 673# Supported interfaces: 674# pcf Philips PCF8584 ISA-bus controller 675# 676device pcf 677hint.pcf.0.at="isa" 678hint.pcf.0.port="0x320" 679hint.pcf.0.irq="5" 680 681#--------------------------------------------------------------------------- 682# ISDN4BSD 683# 684# See /usr/share/examples/isdn/ROADMAP for an introduction to isdn4bsd. 685# 686# i4b passive ISDN cards support contains the following hardware drivers: 687# 688# isic - Siemens/Infineon ISDN ISAC/HSCX/IPAC chipset driver 689# iwic - Winbond W6692 PCI bus ISDN S/T interface controller 690# ifpi - AVM Fritz!Card PCI driver 691# ifpi2 - AVM Fritz!Card PCI version 2 driver 692# ihfc - Cologne Chip HFC ISA/ISA-PnP chipset driver 693# ifpnp - AVM Fritz!Card PnP driver 694# itjc - Siemens ISAC / TJNet Tiger300/320 chipset 695# 696# i4b active ISDN cards support contains the following hardware drivers: 697# 698# iavc - AVM B1 PCI, AVM B1 ISA, AVM T1 699# 700# Note that the ``options'' (if given) and ``device'' lines must BOTH 701# be uncommented to enable support for a given card ! 702# 703# In addition to a hardware driver (and probably an option) the mandatory 704# ISDN protocol stack devices and the mandatory support device must be 705# enabled as well as one or more devices from the optional devices section. 706# 707#--------------------------------------------------------------------------- 708# isic driver (Siemens/Infineon chipsets) 709# 710device isic 711# 712# ISA bus non-PnP Cards: 713# ---------------------- 714# 715# Teles S0/8 or Niccy 1008 716options TEL_S0_8 717hint.isic.0.at="isa" 718hint.isic.0.maddr="0xd0000" 719hint.isic.0.irq="5" 720hint.isic.0.flags="1" 721# 722# Teles S0/16 or Creatix ISDN-S0 or Niccy 1016 723options TEL_S0_16 724hint.isic.0.at="isa" 725hint.isic.0.port="0xd80" 726hint.isic.0.maddr="0xd0000" 727hint.isic.0.irq="5" 728hint.isic.0.flags="2" 729# 730# Teles S0/16.3 731options TEL_S0_16_3 732hint.isic.0.at="isa" 733hint.isic.0.port="0xd80" 734hint.isic.0.irq="5" 735hint.isic.0.flags="3" 736# 737# AVM A1 or AVM Fritz!Card 738options AVM_A1 739hint.isic.0.at="isa" 740hint.isic.0.port="0x340" 741hint.isic.0.irq="5" 742hint.isic.0.flags="4" 743# 744# USRobotics Sportster ISDN TA intern 745options USR_STI 746hint.isic.0.at="isa" 747hint.isic.0.port="0x268" 748hint.isic.0.irq="5" 749hint.isic.0.flags="7" 750# 751# ITK ix1 Micro ( < V.3, non-PnP version ) 752options ITKIX1 753hint.isic.0.at="isa" 754hint.isic.0.port="0x398" 755hint.isic.0.irq="10" 756hint.isic.0.flags="18" 757# 758# ELSA PCC-16 759options ELSA_PCC16 760hint.isic.0.at="isa" 761hint.isic.0.port="0x360" 762hint.isic.0.irq="10" 763hint.isic.0.flags="20" 764# 765# ISA bus PnP Cards: 766# ------------------ 767# 768# Teles S0/16.3 PnP 769options TEL_S0_16_3_P 770# 771# Creatix ISDN-S0 P&P 772options CRTX_S0_P 773# 774# Dr. Neuhaus Niccy Go@ 775options DRN_NGO 776# 777# Sedlbauer Win Speed 778options SEDLBAUER 779# 780# Dynalink IS64PH 781options DYNALINK 782# 783# ELSA QuickStep 1000pro ISA 784options ELSA_QS1ISA 785# 786# Siemens I-Surf 2.0 787options SIEMENS_ISURF2 788# 789# Asuscom ISDNlink 128K ISA 790options ASUSCOM_IPAC 791# 792# Eicon Diehl DIVA 2.0 and 2.02 793options EICON_DIVA 794# 795# Compaq Microcom 610 ISDN card (Compaq series PSB2222I) 796options COMPAQ_M610 797# 798# PCI bus Cards: 799# -------------- 800# 801# Cyclades Cyclom-Y PCI serial driver 802device cy 1 803options CY_PCI_FASTINTR # Use with cy_pci unless irq is shared 804hint.cy.0.at="isa" 805hint.cy.0.irq="10" 806hint.cy.0.maddr="0xd4000" 807hint.cy.0.msize="0x2000" 808# 809#--------------------------------------------------------------------------- 810# ELSA MicroLink ISDN/PCI (same as ELSA QuickStep 1000pro PCI) 811options ELSA_QS1PCI 812# 813# 814#--------------------------------------------------------------------------- 815# ifpnp driver for AVM Fritz!Card PnP 816# 817# AVM Fritz!Card PnP 818device ifpnp 819# 820#--------------------------------------------------------------------------- 821# ihfc driver for Cologne Chip ISA chipsets (experimental!) 822# 823# Teles 16.3c ISA PnP 824# AcerISDN P10 ISA PnP 825# TELEINT ISDN SPEED No.1 826device ihfc 827# 828#--------------------------------------------------------------------------- 829# ifpi driver for AVM Fritz!Card PCI 830# 831# AVM Fritz!Card PCI 832device ifpi 833# 834#--------------------------------------------------------------------------- 835# ifpi2 driver for AVM Fritz!Card PCI version 2 836# 837# AVM Fritz!Card PCI version 2 838device "ifpi2" 839# 840#--------------------------------------------------------------------------- 841# iwic driver for Winbond W6692 chipset 842# 843# ASUSCOM P-IN100-ST-D (and other Winbond W6692 based cards) 844device iwic 845# 846#--------------------------------------------------------------------------- 847# itjc driver for Simens ISAC / TJNet Tiger300/320 chipset 848# 849# Traverse Technologies NETjet-S 850# Teles PCI-TJ 851device itjc 852# 853#--------------------------------------------------------------------------- 854# iavc driver (AVM active cards, needs i4bcapi driver!) 855# 856device iavc 857# 858# AVM B1 ISA bus (PnP mode not supported!) 859# ---------------------------------------- 860hint.iavc.0.at="isa" 861hint.iavc.0.port="0x150" 862hint.iavc.0.irq="5" 863# 864#--------------------------------------------------------------------------- 865# ISDN Protocol Stack - mandatory for all hardware drivers 866# 867# Q.921 / layer 2 - i4b passive cards D channel handling 868device "i4bq921" 869# 870# Q.931 / layer 3 - i4b passive cards D channel handling 871device "i4bq931" 872# 873# layer 4 - i4b common passive and active card handling 874device "i4b" 875# 876#--------------------------------------------------------------------------- 877# ISDN devices - mandatory for all hardware drivers 878# 879# userland driver to do ISDN tracing (for passive cards only) 880device "i4btrc" 4 881# 882# userland driver to control the whole thing 883device "i4bctl" 884# 885#--------------------------------------------------------------------------- 886# ISDN devices - optional 887# 888# userland driver for access to raw B channel 889device "i4brbch" 4 890# 891# userland driver for telephony 892device "i4btel" 2 893# 894# network driver for IP over raw HDLC ISDN 895device "i4bipr" 4 896# enable VJ header compression detection for ipr i/f 897options IPR_VJ 898# enable logging of the first n IP packets to isdnd (n=32 here) 899options IPR_LOG=32 900# 901# network driver for sync PPP over ISDN; requires an equivalent 902# number of sppp device to be configured 903device "i4bisppp" 4 904# 905# B-channel interface to the netgraph subsystem 906device "i4bing" 2 907# 908# CAPI driver needed for active ISDN cards (see iavc driver above) 909device "i4bcapi" 910# 911#--------------------------------------------------------------------------- 912 913# 914# Set the number of PV entries per process. Increasing this can 915# stop panics related to heavy use of shared memory. However, that can 916# (combined with large amounts of physical memory) cause panics at 917# boot time due the kernel running out of VM space. 918# 919# If you're tweaking this, you might also want to increase the sysctls 920# "vm.v_free_min", "vm.v_free_reserved", and "vm.v_free_target". 921# 922# The value below is the one more than the default. 923# 924options PMAP_SHPGPERPROC=201 925 926# 927# Change the size of the kernel virtual address space. Due to 928# constraints in loader(8) on i386, this must be a multiple of 4. 929# 256 = 1 GB of kernel address space. Increasing this also causes 930# a reduction of the address space in user processes. 512 splits 931# the 4GB cpu address space in half (2GB user, 2GB kernel). 932# 933options KVA_PAGES=260 934 935 936##################################################################### 937# ABI Emulation 938 939# Enable iBCS2 runtime support for SCO and ISC binaries 940options IBCS2 941 942# Emulate spx device for client side of SVR3 local X interface 943options SPX_HACK 944 945# Enable Linux ABI emulation 946options COMPAT_LINUX 947 948# Enable i386 a.out binary support 949options COMPAT_AOUT 950 951# Enable the linux-like proc filesystem support (requires COMPAT_LINUX 952# and PSEUDOFS) 953options LINPROCFS 954 955# 956# SysVR4 ABI emulation 957# 958# The svr4 ABI emulator can be statically compiled into the kernel or loaded as 959# a KLD module. 960# The STREAMS network emulation code can also be compiled statically or as a 961# module. If loaded as a module, it must be loaded before the svr4 module 962# (the /usr/sbin/svr4 script does this for you). If compiling statically, 963# the `streams' device must be configured into any kernel which also 964# specifies COMPAT_SVR4. It is possible to have a statically-configured 965# STREAMS device and a dynamically loadable svr4 emulator; the /usr/sbin/svr4 966# script understands that it doesn't need to load the `streams' module under 967# those circumstances. 968# Caveat: At this time, `options KTRACE' is required for the svr4 emulator 969# (whether static or dynamic). 970# 971options COMPAT_SVR4 # build emulator statically 972options DEBUG_SVR4 # enable verbose debugging 973device streams # STREAMS network driver (required for svr4). 974 975 976##################################################################### 977# VM OPTIONS 978 979# Disable the 4 MByte page PSE CPU feature. The PSE feature allows the 980# kernel to use a 4 MByte pages to map the kernel instead of 4k pages. 981# This saves on the amount of memory needed for page tables needed to 982# map the kernel. You should only disable this feature as a temporary 983# workaround if you are having problems with it enabled. 984# 985#options DISABLE_PSE 986 987# Disable the global pages PGE CPU feature. The PGE feature allows pages 988# to be marked with the PG_G bit. TLB entries for these pages are not 989# flushed from the cache when %cr3 is reloaded. This can make context 990# switches less expensive. You should only disable this feature as a 991# temporary workaround if you are having problems with it enabled. 992# 993#options DISABLE_PG_G 994 995# KSTACK_PAGES is the number of memory pages to assign to the kernel 996# stack of each thread. 997 998options KSTACK_PAGES=3 999 1000##################################################################### 1001 1002# More undocumented options for linting. 1003# Note that documenting these are not considered an affront. 1004 1005# PECOFF module (Win32 Execution Format) 1006options PECOFF_SUPPORT 1007options PECOFF_DEBUG 1008 1009options ENABLE_ALART 1010options I4B_SMP_WORKAROUND 1011options I586_PMC_GUPROF=0x70000 1012options KBDIO_DEBUG=2 1013options KBD_MAXRETRY=4 1014options KBD_MAXWAIT=6 1015options KBD_RESETDELAY=201 1016 1017options PSM_DEBUG=1 1018 1019options TIMER_FREQ="((14318182+6)/12)" 1020 1021options VM_KMEM_SIZE 1022options VM_KMEM_SIZE_MAX 1023options VM_KMEM_SIZE_SCALE 1024 1025# Yet more undocumented options for linting. 1026options COMPAT_SUNOS 1027