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/8.3/sys/mips/conf/OCTEON1 230732 2012-01-29 12:49:43Z marius $
   20 
   21 machine         mips
   22 cpu             CPU_CNMIPS
   23 ident           OCTEON1
   24 
   25 makeoptions     ARCH_FLAGS="-march=octeon -mabi=64"
   26 makeoptions     LDSCRIPT_NAME=ldscript.mips.octeon1.64
   27 
   28 # Don't build any modules yet.
   29 makeoptions     MODULES_OVERRIDE=""
   30 makeoptions     TARGET_BIG_ENDIAN=defined
   31 makeoptions     KERNLOADADDR=0xffffffff80100000
   32 
   33 include         "../cavium/std.octeon1"
   34 
   35 hints           "OCTEON1.hints"         #Default places to look for devices.
   36 
   37 makeoptions     DEBUG=-g                #Build kernel with gdb(1) debug symbols
   38 
   39 # Board-specific support that cannot be auto-detected at runtime.
   40 #options        OCTEON_VENDOR_LANNER            # Support for Lanner boards.
   41 #options        OCTEON_BOARD_CAPK_0100ND        # Support for CAPK-0100nd.
   42 
   43 # XXX This option is very nearly irrelevant.
   44 options         ISA_MIPS64
   45 
   46 options         SCHED_ULE               # ULE scheduler
   47 options         PREEMPTION              # Enable kernel thread preemption
   48 options         INET                    # InterNETworking
   49 options         INET6                   # IPv6 communications protocols
   50 options         SCTP                    # Stream Control Transmission Protocol
   51 options         FFS                     # Berkeley Fast Filesystem
   52 options         SOFTUPDATES             # Enable FFS soft updates support
   53 options         UFS_ACL                 # Support for access control lists
   54 options         UFS_DIRHASH             # Improve performance on big directories
   55 options         UFS_GJOURNAL            # Enable gjournal-based UFS journaling
   56 options         MD_ROOT                 # MD is a potential root device
   57 options         NFSCLIENT               # Network Filesystem Client
   58 options         NFSSERVER               # Network Filesystem Server
   59 options         NFSLOCKD                # Network Lock Manager
   60 options         NFS_ROOT                # NFS usable as /, requires NFSCLIENT
   61 options         MSDOSFS                 # MSDOS Filesystem
   62 options         CD9660                  # ISO 9660 Filesystem
   63 options         PROCFS                  # Process filesystem (requires PSEUDOFS)
   64 options         PSEUDOFS                # Pseudo-filesystem framework
   65 options         GEOM_PART_GPT           # GUID Partition Tables.
   66 options         GEOM_LABEL              # Provides labelization
   67 #options        COMPAT_FREEBSD32        # Compatible with o32 binaries (not yet)
   68 options         SCSI_DELAY=5000         # Delay (in ms) before probing SCSI
   69 options         KTRACE                  # ktrace(1) support
   70 options         STACK                   # stack(9) support
   71 options         SYSVSHM                 # SYSV-style shared memory
   72 options         SYSVMSG                 # SYSV-style message queues
   73 options         SYSVSEM                 # SYSV-style semaphores
   74 options         _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
   75 options         PRINTF_BUFR_SIZE=128    # Prevent printf output being interspersed.
   76 options         HWPMC_HOOKS             # Necessary kernel hooks for hwpmc(4)
   77 options         AUDIT                   # Security event auditing
   78 options         MAC                     # TrustedBSD MAC Framework
   79 #options        KDTRACE_FRAME           # Ensure frames are compiled in
   80 #options        KDTRACE_HOOKS           # Kernel DTrace hooks
   81 options         INCLUDE_CONFIG_FILE     # Include this file in kernel
   82 options         NO_SWAPPING             # Disable support for paging
   83 
   84 # Debugging for use in -current
   85 options         KDB                     # Enable kernel debugger support.
   86 options         DDB                     # Support DDB.
   87 options         GDB                     # Support remote GDB.
   88 options         DEADLKRES               # Enable the deadlock resolver
   89 options         INVARIANTS              # Enable calls of extra sanity checking
   90 options         INVARIANT_SUPPORT       # Extra sanity checks of internal structures, required by INVARIANTS
   91 options         WITNESS                 # Enable checks to detect deadlocks and cycles
   92 options         WITNESS_SKIPSPIN        # Don't run witness on spinlocks for speed
   93 
   94 # Make an SMP-capable kernel by default
   95 options         SMP                     # Symmetric MultiProcessor Kernel
   96 
   97 # Bus support.
   98 device          pci
   99 
  100 # ATA and ATAPI devices
  101 device          ata
  102 device          atadisk         # ATA disk drives
  103 device          ataraid         # ATA RAID drives
  104 device          atapicd         # ATAPI CDROM drives
  105 device          atapifd         # ATAPI floppy drives
  106 device          atapist         # ATAPI tape drives
  107 options         ATA_STATIC_ID   # Static device numbering
  108 
  109 # On-board Compact Flash driver.
  110 device          cf
  111 options         ROOTDEVNAME=\"ufs:cf0s2a\"      # Default root filesystem.
  112 
  113 # SCSI Controllers
  114 device          ahc             # AHA2940 and onboard AIC7xxx devices
  115 options         AHC_REG_PRETTY_PRINT    # Print register bitfields in debug
  116                                         # output.  Adds ~128k to driver.
  117 device          ahd             # AHA39320/29320 and onboard AIC79xx devices
  118 options         AHD_REG_PRETTY_PRINT    # Print register bitfields in debug
  119                                         # output.  Adds ~215k to driver.
  120 device          esp             # AMD Am53C974 (Tekram DC-390(T))
  121 device          hptiop          # Highpoint RocketRaid 3xxx series
  122 device          isp             # Qlogic family
  123 #device         ispfw           # Firmware for QLogic HBAs- normally a module
  124 device          mpt             # LSI-Logic MPT-Fusion
  125 device          mps             # LSI-Logic MPT-Fusion 2
  126 #device         ncr             # NCR/Symbios Logic
  127 device          trm             # Tekram DC395U/UW/F DC315U adapters
  128 
  129 device          adv             # Advansys SCSI adapters
  130 device          adw             # Advansys wide SCSI adapters
  131 device          aic             # Adaptec 15[012]x SCSI adapters, AIC-6[23]60.
  132 device          bt              # Buslogic/Mylex MultiMaster SCSI adapters
  133 
  134 # SCSI peripherals
  135 device          scbus           # SCSI bus (required for SCSI)
  136 device          ch              # SCSI media changers
  137 device          da              # Direct Access (disks)
  138 device          sa              # Sequential Access (tape etc)
  139 device          cd              # CD
  140 device          pass            # Passthrough device (direct SCSI access)
  141 device          ses             # SCSI Environmental Services (and SAF-TE)
  142 
  143 # RAID controllers interfaced to the SCSI subsystem
  144 device          amr             # AMI MegaRAID
  145 #XXX it is not 64-bit clean, -scottl
  146 #device         asr             # DPT SmartRAID V, VI and Adaptec SCSI RAID
  147 device          ciss            # Compaq Smart RAID 5*
  148 device          dpt             # DPT Smartcache III, IV - See NOTES for options
  149 device          iir             # Intel Integrated RAID
  150 device          ips             # IBM (Adaptec) ServeRAID
  151 device          mly             # Mylex AcceleRAID/eXtremeRAID
  152 
  153 # RAID controllers
  154 device          aac             # Adaptec FSA RAID
  155 device          aacp            # SCSI passthrough for aac (requires CAM)
  156 device          ida             # Compaq Smart RAID
  157 device          mfi             # LSI MegaRAID SAS
  158 device          mlx             # Mylex DAC960 family
  159 #XXX pointer/int warnings
  160 #device         pst             # Promise Supertrak SX6000
  161 device          twe             # 3ware ATA RAID
  162 
  163 # PCCARD (PCMCIA) support
  164 # PCMCIA and cardbus bridge support
  165 device          cbb             # cardbus (yenta) bridge
  166 device          pccard          # PC Card (16-bit) bus
  167 device          cardbus         # CardBus (32-bit) bus
  168 
  169 # Serial (COM) ports
  170 device          uart            # Generic UART driver
  171 
  172 # If you've got a "dumb" serial or parallel PCI card that is
  173 # supported by the puc(4) glue driver, uncomment the following
  174 # line to enable it (connects to sio, uart and/or ppc drivers):
  175 #device         puc
  176 
  177 # On-board Cavium Octeon Ethernet.
  178 # NOTE: Be sure to keep the 'device miibus' line in order to use these NICs!
  179 device          octe
  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 pci/cardbus 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 zb1211/zb1211b wireless NICs

Cache object: 366b433924c421e3607da2185a82c93c


[ 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.