The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/mips/conf/OCTEON1

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 #
    2 # OCTEON1 -- Generic kernel configuration file for FreeBSD/MIPS on Cavium Octeon
    3 #
    4 # For more information on this file, please read the config(5) manual page,
    5 # and/or the handbook section on Kernel Configuration Files:
    6 #
    7 #    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
    8 #
    9 # The handbook is also available locally in /usr/share/doc/handbook
   10 # if you've installed the doc distribution, otherwise always see the
   11 # FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
   12 # latest information.
   13 #
   14 # An exhaustive list of options and more detailed explanations of the
   15 # device lines is also present in the ../../conf/NOTES and NOTES files.
   16 # If you are in doubt as to the purpose or necessity of a line, check first
   17 # in NOTES.
   18 #
   19 # $FreeBSD: releng/9.1/sys/mips/conf/OCTEON1 230733 2012-01-29 12:50:43Z marius $
   20 
   21 ident           OCTEON1
   22 
   23 makeoptions     ARCH_FLAGS="-march=octeon -mabi=64"
   24 makeoptions     LDSCRIPT_NAME=ldscript.mips.octeon1
   25 
   26 # Don't build any modules yet.
   27 makeoptions     MODULES_OVERRIDE=""
   28 makeoptions     KERNLOADADDR=0xffffffff80100000
   29 
   30 include         "../cavium/std.octeon1"
   31 
   32 hints           "OCTEON1.hints"         #Default places to look for devices.
   33 
   34 makeoptions     DEBUG=-g                #Build kernel with gdb(1) debug symbols
   35 
   36 # Board-specific support that cannot be auto-detected at runtime.
   37 #options        OCTEON_VENDOR_LANNER            # Support for Lanner boards.
   38 #options        OCTEON_BOARD_CAPK_0100ND        # Support for CAPK-0100nd.
   39 
   40 # XXX This option is very nearly irrelevant.
   41 options         ISA_MIPS64
   42 
   43 options         SCHED_ULE               # ULE scheduler
   44 options         PREEMPTION              # Enable kernel thread preemption
   45 options         INET                    # InterNETworking
   46 options         INET6                   # IPv6 communications protocols
   47 options         SCTP                    # Stream Control Transmission Protocol
   48 options         FFS                     # Berkeley Fast Filesystem
   49 options         SOFTUPDATES             # Enable FFS soft updates support
   50 options         UFS_ACL                 # Support for access control lists
   51 options         UFS_DIRHASH             # Improve performance on big directories
   52 options         UFS_GJOURNAL            # Enable gjournal-based UFS journaling
   53 options         MD_ROOT                 # MD is a potential root device
   54 options         NFSCL                   # Network Filesystem Client
   55 options         NFSD                    # Network Filesystem Server
   56 options         NFSLOCKD                # Network Lock Manager
   57 options         NFS_ROOT                # NFS usable as /, requires NFSCL
   58 options         MSDOSFS                 # MSDOS Filesystem
   59 options         CD9660                  # ISO 9660 Filesystem
   60 options         PROCFS                  # Process filesystem (requires PSEUDOFS)
   61 options         PSEUDOFS                # Pseudo-filesystem framework
   62 options         GEOM_PART_GPT           # GUID Partition Tables.
   63 options         GEOM_LABEL              # Provides labelization
   64 #options        COMPAT_FREEBSD32        # Compatible with o32 binaries (not yet)
   65 options         SCSI_DELAY=5000         # Delay (in ms) before probing SCSI
   66 options         KTRACE                  # ktrace(1) support
   67 options         STACK                   # stack(9) support
   68 options         SYSVSHM                 # SYSV-style shared memory
   69 options         SYSVMSG                 # SYSV-style message queues
   70 options         SYSVSEM                 # SYSV-style semaphores
   71 options         _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
   72 options         PRINTF_BUFR_SIZE=128    # Prevent printf output being interspersed.
   73 options         HWPMC_HOOKS             # Necessary kernel hooks for hwpmc(4)
   74 options         AUDIT                   # Security event auditing
   75 options         MAC                     # TrustedBSD MAC Framework
   76 #options        KDTRACE_FRAME           # Ensure frames are compiled in
   77 #options        KDTRACE_HOOKS           # Kernel DTrace hooks
   78 options         INCLUDE_CONFIG_FILE     # Include this file in kernel
   79 options         NO_SWAPPING             # Disable support for paging
   80 
   81 # Debugging for use in -current
   82 options         KDB                     # Enable kernel debugger support.
   83 options         DDB                     # Support DDB.
   84 options         GDB                     # Support remote GDB.
   85 options         DEADLKRES               # Enable the deadlock resolver
   86 options         INVARIANTS              # Enable calls of extra sanity checking
   87 options         INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS
   88 options         WITNESS                 # Enable checks to detect deadlocks and cycles
   89 options         WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed
   90 options         MALLOC_DEBUG_MAXZONES=8 # Separate malloc(9) zones
   91 
   92 # Make an SMP-capable kernel by default
   93 options         SMP                     # Symmetric MultiProcessor Kernel
   94 
   95 # Bus support.
   96 device          pci
   97 
   98 # ATA controllers
   99 device          ahci            # AHCI-compatible SATA controllers
  100 device          ata             # Legacy ATA/SATA controllers
  101 options         ATA_CAM         # Handle legacy controllers with CAM
  102 options         ATA_STATIC_ID   # Static device numbering
  103 device          mvs             # Marvell 88SX50XX/88SX60XX/88SX70XX/SoC SATA
  104 device          siis            # SiliconImage SiI3124/SiI3132/SiI3531 SATA
  105 
  106 # On-board Compact Flash driver.
  107 device          cf
  108 options         ROOTDEVNAME=\"ufs:cf0s2a\"      # Default root filesystem.
  109 
  110 # SCSI Controllers
  111 device          ahc             # AHA2940 and onboard AIC7xxx devices
  112 options         AHC_REG_PRETTY_PRINT    # Print register bitfields in debug
  113                                         # output.  Adds ~128k to driver.
  114 device          ahd             # AHA39320/29320 and onboard AIC79xx devices
  115 options         AHD_REG_PRETTY_PRINT    # Print register bitfields in debug
  116                                         # output.  Adds ~215k to driver.
  117 device          esp             # AMD Am53C974 (Tekram DC-390(T))
  118 device          hptiop          # Highpoint RocketRaid 3xxx series
  119 device          isp             # Qlogic family
  120 #device         ispfw           # Firmware for QLogic HBAs- normally a module
  121 device          mpt             # LSI-Logic MPT-Fusion
  122 device          mps             # LSI-Logic MPT-Fusion 2
  123 #device         ncr             # NCR/Symbios Logic
  124 device          trm             # Tekram DC395U/UW/F DC315U adapters
  125 
  126 device          adv             # Advansys SCSI adapters
  127 device          adw             # Advansys wide SCSI adapters
  128 device          aic             # Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
  129 device          bt              # Buslogic/Mylex MultiMaster SCSI adapters
  130 
  131 # ATA/SCSI peripherals
  132 device          scbus           # SCSI bus (required for ATA/SCSI)
  133 device          ch              # SCSI media changers
  134 device          da              # Direct Access (disks)
  135 device          sa              # Sequential Access (tape etc)
  136 device          cd              # CD
  137 device          pass            # Passthrough device (direct ATA/SCSI access)
  138 device          ses             # SCSI Environmental Services (and SAF-TE)
  139 
  140 # RAID controllers interfaced to the SCSI subsystem
  141 device          amr             # AMI MegaRAID
  142 #XXX it is not 64-bit clean, -scottl
  143 #device         asr             # DPT SmartRAID V, VI and Adaptec SCSI RAID
  144 device          ciss            # Compaq Smart RAID 5*
  145 device          dpt             # DPT Smartcache III, IV - See NOTES for options
  146 device          iir             # Intel Integrated RAID
  147 device          ips             # IBM (Adaptec) ServeRAID
  148 device          mly             # Mylex AcceleRAID/eXtremeRAID
  149 
  150 # RAID controllers
  151 device          aac             # Adaptec FSA RAID
  152 device          aacp            # SCSI passthrough for aac (requires CAM)
  153 device          ida             # Compaq Smart RAID
  154 device          mfi             # LSI MegaRAID SAS
  155 device          mlx             # Mylex DAC960 family
  156 #XXX pointer/int warnings
  157 #device         pst             # Promise Supertrak SX6000
  158 device          twe             # 3ware ATA RAID
  159 
  160 # PCCARD (PCMCIA) support
  161 # PCMCIA and cardbus bridge support
  162 device          cbb             # cardbus (yenta) bridge
  163 device          pccard          # PC Card (16-bit) bus
  164 device          cardbus         # CardBus (32-bit) bus
  165 
  166 # Serial (COM) ports
  167 device          uart            # Generic UART driver
  168 
  169 # If you've got a "dumb" serial or parallel PCI card that is
  170 # supported by the puc(4) glue driver, uncomment the following
  171 # line to enable it (connects to sio, uart and/or ppc drivers):
  172 #device         puc
  173 
  174 # On-board Cavium Octeon Ethernet.
  175 # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
  176 device          octe
  177 
  178 # Cavium Octeon management Ethernet.
  179 device          octm
  180 
  181 # Switch PHY support for the octe driver.  These currently present a VLAN per
  182 # physical port, but may eventually provide support for DSA or similar instead.
  183 #device         mv88e61xxphy    # Marvell 88E61XX
  184 
  185 # PCI Ethernet NICs.
  186 device          de              # DEC/Intel DC21x4x (``Tulip'')
  187 device          em              # Intel PRO/1000 Gigabit Ethernet Family
  188 device          igb             # Intel PRO/1000 PCIE Server Gigabit Family
  189 device          ixgbe           # Intel PRO/10GbE PCIE Ethernet Family
  190 device          le              # AMD Am7900 LANCE and Am79C9xx PCnet
  191 device          ti              # Alteon Networks Tigon I/II gigabit Ethernet
  192 device          txp             # 3Com 3cR990 (``Typhoon'')
  193 device          vx              # 3Com 3c590, 3c595 (``Vortex'')
  194 
  195 # PCI Ethernet NICs that use the common MII bus controller code.
  196 # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
  197 device          miibus          # MII bus support
  198 device          ae              # Attansic/Atheros L2 FastEthernet
  199 device          age             # Attansic/Atheros L1 Gigabit Ethernet
  200 device          alc             # Atheros AR8131/AR8132 Ethernet
  201 device          ale             # Atheros AR8121/AR8113/AR8114 Ethernet
  202 device          bce             # Broadcom BCM5706/BCM5708 Gigabit Ethernet
  203 device          bfe             # Broadcom BCM440x 10/100 Ethernet
  204 device          bge             # Broadcom BCM570xx Gigabit Ethernet
  205 device          dc              # DEC/Intel 21143 and various workalikes
  206 device          et              # Agere ET1310 10/100/Gigabit Ethernet
  207 device          fxp             # Intel EtherExpress PRO/100B (82557, 82558)
  208 device          jme             # JMicron JMC250 Gigabit/JMC260 Fast Ethernet
  209 device          lge             # Level 1 LXT1001 gigabit Ethernet
  210 device          msk             # Marvell/SysKonnect Yukon II Gigabit Ethernet
  211 device          nge             # NatSemi DP83820 gigabit Ethernet
  212 #device         nve             # nVidia nForce MCP on-board Ethernet Networking
  213 device          pcn             # AMD Am79C97x PCI 10/100 (precedence over 'le')
  214 device          re              # RealTek 8139C+/8169/8169S/8110S
  215 device          rl              # RealTek 8129/8139
  216 device          sf              # Adaptec AIC-6915 (``Starfire'')
  217 device          sge             # Silicon Integrated Systems SiS190/191
  218 device          sis             # Silicon Integrated Systems SiS 900/SiS 7016
  219 device          sk              # SysKonnect SK-984x & SK-982x gigabit Ethernet
  220 device          ste             # Sundance ST201 (D-Link DFE-550TX)
  221 device          stge            # Sundance/Tamarack TC9021 gigabit Ethernet
  222 device          tl              # Texas Instruments ThunderLAN
  223 device          tx              # SMC EtherPower II (83c170 ``EPIC'')
  224 device          vge             # VIA VT612x gigabit Ethernet
  225 device          vr              # VIA Rhine, Rhine II
  226 device          wb              # Winbond W89C840F
  227 device          xl              # 3Com 3c90x (``Boomerang'', ``Cyclone'')
  228 
  229 # Wireless NIC cards
  230 device          wlan            # 802.11 support
  231 options         IEEE80211_DEBUG # enable debug msgs
  232 options         IEEE80211_AMPDU_AGE # age frames in AMPDU reorder q's
  233 options         IEEE80211_SUPPORT_MESH  # enable 802.11s draft support
  234 device          wlan_wep        # 802.11 WEP support
  235 device          wlan_ccmp       # 802.11 CCMP support
  236 device          wlan_tkip       # 802.11 TKIP support
  237 device          wlan_amrr       # AMRR transmit rate control algorithm
  238 device          an              # Aironet 4500/4800 802.11 wireless NICs.
  239 device          ath             # Atheros NIC's
  240 device          ath_hal         # pci/cardbus chip support
  241 options         AH_SUPPORT_AR5416       # enable AR5416 tx/rx descriptors
  242 device          ath_rate_sample # SampleRate tx rate control for ath
  243 device          ral             # Ralink Technology RT2500 wireless NICs.
  244 device          wi              # WaveLAN/Intersil/Symbol 802.11 wireless NICs.
  245 
  246 # Pseudo devices.
  247 device          loop            # Network loopback
  248 device          random          # Entropy device
  249 device          ether           # Ethernet support
  250 device          vlan            # 802.1Q VLAN support
  251 device          tun             # Packet tunnel.
  252 device          pty             # BSD-style compatibility pseudo ttys
  253 device          md              # Memory "disks"
  254 device          gif             # IPv6 and IPv4 tunneling
  255 device          faith           # IPv6-to-IPv4 relaying (translation)
  256 device          firmware        # firmware assist module
  257 
  258 # The `bpf' device enables the Berkeley Packet Filter.
  259 # Be aware of the administrative consequences of enabling this!
  260 # Note that 'bpf' is required for DHCP.
  261 device          bpf             # Berkeley packet filter
  262 
  263 # USB support
  264 options         USB_DEBUG       # enable debug msgs
  265 device          octusb          # Cavium Octeon on-board USB interface (USB 2.0)
  266 device          uhci            # UHCI PCI->USB interface
  267 device          ohci            # OHCI PCI->USB interface
  268 device          ehci            # EHCI PCI->USB interface (USB 2.0)
  269 device          usb             # USB Bus (required)
  270 #device         udbp            # USB Double Bulk Pipe devices
  271 device          uhid            # "Human Interface Devices"
  272 device          ulpt            # Printer
  273 device          umass           # Disks/Mass storage - Requires scbus and da
  274 device          ums             # Mouse
  275 device          urio            # Diamond Rio 500 MP3 player
  276 # USB Serial devices
  277 device          u3g             # USB-based 3G modems (Option, Huawei, Sierra)
  278 device          uark            # Technologies ARK3116 based serial adapters
  279 device          ubsa            # Belkin F5U103 and compatible serial adapters
  280 device          uftdi           # For FTDI usb serial adapters
  281 device          uipaq           # Some WinCE based devices
  282 device          uplcom          # Prolific PL-2303 serial adapters
  283 device          uslcom          # SI Labs CP2101/CP2102 serial adapters
  284 device          uvisor          # Visor and Palm devices
  285 device          uvscom          # USB serial support for DDI pocket's PHS
  286 # USB Ethernet, requires miibus
  287 device          aue             # ADMtek USB Ethernet
  288 device          axe             # ASIX Electronics USB Ethernet
  289 device          cdce            # Generic USB over Ethernet
  290 device          cue             # CATC USB Ethernet
  291 device          kue             # Kawasaki LSI USB Ethernet
  292 device          rue             # RealTek RTL8150 USB Ethernet
  293 device          udav            # Davicom DM9601E USB
  294 # USB Wireless
  295 device          rum             # Ralink Technology RT2501USB wireless NICs
  296 device          uath            # Atheros AR5523 wireless NICs
  297 device          ural            # Ralink Technology RT2500USB wireless NICs
  298 device          zyd             # ZyDAS zd1211/zd1211b wireless NICs

Cache object: 81285095cb48ddad5c153844b2708140


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.