xref: /netbsd-src/sys/arch/algor/conf/P6032 (revision fd2f23e6a4390e0d0e0b94909c2f9cfd8e7fe15f)
1*fd2f23e6Smartin#	$NetBSD: P6032,v 1.85 2022/06/07 18:33:41 martin Exp $
2306b1b09Sthorpej#
3306b1b09Sthorpej# Algorithmics P-6032 kernel.
4306b1b09Sthorpej#
5306b1b09Sthorpej
6306b1b09Sthorpejinclude	"arch/algor/conf/std.algor"
7306b1b09Sthorpej
8d1b38523Satatat#options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
9d1b38523Satatat
10*fd2f23e6Smartin#ident 		"P6032-$Revision: 1.85 $"
11306b1b09Sthorpej
12306b1b09Sthorpejmaxusers 32
13306b1b09Sthorpej
14306b1b09Sthorpej# Platform Support
15306b1b09Sthorpej#options 	ALGOR_P4032	# Algorithmics P-4032
16306b1b09Sthorpej#options 	ALGOR_P5064	# Algorithmics P-5064
17306b1b09Sthorpejoptions 	ALGOR_P6032	# Algorithmics P-6032
18306b1b09Sthorpej
19306b1b09Sthorpej# Standard system options
20306b1b09Sthorpejoptions 	KTRACE			# System call tracing support
21306b1b09Sthorpejoptions 	NTP			# kernel PLL for NTP
22306b1b09Sthorpej
23306b1b09Sthorpej# Diagnostic/debugging support options
24306b1b09Sthorpejoptions 	DIAGNOSTIC		# Cheap kernel consistency checks
25306b1b09Sthorpejoptions 	DDB			# kernel debugger
267fe7089aSuebayasipseudo-device	ksyms
27306b1b09Sthorpejmakeoptions	DEBUG="-g"
28306b1b09Sthorpej#makeoptions	DEBUGLIST="pattern1 pattern2 ..."
29a2616411Sjoergmakeoptions	COPY_SYMTAB=1
30306b1b09Sthorpej
31306b1b09Sthorpej# File systems
32306b1b09Sthorpejfile-system	FFS		# Fast file system
33306b1b09Sthorpejfile-system	MFS		# Memory-based file system
34306b1b09Sthorpejfile-system	CD9660		# ISO-9660 CD-ROM FS (w/RockRidge extensions)
35306b1b09Sthorpejfile-system	MSDOSFS		# MS-DOS-compatible file system
36306b1b09Sthorpejfile-system	NTFS		# Windows/NT file system (experimental)
37306b1b09Sthorpejfile-system	NFS		# Sun NFS-compatible file system client
38306b1b09Sthorpejfile-system	KERNFS		# Kernel variable file system (/kern)
39306b1b09Sthorpejfile-system	PROCFS		# Process file system (/proc)
40306b1b09Sthorpejfile-system	FDESC		# /dev/fd file system
4193c362d7Schristosfile-system	PTYFS		# /dev/pts/N support
42306b1b09Sthorpej
43306b1b09Sthorpej# File system options
44306b1b09Sthorpejoptions 	NFSSERVER	# Sun NFS-compatible file system server
454cbd24b2Swiz#options 	FFS_EI		# FFS Endian Independent support
467bbf82b7Sdhollandoptions 	WAPBL		# File system journaling support
47ff9b47d6Stsutsuioptions 	FFS_NO_SNAPSHOT	# No FFS snapshot support
48306b1b09Sthorpej
49306b1b09Sthorpej# Networking options
50306b1b09Sthorpejoptions 	INET		# Internet protocol suite
51306b1b09Sthorpejoptions 	INET6		# IPV6
52306b1b09Sthorpejoptions 	IPSEC		# IP security
53306b1b09Sthorpej#options 	IPSEC_DEBUG	# debug for IP security
54306b1b09Sthorpej
55e25150d4Salnsn# JIT compiler for bpfilter
56e25150d4Salnsn#options	SLJIT
57e25150d4Salnsn#options	BPFJIT
58e25150d4Salnsn
59306b1b09Sthorpej# Binary compatibility with previous versions of NetBSD.
6095772a88Smrginclude 	"conf/compat_netbsd10.config"
61306b1b09Sthorpej
62306b1b09Sthorpej# System V-like message queues
63306b1b09Sthorpejoptions 	SYSVMSG
64306b1b09Sthorpej
65306b1b09Sthorpej# System V-like semaphores
66306b1b09Sthorpejoptions 	SYSVSEM
67306b1b09Sthorpej
68306b1b09Sthorpej# System V-like shared memory
69306b1b09Sthorpejoptions 	SYSVSHM
70306b1b09Sthorpej
71306b1b09Sthorpej# Loadable Kernel Modules
72306b1b09Sthorpej
73306b1b09Sthorpej# Disable kernel security.
74306b1b09Sthorpej#options 	INSECURE
75306b1b09Sthorpej
76306b1b09Sthorpej# Misc. options
77306b1b09Sthorpejoptions 	PCI_NETBSD_CONFIGURE	# NetBSD configures the PCI bus
78306b1b09Sthorpejoptions 	PCIVERBOSE		# recognize "unknown" PCI devices
79306b1b09Sthorpejoptions 	MIIVERBOSE		# verbose PHY autoconfig messages
80306b1b09Sthorpej#options 	PCI_CONFIG_DUMP		# verbosely dump PCI config space
81306b1b09Sthorpejoptions 	SCSIVERBOSE		# Verbose SCSI errors
82306b1b09Sthorpej#options 	PCMCIAVERBOSE
836d265bd8Sjdolecek#options	PIPE_SOCKETPAIR		# smaller, but slower pipe(2)
84f68a9f1fSatatat#options 	SYSCTL_INCLUDE_DESCR	# Include sysctl descriptions in kernel
85306b1b09Sthorpej
86306b1b09Sthorpej# The Alpha console firmware network boots using the BOOTP
87306b1b09Sthorpej# protocol, so we ask the NFS code to use BOOTP/DHCP as well,
88306b1b09Sthorpej# in case we have NFS root.
89306b1b09Sthorpejoptions 	NFS_BOOT_DHCP		# superset of BOOTP
90306b1b09Sthorpej
91306b1b09Sthorpej# WS console uses SUN or VT100 terminal emulation
92306b1b09Sthorpej#options 	WSEMUL_VT100
933267a6b9Sabs#options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
94306b1b09Sthorpej
95306b1b09Sthorpejconfig		netbsd	root on ? type ?
96306b1b09Sthorpej#config		netbsd	root on sd0 type ffs
97306b1b09Sthorpej#config		netbsd	root on ? type nfs
98306b1b09Sthorpej
99306b1b09Sthorpejmainbus0 at	root
100306b1b09Sthorpejcpu*	at	mainbus0
101306b1b09Sthorpej
102306b1b09Sthorpej# PCI host bus adapter support
103306b1b09Sthorpejbonito*	at	mainbus?
104306b1b09Sthorpej
105306b1b09Sthorpej# PCI bus support
106306b1b09Sthorpejpci*	at	bonito?
107306b1b09Sthorpej
108306b1b09Sthorpej# PCI devices
109306b1b09Sthorpej#adv*	at	pci? dev ? function ?		# AdvanSys SCSI
110306b1b09Sthorpej#adw*	at	pci? dev ? function ?		# AdvanSys Wide SCSI
1118077be0fSwiz#options 	SCSI_ADW_WDTR_DISABLE		# 	disable WDTR
1128077be0fSwiz#options 	SCSI_ADW_SDTR_DISABLE		# 	disable SDTR
1138077be0fSwiz#options 	SCSI_ADW_TAGQ_DISABLE		# 	disable Tag Queuing
114306b1b09Sthorpej#ahc*	at	pci? dev ? function ?		# Adaptec [23]94x, aic78x0 SCSI
115306b1b09Sthorpej#bha*	at	pci? dev ? function ?		# BusLogic 9xx SCSI (untested)
116306b1b09Sthorpej#cac*	at	pci? dev ? function ?		# Compaq array controller (untested)
117306b1b09Sthorpej#cy*	at	pci? dev ? function ?		# Cyclades Cyclom-Y (untested)
118306b1b09Sthorpej#cz*	at	pci? dev ? function ?		# Cyclades-Z (untested)
119306b1b09Sthorpej#dpt*	at	pci? dev ? function ?		# DPT SmartCache/SmartRAID
120306b1b09Sthorpej#eap*	at	pci? dev ? function ?		# Ensoniq AudioPCI
121306b1b09Sthorpej#ep*	at	pci? dev ? function ?		# 3COM 3c59x
122306b1b09Sthorpej#epic*	at	pci? dev ? function ?		# SMC EPIC/100 Ethernet
123306b1b09Sthorpej#eso*	at	pci? dev ? function ?		# ESS Solo-1 PCI AudioDrive
124306b1b09Sthorpej#ex*	at	pci? dev ? function ?		# 3COM 3c90x[B] Ethernet
125306b1b09Sthorpej#fxp*	at	pci? dev ? function ?		# Intel EEPRO 10+/100B
126306b1b09Sthorpej#gsip*	at	pci? dev ? function ?		# NS DP83820 Gigabit Ethernet
127306b1b09Sthorpej#isp*	at	pci? dev ? function ?		# Qlogic ISP 10x0 SCSI
128290ea9c6Sthorpejpcn*	at	pci? dev ? function ?		# AMD PCnet-PCI Ethernet
129306b1b09Sthorpejpcib*	at	pci? dev ? function ?		# Intel PCI-ISA Bridges
130306b1b09Sthorpej#siop*	at	pci? dev ? function ?		# Symbios 53c8xx SCSI
131306b1b09Sthorpej#mlx*	at	pci? dev ? function ?		# Mylex DAC960 / DEC SWXCR (untested)
132306b1b09Sthorpej#ne*	at	pci? dev ? function ?		# NE2000-compatible Ethernet
133306b1b09Sthorpej#ohci*	at	pci? dev ? function ?		# USB Open Host Controller
134f5a6a0a8Sbouyerpciide* at pci? dev ? function ? flags 0x0000	# GENERIC pciide driver
135f5a6a0a8Sbouyeracardide* at pci? dev ? function ?		# Acard IDE controllers
136f5a6a0a8Sbouyeraceride* at pci? dev ? function ?		# Acer Lab IDE controllers
1372f2ca9e6Sthorpejartsata* at pci? dev ? function ?		# Intel i31244 SATA controller
138f5a6a0a8Sbouyercmdide* at pci? dev ? function ?		# CMD tech IDE controllers
139f5a6a0a8Sbouyercypide* at pci? dev ? function ?		# Cypress IDE controllers
140f5a6a0a8Sbouyerhptide* at pci? dev ? function ?		# Triones/HighPoint IDE controllers
141f5a6a0a8Sbouyeroptiide* at pci? dev ? function ?		# Opti IDE controllers
142f5a6a0a8Sbouyerpdcide* at pci? dev ? function ?		# Promise IDE controllers
143fe4d81dbSbouyerpdcsata* at pci? dev ? function ?		# Promise SATA150 controllers
14498f7d120Sthorpejsatalink* at pci? dev ? function ?		# SiI SATALink controllers
145f5a6a0a8Sbouyersiside* at pci? dev ? function ?		# SiS IDE controllers
146f5a6a0a8Sbouyerslide*  at pci? dev ? function ?		# Symphony Labs IDE controllers
147f5a6a0a8Sbouyerviaide* at pci? dev ? function ?		# VIA/AMD/Nvidia IDE controllers
148306b1b09Sthorpej#pcscp*	at	pci? dev ? function ?		# AMD Am53c974 PCscsi-PCI
149306b1b09Sthorpejppb*	at	pci? dev ? function ?		# PCI-PCI Bridges
150f5b32c1eSwiz#rtk*	at	pci? dev ? function ?		# Realtek 8129/8139 Ethernet
151306b1b09Sthorpej#sip*	at	pci? dev ? function ?		# SiS 900 Ethernet
152306b1b09Sthorpej#sv*	at	pci? dev ? function ?		# S3 SonicVibes
153306b1b09Sthorpej#tga*	at	pci? dev ? function ?		# DEC ZLXp-E[123] Graphics
154306b1b09Sthorpej#ti*	at	pci? dev ? function ?		# Alteon Tigon Gig-E
155306b1b09Sthorpej#tl*	at	pci? dev ? function ?		# TI ThunderLAN Ethernet
156306b1b09Sthorpej#tlp*	at	pci? dev ? function ?		# DECchip 21x4x and clones
157306b1b09Sthorpej#uhci*	at	pci? dev ? function ?		# USB Univ. Host Controller
158306b1b09Sthorpej#vga*	at	pci? dev ? function ?		# PCI VGA Graphics
159306b1b09Sthorpej#vr*	at	pci? dev ? function ?		# VIA Rhine Fast Ethernet
160306b1b09Sthorpej#yds*	at	pci? dev ? function ?		# Yamaha DS-1 PCI Audio
161306b1b09Sthorpej
162306b1b09Sthorpej#audio*	at	eap?
163306b1b09Sthorpej#audio*	at	eso?
164306b1b09Sthorpej#audio*	at	sv?
165306b1b09Sthorpej#audio*	at	yds?
166306b1b09Sthorpej
167306b1b09Sthorpej#opl*	at	eso?
168306b1b09Sthorpej#opl*	at	sv?
169306b1b09Sthorpej#opl*	at	yds?
170306b1b09Sthorpej
171306b1b09Sthorpej#mpu*	at	eso?
172306b1b09Sthorpej#mpu*	at	yds?
173306b1b09Sthorpej
174306b1b09Sthorpej# MII/PHY support
175290ea9c6Sthorpejacphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
176290ea9c6Sthorpejamhphy*	at mii? phy ?			# AMD 79c901 10BASE-T PHY
177290ea9c6Sthorpej#bmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
178290ea9c6Sthorpej#brgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
179290ea9c6Sthorpej#dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
180306b1b09Sthorpej#exphy*	at mii? phy ?			# 3Com internal PHYs
181290ea9c6Sthorpej#glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
182290ea9c6Sthorpej#gphyter* at mii? phy ?			# NS83861 Gig-E PHY
1833cc2ef99Swiz#icsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
184306b1b09Sthorpej#inphy*	at mii? phy ?			# Intel 82555 PHYs
185290ea9c6Sthorpej#iophy*	at mii? phy ?			# Intel 82553 PHYs
186290ea9c6Sthorpejlxtphy*	at mii? phy ?			# Level One LXT-970 PHYs
187290ea9c6Sthorpej#makphy* at mii? phy ?			# Margell Semiconductor 88E1000 PHYs
188290ea9c6Sthorpejnsphy*	at mii? phy ?			# NS83840 PHYs
189290ea9c6Sthorpej#nsphyter* at mii? phy ?			# NS83843 PHYs
190290ea9c6Sthorpejpnaphy*	at mii? phy ?			# generic HomePNA PHYs
19156d03703Srin#qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
19256d03703Srin#rgephy* at mii? phy ?			# Realtek 8169S/8110S/8211 PHYs
19356d03703Srin#rlphy* at mii? phy ?			# Realtek 8139/8201L PHYs
194306b1b09Sthorpej#sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
195306b1b09Sthorpej#tlphy*	at mii? phy ?			# ThunderLAN PHYs
196290ea9c6Sthorpej#tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
197290ea9c6Sthorpejukphy*	at mii? phy ?			# generic unknown PHYs
198306b1b09Sthorpej
199306b1b09Sthorpej# ISA/EISA bus support
200306b1b09Sthorpejisa*	at	pcib?
201306b1b09Sthorpej#isapnp*	at	isa?
202306b1b09Sthorpej
203306b1b09Sthorpej# ISA devices
204306b1b09Sthorpejmcclock* at	isa? port 0x70
205306b1b09Sthorpej#pckbc*	at	isa?				# PC keyboard controller
206306b1b09Sthorpej#pckbd*	at	pckbc?				# PC keyboard (kbd port)
207306b1b09Sthorpej#pms*	at	pckbc?				# PS/2-style mouse (aux port)
20878f44cbeScube#attimer*	at	isa?			# AT Timer
209306b1b09Sthorpej#pcppi*	at	isa?				# PC prog. periph. interface
210ef2deb33Schristos#spkr*	at	pcppi?				# IBM BASIC emulation
211306b1b09Sthorpej#isabeep0 at	pcppi?				# "keyboard" beep
212306b1b09Sthorpej#midi*	at	pcppi?
213306b1b09Sthorpejcom*	at	isa? port 0x3f8 irq 4		# standard serial ports
214306b1b09Sthorpejcom*	at	isa? port 0x2f8 irq 3
215306b1b09Sthorpej#cs*	at	isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet
216306b1b09Sthorpej#ec0	at	isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet
217306b1b09Sthorpej#ep*	at	isa? port ? irq ?		# 3COM 3c509 Ethernet
218306b1b09Sthorpej#ep*	at	isapnp?
219306b1b09Sthorpej#ix0	at	isa? port 0x300 irq 10		# EtherExpress/16
220306b1b09Sthorpej#iy0	at	isa? port 0x360 irq ?		# EtherExpress PRO 10 ISA
221306b1b09Sthorpejfdc0	at	isa? port 0x3f0 irq 6 drq 2	# floppy controller
222306b1b09Sthorpej#lc0	at	isa? port 0x300 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
223306b1b09Sthorpej#lc1	at	isa? port 0x320 iomem ? irq ?	# DEC EtherWORKS III (LEMAC)
224306b1b09Sthorpej#depca0	at	isa? port 0x300 iomem 0xd0000 iosiz 0x10000 irq 5 	# DEPCA
225306b1b09Sthorpej#depca1	at	isa? port 0x200 iomem 0xd8000 iosiz 0x8000 irq 10 	# DEPCA
226306b1b09Sthorpej#le*	at	depca?
227306b1b09Sthorpej#lpt*	at	isa? port 0x3bc irq 7		# standard parallel port
228306b1b09Sthorpej#vga*	at	isa?				# ISA (EISA: XXX) VGA
229306b1b09Sthorpej#wdc0	at	isa? port 0x1f0 irq 14		# ST506/ESDI/IDE controllers
230306b1b09Sthorpej#wdc1	at	isa? port 0x170 irq 15
231306b1b09Sthorpej#wdc*	at	isapnp?
232306b1b09Sthorpej#we0	at	isa? port 0x280 iomem 0xd0000 irq 9	# WD/SMC Ethernet
233306b1b09Sthorpej#we1	at	isa? port 0x300 iomem 0xcc000 irq 10
234306b1b09Sthorpej#wss*	at	isa? port 0x530 irq 9 drq 0	# Windows Sound System
235306b1b09Sthorpej#wss*	at	isapnp?
236306b1b09Sthorpej#audio*	at	wss?
237ef2deb33Schristos#spkr*	at	audio?				# PC speaker (synthesized)
238306b1b09Sthorpej#midi*	at	wss?
239306b1b09Sthorpej#sb*	at	isa? port 0x220 irq 5 drq 1	# SoundBlaster
240306b1b09Sthorpej#sb*	at	isapnp?
241306b1b09Sthorpej#audio*	at	sb?
242306b1b09Sthorpej#adv*	at	isa? port ? irq ? drq ?		# AdvanSys APB-514[02]
243306b1b09Sthorpej#aha*	at	isa? port 0x330 irq ? drq ?	# Adaptec 154[02] SCSI
244306b1b09Sthorpej#aha*	at	isa? port 0x334 irq ? drq ?	# Adaptec 154[02] SCSI
245306b1b09Sthorpej#bha*	at	isa? port 0x330 irq ? drq ?	# BusLogic [57]4X SCSI (unt.)
246306b1b09Sthorpej#bha*	at	isa? port 0x334 irq ? drq ?	# BusLogic [57]4X SCSI (unt.)
247306b1b09Sthorpej#uha*	at	isa? port 0x330 irq ? drq ?	# UltraStor [13]4f SCSI (unt.)
248306b1b09Sthorpej#uha*	at	isa? port 0x334 irq ? drq ?	# UltraStor [13]4f SCSI (unt.)
249306b1b09Sthorpej#pcic0	at	isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
250306b1b09Sthorpej#pcic1	at	isa? port 0x3e2 iomem 0xcc000 iosiz 0x10000
251306b1b09Sthorpej#pcmcia*	at	pcic? controller ? socket ?
252306b1b09Sthorpej
253306b1b09Sthorpej# PCMCIA device
254306b1b09Sthorpej#aic*	at	pcmcia? function ?		# Adaptec APA-1460 SCSI
255306b1b09Sthorpej#com*	at	pcmcia? function ?		# Modems and serial cards
256306b1b09Sthorpej#wdc*	at	pcmcia? function ?		# PCMCIA IDE controllers
257306b1b09Sthorpej#ep*	at	pcmcia? function ?		# 3Com 3c589 and 3c562 Eth.
258306b1b09Sthorpej#mbe*	at	pcmcia? function ?		# MB8696x based Ethernet
259306b1b09Sthorpej#ne*	at	pcmcia? function ?		# NE2000-compatible Eth.
260306b1b09Sthorpej#sm*	at	pcmcia? function ?		# Megahertz Ethernet
261306b1b09Sthorpej#ray*	at	pcmcia? function ?		# Raytheon Raylink (802.11)
262306b1b09Sthorpej#wi*	at	pcmcia? function ?		# Lucent WaveLAN/IEEE
263306b1b09Sthorpej
264306b1b09Sthorpej# SCSI bus support
265306b1b09Sthorpej#scsibus* at	adv?
266306b1b09Sthorpej#scsibus* at	adw?
267306b1b09Sthorpej#scsibus* at	aha?
268306b1b09Sthorpej#scsibus* at	ahb?
269306b1b09Sthorpej#scsibus* at	ahc?
270306b1b09Sthorpej#scsibus* at	aic?
271306b1b09Sthorpej#scsibus* at	bha?
272306b1b09Sthorpej#scsibus* at	dpt?
273306b1b09Sthorpej#scsibus* at	isp?
274306b1b09Sthorpej#scsibus* at	siop?
275306b1b09Sthorpej#scsibus* at	pcscp?
276306b1b09Sthorpej#scsibus* at	uha?
277306b1b09Sthorpej
278306b1b09Sthorpej# SCSI devices
279306b1b09Sthorpej#cd*	at	scsibus? target ? lun ?		# SCSI CD-ROM drives
280306b1b09Sthorpej#sd*	at	scsibus? target ? lun ?		# SCSI disk drives
281306b1b09Sthorpej#st*	at	scsibus? target ? lun ?		# SCSI tape drives
282306b1b09Sthorpej
2837d84b90cSlukem# ATA (IDE) bus support
2847d84b90cSlukematabus* at ata?
28520b2eaedSbouyer
2867d84b90cSlukem# IDE drives
28720b2eaedSbouyerwd*	at	atabus? drive ?
288306b1b09Sthorpej
289306b1b09Sthorpej# ATAPI bus support
2907d84b90cSlukematapibus* at	atapi?
291306b1b09Sthorpej
292306b1b09Sthorpej# ATAPI devices
293306b1b09Sthorpejsd*	at	atapibus? drive ?		# ATAPI disk devices
294306b1b09Sthorpejcd*	at	atapibus? drive ?		# ATAPI CD-ROM devices
295306b1b09Sthorpej
296306b1b09Sthorpej# Floppy drives
297306b1b09Sthorpejfd*	at	fdc? drive ?
298306b1b09Sthorpej
299306b1b09Sthorpej# Hardware RAID devices
300306b1b09Sthorpej#ld*	at	cac? unit ?
301306b1b09Sthorpej#ld*	at	mlx? unit ?
302306b1b09Sthorpej
303306b1b09Sthorpej# USB bus support
304306b1b09Sthorpej#usb*	at uhci?
305306b1b09Sthorpej#usb*	at ohci?
306306b1b09Sthorpej
307306b1b09Sthorpej# USB Hubs
308306b1b09Sthorpej#uhub*	at usb?
309ab07e481Sdrochner#uhub*	at uhub? port ?
310306b1b09Sthorpej
311b53ea42bSaugustss# USB HID device
312b53ea42bSaugustss#uhidev*	at uhub? port ? configuration ? interface ?
313b53ea42bSaugustss
314306b1b09Sthorpej# USB Mice
315b53ea42bSaugustss#ums*	at uhidev? reportid ?
316306b1b09Sthorpej#wsmouse*	at ums?
317306b1b09Sthorpej
318306b1b09Sthorpej# USB Keyboards
319b53ea42bSaugustss#ukbd*	at uhidev? reportid ?
320306b1b09Sthorpej#wskbd*	at ukbd? console ?
321306b1b09Sthorpej
3221a3062e8Sskrll# USB serial adapter
3231293f7a7Sskrll#ucycom*	at uhidev? reportid ?
3241293f7a7Sskrll
325306b1b09Sthorpej# USB Generic HID devices
326b53ea42bSaugustss#uhid*	at uhidev? reportid ?
327306b1b09Sthorpej
328306b1b09Sthorpej# USB Printer
329306b1b09Sthorpej#ulpt*	at uhub? port ? configuration ? interface ?
330306b1b09Sthorpej
331306b1b09Sthorpej# USB Modem
332306b1b09Sthorpej#umodem*	at uhub? port ? configuration ?
333306b1b09Sthorpej#ucom*	at umodem?
334306b1b09Sthorpej
33504e2ab6aSplunky# Option N.V. Wireless WAN modems
33604e2ab6aSplunky#uhso*	at uhub? port ? configuration ?
33704e2ab6aSplunky
338306b1b09Sthorpej# USB Mass Storage
339306b1b09Sthorpej#umass*	at uhub? port ? configuration ? interface ?
34020b2eaedSbouyer#atapibus* at umass?
341306b1b09Sthorpej#scsibus* at umass? channel ?
342306b1b09Sthorpej
343306b1b09Sthorpej# USB Ethernet adapters
344306b1b09Sthorpej#aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
3450c21c79cSaugustss#axe*	at uhub? port ?		# ASIX AX88172 based adapters
346306b1b09Sthorpej#cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
347306b1b09Sthorpej#kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
34846f2680dSrin#mue*	at uhub? port ?		# Microchip LAN75xx/LAN78xx based adapters
34956d03703Srin#ure*	at uhub? port ?		# Realtek RTL8152/RTL8153 based adapters
350519f8f3dSaugustss#url*	at uhub? port ?		# Realtek RTL8150L based adapters
351306b1b09Sthorpej
352306b1b09Sthorpej# Serial adapters
353306b1b09Sthorpej# FTDI FT8U100AX serial adapter
354306b1b09Sthorpej#uftdi*	at uhub? port ?
355306b1b09Sthorpej#ucom*	at uftdi? portno ?
356306b1b09Sthorpej
357d6659493Sitohy# Kyocera AIR-EDGE PHONE
358d6659493Sitohy#ukyopon* at uhub? port ?
359d6659493Sitohy#ucom*	at ukyopon? portno ?
360d6659493Sitohy
361306b1b09Sthorpej# USB Generic driver
362306b1b09Sthorpej#ugen*	at uhub? port ?
363306b1b09Sthorpej
364306b1b09Sthorpej# Workstation Console attachments
365306b1b09Sthorpej#wsdisplay*	at	vga?
366306b1b09Sthorpej#wskbd*		at	pckbd?
367306b1b09Sthorpej#wsmouse*	at	pms?
368306b1b09Sthorpej
36921c1d240Srpaulopseudo-device	bpfilter
370dc14ae83Schristospseudo-device	ccd
371dc14ae83Schristos#pseudo-device	cgd			# cryptographic disk devices
3721cc8b68dSchristos#pseudo-device	raid			# RAIDframe disk driver
373306b1b09Sthorpej#options 	RAID_AUTOCONFIG		# auto-configuration of RAID components
374835e533bSpooka#pseudo-device	fss			# file system snapshot device
375f71d13bdSmaxvpseudo-device	npf			# NPF packet filter
376dc14ae83Schristospseudo-device	loop
377afdfce8eShannkenpseudo-device	md
3786ff13154Scubepseudo-device	ppp
379306b1b09Sthorpejpseudo-device	pty			# pseudo-terminals
3806ff13154Scubepseudo-device	sl
3816ff13154Scubepseudo-device	vnd
3826ff13154Scube#pseudo-device	gre			# generic L3 over IP tunnel
3836ff13154Scubepseudo-device	gif			# IPv[46] over IPv[46] tunnel (RFC1933)
3846ff13154Scube#pseudo-device	faith			# IPv[46] tcp relay translation i/f
385dc1372c5Spavelpseudo-device	stf			# 6to4 IPv6 over IPv4 encapsulation
386306b1b09Sthorpejpseudo-device	vlan			# IEEE 802.1q encapsulation
387*fd2f23e6Smartin#pseudo-device	sequencer		# MIDI sequencer
388306b1b09Sthorpej#options 	RND_COM			# use "com" randomness too
389fde6ae6fSlukempseudo-device	clockctl		# user control of clock subsystem
39047655f2dSisakipseudo-device	drvctl			# user control of drive subsystem
391