ATMEL revision 266331
1# Kernel configuration to test compile all the atmel bits with one
2# configuration.  This kernel will not (presently) boot.  Do not copy
3# it to create your own custom config file.
4#
5# $FreeBSD: stable/10/sys/arm/conf/ATMEL 266331 2014-05-17 17:34:37Z ian $
6
7ident		ATMEL
8
9include "../at91/std.atmel"
10
11# Typical values for most SoCs and board configurations.  Will not work for
12# at91sam9g45 or on some boards with non u-boot boot loaders.
13makeoptions	KERNPHYSADDR=0x20000000
14makeoptions	KERNVIRTADDR=0xc0000000
15options 	KERNPHYSADDR=0x20000000
16options 	KERNVIRTADDR=0xc0000000
17
18makeoptions	MODULES_OVERRIDE=""
19
20# list all boards here, but not just yet (no multiboard in mainline).
21options 	ARM_MANY_BOARD
22device		at91_board_bwct
23device		at91_board_ethernut5
24device		at91_board_hl200
25device		at91_board_hl201
26device		at91_board_kb920x
27device		at91_board_qila9g20
28device		at91_board_sam9260ek
29device		at91_board_sam9g20ek
30device		at91_board_sam9x25ek
31device		at91_board_sn9g45
32device		at91_board_tsc4370
33
34#makeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
35
36options 	SCHED_4BSD		# 4BSD scheduler
37#options 	PREEMPTION		# Enable kernel thread preemption
38options 	INET			# InterNETworking
39options 	INET6			# IPv6 communications protocols
40options 	SCTP			# Stream Control Transmission Protocol
41options 	FFS			# Berkeley Fast Filesystem
42options 	SOFTUPDATES		# Enable FFS soft updates support
43options 	UFS_ACL			# Support for access control lists
44options 	UFS_DIRHASH		# Improve performance on big directories
45options 	UFS_GJOURNAL		# Enable gjournal-based UFS journaling
46options 	MD_ROOT			# MD is a potential root device
47options 	NFSCL			# New Network Filesystem Client
48options 	NFSD			# New Network Filesystem Server
49options 	NFSLOCKD		# Network Lock Manager
50options 	NFS_ROOT		# NFS usable as /, requires NFSCL
51options 	TMPFS			# Efficient memory filesystem
52options 	MSDOSFS			# MSDOS Filesystem
53options 	CD9660			# ISO 9660 Filesystem
54options 	PROCFS			# Process filesystem (requires PSEUDOFS)
55options 	PSEUDOFS		# Pseudo-filesystem framework
56options 	GEOM_PART_BSD		# BSD partition scheme
57options 	GEOM_PART_MBR		# MBR partition scheme
58options 	GEOM_PART_GPT		# GUID Partition Tables.
59options 	GEOM_LABEL		# Provides labelization
60options 	COMPAT_FREEBSD5		# Compatible with FreeBSD5
61options 	COMPAT_FREEBSD6		# Compatible with FreeBSD6
62options 	COMPAT_FREEBSD7		# Compatible with FreeBSD7
63options 	SCSI_DELAY=5000		# Delay (in ms) before probing SCSI
64options 	KTRACE			# ktrace(1) support
65options 	STACK			# stack(9) support
66options 	SYSVSHM			# SYSV-style shared memory
67options 	SYSVMSG			# SYSV-style message queues
68options 	SYSVSEM			# SYSV-style semaphores
69options 	_KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions
70options 	PRINTF_BUFR_SIZE=128	# Prevent printf output being interspersed.
71#options 	HWPMC_HOOKS		# Necessary kernel hooks for hwpmc(4)
72#options 	AUDIT			# Security event auditing
73#options 	CAPABILITY_MODE		# Capsicum capability mode
74#options 	CAPABILITIES		# Capsicum capabilities
75#options 	MAC			# TrustedBSD MAC Framework
76#options 	INCLUDE_CONFIG_FILE	# Include this file in kernel
77
78# required for netbooting
79options 	BOOTP
80options 	BOOTP_COMPAT
81options 	BOOTP_NFSROOT
82options 	BOOTP_NFSV3
83options 	BOOTP_WIRED_TO=ate0
84
85# alternatively, boot from a MMC/SD memory card
86#options 	ROOTDEVNAME=\"ufs:/dev/mmcsd0a\"
87
88# kernel/memory size reduction
89options 	MUTEX_NOINLINE
90options 	NO_FFS_SNAPSHOT
91options 	NO_SWAPPING
92options 	NO_SYSCTL_DESCR
93options 	RWLOCK_NOINLINE
94
95# Debugging support.  Always need this:
96options 	KDB			# Enable kernel debugger support.
97# For minimum debugger support (stable branch) use:
98options 	KDB_TRACE		# Print a stack trace for a panic.
99# For full debugger support use this instead:
100options 	DDB			# Support DDB.
101options 	GDB			# Support remote GDB.
102#options 	DEADLKRES		# Enable the deadlock resolver
103#options 	INVARIANTS		# Enable calls of extra sanity checking
104#options 	INVARIANT_SUPPORT	# Extra sanity checks of internal structures, required by INVARIANTS
105#options 	WITNESS			# Enable checks to detect deadlocks and cycles
106#options 	WITNESS_SKIPSPIN	# Don't run witness on spinlocks for speed
107#options 	MALLOC_DEBUG_MAXZONES=8	# Separate malloc(9) zones
108
109# The `bpf' device enables the Berkeley Packet Filter.
110# Be aware of the administrative consequences of enabling this!
111# Note that 'bpf' is required for DHCP.
112device		bpf			# Berkeley packet filter
113
114# Ethernet
115device		mii			# Minimal MII support
116device		ate			# Atmel AT91 Ethernet friver
117
118# I2C
119device		at91_twi		# Atmel AT91 Two-wire Interface
120device		iic			# I2C generic I/O device driver
121device		iicbus			# I2C bus system
122device		pcf8563			# NXP PCF8563 clock/calendar
123
124# MMC/SD
125device		at91_mci		# Atmel AT91 Multimedia Card Interface
126options 	AT91_MCI_HAS_4WIRE
127device		mmc			# MMC/SD bus
128device		mmcsd			# MMC/SD memory card
129
130# DataFlash
131device		at91_spi		# Atmel AT91 Serial Peripheral Interface
132device		spibus			# SPI bus
133device		at45d			# Atmel AT45D
134device		geom_map		# GEOM partition mapping
135
136# Pseudo devices.
137device		loop			# Network loopback
138device		random			# Entropy device
139device		ether			# Ethernet support
140device		vlan			# 802.1Q VLAN support
141device		tun			# Packet tunnel.
142device		md			# Memory "disks"
143device		gif			# IPv6 and IPv4 tunneling
144device		faith			# IPv6-to-IPv4 relaying (translation)
145#device		firmware		# firmware assist module
146
147# SCSI peripherals
148device		scbus			# SCSI bus (required for ATA/SCSI)
149device		ch			# SCSI media changers
150device		da			# Direct Access (disks)
151device		sa			# Sequential Access (tape etc)
152device		cd			# CD
153device		pass			# Passthrough device (direct ATA/SCSI access)
154device		ses			# Enclosure Services (SES and SAF-TE)
155#device		ctl			# CAM Target Layer
156
157# Serial (COM) ports
158device		uart			# Multi-uart driver
159options 	ALT_BREAK_TO_DEBUGGER
160
161# USB support
162options 	USB_DEBUG		# enable debug msgs
163device		ohci			# OHCI USB interface
164device		usb			# USB Bus (required)
165device		umass			# Disks/Mass storage - Requires scbus and da
166
167# USB device (gadget) support
168device		at91_dci		# Atmel's usb device
169device		usfs			# emulate a flash
170device		cdce			# emulate an ethernet
171device		usb_template		# Control of the gadget
172
173# watchdog
174device		at91_wdt		# Atmel AT91 Watchdog Timer
175
176device		at91_rtc
177device		at91_ssc
178#device		at91_tc			# missing?
179
180# NAND Flash - Reference design has Samsung 256MB but others possible
181device		nand			# NAND interface on CS3
182