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/arm/conf/IMX6

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 # Kernel configuration for Freescale i.MX6 systems.
    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 #    https://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 (https://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$
   20 
   21 ident           IMX6
   22 include         "std.armv7"
   23 include         "../freescale/imx/std.imx6"
   24 
   25 options         SOC_IMX6
   26 
   27 options         SCHED_ULE               # ULE scheduler
   28 #options        NFSD                    # Network Filesystem Server
   29 options         INCLUDE_CONFIG_FILE     # Include this file in kernel
   30 options         PLATFORM
   31 options         SMP                     # Enable multiple cores
   32 
   33 # NFS root from boopt/dhcp
   34 #options        BOOTP
   35 #options        BOOTP_NFSROOT
   36 #options        BOOTP_COMPAT
   37 #options        BOOTP_NFSV3
   38 #options        BOOTP_WIRED_TO=ffec0
   39 
   40 # U-Boot stuff lives on slice 1, FreeBSD on slice 2.
   41 options         ROOTDEVNAME=\"ufs:mmcsd0s2a\"
   42 
   43 # Interrupt controller
   44 device          gic
   45 # Cache controller
   46 device          pl310                   # PL310 L2 cache controller
   47 # ARM MPCore timer
   48 device          mpcore_timer
   49 
   50 # Pseudo devices.
   51 device          loop                    # Network loopback
   52 device          vlan                    # 802.1Q VLAN support
   53 device          tuntap                  # Packet tunnel.
   54 device          md                      # Memory "disks"
   55 #device         gif                     # IPv6 and IPv4 tunneling
   56 #device         firmware                # firmware assist module
   57 device          ether                   # Ethernet support
   58 device          miibus                  # Required for ethernet
   59 device          bpf                     # Berkeley packet filter (required for DHCP)
   60 
   61 # General-purpose input/output
   62 device          gpio
   63 
   64 # Serial (COM) ports
   65 device          uart                    # Multi-uart driver
   66 
   67 # SDCard
   68 device          sdhci                   # SD controller
   69 device          mmc                     # SD/MMC protocol
   70 device          mmcsd                   # SDCard disk device
   71 
   72 # SCSI peripherals
   73 device          scbus                   # SCSI bus (required for ATA/SCSI)
   74 device          da                      # Direct Access (disks)
   75 device          cd                      # CD
   76 device          pass                    # Passthrough device (direct ATA/SCSI access)
   77 
   78 # ATA controllers
   79 device          ahci                    # AHCI-compatible SATA controllers
   80 
   81 # USB support
   82 device          ehci                    # OHCI USB interface
   83 device          usb                     # USB Bus (required)
   84 device          umass                   # Disks/Mass storage - Requires scbus and da
   85 device          uhid                    # "Human Interface Devices"
   86 device          u3g                     # USB modems
   87 #device         ukbd                    # Allow keyboard like HIDs to control console
   88 #device         ums                     # USB mouse
   89 
   90 # USB Ethernet, requires miibus
   91 #device         aue                     # ADMtek USB Ethernet
   92 #device         axe                     # ASIX Electronics USB Ethernet
   93 #device         cdce                    # Generic USB over Ethernet
   94 #device         cue                     # CATC USB Ethernet
   95 #device         kue                     # Kawasaki LSI USB Ethernet
   96 #device         rue                     # RealTek RTL8150 USB Ethernet
   97 #device         udav                    # Davicom DM9601E USB
   98 
   99 # USB Wireless
  100 #device         rum                     # Ralink Technology RT2501USB wireless NICs
  101 
  102 # Wireless NIC cards
  103 #device         wlan                    # 802.11 support
  104 #device         wlan_wep                # 802.11 WEP support
  105 #device         wlan_ccmp               # 802.11 CCMP support
  106 #device         wlan_tkip               # 802.11 TKIP support
  107 #device         wlan_amrr               # AMRR transmit rate control algorithm
  108 
  109 # HID support
  110 device          hid                     # Generic HID support
  111 
  112 device          vt
  113 device          kbdmux
  114 device          ukbd
  115 device          videomode
  116 device          hdmi
  117 
  118 # Flattened Device Tree
  119 options         FDT                     # Configure using FDT/DTB data
  120 makeoptions     MODULES_EXTRA="dtb/imx6 imx"
  121 device          fdt_pinctrl             # FDT pinmux driver
  122 
  123 # EXT_RESOURCES pseudo devices
  124 options         EXT_RESOURCES
  125 device          clk
  126 device          phy
  127 device          hwreset
  128 device          nvmem
  129 device          regulator
  130 device          syscon
  131 
  132 # SoC-specific devices
  133 device          ffec                    # Freescale Fast Ethernet Controller
  134 device          fsliic                  # Freescale i2c/iic
  135 device          iic                     # iic protocol
  136 device          iicbus                  # iic bus
  137 device          imx6_snvs               # On-chip RTC
  138 device          imxwdt                  # Watchdog. WARNING: can't be disabled!!!
  139 

Cache object: d26480f780d9ac76e8ed43f00bbec4b0


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