A10 revision 295711
1276003Sandrew#
2295464Sandrew# A10 -- Custom configuration for the AllWinner A10 SoC
3254056Sganbold#
4276003Sandrew# For more information on this file, please read the config(5) manual page,
5276003Sandrew# and/or the handbook section on Kernel Configuration Files:
6254056Sganbold#
7254056Sganbold#    http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
8254056Sganbold#
9254056Sganbold# The handbook is also available locally in /usr/share/doc/handbook
10254056Sganbold# if you've installed the doc distribution, otherwise always see the
11254056Sganbold# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
12254056Sganbold# latest information.
13254056Sganbold#
14254056Sganbold# An exhaustive list of options and more detailed explanations of the
15254056Sganbold# device lines is also present in the ../../conf/NOTES and NOTES files.
16254056Sganbold# If you are in doubt as to the purpose or necessity of a line, check first
17254056Sganbold# in NOTES.
18254056Sganbold#
19254056Sganbold# $FreeBSD: head/sys/arm/conf/A10 295711 2016-02-17 18:28:03Z andrew $
20254056Sganbold
21295464Sandrewident		A10
22254056Sganbold
23282576Sandrewinclude 	"std.armv6"
24295464Sandrewinclude 	"../allwinner/std.a10"
25254056Sganbold
26295711Sandrewoptions 	SOC_ALLWINNER_A10
27295711Sandrew
28254056Sganboldoptions 	HZ=100
29295464Sandrewoptions 	SCHED_4BSD		# 4BSD scheduler
30294698Sandrewoptions 	PLATFORM
31254056Sganbold
32276003Sandrew# Debugging for use in -current
33263245Simpmakeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
34283547Sianoptions 	ALT_BREAK_TO_DEBUGGER
35263245Simp#options 	VERBOSE_SYSINIT		# Enable verbose sysinit messages
36276003Sandrewoptions 	KDB			# Enable kernel debugger support
37276003Sandrew# For minimum debugger support (stable branch) use:
38276003Sandrew#options 	KDB_TRACE		# Print a stack trace for a panic
39276003Sandrew# For full debugger support use this instead:
40263245Simpoptions 	DDB			# Enable the kernel debugger
41263245Simpoptions 	INVARIANTS		# Enable calls of extra sanity checking
42263245Simpoptions 	INVARIANT_SUPPORT	# Extra sanity checks of internal structures, required by INVARIANTS
43275962Sandrewoptions 	WITNESS			# Enable checks to detect deadlocks and cycles
44263245Simpoptions 	WITNESS_SKIPSPIN	# Don't run witness on spinlocks for speed
45254056Sganbold#options 	DIAGNOSTIC
46254056Sganbold
47276003Sandrew# NFS root from boopt/dhcp
48276003Sandrew#options 	BOOTP
49254056Sganbold#options 	BOOTP_NFSROOT
50254056Sganbold#options 	BOOTP_COMPAT
51254056Sganbold#options 	BOOTP_NFSV3
52295464Sandrew#options 	BOOTP_WIRED_TO=emac0
53254056Sganbold
54276003Sandrew# MMC/SD/SDIO Card slot support
55283253Sloosdevice		mmc			# mmc/sd bus
56283253Sloosdevice		mmcsd			# mmc/sd flash cards
57254056Sganbold
58254056Sganbold# ATA controllers
59285090Sloosdevice		ahci			# AHCI-compatible SATA controllers
60275962Sandrew#device		ata			# Legacy ATA/SATA controllers
61254056Sganbold
62254056Sganbold# Console and misc
63254056Sganbolddevice		uart
64254056Sganbolddevice		uart_ns8250
65254056Sganbolddevice		pty
66254056Sganbolddevice		snp
67254056Sganbolddevice		md
68254056Sganbolddevice		random			# Entropy device
69254056Sganbold
70254056Sganbold# I2C support
71295626Sandrewdevice		iicbus
72295626Sandrewdevice		iic
73295626Sandrewdevice		twsi
74295635Sandrewdevice		axp209			# AXP209 Power Management Unit
75254056Sganbold
76254056Sganbold# GPIO
77254056Sganbolddevice		gpio
78287316Sloosdevice		gpioled
79254056Sganbold
80270912Simpdevice		scbus			# SCSI bus (required for ATA/SCSI)
81254056Sganbolddevice		da			# Direct Access (disks)
82285090Sloosdevice		pass			# Passthrough device (direct ATA/SCSI access)
83254056Sganbold
84254056Sganbold# USB support
85261572Sianoptions 	USB_HOST_ALIGN=64	# Align usb buffers to cache line size.
86254056Sganbolddevice		usb
87254056Sganboldoptions 	USB_DEBUG
88254056Sganbold#options 	USB_REQ_DEBUG
89254056Sganbold#options 	USB_VERBOSE
90275962Sandrew#device		uhci
91275962Sandrew#device		ohci
92254056Sganbolddevice		ehci
93254056Sganbold
94254056Sganbolddevice		umass
95254056Sganbold
96254056Sganbold# Ethernet
97254056Sganbolddevice		loop
98254056Sganbolddevice		ether
99254056Sganbolddevice		mii
100254056Sganbolddevice		bpf
101254056Sganbold
102295464Sandrewdevice		emac
103262711Sganbold
104254056Sganbold# USB ethernet support, requires miibus
105254056Sganbolddevice		miibus
106254056Sganbold
107295711Sandrew# Pinmux
108295711Sandrewdevice		fdt_pinctrl
109295711Sandrew
110254056Sganbold# Flattened Device Tree
111276003Sandrewoptions 	FDT			# Configure using FDT/DTB data
112281799Sloosmakeoptions	MODULES_EXTRA=dtb/allwinner
113