MPCSA_GENERIC revision 1.38
11.1Sjmcneill# $NetBSD: MPCSA_GENERIC,v 1.38 2013/06/05 23:08:00 christos Exp $
21.1Sjmcneill#
31.1Sjmcneill# GENERIC machine description file
41.1Sjmcneill#
51.1Sjmcneill# This machine description file is used to generate the default NetBSD
61.1Sjmcneill# kernel.  The generic kernel does not include all options, subsystems
71.1Sjmcneill# and device drivers, but should be useful for most applications.
81.1Sjmcneill#
91.1Sjmcneill# The machine description file can be customised for your specific
101.1Sjmcneill# machine to reduce the kernel size and improve its performance.
111.1Sjmcneill#
121.1Sjmcneill# For further information on compiling NetBSD kernels, see the config(8)
131.1Sjmcneill# man page.
141.1Sjmcneill#
151.1Sjmcneill# For further information on hardware support for this architecture, see
161.1Sjmcneill# the intro(4) man page.  For further information about kernel options
171.1Sjmcneill# for this architecture, see the options(4) man page.  For an explanation
181.1Sjmcneill# of each device driver in this file see the section 4 man page for the
191.1Sjmcneill# device.
201.1Sjmcneill
211.1Sjmcneillinclude		"arch/evbarm/conf/std.mpcsa"
221.1Sjmcneill
231.1Sjmcneilloptions 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
241.1Sjmcneill
251.1Sjmcneill#ident 		"GENERIC-$Revision: 1.38 $"
261.1Sjmcneill
271.1Sjmcneillmaxusers	32		# estimated number of users
281.1Sjmcneill
291.1Sjmcneill# CPU support.
301.1Sjmcneilloptions		CPU_ARM9    # Support the ARM9TDMI core
311.1Sjmcneillmakeoptions	CPUFLAGS="-mtune=arm920t -mcpu=arm920t"
321.1Sjmcneill
331.1Sjmcneill# CPU-related options.
341.1Sjmcneill#options 	MATH_EMULATE	# floating point emulation
351.1Sjmcneill
361.1Sjmcneill# doesn't work with MP just yet..
371.1Sjmcneill#options 	PERFCTRS	# performance-monitoring counters support
381.1Sjmcneill
391.1Sjmcneill#options 	MULTIBOOT	# Multiboot support (see multiboot(8))
401.1Sjmcneill
411.1Sjmcneill# delay between "rebooting ..." message and hardware reset, in milliseconds
421.1Sjmcneill#options 	CPURESET_DELAY=2000
431.1Sjmcneill
441.1Sjmcneill# This option allows you to force a serial console at the specified
451.1Sjmcneill# I/O address.   see console(4) for details.
461.1Sjmcneill#options 	CONSDEVNAME="\"com\"",CONADDR=0x2f8,CONSPEED=57600
471.1Sjmcneill#	you don't want the option below ON iff you are using the
481.1Sjmcneill#	serial console option of the new boot strap code.
491.1Sjmcneill#options 	CONS_OVERRIDE	# Always use above! independent of boot info
501.1Sjmcneill
511.1Sjmcneill# Standard system options
521.1Sjmcneill
531.1Sjmcneill#options 	INSECURE	# disable kernel security levels - X needs this
541.1Sjmcneill
551.1Sjmcneilloptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
561.1Sjmcneilloptions 	NTP		# NTP phase/frequency locked loop
571.1Sjmcneill
581.1Sjmcneilloptions 	KTRACE		# system call tracing via ktrace(1)
591.1Sjmcneill
601.1Sjmcneilloptions 	SYSVMSG		# System V-like message queues
611.1Sjmcneilloptions 	SYSVSEM		# System V-like semaphores
621.1Sjmcneilloptions 	SYSVSHM		# System V-like memory sharing
631.1Sjmcneill
641.1Sjmcneill#options 	USERCONF	# userconf(4) support
651.1Sjmcneill#options 	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
661.1Sjmcneilloptions 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
671.1Sjmcneill
681.1Sjmcneill# Beep when it is safe to power down the system (requires sysbeep)
691.1Sjmcneill#options 	BEEP_ONHALT
701.1Sjmcneill# Some tunable details of the above feature (default values used below)
711.1Sjmcneill#options 	BEEP_ONHALT_COUNT=3	# Times to beep
721.1Sjmcneill#options 	BEEP_ONHALT_PITCH=1500	# Default frequency (in Hz)
731.1Sjmcneill#options 	BEEP_ONHALT_PERIOD=250	# Default duration (in msecs)
741.1Sjmcneill
751.1Sjmcneill# Enable experimental buffer queue strategy for better responsiveness under
761.1Sjmcneill# high disk I/O load. Likely stable but not yet the default.
771.1Sjmcneill#options 	BUFQ_READPRIO
781.1Sjmcneill#options 	BUFQ_PRIOCSCAN
791.1Sjmcneill
801.1Sjmcneill# Diagnostic/debugging support options
811.1Sjmcneilloptions 	DIAGNOSTIC	# expensive kernel consistency checks
821.1Sjmcneilloptions 	DEBUG		# expensive debugging checks/support
831.1Sjmcneilloptions 	KMEMSTATS	# kernel memory statistics (vmstat -m)
841.1Sjmcneilloptions 	DDB		# in-kernel debugger
851.1Sjmcneilloptions 	DDB_ONPANIC=1	# see also sysctl(8): `ddb.onpanic'
861.1Sjmcneilloptions 	DDB_HISTORY_SIZE=512	# enable history editing in DDB
871.1Sjmcneill#options 	KGDB		# remote debugger
881.1Sjmcneill#options 	KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x3f8,KGDB_DEVRATE=9600
891.1Sjmcneillmakeoptions	DEBUG="-g"	# compile full symbol table
901.1Sjmcneillmakeoptions	COPTS="-Os"
911.1Sjmcneilloptions 	SYMTAB_SPACE=640000
921.1Sjmcneill#options 	SYSCALL_STATS	# per syscall counts
931.1Sjmcneill#options 	SYSCALL_TIMES	# per syscall times
941.1Sjmcneill#options 	SYSCALL_TIMES_HASCOUNTER	# use 'broken' rdtsc (soekris)
951.1Sjmcneill
961.1Sjmcneill# Compatibility options
971.1Sjmcneill#options 	COMPAT_NOMID	# NetBSD 0.8, 386BSD, and BSDI
981.1Sjmcneill#options 	COMPAT_09	# NetBSD 0.9
991.1Sjmcneill#options 	COMPAT_10	# NetBSD 1.0
1001.1Sjmcneill#options 	COMPAT_11	# NetBSD 1.1
1011.1Sjmcneill#options 	COMPAT_12	# NetBSD 1.2, 386BSD, and BSDI
1021.1Sjmcneill#options 	COMPAT_13	# NetBSD 1.3, 386BSD, and BSDI
1031.1Sjmcneill#options 	COMPAT_14	# NetBSD 1.4
1041.1Sjmcneill#options 	COMPAT_15	# NetBSD 1.5
1051.1Sjmcneilloptions 	COMPAT_16	# NetBSD 1.6
1061.1Sjmcneilloptions 	COMPAT_20	# NetBSD 2.0
1071.1Sjmcneilloptions 	COMPAT_30	# NetBSD 3.0
1081.1Sjmcneilloptions 	COMPAT_43	# 4.3BSD, 386BSD, and BSDI
1091.1Sjmcneill#options 	COMPAT_386BSD_MBRPART # recognize old partition ID
1101.1Sjmcneill#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
1111.1Sjmcneill
1121.1Sjmcneill#options 	COMPAT_OSSAUDIO	# OSS (Voxware) audio driver compatibility
1131.1Sjmcneill#options 	COMPAT_SVR4	# binary compatibility with SVR4
1141.1Sjmcneill#options 	COMPAT_IBCS2	# binary compatibility with SCO and ISC
1151.1Sjmcneill#options 	COMPAT_LINUX	# binary compatibility with Linux
1161.1Sjmcneill#options 	COMPAT_FREEBSD	# binary compatibility with FreeBSD
1171.1Sjmcneill#options 	COMPAT_NDIS	# NDIS network driver
1181.1Sjmcneilloptions 	COMPAT_BSDPTY	# /dev/[pt]ty?? ptys.
1191.1Sjmcneill
1201.1Sjmcneill# File systems
1211.1Sjmcneillfile-system 	FFS		# UFS
1221.1Sjmcneill#file-system 	EXT2FS		# second extended file system (linux)
1231.1Sjmcneill#file-system 	LFS		# log-structured file system
1241.1Sjmcneillfile-system 	MFS		# memory file system
1251.1Sjmcneillfile-system 	NFS		# Network File System client
1261.1Sjmcneill#file-system 	NTFS		# Windows/NT file system (experimental)
1271.1Sjmcneill#file-system 	CD9660		# ISO 9660 + Rock Ridge file system
1281.1Sjmcneillfile-system 	MSDOSFS		# MS-DOS file system
1291.1Sjmcneill#file-system 	FDESC		# /dev/fd
1301.1Sjmcneillfile-system 	KERNFS		# /kern
1311.1Sjmcneillfile-system 	NULLFS		# loopback file system
1321.1Sjmcneill#file-system 	OVERLAY		# overlay file system
1331.1Sjmcneill#file-system 	PROCFS		# /proc
1341.1Sjmcneill#file-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
1351.1Sjmcneill#file-system 	UMAPFS		# NULLFS + uid and gid remapping
1361.1Sjmcneillfile-system 	UNION		# union file system
1371.1Sjmcneill#file-system	CODA		# Coda File System; also needs vcoda (below)
1381.1Sjmcneill#file-system	SMBFS		# experimental - CIFS; also needs nsmb (below)
1391.1Sjmcneillfile-system	PTYFS		# /dev/ptm support
1401.1Sjmcneillfile-system	TMPFS		# Efficient memory file-system
1411.1Sjmcneill#file-system	UDF		# experimental - OSTA UDF CD/DVD file-system
1421.1Sjmcneill
1431.1Sjmcneill# File system options
1441.1Sjmcneill#options 	QUOTA		# legacy UFS quotas
1451.1Sjmcneill#options 	QUOTA2		# new, in-filesystem UFS quotas
1461.1Sjmcneill#options 	FFS_EI		# FFS Endian Independent support
1471.1Sjmcneilloptions 	WAPBL		# File system journaling support
1481.1.1.3Sjmcneill# Note that UFS_DIRHASH is suspected of causing kernel memory corruption.
1491.1Sjmcneill# It is not recommended for general use.
1501.1Sjmcneill#options 	UFS_DIRHASH	# UFS Large Directory Hashing - Experimental
1511.1Sjmcneill#options 	NFSSERVER	# Network File System server
1521.1Sjmcneilloptions 	FFS_NO_SNAPSHOT	# No FFS snapshot support
1531.1Sjmcneill#options 	EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
1541.1Sjmcneill				# immutable) behave as system flags.
1551.1Sjmcneill
1561.1Sjmcneill# Networking options
1571.1Sjmcneilloptions 	GATEWAY		# packet forwarding
1581.1Sjmcneilloptions 	INET		# IP + ICMP + TCP + UDP
1591.1Sjmcneill#options 	INET6		# IPV6
1601.1Sjmcneill#options 	IPSEC		# IP security
1611.1Sjmcneill#options 	IPSEC_DEBUG	# debug for IP security
1621.1Sjmcneill#options 	MROUTING	# IP multicast routing
1631.1Sjmcneill#options 	PIM		# Protocol Independent Multicast
1641.1Sjmcneill#options 	NETATALK	# AppleTalk networking protocols
1651.1Sjmcneilloptions 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
1661.1Sjmcneilloptions 	PPP_DEFLATE	# Deflate compression support for PPP
1671.1Sjmcneilloptions 	PPP_FILTER	# Active filter support for PPP (requires bpf)
1681.1Sjmcneilloptions 	PFIL_HOOKS	# pfil(9) packet filter hooks
1691.1Sjmcneilloptions 	IPFILTER_LOG	# ipmon(8) log support
1701.1Sjmcneilloptions 	IPFILTER_LOOKUP	# ippool(8) support
1711.1Sjmcneilloptions 	IPFILTER_COMPAT # Compat for IP-Filter
1721.1Sjmcneill#options 	IPFILTER_DEFAULT_BLOCK	# block all packets by default
1731.1Sjmcneill#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
1741.1Sjmcneill
1751.1Sjmcneill#options 	ALTQ		# Manipulate network interfaces' output queues
1761.1Sjmcneill#options 	ALTQ_BLUE	# Stochastic Fair Blue
1771.1Sjmcneill#options 	ALTQ_CBQ	# Class-Based Queueing
1781.1Sjmcneill#options 	ALTQ_CDNR	# Diffserv Traffic Conditioner
1791.1Sjmcneill#options 	ALTQ_FIFOQ	# First-In First-Out Queue
1801.1Sjmcneill#options 	ALTQ_FLOWVALVE	# RED/flow-valve (red-penalty-box)
1811.1Sjmcneill#options 	ALTQ_HFSC	# Hierarchical Fair Service Curve
1821.1Sjmcneill#options 	ALTQ_LOCALQ	# Local queueing discipline
1831.1Sjmcneill#options 	ALTQ_PRIQ	# Priority Queueing
1841.1Sjmcneill#options 	ALTQ_RED	# Random Early Detection
1851.1Sjmcneill#options 	ALTQ_RIO	# RED with IN/OUT
1861.1Sjmcneill#options 	ALTQ_WFQ	# Weighted Fair Queueing
1871.1Sjmcneill
1881.1Sjmcneill# These options enable verbose messages for several subsystems.
1891.1Sjmcneill# Warning, these may compile large string tables into the kernel!
1901.1Sjmcneilloptions 	MIIVERBOSE	# verbose PHY autoconfig messages
1911.1Sjmcneilloptions 	PCMCIAVERBOSE	# verbose PCMCIA configuration messages
1921.1Sjmcneilloptions 	SCSIVERBOSE	# human readable SCSI error messages
1931.1Sjmcneilloptions 	USBVERBOSE	# verbose USB device autoconfig messages
1941.1Sjmcneill
1951.1Sjmcneilloptions 	NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
1961.1Sjmcneill
1971.1Sjmcneill#
1981.1Sjmcneill# wscons options
1991.1Sjmcneill#
2001.1Sjmcneill# builtin terminal emulations
2011.1Sjmcneill#options 	WSEMUL_SUN		# sun terminal emulation
2021.1Sjmcneill#options 	WSEMUL_VT100		# VT100 / VT220 emulation
2031.1Sjmcneill# customization of console and kernel output - see dev/wscons/wsdisplayvar.h
2041.1Sjmcneill#options 	WSDISPLAY_CUSTOM_OUTPUT	# color customization from wsconsctl(8)
2051.1Sjmcneill#options 	WS_DEFAULT_FG=WSCOL_WHITE
2061.1Sjmcneill#options 	WS_DEFAULT_BG=WSCOL_BLACK
2071.1Sjmcneill#options 	WS_DEFAULT_COLATTR="(0)"
2081.1Sjmcneill#options 	WS_DEFAULT_MONOATTR="(0)"
2091.1Sjmcneill#options 	WS_KERNEL_FG=WSCOL_GREEN
2101.1Sjmcneill#options 	WS_KERNEL_BG=WSCOL_BLACK
2111.1Sjmcneill#options 	WS_KERNEL_COLATTR=""
2121.1Sjmcneill#options 	WS_KERNEL_MONOATTR=""
2131.1Sjmcneill# customization of console border color
2141.1Sjmcneill#options 	WSDISPLAY_CUSTOM_BORDER	# custom border colors via wsconsctl(8)
2151.1Sjmcneill#options 	WSDISPLAY_BORDER_COLOR=WSCOL_BLUE	# default color
2161.1Sjmcneill# compatibility to other console drivers
2171.1Sjmcneill#options 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
2181.1Sjmcneill#options 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
2191.1Sjmcneill#options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
2201.1Sjmcneill#options 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
2211.1Sjmcneill#options 	WSKBD_EVENT_AUTOREPEAT		# auto repeat in event mode
2221.1Sjmcneill#options 	WSKBD_USONLY			# strip off non-US keymaps
2231.1Sjmcneill# don't attach pckbd as the console if no PS/2 keyboard is found
2241.1Sjmcneill#options 	PCKBD_CNATTACH_MAY_FAIL
2251.1Sjmcneill# see dev/pckbport/wskbdmap_mfii.c for implemented layouts
2261.1Sjmcneill#options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)" # for pckbd driver
2271.1Sjmcneill#options 	UKBD_LAYOUT="(KB_DE | KB_NODEAD)"  # for ukbd driver
2281.1Sjmcneill# allocate a number of virtual screens at autoconfiguration time
2291.1Sjmcneill#options 	WSDISPLAY_DEFAULTSCREENS=4
2301.1Sjmcneill# use a large software cursor that doesn't blink
2311.1Sjmcneill#options 	PCDISPLAY_SOFTCURSOR
2321.1Sjmcneill# modify the screen type of the console; defaults to "80x25"
2331.1Sjmcneill#options 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
2341.1Sjmcneill# work around a hardware bug that loaded fonts don't work; found on ATI cards
2351.1Sjmcneill#options 	VGA_CONSOLE_ATI_BROKEN_FONTSEL
2361.1Sjmcneill# console scrolling support.
2371.1Sjmcneill#options 	WSDISPLAY_SCROLLSUPPORT
2381.1Sjmcneill# enable VGA raster mode capable of displaying multilingual text on console
2391.1Sjmcneill#options 	VGA_RASTERCONSOLE
2401.1Sjmcneill# enable splash screen support; requires hw driver support
2411.1Sjmcneill#options 	SPLASHSCREEN
2421.1Sjmcneill
2431.1Sjmcneill# Kernel root file system and dump configuration.
2441.1Sjmcneill#config		netbsd root on sd0c type ffs
2451.1Sjmcneillconfig		netbsd root on wd0a type ffs
2461.1Sjmcneill#config		netbsd root on ? type ?
2471.1Sjmcneill#config		netbsd	root on ? type nfs
2481.1Sjmcneill
2491.1Sjmcneill#
2501.1Sjmcneill# Device configuration
2511.1Sjmcneill#
2521.1Sjmcneill
2531.1Sjmcneillmainbus0 at root
2541.1Sjmcneill
2551.1Sjmcneillcpu* at mainbus?
2561.1Sjmcneill
2571.1Sjmcneill# Basic Bus Support
2581.1Sjmcneillat91bus0	at mainbus?		# AT91 bus
2591.1Sjmcneill
2601.1Sjmcneill
2611.1Sjmcneill# Integrated peripherals:
2621.1Sjmcneill# On-chip interrupt controller
2631.1Sjmcneillat91aic0	at at91bus0 addr 0xfffff000 size 0x200
2641.1Sjmcneill
2651.1Sjmcneill# On-chip timer
2661.1Sjmcneill#at91st0		at at91bus0 addr 0xfffffd00 size 0x100 pid 1
2671.1Sjmcneillat91tctmr0	at at91bus0 addr 0xfffa0000 size 0x40 pid 17
2681.1Sjmcneill
2691.1Sjmcneill# On-chip debug UART
2701.1Sjmcneillat91dbgu0	at at91bus0 addr 0xfffff200 size 0x200 pid 1
2711.1Sjmcneill
2721.1Sjmcneill# On-chip UARTs
2731.1Sjmcneillat91usart0	at at91bus0 addr 0xfffc0000 size 0x4000 pid 6
2741.1Sjmcneillat91usart1	at at91bus0 addr 0xfffc4000 size 0x4000 pid 7
2751.1Sjmcneillat91usart2	at at91bus0 addr 0xfffc8000 size 0x4000 pid 8
2761.1Sjmcneillat91usart3	at at91bus0 addr 0xfffcc000 size 0x4000 pid 9
2771.1Sjmcneill
2781.1Sjmcneill# On-chip ethernet
2791.1Sjmcneillat91emac0	at at91bus0 addr 0xfffbc000 size 0x4000 pid 24
2801.1Sjmcneill
2811.1Sjmcneill# General purpose I/O
2821.1Sjmcneillat91pio0	at at91bus0 addr 0xfffff400 size 0x200 pid 2
2831.1Sjmcneillat91pio1	at at91bus0 addr 0xfffff600 size 0x200 pid 3
2841.1Sjmcneillat91pio2	at at91bus0 addr 0xfffff800 size 0x200 pid 4
2851.1Sjmcneillat91pio3	at at91bus0 addr 0xfffffa00 size 0x200 pid 5
2861.1Sjmcneillgpio*		at at91pio?
2871.1Sjmcneill
2881.1Sjmcneill# On-chip CF interface
2891.1Sjmcneillat91cf0	at at91bus0 addr 0x50000000 size 0x900000 pid 4
2901.1Sjmcneillpcmcia0		at at91cf0
2911.1Sjmcneill
2921.1Sjmcneill# On-chip USB 1.1
2931.1Sjmcneillohci0		at at91bus0 addr 0x00300000 size 0x100000 pid 23
2941.1Sjmcneill
2951.1Sjmcneill# On-chip SPI
2961.1.1.2Sjmcneillat91spi0	at at91bus0 addr 0xfffe0000 size 0x4000 pid 13
2971.1.1.2Sjmcneillspi0		at at91spi0
2981.1.1.2Sjmcneill#spi_obuf0	at spi0 slave 1
2991.1.1.2Sjmcneill#gpio*		at spi_obuf?
3001.1.1.2Sjmcneillmpcsa_leds0	at spi0 slave 1
3011.1.1.2Sjmcneillgpio*		at mpcsa_leds?
3021.1.1.2Sjmcneill
3031.1Sjmcneill# On-chip I2C
3041.1Sjmcneillat91twi0	at at91bus0 addr 0xfffb8000 size 0x4000 pid 12
3051.1Sjmcneilliic0		at at91twi?
3061.1Sjmcneill#ds1672rtc*	at iic0 addr 0x68
3071.1Sjmcneillseeprom*	at iic0 addr 0x50 size 4096
3081.1Sjmcneill
3091.1Sjmcneill# Console Devices
3101.1Sjmcneill
3111.1Sjmcneill# PCMCIA serial interfaces
3121.1Sjmcneillcom*	at pcmcia? function ?		# Modems and serial cards
3131.1Sjmcneill
3141.1Sjmcneillpcmcom* at pcmcia? function ?		# PCMCIA multi-port serial cards
3151.1Sjmcneillcom*	at pcmcom? slave ?		# ...and the slave devices
3161.1Sjmcneill
3171.1Sjmcneill
3181.1Sjmcneill# Hardware monitors
3191.1Sjmcneill
3201.1Sjmcneill# AMD 768 and 8111 power/ACPI controllers
3211.1Sjmcneill#dbcool* at iic? addr 0x2C		# Unknown other motherboard(s)
3221.1Sjmcneill#dbcool* at iic? addr 0x2D		# Tyan S2881
3231.1Sjmcneill#dbcool* at iic? addr 0x2E		# Tyan S2882-D
3241.1Sjmcneill
3251.1Sjmcneill# 1-Wire support
3261.1Sjmcneill#gpioow* 	at gpio? offset 6 mask 0x1	# 1-wire bitbanging via gpio
3271.1Sjmcneill#onewire*	at gpioow?
3281.1Sjmcneill
3291.1Sjmcneill# 1-Wire devices
3301.1Sjmcneill#owtemp* 	at onewire?			# Temperature sensors
3311.1Sjmcneill
3321.1Sjmcneill# SCSI Controllers and Devices
3331.1Sjmcneill
3341.1Sjmcneill# PCMCIA SCSI controllers
3351.1Sjmcneill#aic*	at pcmcia? function ?		# Adaptec APA-1460 SCSI
3361.1Sjmcneill#esp*	at pcmcia? function ?		# Qlogic ESP406/FAS408 SCSI
3371.1Sjmcneill#spc* 	at pcmcia? function ?		# Fujitsu MB87030/MB89352 SCSI
3381.1Sjmcneill
3391.1Sjmcneill# SCSI bus support
3401.1Sjmcneillscsibus* at scsi?
3411.1Sjmcneill
3421.1Sjmcneill# SCSI devices
3431.1Sjmcneillsd*	at scsibus? target ? lun ?	# SCSI disk drives
3441.1Sjmcneill#st*	at scsibus? target ? lun ?	# SCSI tape drives
3451.1Sjmcneill#cd*	at scsibus? target ? lun ?	# SCSI CD-ROM drives
3461.1Sjmcneill#ch*	at scsibus? target ? lun ?	# SCSI autochangers
3471.1Sjmcneill#ses*	at scsibus? target ? lun ?	# SCSI Enclosure Services devices
3481.1Sjmcneill#ss*	at scsibus? target ? lun ?	# SCSI scanners
3491.1Sjmcneill#uk*	at scsibus? target ? lun ?	# SCSI unknown
3501.1Sjmcneill
3511.1Sjmcneill
3521.1Sjmcneill# PCMCIA IDE controllers
3531.1Sjmcneillwdc*	at pcmcia? function ?
3541.1Sjmcneill
3551.1Sjmcneill# ATA (IDE) bus support
3561.1Sjmcneillatabus*	at wdc? channel ?
3571.1Sjmcneill#atabus* at ata?
3581.1Sjmcneill
3591.1Sjmcneill# IDE drives
3601.1Sjmcneill# Flags are used only with controllers that support DMA operations
3611.1Sjmcneill# and mode settings (e.g. some pciide controllers)
3621.1Sjmcneill# The lowest order four bits (rightmost digit) of the flags define the PIO
3631.1Sjmcneill# mode to use, the next set of four bits the DMA mode and the third set the
3641.1Sjmcneill# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
3651.1Sjmcneill# to use, and the last bit must be 1 for this setting to be used.
3661.1Sjmcneill# For DMA and UDMA, 0xf (1111) means 'disable'.
3671.1Sjmcneill# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
3681.1Sjmcneill# (0xc=1100, 0xa=1010, 0xf=1111)
3691.1Sjmcneill# 0x0000 means "use whatever the drive claims to support".
3701.1Sjmcneillwd*	at atabus? drive ? flags 0x0000
3711.1Sjmcneill
3721.1Sjmcneill# ATAPI bus support
3731.1Sjmcneillatapibus* at atapi?
3741.1Sjmcneill
3751.1Sjmcneill# ATAPI devices
3761.1Sjmcneill# flags have the same meaning as for IDE drives.
3771.1Sjmcneill#cd*	at atapibus? drive ? flags 0x0000	# ATAPI CD-ROM drives
3781.1Sjmcneillsd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
3791.1Sjmcneill#st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
3801.1Sjmcneill#uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
3811.1Sjmcneill
3821.1Sjmcneill
3831.1Sjmcneill# Miscellaneous mass storage devices
3841.1Sjmcneill
3851.1Sjmcneill
3861.1Sjmcneill
3871.1Sjmcneill# Network Interfaces
3881.1Sjmcneill
3891.1Sjmcneill# PCMCIA network interfaces
3901.1Sjmcneill#an*	at pcmcia? function ?		# Aironet PC4500/PC4800 (802.11)
3911.1Sjmcneill#awi*	at pcmcia? function ?		# BayStack 650/660 (802.11FH/DS)
3921.1Sjmcneill#cnw*	at pcmcia? function ?		# Xircom/Netwave AirSurfer
3931.1Sjmcneill#cs*	at pcmcia? function ?		# CS89xx Ethernet
3941.1Sjmcneill#ep*	at pcmcia? function ?		# 3Com 3c589 and 3c562 Ethernet
3951.1Sjmcneill#mbe*	at pcmcia? function ?		# MB8696x based Ethernet
3961.1Sjmcneill#ne*	at pcmcia? function ?		# NE2000-compatible Ethernet
3971.1Sjmcneill#ray*	at pcmcia? function ?		# Raytheon Raylink (802.11)
3981.1Sjmcneill#sm*	at pcmcia? function ?		# Megahertz Ethernet
3991.1Sjmcneill# tr at pcmcia has problems with Cardbus bridges
4001.1Sjmcneill#tr*	at pcmcia? function ?		# TROPIC based Token-Ring
4011.1Sjmcneillwi*	at pcmcia? function ?		# Lucent/Intersil WaveLan IEEE (802.11)
4021.1Sjmcneill#xirc*	at pcmcia? function ?		# Xircom CreditCard Ethernet
4031.1Sjmcneill#com*	at xirc?
4041.1Sjmcneill#xi*	at xirc?
4051.1Sjmcneill#mhzc*	at pcmcia? function ?		# Megahertz Ethernet/Modem combo cards
4061.1Sjmcneill#com*	at mhzc?
4071.1Sjmcneill#sm*	at mhzc?
4081.1Sjmcneill
4091.1Sjmcneill
4101.1Sjmcneill# MII/PHY support
4111.1Sjmcneill#acphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
4121.1Sjmcneill#amhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
4131.1Sjmcneill#bmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
4141.1Sjmcneill#brgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
4151.1Sjmcneill#ciphy*	at mii? phy ?			# Cicada CS8201 Gig-E PHYs
4161.1Sjmcneill#dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
4171.1Sjmcneill#exphy*	at mii? phy ?			# 3Com internal PHYs
4181.1Sjmcneill#gentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
4191.1Sjmcneill#glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
4201.1Sjmcneill#gphyter* at mii? phy ?			# NS83861 Gig-E PHY
4211.1Sjmcneill#icsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
4221.1Sjmcneill#igphy*	at mii? phy ?			# Intel IGP01E1000
4231.1Sjmcneill#ikphy*	at mii? phy ?			# Intel 82563 PHYs
4241.1Sjmcneill#inphy*	at mii? phy ?			# Intel 82555 PHYs
4251.1Sjmcneill#iophy*	at mii? phy ?			# Intel 82553 PHYs
4261.1Sjmcneill#lxtphy* at mii? phy ?			# Level One LXT-970 PHYs
4271.1Sjmcneill#makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
4281.1Sjmcneill#nsphy*	at mii? phy ?			# NS83840 PHYs
4291.1Sjmcneill#nsphyter* at mii? phy ? 		# NS83843 PHYs
4301.1Sjmcneill#pnaphy* at mii? phy ?			# generic HomePNA PHYs
4311.1Sjmcneill#qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
4321.1Sjmcneill#rgephy* at mii? phy ?			# Realtek 8169S/8110S internal PHYs
4331.1Sjmcneill#rlphy*	at mii? phy ?			# Realtek 8139/8201L PHYs
4341.1Sjmcneill#sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
4351.1Sjmcneill#tlphy*	at mii? phy ?			# ThunderLAN PHYs
4361.1Sjmcneill#tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
4371.1Sjmcneillukphy0	at at91emac0 phy 3
4381.1Sjmcneillukphy*	at aue? phy ?			# generic unknown PHYs
4391.1Sjmcneillukphy*	at axe? phy ?			# generic unknown PHYs
4401.1Sjmcneillukphy*	at udav? phy ?			# generic unknown PHYs
4411.1Sjmcneillukphy*	at url? phy ?			# generic unknown PHYs
4421.1Sjmcneill#urlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
4431.1Sjmcneill
4441.1Sjmcneill
4451.1Sjmcneill# USB Controller and Devices
4461.1Sjmcneill
4471.1Sjmcneill# USB bus support
4481.1Sjmcneillusb*	at ohci?
4491.1Sjmcneill
4501.1Sjmcneill# USB Hubs
4511.1Sjmcneilluhub*	at usb?
4521.1Sjmcneilluhub*	at uhub? port ? configuration ? interface ?
4531.1Sjmcneill
4541.1Sjmcneill# USB HID device
4551.1Sjmcneill#uhidev*	at uhub? port ? configuration ? interface ?
4561.1Sjmcneill
4571.1Sjmcneill# USB Mice
4581.1Sjmcneill#ums*	at uhidev? reportid ?
4591.1Sjmcneill#wsmouse* at ums? mux 0
4601.1Sjmcneill
4611.1Sjmcneill# USB eGalax touch-panel
4621.1Sjmcneill#uep*	at uhub? port ?
4631.1Sjmcneill#wsmouse* at uep? mux 0
4641.1Sjmcneill
4651.1Sjmcneill# USB Keyboards
4661.1Sjmcneill#ukbd*	at uhidev? reportid ?
4671.1Sjmcneill#wskbd*	at ukbd? console ? mux 1
4681.1Sjmcneill
4691.1Sjmcneill# USB serial adapter
4701.1Sjmcneill#ucycom*	at uhidev? reportid ?
4711.1Sjmcneill
4721.1Sjmcneill# USB Generic HID devices
4731.1Sjmcneill#uhid*	at uhidev? reportid ?
4741.1Sjmcneill
4751.1Sjmcneill# USB Printer
4761.1Sjmcneill#ulpt*	at uhub? port ? configuration ? interface ?
4771.1Sjmcneill
4781.1Sjmcneill# USB Modem
4791.1Sjmcneill#umodem*	at uhub? port ? configuration ?
4801.1Sjmcneill#ucom*	at umodem?
4811.1Sjmcneill
4821.1Sjmcneill# Option N.V. Wireless WAN modems
4831.1Sjmcneill#uhso*	at uhub? port ? configuration ?
4841.1Sjmcneill
4851.1Sjmcneill# USB Mass Storage
4861.1Sjmcneillumass*	at uhub? port ? configuration ? interface ?
4871.1Sjmcneillwd*	at umass?
4881.1Sjmcneill
4891.1Sjmcneill# USB audio
4901.1Sjmcneill#uaudio*	at uhub? port ? configuration ?
4911.1Sjmcneill
4921.1Sjmcneill# USB MIDI
4931.1Sjmcneill#umidi* at uhub? port ? configuration ?
4941.1Sjmcneill
4951.1Sjmcneill# USB IrDA
4961.1Sjmcneill# USB-IrDA bridge spec
4971.1Sjmcneill#uirda* at uhub? port ? configuration ? interface ?
4981.1Sjmcneill#irframe* at uirda?
4991.1Sjmcneill
5001.1Sjmcneill# SigmaTel STIr4200 USB/IrDA Bridge
5011.1Sjmcneill#ustir* at uhub? port ?
5021.1Sjmcneill#irframe* at ustir?
5031.1Sjmcneill
5041.1Sjmcneill# USB Ethernet adapters
5051.1Sjmcneillaue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
5061.1Sjmcneillaxe*	at uhub? port ?		# ASIX AX88172 based adapters
5071.1Sjmcneillcdce*	at uhub? port ?		# CDC, Ethernet Networking Control Model
5081.1Sjmcneillcue*	at uhub? port ?		# CATC USB-EL1201A based adapters
5091.1Sjmcneillkue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
5101.1Sjmcneilludav*	at uhub? port ?		# Davicom DM9601 based adapters
5111.1Sjmcneillurl*	at uhub? port ?		# Realtek RTL8150L based adapters
5121.1Sjmcneill
5131.1Sjmcneill# USB 802.11 adapters
5141.1Sjmcneillatu*	at uhub? port ?		# Atmel AT76C50XX based adapters
5151.1Sjmcneillural*	at uhub? port ?		# Ralink Technology RT2500USB 802.11a/b/g
5161.1Sjmcneillrum*	at uhub? port ?		# Ralink Technology RT2501/RT2601 802.11a/b/g
5171.1Sjmcneill
5181.1Sjmcneill# Prolific PL2301/PL2302 host-to-host adapter
5191.1Sjmcneillupl*	at uhub? port ?
5201.1Sjmcneill
5211.1Sjmcneill# Serial adapters
5221.1Sjmcneillubsa*	at uhub? port ?		# Belkin serial adapter
5231.1Sjmcneillucom*	at ubsa? portno ?
5241.1Sjmcneill
5251.1Sjmcneilluftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
526ucom*	at uftdi? portno ?
527
528#uipaq*	at uhub? port ?		# iPAQ PDAs
529#ucom*	at uipaq? portno ?
530
531umct*	at uhub? port ?		# MCT USB-RS232 serial adapter
532ucom*	at umct? portno ?
533
534uplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
535ucom*	at uplcom? portno ?
536
537uvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
538ucom*	at uvscom? portno ?
539
540# Diamond Multimedia Rio 500
541#urio*	at uhub? port ?
542
543# USB Handspring Visor
544#uvisor*	at uhub? port ?
545#ucom*	at uvisor?
546
547# Kyocera AIR-EDGE PHONE
548#ukyopon* at uhub? port ?
549#ucom*	at ukyopon? portno ?
550
551# USB scanners
552#uscanner* at uhub? port ?
553
554# USB scanners that use SCSI emulation, e.g., HP5300
555#usscanner* at uhub? port ?
556
557# Topfield TF5000PVR range of DVB recorders
558#utoppy*	at uhub? port ?
559
560# Y@P firmware loader
561#uyap* at uhub? port ?
562
563# D-Link DSB-R100 USB radio
564#udsbr*	at uhub? port ?
565#radio*	at udsbr?
566
567# USB Generic driver
568#ugen*	at uhub? port ?
569
570
571# IrDA and Consumer Ir devices
572
573# Toshiba Oboe
574
575# Audio Devices
576
577# Audio support
578#audio*	at audiobus?
579
580# MIDI support
581#midi*	at midibus?
582#midi*	at pcppi?		# MIDI interface to the PC speaker
583
584
585
586# Bluetooth Controller and Device support
587
588# Bluetooth PCMCIA Controllers
589#bt3c* at pcmcia? function ?		# 3Com 3CRWB6096-A
590
591# Bluetooth USB Controllers
592#ubt* at uhub? port ? configuration ? interface ?
593#aubtfwl* at uhub? port ?
594
595# Bluetooth Device Hub
596#bthub* at bt3c?
597#bthub* at ubt?
598
599# Bluetooth HID support
600#bthidev* at bthub?
601
602# Bluetooth Mouse
603#btms* at bthidev? reportid ?
604#wsmouse* at btms? mux 0
605
606# Bluetooth Keyboard
607#btkbd* at bthidev? reportid ?
608#wskbd* at btkbd? console ? mux 1
609
610# Bluetooth Apple Magic Mouse
611#btmagic* at bthub?
612#wsmouse* at btmagic? mux 0
613
614# Bluetooth Audio support
615#btsco* at bthub?
616
617
618
619
620# Pseudo-Devices
621
622#pseudo-device 	crypto		# /dev/crypto device
623#pseudo-device	swcrypto	# software crypto implementation
624
625# disk/mass storage pseudo-devices
626#pseudo-device	ccd			# concatenated/striped disk devices
627#pseudo-device	cgd			# cryptographic disk devices
628#pseudo-device	raid			# RAIDframe disk driver
629#options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
630# Options to enable various other RAIDframe RAID types.
631#options 	RF_INCLUDE_EVENODD=1
632#options 	RF_INCLUDE_RAID5_RS=1
633#options 	RF_INCLUDE_PARITYLOGGING=1
634#options 	RF_INCLUDE_CHAINDECLUSTER=1
635#options 	RF_INCLUDE_INTERDECLUSTER=1
636#options 	RF_INCLUDE_PARITY_DECLUSTERING=1
637#options 	RF_INCLUDE_PARITY_DECLUSTERING_DS=1
638#pseudo-device	fss			# file system snapshot device
639#pseudo-device	putter			# for puffs and pud
640
641pseudo-device	md			# memory disk device (ramdisk)
642#pseudo-device	vnd			# disk-like interface to files
643#options 	VND_COMPRESSION		# compressed vnd(4)
644
645# network pseudo-devices
646pseudo-device	bpfilter		# Berkeley packet filter
647#pseudo-device	carp			# Common Address Redundancy Protocol
648pseudo-device	ipfilter		# IP filter (firewall) and NAT
649pseudo-device	loop			# network loopback
650pseudo-device	ppp			# Point-to-Point Protocol
651#pseudo-device	pppoe			# PPP over Ethernet (RFC 2516)
652#pseudo-device	sl			# Serial Line IP
653#pseudo-device	strip			# Starmode Radio IP (Metricom)
654#pseudo-device	irframetty		# IrDA frame line discipline
655#pseudo-device	tap			# virtual Ethernet
656pseudo-device	tun			# network tunneling over tty
657#pseudo-device	gre			# generic L3 over IP tunnel
658#pseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
659#pseudo-device	faith			# IPv[46] tcp relay translation i/f
660#pseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
661pseudo-device	vlan			# IEEE 802.1q encapsulation
662#pseudo-device	bridge			# simple inter-network bridging
663#options 	BRIDGE_IPF		# bridge uses IP/IPv6 pfil hooks too
664pseudo-device	pf			# PF packet filter
665pseudo-device	pflog			# PF log if
666# srt is EXPERIMENTAL
667#pseudo-device	srt			# source-address-based routing
668
669# miscellaneous pseudo-devices
670pseudo-device	pty			# pseudo-terminals
671#pseudo-device	sequencer		# MIDI sequencer
672#options 	RND_COM			# use "com" randomness as well (BROKEN)
673pseudo-device	clockctl		# user control of clock subsystem
674pseudo-device	ksyms			# /dev/ksyms
675
676# a pseudo device needed for Coda	# also needs CODA (above)
677#pseudo-device	vcoda			# coda minicache <-> venus comm.
678
679# a pseudo device needed for SMBFS
680#pseudo-device	nsmb			# experimental - SMB requester
681
682# wscons pseudo-devices
683#pseudo-device	wsmux			# mouse & keyboard multiplexor
684#pseudo-device	wsfont
685
686#options 	FILEASSOC		# fileassoc(9) - required for Veriexec
687
688# Veriexec
689#pseudo-device	veriexec
690#
691# Uncomment the fingerprint methods below that are desired. Note that
692# removing fingerprint methods will have almost no impact on the kernel
693# code size.
694#
695#options VERIFIED_EXEC_FP_RMD160
696#options VERIFIED_EXEC_FP_SHA256
697#options VERIFIED_EXEC_FP_SHA384
698#options VERIFIED_EXEC_FP_SHA512
699#options VERIFIED_EXEC_FP_SHA1
700#options VERIFIED_EXEC_FP_MD5
701
702options PAX_MPROTECT=0			# PaX mprotect(2) restrictions
703