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/AR71XX_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 # AR71XX -- Kernel configuration file for FreeBSD/MIPS for Atheros 71xx systems
    3 #
    4 # This includes all the common drivers for the AR71XX boards along with
    5 # the usb, net80211 and atheros driver code.
    6 #
    7 # $FreeBSD$
    8 #
    9 
   10 machine         mips mips
   11 ident           AR71XX_BASE
   12 cpu             CPU_MIPS24K
   13 makeoptions     KERNLOADADDR=0x80050000
   14 options         HZ=1000
   15 options         HWPMC_HOOKS
   16 
   17 files           "../atheros/files.ar71xx"
   18 
   19 # For now, hints are per-board.
   20 
   21 hints           "AR71XX_BASE.hints"
   22 
   23 makeoptions     DEBUG=-g                #Build kernel with gdb(1) debug symbols
   24 
   25 # Build these as modules so small platform builds will have the
   26 # modules already built.
   27 makeoptions     MODULES_OVERRIDE="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_pci"
   28 
   29 # For small memory footprints
   30 options VM_KMEM_SIZE_SCALE=1
   31 
   32 options         DDB
   33 options         KDB
   34 
   35 options         SCHED_4BSD              #4BSD scheduler
   36 options         INET                    #InterNETworking
   37 options         INET6                   # IPv6
   38 
   39 # options       NFSCL           #Network Filesystem Client
   40 
   41 options         PSEUDOFS                #Pseudo-filesystem framework
   42 options         _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
   43 
   44 # options       NFS_LEGACYRPC
   45 # Debugging for use in -current
   46 options         INVARIANTS
   47 options         INVARIANT_SUPPORT
   48 options         WITNESS
   49 options         WITNESS_SKIPSPIN
   50 options         DEBUG_REDZONE
   51 options         DEBUG_MEMGUARD
   52 
   53 options         FFS                     #Berkeley Fast Filesystem
   54 # options         SOFTUPDATES             #Enable FFS soft updates support
   55 # options         UFS_ACL                 #Support for access control lists
   56 # options         UFS_DIRHASH             #Improve performance on big directories
   57 # options       MSDOSFS                 # Read MSDOS filesystems; useful for USB/CF
   58 
   59 device          pci
   60 device          ar71xx_pci
   61 
   62 # 802.11 framework
   63 options         IEEE80211_DEBUG
   64 options         IEEE80211_ALQ
   65 options         IEEE80211_SUPPORT_MESH
   66 options         IEEE80211_SUPPORT_TDMA
   67 options         IEEE80211_AMPDU_AGE
   68 device          wlan            # 802.11 support
   69 device          wlan_wep        # 802.11 WEP support
   70 device          wlan_ccmp       # 802.11 CCMP support
   71 device          wlan_tkip       # 802.11 TKIP support
   72 device          wlan_xauth      # 802.11 hostap support
   73 
   74 # Atheros wireless NICs
   75 device          ath             # Atheros interface support
   76 device          ath_pci         # Atheros PCI/Cardbus bus
   77 options         ATH_DEBUG
   78 options         ATH_DIAGAPI
   79 options         ATH_ENABLE_11N
   80 options         AH_DEBUG
   81 options         AH_DEBUG_ALQ
   82 options         ALQ
   83 device          ath_hal
   84 option          AH_SUPPORT_AR5416
   85 device          ath_rate_sample
   86 option          AH_RXCFG_SDMAMW_4BYTES
   87 option          AH_AR5416_INTERRUPT_MITIGATION
   88 # There's no DFS radar detection support yet so this won't actually
   89 # detect radars.  It however does enable the rest of the channel change
   90 # machinery so DFS can be debugged.
   91 option          ATH_ENABLE_DFS
   92 
   93 device          mii
   94 device          arge
   95 
   96 device          usb
   97 options         USB_EHCI_BIG_ENDIAN_DESC        # handle big-endian byte order
   98 options         USB_DEBUG
   99 options         USB_HOST_ALIGN=32               # AR71XX (MIPS in general?) requires this
  100 device          ehci
  101 
  102 device          scbus
  103 device          umass
  104 device          da
  105 
  106 # On-board SPI flash
  107 device          spibus
  108 device          ar71xx_spi
  109 device          mx25l
  110 device          ar71xx_wdog
  111 
  112 device          uart
  113 device          uart_ar71xx
  114 
  115 device          ar71xx_apb
  116 
  117 device          loop
  118 device          ether
  119 device          md
  120 device          bpf
  121 device          random
  122 device          if_bridge
  123 device          gif             # ip[46] in ip[46] tunneling protocol
  124 device          gre             # generic encapsulation - only for IPv4 in IPv4 though atm
  125 
  126 options         ARGE_DEBUG      # Enable if_arge debugging for now
  127 
  128 # Enable GPIO
  129 device          gpio
  130 device          gpioled

Cache object: 5e0e98e4d872afbab917020bd0b9809f


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