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

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 i.MX53 boards
    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           IMX53
   22 
   23 include         "std.armv7"
   24 include         "../freescale/imx/std.imx53"
   25 
   26 options         SOC_IMX53
   27 
   28 options         SCHED_4BSD              # 4BSD scheduler
   29 #options        NFSD                    # Network Filesystem Server
   30 options         PLATFORM
   31 options         INCLUDE_CONFIG_FILE     # Include this file in kernel
   32 
   33 # kernel/memory size reduction
   34 #options        MUTEX_NOINLINE
   35 #options        NO_FFS_SNAPSHOT
   36 #options        NO_SWAPPING
   37 #options        NO_SYSCTL_DESCR
   38 #options        RWLOCK_NOINLINE
   39 
   40 # The `bpf' device enables the Berkeley Packet Filter.
   41 # Be aware of the administrative consequences of enabling this!
   42 # Note that 'bpf' is required for DHCP.
   43 device          bpf                     # Berkeley packet filter
   44 
   45 # Pseudo devices.
   46 device          loop                    # Network loopback
   47 device          ether                   # Ethernet support
   48 #device         vlan                    # 802.1Q VLAN support
   49 #device         tuntap                  # Packet tunnel.
   50 device          md                      # Memory "disks"
   51 #device         gif                     # IPv6 and IPv4 tunneling
   52 #device         firmware                # firmware assist module
   53 
   54 # Ethernet
   55 device          ffec                    # Freescale Fast Ethernet Controller
   56 device          miibus                  # Standard mii bus
   57 
   58 # Serial (COM) ports
   59 device          uart                    # Multi-uart driver
   60 
   61 device          ata
   62 device          atapci                  # Only for helper functions
   63 device          imxata
   64 
   65 device          gpio
   66 device          gpioled
   67 
   68 device          fsliic
   69 device          iic
   70 device          iicbus
   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 # USB support
   79 options         USB_HOST_ALIGN=64       # Align usb buffers to cache line size.
   80 device          ehci                    # OHCI USB interface
   81 device          usb                     # USB Bus (required)
   82 device          umass                   # Disks/Mass storage - Requires scbus and da
   83 device          uhid                    # "Human Interface Devices"
   84 #device         ukbd                    # Allow keyboard like HIDs to control console
   85 device          ums
   86 
   87 # USB Ethernet, requires miibus
   88 #device         miibus
   89 #device         aue                     # ADMtek USB Ethernet
   90 #device         axe                     # ASIX Electronics USB Ethernet
   91 #device         cdce                    # Generic USB over Ethernet
   92 #device         cue                     # CATC USB Ethernet
   93 #device         kue                     # Kawasaki LSI USB Ethernet
   94 #device         rue                     # RealTek RTL8150 USB Ethernet
   95 #device         udav                    # Davicom DM9601E USB
   96 
   97 # USB Wireless
   98 #device         rum                     # Ralink Technology RT2501USB wireless NICs
   99 
  100 # Watchdog timer.
  101 # WARNING: can't be disabled!!!
  102 device          imxwdt                  # Watchdog
  103 
  104 # Wireless NIC cards
  105 device          wlan                    # 802.11 support
  106 device          wlan_wep                # 802.11 WEP support
  107 device          wlan_ccmp               # 802.11 CCMP support
  108 device          wlan_tkip               # 802.11 TKIP support
  109 device          wlan_amrr               # AMRR transmit rate control algorithm
  110 
  111 # MMC
  112 #device         sdhci                   # SD controller
  113 #device         mmc                     # SD/MMC protocol
  114 #device         mmcsd                   # SDCard disk device
  115 
  116 # HID support
  117 device          hid                     # Generic HID support
  118 
  119 
  120 # Flattened Device Tree
  121 options         FDT                     # Configure using FDT/DTB data
  122 makeoptions     MODULES_EXTRA="dtb/imx5 imx"
  123 device          fdt_pinctrl             # FDT pinmux driver

Cache object: 3df3fb343722edba696f00dde0ed9bdb


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