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/AR933X_BASE

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 # AR91XX -- Kernel configuration base file for the Atheros AR913x SoC.
    3 #
    4 # This file (and the hints file accompanying it) are not designed to be
    5 # used by themselves. Instead, users of this file should create a kernel
    6 # config file which includes this file (which gets the basic hints), then
    7 # override the default options (adding devices as needed) and adding
    8 # hints as needed (for example, the GPIO and LAN PHY.)
    9 #
   10 # $FreeBSD: releng/10.1/sys/mips/conf/AR933X_BASE 266331 2014-05-17 17:34:37Z ian $
   11 #
   12 
   13 machine         mips mips
   14 ident           AR933X_BASE
   15 cpu             CPU_MIPS4KC
   16 makeoptions     KERNLOADADDR=0x80050000
   17 options         HZ=1000
   18 
   19 files           "../atheros/files.ar71xx"
   20 hints           "AR933X_BASE.hints"
   21 
   22 makeoptions     DEBUG=-g                #Build kernel with gdb(1) debug symbols
   23 # makeoptions   MODULES_OVERRIDE="random gpio ar71xx if_gif if_gre if_bridge bridgestp usb wlan wlan_xauth wlan_acl wlan_wep wlan_tkip wlan_ccmp wlan_rssadapt wlan_amrr ath ath_ahb hwpmc"
   24 makeoptions     MODULES_OVERRIDE=""
   25 
   26 options         DDB
   27 options         KDB
   28 options         ALQ
   29 
   30 options         SCHED_4BSD              #4BSD scheduler
   31 options         INET                    #InterNETworking
   32 #options        INET6                   #InterNETworking
   33 #options        NFSCL                   #Network Filesystem Client
   34 options         PSEUDOFS                #Pseudo-filesystem framework
   35 options         _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
   36 
   37 # Don't include the SCSI/CAM strings in the default build
   38 options         SCSI_NO_SENSE_STRINGS
   39 options         SCSI_NO_OP_STRINGS
   40 
   41 # .. And no sysctl strings
   42 options         NO_SYSCTL_DESCR
   43 
   44 # Limit IO size
   45 options         NBUF=128
   46 
   47 # Limit UMTX hash size
   48 # options       UMTX_NUM_CHAINS=64
   49 
   50 # PMC
   51 #options        HWPMC_HOOKS
   52 #device         hwpmc
   53 #device         hwpmc_mips24k
   54 
   55 # options       NFS_LEGACYRPC
   56 # Debugging for use in -current
   57 #options        INVARIANTS
   58 #options        INVARIANT_SUPPORT
   59 #options        WITNESS
   60 #options        WITNESS_SKIPSPIN
   61 options         FFS                     #Berkeley Fast Filesystem
   62 #options        SOFTUPDATES             #Enable FFS soft updates support
   63 #options        UFS_ACL                 #Support for access control lists
   64 #options        UFS_DIRHASH             #Improve performance on big directories
   65 options         NO_FFS_SNAPSHOT         # We don't require snapshot support
   66 
   67 # Wireless NIC cards
   68 options         IEEE80211_DEBUG
   69 options         IEEE80211_SUPPORT_MESH
   70 options         IEEE80211_SUPPORT_TDMA
   71 options         IEEE80211_SUPPORT_SUPERG
   72 options         IEEE80211_ALQ   # 802.11 ALQ logging support
   73 device          wlan            # 802.11 support
   74 device          wlan_wep        # 802.11 WEP support
   75 device          wlan_ccmp       # 802.11 CCMP support
   76 device          wlan_tkip       # 802.11 TKIP support
   77 device          wlan_xauth      # 802.11 hostap support
   78 
   79 # ath(4)
   80 device          ath             # Atheros network device
   81 device          ath_rate_sample
   82 device          ath_ahb         # Atheros host bus glue
   83 options         ATH_DEBUG
   84 options         ATH_DIAGAPI
   85 option          ATH_ENABLE_11N
   86 option          AH_DEBUG_ALQ
   87 
   88 #device         ath_hal
   89 device          ath_ar9300              # AR9330 HAL; no need for the others
   90 option          AH_DEBUG
   91 option          AH_SUPPORT_AR5416       # 11n HAL support
   92 option          AH_SUPPORT_AR9330       # Chipset support
   93 option          AH_DEBUG_ALQ
   94 option          AH_AR5416_INTERRUPT_MITIGATION
   95 
   96 device          mii
   97 device          arge
   98 
   99 device          usb
  100 options         USB_EHCI_BIG_ENDIAN_DESC        # handle big-endian byte order
  101 options         USB_DEBUG
  102 options         USB_HOST_ALIGN=32               # AR71XX (MIPS in general?) requires this
  103 device          ehci
  104 
  105 device          scbus
  106 device          umass
  107 device          da
  108 
  109 device          spibus
  110 device          ar71xx_spi
  111 device          mx25l
  112 device          ar71xx_wdog
  113 
  114 device          uart
  115 device          uart_ar933x
  116 
  117 device          loop
  118 device          ether
  119 device          md
  120 device          bpf
  121 device          random
  122 device          if_bridge
  123 device          gpio
  124 device          gpioled

Cache object: c1b8a24b824cd5d8f3d4fb445a68d6ba


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