TS7200 revision 1.7
11.7Sjoff#	$NetBSD: TS7200,v 1.7 2005/01/09 21:44:32 joff Exp $
21.1Sjoff#
31.1Sjoff#	GENERIC -- Generic kernel
41.1Sjoff#
51.1Sjoff
61.1Sjoffinclude	"arch/evbarm/conf/std.tsarm"
71.1Sjoff
81.1Sjoff#options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
91.1Sjoffoptions		MSGBUFSIZE=65536
101.1Sjoff#options 	KSTACK_CHECK_MAGIC
111.1Sjoff
121.1Sjoff# estimated number of users
131.1Sjoffmaxusers	32
141.1Sjoff
151.1Sjoff# Standard system options
161.1Sjoff
171.1Sjoffoptions 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
181.1Sjoffoptions 	NTP		# NTP phase/frequency locked loop
191.1Sjoff
201.1Sjoff# CPU options
211.1Sjoff
221.1Sjoffoptions 	CPU_ARM9	# Support the ARM9TDMI core
231.1Sjoff
241.1Sjoff# File systems
251.1Sjoff
261.1Sjofffile-system	FFS		# UFS
271.1Sjoff#file-system	LFS		# log-structured file system
281.1Sjofffile-system	MFS		# memory file system
291.1Sjofffile-system	NFS		# Network file system
301.1Sjoff#file-system 	ADOSFS		# AmigaDOS-compatible file system
311.1Sjofffile-system 	EXT2FS		# second extended file system (linux)
321.1Sjoff#file-system	CD9660		# ISO 9660 + Rock Ridge file system
331.1Sjofffile-system	MSDOSFS		# MS-DOS file system
341.1Sjoff#file-system	FDESC		# /dev/fd
351.1Sjoff#file-system    FILECORE        # Acorn filecore file system
361.1Sjofffile-system	KERNFS		# /kern
371.1Sjofffile-system	NULLFS		# loopback file system
381.1Sjoff#file-system	PORTAL		# portal filesystem (still experimental)
391.1Sjofffile-system	PROCFS		# /proc
401.1Sjoff#file-system	UMAPFS		# NULLFS + uid and gid remapping
411.1Sjofffile-system	UNION		# union file system
421.1Sjoff
431.1Sjoff# File system options
441.1Sjoff#options 	QUOTA		# UFS quotas
451.1Sjoff#options 	FFS_EI		# FFS Endian Independant support
461.1Sjoffoptions 	NFSSERVER
471.1Sjoffoptions 	SOFTDEP
481.1Sjoff
491.1Sjoff# Networking options
501.1Sjoff
511.1Sjoff#options 	GATEWAY		# packet forwarding
521.1Sjoffoptions 	INET		# IP + ICMP + TCP + UDP
531.4Sjoffoptions 	INET6		# IPV6
541.1Sjoff#options 	IPSEC		# IP security
551.1Sjoff#options 	IPSEC_ESP	# IP security (encryption part; define w/ IPSEC)
561.1Sjoff#options 	IPSEC_DEBUG	# debug for IP security
571.1Sjoff#options 	MROUTING	# IP multicast routing
581.1Sjoff#options 	NS		# XNS
591.1Sjoff#options 	NSIP		# XNS tunneling over IP
601.1Sjoff#options 	ISO,TPIP	# OSI
611.1Sjoff#options 	EON		# OSI tunneling over IP
621.1Sjoff#options 	CCITT,LLC,HDLC	# X.25
631.1Sjoff#options 	NETATALK	# AppleTalk networking
641.1Sjoff#options 	PFIL_HOOKS	# pfil(9) packet filter hooks
651.1Sjoff#options 	PPP_BSDCOMP	# BSD-Compress compression support for PPP
661.1Sjoff#options 	PPP_DEFLATE	# Deflate compression support for PPP
671.1Sjoff#options 	PPP_FILTER	# Active filter support for PPP (requires bpf)
681.1Sjoff#options 	TCP_DEBUG	# Record last TCP_NDEBUG packets with SO_DEBUG
691.1Sjoff
701.2Sjoffoptions 	NFS_BOOT_BOOTP
711.2Sjoffoptions 	NFS_BOOT_DHCP
721.1Sjoff#options 	NFS_BOOT_BOOTPARAM
731.1Sjoff
741.1Sjoff# Compatibility options
751.1Sjoff
761.1Sjoff#options 	COMPAT_LINUX
771.1Sjoffoptions 	COMPAT_16	# NetBSD 1.6
781.1Sjoffoptions 	COMPAT_20	# NetBSD 2.0
791.1Sjoff#options 	COMPAT_43	# 4.3BSD compatibility.
801.1Sjoff#options 	COMPAT_16	# NetBSD 1.6 compatibility.
811.1Sjoff#options 	COMPAT_15	# NetBSD 1.5 compatibility.
821.1Sjoff#options 	COMPAT_14	# NetBSD 1.4 compatibility.
831.1Sjoff#options 	COMPAT_13	# NetBSD 1.3 compatibility.
841.1Sjoff#options 	COMPAT_12	# NetBSD 1.2 compatibility.
851.1Sjoff#options 	COMPAT_11	# NetBSD 1.1 compatibility.
861.1Sjoff#options 	COMPAT_10	# NetBSD 1.0 compatibility.
871.1Sjoff#options 	COMPAT_09	# NetBSD 0.9 compatibility.
881.1Sjoff#options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
891.1Sjoff
901.1Sjoff# Shared memory options
911.1Sjoff
921.1Sjoffoptions 	SYSVMSG		# System V-like message queues
931.1Sjoffoptions 	SYSVSEM		# System V-like semaphores
941.1Sjoffoptions 	SEMMNI=10	# number of semaphore identifiers
951.1Sjoffoptions 	SEMMNS=60	# number of semaphores in system
961.1Sjoffoptions 	SEMUME=10	# max number of undo entries per process
971.1Sjoffoptions 	SEMMNU=30	# number of undo structures in system
981.1Sjoffoptions 	SYSVSHM		# System V-like memory sharing
991.1Sjoffoptions 	SHMMAXPGS=1024	# 1024 pages is the default
1001.1Sjoff
1011.1Sjoff# Device options
1021.1Sjoff
1031.1Sjoff#options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
1041.1Sjoff#options 	MEMORY_DISK_ROOT_SIZE=3400	# Size in blocks
1051.1Sjoff#options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
1061.1Sjoff
1071.1Sjoff# Console options.  The default console is speed is 115200 baud.
1081.1Sjoff#options 	CONSPEED=9600		# Console speed
1091.1Sjoff
1101.1Sjoff# Miscellaneous kernel options
1111.1Sjoffoptions 	KTRACE		# system call tracing, a la ktrace(1)
1121.1Sjoffoptions 	IRQSTATS	# manage IRQ statistics
1131.1Sjoff#options 	LKM		# loadable kernel modules
1141.1Sjoff#options 	KMEMSTATS	# kernel memory statistics
1151.1Sjoff#options 	SCSIVERBOSE	# Verbose SCSI errors
1161.1Sjoff#options 	PCIVERBOSE	# Verbose PCI descriptions
1171.1Sjoff#options 	MIIVERBOSE	# Verbose MII autoconfuration messages
1181.1Sjoff#options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
1191.1Sjoff#options 	DDB_KEYCODE=0x40
1201.1Sjoff#options 	USERCONF	# userconf(4) support
1211.1Sjoff#options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
1221.1Sjoff
1231.1Sjoff# Development and Debugging options
1241.1Sjoff
1251.1Sjoff#options 	PERFCTRS	# performance counters
1261.1Sjoffoptions 	DIAGNOSTIC	# internally consistency checks
1271.1Sjoff#options 	DEBUG
1281.1Sjoff#options 	PMAP_DEBUG	# Enable pmap_debug_level code
1291.1Sjoff#options 	IPKDB		# remote kernel debugging
1301.1Sjoff#options 	VERBOSE_INIT_ARM # verbose bootstraping messages
1311.1Sjoffoptions 	DDB		# in-kernel debugger
1321.1Sjoffoptions		DDB_ONPANIC=1
1331.1Sjoffoptions 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
1341.1Sjoff#makeoptions	DEBUG="-g"	# compile full symbol table
1351.4Sjoffoptions 	SYMTAB_SPACE=400000
1361.1Sjoff
1371.1Sjoff##options 	PMAP_INCLUDE_PTE_SYNC
1381.1Sjoff##options 	LOCKDEBUG
1391.1Sjoff
1401.1Sjoffconfig		netbsd		root on ? type ?
1411.2Sjoffconfig		netbsd-epe0	root on epe0 type nfs
1421.2Sjoffconfig		netbsd-wd0	root on wd0 type ffs
1431.2Sjoffconfig		netbsd-sd0	root on sd0 type ffs
1441.1Sjoff
1451.1Sjoff# The main bus device
1461.1Sjoffmainbus0	at root
1471.1Sjoff
1481.1Sjoff# The boot cpu
1491.1Sjoffcpu0		at mainbus?
1501.1Sjoff
1511.1Sjoff# Cirrus Logic EP93xx System-on-chip
1521.1Sjoffepsoc0		at mainbus?
1531.1Sjoff# On-chip timers
1541.1Sjoffepclk0		at epsoc? addr 0x80810000 size 0x90 intr 35
1551.1Sjoff# On-chip serial UARTS
1561.1Sjoffepcom0		at epsoc? addr 0x808c0000 size 0x1000 intr 52
1571.1Sjoffepcom1		at epsoc? addr 0x808d0000 size 0x1000 intr 54
1581.1Sjoff# On-chip USB 1.1
1591.1Sjoffohci*		at epsoc? addr 0x80020000 size 0x1000 intr 56
1601.1Sjoff# On-chip 10/100 Ethernet
1611.1Sjoffepe0		at epsoc? addr 0x80010000 size 0x10000 intr 39
1621.1Sjoff# On-board TS-7200 CPLD
1631.1Sjofftspld0		at mainbus?
1641.1Sjoff# PC/104 bus
1651.1Sjoffisa0		at tspld?
1661.1Sjoff# CompactFlash interface
1671.1Sjoffwdc0		at tspld?
1681.3Sjoff# TS-5620 battery-backed real-time clock
1691.3Sjofftsrtc*		at tspld?
1701.6Sjoff# HD44780 LCD on LCD header
1711.6Sjofftslcd*		at tspld?
1721.1Sjoff
1731.1Sjoff# TS-SER[1,2,4] multiport serial PC/104 cards
1741.1Sjoffcom0		at isa? port 0x3f8 irq 6        # Standard PC serial ports
1751.1Sjoffcom1		at isa? port 0x2f8 irq 6
1761.1Sjoffcom2		at isa? port 0x3e8 irq 6
1771.1Sjoffcom3		at isa? port 0x2e8 irq 6
1781.1Sjoff
1791.1Sjoffwdc1	at isa? port 0x1f0 irq 7 flags 0x00
1801.1Sjoffwdc2	at isa? port 0x170 irq 7 flags 0x00
1811.5Sjofftscs0	at isa? port 0x300 iomem ? irq ? drq ?  # TS-ETH10 PC/104 ethernet
1821.5Sjofftscs1	at isa? port 0x310 iomem ? irq ? drq ?
1831.5Sjofftscs2	at isa? port 0x320 iomem ? irq ? drq ?
1841.5Sjofftscs3	at isa? port 0x330 iomem ? irq ? drq ?
1851.1Sjoff
1861.7Sjoff# PCMCIA bus support
1871.7Sjoffpcmcia* at pcic? controller ? socket ?
1881.7Sjoff
1891.7Sjoffoptions PCIC_ISA_INTR_ALLOC_MASK=0xe0
1901.7Sjoff# ISA PCMCIA controllers
1911.7Sjoffpcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
1921.7Sjoffpcic1	at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000
1931.7Sjoffpcic2	at isa? port 0x3e4 iomem 0xe0000 iosiz 0x4000
1941.7Sjoff
1951.1Sjoff# ATA (IDE) bus support
1961.1Sjoffatabus* at ata?
1971.1Sjoff
1981.1Sjoff# IDE drives
1991.1Sjoff# Flags are used only with controllers that support DMA operations
2001.1Sjoff# and mode settings (e.g. some pciide controllers)
2011.1Sjoff# The lowest order four bits (rightmost digit) of the flags define the PIO
2021.1Sjoff# mode to use, the next set of four bits the DMA mode and the third set the
2031.1Sjoff# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
2041.1Sjoff# to use, and the last bit must be 1 for this setting to be used.
2051.1Sjoff# For DMA and UDMA, 0xf (1111) means 'disable'.
2061.1Sjoff# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
2071.1Sjoff# (0xc=1100, 0xa=1010, 0xf=1111)
2081.1Sjoff# 0x0000 means "use whatever the drive claims to support".
2091.1Sjoffwd*	at atabus? drive ? flags 0x00ff
2101.1Sjoff
2111.1Sjoff# ATAPI bus support
2121.1Sjoff#atapibus* at atapi?
2131.1Sjoff
2141.1Sjoff# ATAPI devices
2151.1Sjoff# flags have the same meaning as for IDE drives.
2161.1Sjoff# XXX No DMA on IDE devices for now
2171.1Sjoff#cd*	at atapibus? drive ? flags 0x0ff0	# ATAPI CD-ROM drives
2181.1Sjoff#sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
2191.1Sjoff#st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
2201.1Sjoff#uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
2211.1Sjoff
2221.1Sjoff# MII/PHY support
2231.1Sjoff#acphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
2241.1Sjoff#amhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
2251.1Sjoff#bmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
2261.1Sjoff#brgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
2271.1Sjoff#dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
2281.1Sjoff#exphy*	at mii? phy ?			# 3Com internal PHYs
2291.1Sjoff#gentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
2301.1Sjoff#glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
2311.1Sjoff#gphyter* at mii? phy ?			# NS83861 Gig-E PHY
2321.1Sjoff#icsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
2331.1Sjoff#igphy*	at mii? phy ?			# Intel IGP01E1000
2341.1Sjoff#inphy*	at mii? phy ?			# Intel 82555 PHYs
2351.1Sjoff#iophy*	at mii? phy ?			# Intel 82553 PHYs
2361.1Sjoff#lxtphy* at mii? phy ?			# Level One LXT-970 PHYs
2371.1Sjoff#makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
2381.1Sjoff#nsphy*	at mii? phy ?			# NS83840 PHYs
2391.1Sjoff#nsphyter* at mii? phy ? 		# NS83843 PHYs
2401.1Sjoff#pnaphy* at mii? phy ?			# generic HomePNA PHYs
2411.1Sjoff#qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
2421.1Sjoff#sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
2431.1Sjoff#tlphy*	at mii? phy ?			# ThunderLAN PHYs
2441.1Sjoff#tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
2451.1Sjoffukphy*	at mii? phy ?			# generic unknown PHYs
2461.1Sjoff#urlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
2471.1Sjoff
2481.1Sjoff# USB Controller and Devices
2491.1Sjoff
2501.1Sjoff# USB bus support
2511.1Sjoff#usb*	at ehci?
2521.1Sjoffusb*	at ohci?
2531.1Sjoff#usb*	at uhci?
2541.1Sjoff#usb*	at slhci?
2551.1Sjoff
2561.1Sjoff# USB Hubs
2571.1Sjoffuhub*	at usb?
2581.1Sjoffuhub*	at uhub? port ? configuration ? interface ?
2591.1Sjoff
2601.1Sjoff# USB HID device
2611.1Sjoffuhidev*	at uhub? port ? configuration ? interface ?
2621.1Sjoff
2631.1Sjoff# USB Mice
2641.1Sjoff# ums*	at uhidev? reportid ?
2651.1Sjoff# wsmouse* at ums? mux 0
2661.1Sjoff
2671.1Sjoff# USB eGalax touch-panel
2681.1Sjoff# uep*	at uhub? port ?
2691.1Sjoff# wsmouse* at uep? mux 0
2701.1Sjoff
2711.1Sjoff# USB Keyboards
2721.1Sjoff#ukbd*	at uhidev? reportid ?
2731.1Sjoff# wskbd*	at ukbd? console ? mux 1
2741.1Sjoff
2751.1Sjoff# USB Generic HID devices
2761.1Sjoffuhid*	at uhidev? reportid ?
2771.1Sjoff
2781.1Sjoff# USB Printer
2791.1Sjoffulpt*	at uhub? port ? configuration ? interface ?
2801.1Sjoff
2811.1Sjoff# USB Modem
2821.1Sjoffumodem*	at uhub? port ? configuration ?
2831.1Sjoffucom*	at umodem?
2841.1Sjoff
2851.1Sjoff# USB Mass Storage
2861.1Sjoffumass*	at uhub? port ? configuration ? interface ?
2871.1Sjoffscsibus* at umass?
2881.1Sjoff# SCSI devices
2891.1Sjoffsd*     at scsibus? target ? lun ?      # SCSI disk drives
2901.1Sjoff#st*     at scsibus? target ? lun ?      # SCSI tape drives
2911.1Sjoff#cd*     at scsibus? target ? lun ?      # SCSI CD-ROM drives
2921.1Sjoff#ch*     at scsibus? target ? lun ?      # SCSI autochangers
2931.1Sjoff#ses*    at scsibus? target ? lun ?      # SCSI Enclosure Services devices
2941.1Sjoff#ss*     at scsibus? target ? lun ?      # SCSI scanners
2951.1Sjoff#uk*     at scsibus? target ? lun ?      # SCSI unknown
2961.1Sjoff
2971.1Sjoff# wd*	at umass?
2981.1Sjoff
2991.1Sjoff# USB audio
3001.1Sjoffuaudio*	at uhub? port ? configuration ?
3011.1Sjoff
3021.1Sjoff# USB MIDI
3031.1Sjoffumidi* at uhub? port ? configuration ?
3041.1Sjoff
3051.1Sjoff# USB IrDA
3061.1Sjoff# USB-IrDA bridge spec
3071.1Sjoffuirda* at uhub? port ? configuration ? interface ?
3081.1Sjoffirframe* at uirda?
3091.1Sjoff
3101.1Sjoff# SigmaTel STIr4200 USB/IrDA Bridge
3111.1Sjoffustir* at uhub? port ?
3121.1Sjoffirframe* at ustir?
3131.1Sjoff
3141.1Sjoff# USB Ethernet adapters
3151.1Sjoffaue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
3161.1Sjoffaxe*	at uhub? port ?		# ASIX AX88172 based adapters
3171.1Sjoffcue*	at uhub? port ?		# CATC USB-EL1201A based adapters
3181.1Sjoffkue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
3191.1Sjoffudav*	at uhub? port ?		# Davicom DM9601 based adapters
3201.1Sjoffurl*	at uhub? port ?		# Realtek RTL8150L based adapters
3211.1Sjoff
3221.1Sjoff# Prolific PL2301/PL2302 host-to-host adapter
3231.1Sjoffupl*	at uhub? port ?
3241.1Sjoff
3251.1Sjoff# Serial adapters
3261.1Sjoffubsa*	at uhub? port ?		# Belkin serial adapter
3271.1Sjoffucom*	at ubsa? portno ?
3281.1Sjoff
3291.1Sjoffuftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
3301.1Sjoffucom*	at uftdi? portno ?
3311.1Sjoff
3321.1Sjoffumct*	at uhub? port ?		# MCT USB-RS232 serial adapter
3331.1Sjoffucom*	at umct? portno ?
3341.1Sjoff
3351.1Sjoffuplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
3361.1Sjoffucom*	at uplcom? portno ?
3371.1Sjoff
3381.1Sjoffuvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
3391.1Sjoffucom*	at uvscom? portno ?
3401.1Sjoff
3411.1Sjoff# Diamond Multimedia Rio 500
3421.1Sjoff# urio*	at uhub? port ?
3431.1Sjoff
3441.1Sjoff# USB Handspring Visor
3451.1Sjoff# uvisor*	at uhub? port ?
3461.1Sjoff# ucom*	at uvisor?
3471.1Sjoff
3481.1Sjoff# USB scanners
3491.1Sjoff# uscanner* at uhub? port ?
3501.1Sjoff
3511.1Sjoff# USB scanners that use SCSI emulation, e.g., HP5300
3521.1Sjoff# usscanner* at uhub? port ?
3531.1Sjoff
3541.1Sjoff# Y@P firmware loader
3551.1Sjoff# uyap* at uhub? port ?
3561.1Sjoff
3571.1Sjoff# D-Link DSB-R100 USB radio
3581.1Sjoff# udsbr*	at uhub? port ?
3591.1Sjoff# radio*	at udsbr?
3601.1Sjoff
3611.1Sjoff# USB Generic driver
3621.1Sjoffugen*	at uhub? port ?
3631.1Sjoff
3641.1Sjoff# IrDA and Consumer Ir devices
3651.1Sjoff
3661.1Sjoff# Toshiba Oboe
3671.1Sjoff# oboe* 	at pci? dev ? function ?
3681.1Sjoff# irframe* at oboe?
3691.1Sjoff
3701.1Sjoff# CardBus IEEE1394 controllers
3711.1Sjoff#fwohci* at cardbus? dev ? function ?	# IEEE1394 Open Host Controller
3721.1Sjoff
3731.1Sjoff#fw*	at fwbus?			# IP over 1394
3741.1Sjoff
3751.1Sjoff# IEEE1394 nodes
3761.1Sjoff#fwnode* at fwbus? idhi ? idlo ?
3771.1Sjoff#sbpscsi* at fwnode?
3781.1Sjoff#scsibus* at sbpscsi?
3791.1Sjoff
3801.1Sjoff# Audio Devices
3811.1Sjoff
3821.1Sjoff# OPL[23] FM synthesizers
3831.1Sjoff#opl*	at cmpci? flags 1
3841.1Sjoff#opl*	at eso?
3851.1Sjoff#opl*	at fms?
3861.1Sjoff#opl*	at sv?
3871.1Sjoff#opl*	at yds?
3881.1Sjoff
3891.1Sjoff# Audio support
3901.1Sjoffaudio*	at audiobus?
3911.1Sjoff
3921.1Sjoff# MPU 401 UARTs
3931.1Sjoff#mpu*	at cmpci?
3941.1Sjoff#mpu*	at eso?
3951.1Sjoff#mpu*	at fms?
3961.1Sjoff#mpu*	at yds?
3971.1Sjoff
3981.1Sjoff# MIDI support
3991.1Sjoff#midi*	at midibus?
4001.1Sjoff
4011.1Sjoff# Pseudo-Devices
4021.1Sjoff
4031.1Sjoff# disk/mass storage pseudo-devices
4041.1Sjoff#pseudo-device	md		1	# memory disk device (ramdisk)
4051.1Sjoff#pseudo-device	vnd		4	# disk-like interface to files
4061.1Sjoff
4071.1Sjoff# network pseudo-devices
4081.1Sjoffpseudo-device	bpfilter	4	# Berkeley packet filter
4091.1Sjoffpseudo-device	loop			# network loopback
4101.1Sjoff#pseudo-device	kttcp			# network loopback
4111.1Sjoff
4121.1Sjoff# miscellaneous pseudo-devices
4131.1Sjoffpseudo-device	pty			# pseudo-terminals
4141.1Sjoffpseudo-device	rnd			# /dev/random and in-kernel generator
4151.1Sjoff#options	RND_COM
4161.1Sjoffpseudo-device	clockctl		# user control of clock subsystem
4171.1Sjoffpseudo-device	ksyms			# /dev/ksyms
4181.1Sjoff
4191.1Sjoff# data mover pseudo-devices
4201.1Sjoff#pseudo-device	swdmover		# softare dmover(9) back-end
4211.1Sjoff#pseudo-device	dmoverio		# /dev/dmover dmover(9) interface
4221.1Sjoff
4231.1Sjoff# wscons pseudo-devices
4241.1Sjoff#pseudo-device	wsmux			# mouse & keyboard multiplexor
4251.1Sjoff#pseudo-device	wsfont
4261.1Sjoff
427