2014-12-21 11:37:00 +00:00
|
|
|
#
|
2014-04-04 20:42:44 +00:00
|
|
|
# Kernel configuration for Freescale i.MX6 systems.
|
2014-02-23 01:48:07 +00:00
|
|
|
#
|
|
|
|
# For more information on this file, please read the config(5) manual page,
|
|
|
|
# and/or the handbook section on Kernel Configuration Files:
|
|
|
|
#
|
2017-10-29 08:17:03 +00:00
|
|
|
# https://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
|
2014-02-23 01:48:07 +00:00
|
|
|
#
|
|
|
|
# The handbook is also available locally in /usr/share/doc/handbook
|
|
|
|
# if you've installed the doc distribution, otherwise always see the
|
2017-10-29 08:17:03 +00:00
|
|
|
# FreeBSD World Wide Web server (https://www.FreeBSD.org/) for the
|
2014-02-23 01:48:07 +00:00
|
|
|
# latest information.
|
|
|
|
#
|
|
|
|
# An exhaustive list of options and more detailed explanations of the
|
|
|
|
# device lines is also present in the ../../conf/NOTES and NOTES files.
|
|
|
|
# If you are in doubt as to the purpose or necessity of a line, check first
|
|
|
|
# in NOTES.
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
|
2014-02-24 01:17:23 +00:00
|
|
|
ident IMX6
|
2017-10-05 23:01:50 +00:00
|
|
|
include "std.armv7"
|
2014-02-23 01:48:07 +00:00
|
|
|
include "../freescale/imx/std.imx6"
|
|
|
|
|
2015-04-23 22:20:43 +00:00
|
|
|
options SOC_IMX6
|
|
|
|
|
2014-12-20 18:15:23 +00:00
|
|
|
options SCHED_ULE # ULE scheduler
|
2015-01-06 16:15:57 +00:00
|
|
|
#options NFSD # Network Filesystem Server
|
2014-12-20 18:15:23 +00:00
|
|
|
options INCLUDE_CONFIG_FILE # Include this file in kernel
|
2014-12-24 12:26:43 +00:00
|
|
|
options PLATFORM
|
2014-12-21 11:37:00 +00:00
|
|
|
options SMP # Enable multiple cores
|
2014-02-23 01:48:07 +00:00
|
|
|
|
2014-12-21 11:37:00 +00:00
|
|
|
# NFS root from boopt/dhcp
|
|
|
|
#options BOOTP
|
|
|
|
#options BOOTP_NFSROOT
|
|
|
|
#options BOOTP_COMPAT
|
|
|
|
#options BOOTP_NFSV3
|
|
|
|
#options BOOTP_WIRED_TO=ffec0
|
|
|
|
|
|
|
|
# U-Boot stuff lives on slice 1, FreeBSD on slice 2.
|
|
|
|
options ROOTDEVNAME=\"ufs:mmcsd0s2a\"
|
2014-02-23 01:48:07 +00:00
|
|
|
|
2015-05-10 12:13:27 +00:00
|
|
|
# Interrupt controller
|
|
|
|
device gic
|
2015-11-20 16:43:21 +00:00
|
|
|
# Cache controller
|
|
|
|
device pl310 # PL310 L2 cache controller
|
2015-11-21 16:23:56 +00:00
|
|
|
# ARM MPCore timer
|
|
|
|
device mpcore_timer
|
2015-05-10 12:13:27 +00:00
|
|
|
|
2014-02-23 01:48:07 +00:00
|
|
|
# Pseudo devices.
|
2014-12-20 18:15:23 +00:00
|
|
|
device loop # Network loopback
|
|
|
|
device vlan # 802.1Q VLAN support
|
tun/tap: merge and rename to `tuntap`
tun(4) and tap(4) share the same general management interface and have a lot
in common. Bugs exist in tap(4) that have been fixed in tun(4), and
vice-versa. Let's reduce the maintenance requirements by merging them
together and using flags to differentiate between the three interface types
(tun, tap, vmnet).
This fixes a couple of tap(4)/vmnet(4) issues right out of the gate:
- tap devices may no longer be destroyed while they're open [0]
- VIMAGE issues already addressed in tun by kp
[0] emaste had removed an easy-panic-button in r240938 due to devdrn
blocking. A naive glance over this leads me to believe that this isn't quite
complete -- destroy_devl will only block while executing d_* functions, but
doesn't block the device from being destroyed while a process has it open.
The latter is the intent of the condvar in tun, so this is "fixed" (for
certain definitions of the word -- it wasn't really broken in tap, it just
wasn't quite ideal).
ifconfig(8) also grew the ability to map an interface name to a kld, so
that `ifconfig {tun,tap}0` can continue to autoload the correct module, and
`ifconfig vmnet0 create` will now autoload the correct module. This is a
low overhead addition.
(MFC commentary)
This may get MFC'd if many bugs in tun(4)/tap(4) are discovered after this,
and how critical they are. Changes after this are likely easily MFC'd
without taking this merge, but the merge will be easier.
I have no plans to do this MFC as of now.
Reviewed by: bcr (manpages), tuexen (testing, syzkaller/packetdrill)
Input also from: melifaro
Relnotes: yes
Differential Revision: https://reviews.freebsd.org/D20044
2019-05-08 02:32:11 +00:00
|
|
|
device tuntap # Packet tunnel.
|
2014-12-20 18:15:23 +00:00
|
|
|
device md # Memory "disks"
|
|
|
|
#device gif # IPv6 and IPv4 tunneling
|
|
|
|
#device firmware # firmware assist module
|
|
|
|
device ether # Ethernet support
|
|
|
|
device miibus # Required for ethernet
|
|
|
|
device bpf # Berkeley packet filter (required for DHCP)
|
2014-02-23 01:48:07 +00:00
|
|
|
|
2014-07-18 07:47:50 +00:00
|
|
|
# General-purpose input/output
|
2014-12-21 11:55:40 +00:00
|
|
|
device gpio
|
2014-07-18 07:47:50 +00:00
|
|
|
|
2014-02-23 01:48:07 +00:00
|
|
|
# Serial (COM) ports
|
2014-12-20 18:15:23 +00:00
|
|
|
device uart # Multi-uart driver
|
2014-02-23 01:48:07 +00:00
|
|
|
|
|
|
|
# SDCard
|
2014-12-20 18:15:23 +00:00
|
|
|
device sdhci # SD controller
|
|
|
|
device mmc # SD/MMC protocol
|
|
|
|
device mmcsd # SDCard disk device
|
2014-02-23 01:48:07 +00:00
|
|
|
|
|
|
|
# SCSI peripherals
|
2014-12-20 18:15:23 +00:00
|
|
|
device scbus # SCSI bus (required for ATA/SCSI)
|
|
|
|
device da # Direct Access (disks)
|
|
|
|
device cd # CD
|
|
|
|
device pass # Passthrough device (direct ATA/SCSI access)
|
2014-02-23 01:48:07 +00:00
|
|
|
|
2017-08-03 14:43:41 +00:00
|
|
|
# ATA controllers
|
|
|
|
device ahci # AHCI-compatible SATA controllers
|
|
|
|
|
2014-02-23 01:48:07 +00:00
|
|
|
# USB support
|
2014-12-20 18:15:23 +00:00
|
|
|
device ehci # OHCI USB interface
|
|
|
|
device usb # USB Bus (required)
|
|
|
|
device umass # Disks/Mass storage - Requires scbus and da
|
|
|
|
device uhid # "Human Interface Devices"
|
|
|
|
device u3g # USB modems
|
|
|
|
#device ukbd # Allow keyboard like HIDs to control console
|
|
|
|
#device ums # USB mouse
|
2014-02-23 01:48:07 +00:00
|
|
|
|
2014-07-18 07:47:50 +00:00
|
|
|
# USB Ethernet, requires miibus
|
2014-12-20 18:15:23 +00:00
|
|
|
#device aue # ADMtek USB Ethernet
|
|
|
|
#device axe # ASIX Electronics USB Ethernet
|
|
|
|
#device cdce # Generic USB over Ethernet
|
|
|
|
#device cue # CATC USB Ethernet
|
|
|
|
#device kue # Kawasaki LSI USB Ethernet
|
|
|
|
#device rue # RealTek RTL8150 USB Ethernet
|
|
|
|
#device udav # Davicom DM9601E USB
|
2014-02-23 01:48:07 +00:00
|
|
|
|
|
|
|
# USB Wireless
|
2014-12-20 18:15:23 +00:00
|
|
|
#device rum # Ralink Technology RT2501USB wireless NICs
|
2014-02-23 01:48:07 +00:00
|
|
|
|
|
|
|
# Wireless NIC cards
|
2014-12-20 18:15:23 +00:00
|
|
|
#device wlan # 802.11 support
|
|
|
|
#device wlan_wep # 802.11 WEP support
|
|
|
|
#device wlan_ccmp # 802.11 CCMP support
|
|
|
|
#device wlan_tkip # 802.11 TKIP support
|
|
|
|
#device wlan_amrr # AMRR transmit rate control algorithm
|
2014-02-23 01:48:07 +00:00
|
|
|
|
2020-10-04 22:21:08 +00:00
|
|
|
# HID support
|
|
|
|
device hid # Generic HID support
|
|
|
|
|
2015-12-21 22:25:35 +00:00
|
|
|
device vt
|
|
|
|
device kbdmux
|
|
|
|
device ukbd
|
2015-12-21 21:40:15 +00:00
|
|
|
device videomode
|
|
|
|
device hdmi
|
|
|
|
|
2014-12-21 11:37:00 +00:00
|
|
|
# Flattened Device Tree
|
|
|
|
options FDT # Configure using FDT/DTB data
|
2018-02-18 02:48:54 +00:00
|
|
|
makeoptions MODULES_EXTRA="dtb/imx6 imx"
|
2018-07-08 21:09:52 +00:00
|
|
|
device fdt_pinctrl # FDT pinmux driver
|
2014-02-23 01:48:07 +00:00
|
|
|
|
2020-11-25 19:08:22 +00:00
|
|
|
# EXT_RESOURCES pseudo devices
|
|
|
|
options EXT_RESOURCES
|
|
|
|
device clk
|
|
|
|
device phy
|
|
|
|
device hwreset
|
|
|
|
device nvmem
|
|
|
|
device regulator
|
|
|
|
device syscon
|
|
|
|
|
2014-02-23 01:48:07 +00:00
|
|
|
# SoC-specific devices
|
2014-12-20 18:15:23 +00:00
|
|
|
device ffec # Freescale Fast Ethernet Controller
|
|
|
|
device fsliic # Freescale i2c/iic
|
|
|
|
device iic # iic protocol
|
|
|
|
device iicbus # iic bus
|
2018-07-08 21:14:43 +00:00
|
|
|
device imx6_snvs # On-chip RTC
|
2015-08-19 21:04:50 +00:00
|
|
|
device imxwdt # Watchdog. WARNING: can't be disabled!!!
|
2014-02-23 01:48:07 +00:00
|
|
|
|