XEN3PAE_DOM0 revision 1.1.74.2 1 1.1.74.2 martin # $NetBSD: XEN3PAE_DOM0,v 1.1.74.2 2020/04/08 14:07:39 martin Exp $
2 1.1.74.1 christos #
3 1.1.74.1 christos # XEN3_0: Xen 3.0 domain0 kernel
4 1.1 bouyer
5 1.1.74.1 christos include "arch/xen/conf/std.xen"
6 1.1 bouyer
7 1.1.74.1 christos options XENPV # PV dom0 support
8 1.1.74.1 christos #options MULTIPROCESSOR # (not yet - dom0 stuff is not MP-safe)
9 1.1.74.1 christos
10 1.1.74.1 christos options INCLUDE_CONFIG_FILE # embed config file in kernel binary
11 1.1.74.1 christos
12 1.1.74.1 christos #options UVMHIST
13 1.1.74.1 christos #options UVMHIST_PRINT
14 1.1.74.1 christos #options SYSCALL_DEBUG
15 1.1.74.1 christos
16 1.1.74.1 christos maxusers 32 # estimated number of users
17 1.1.74.1 christos
18 1.1.74.1 christos #
19 1.1.74.1 christos options XEN
20 1.1.74.1 christos options PAE
21 1.1.74.1 christos #options __XEN_INTERFACE_VERSION__=0x00030205 # Xen 3.1 interface
22 1.1.74.1 christos
23 1.1.74.1 christos # boot messages with MPBIOS, acpi and ioapic can be quite large
24 1.1.74.1 christos options MSGBUFSIZE=24576
25 1.1.74.1 christos
26 1.1.74.1 christos options DOM0OPS
27 1.1.74.1 christos # making MCLBYTES = PAGE_SIZE avoids a copy when a mbuf cluster is sent
28 1.1.74.1 christos # to a domU, at the expense of a higher memory usage by the network stack.
29 1.1.74.1 christos #options MCLSHIFT=12
30 1.1.74.1 christos
31 1.1.74.1 christos makeoptions CPUFLAGS="-march=i686"
32 1.1.74.1 christos
33 1.1.74.1 christos #options USER_LDT # user-settable LDT; used by WINE
34 1.1.74.1 christos
35 1.1.74.1 christos # CPU features
36 1.1.74.1 christos est0 at cpu0 # Intel Enhanced SpeedStep (non-ACPI)
37 1.1.74.1 christos powernow0 at cpu0 # AMD PowerNow! and Cool'n'Quiet (non-ACPI)
38 1.1.74.1 christos
39 1.1.74.1 christos #options MTRR # memory-type range register syscall support
40 1.1.74.1 christos
41 1.1.74.1 christos #options CONSDEVNAME="\"xencons\""
42 1.1.74.1 christos #options CONS_OVERRIDE
43 1.1.74.1 christos
44 1.1.74.1 christos options INSECURE # disable kernel security levels - X needs this
45 1.1.74.1 christos
46 1.1.74.1 christos options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
47 1.1.74.1 christos options NTP # NTP phase/frequency locked loop
48 1.1.74.1 christos
49 1.1.74.1 christos options KTRACE # system call tracing via ktrace(1)
50 1.1.74.1 christos
51 1.1.74.1 christos options CPU_UCODE # cpu ucode loading support
52 1.1.74.1 christos
53 1.1.74.1 christos options SYSVMSG # System V-like message queues
54 1.1.74.1 christos options SYSVSEM # System V-like semaphores
55 1.1.74.1 christos #options SEMMNI=10 # number of semaphore identifiers
56 1.1.74.1 christos #options SEMMNS=60 # number of semaphores in system
57 1.1.74.1 christos #options SEMUME=10 # max number of undo entries per process
58 1.1.74.1 christos #options SEMMNU=30 # number of undo structures in system
59 1.1.74.1 christos options SYSVSHM # System V-like memory sharing
60 1.1.74.1 christos #options SHMMAXPGS=2048 # 2048 pages is the default
61 1.1.74.1 christos
62 1.1.74.1 christos options MODULAR # new style module(7) framework
63 1.1.74.1 christos options USERCONF # userconf(4) support
64 1.1.74.1 christos options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
65 1.1.74.1 christos
66 1.1.74.1 christos # Alternate buffer queue strategies for better responsiveness under high
67 1.1.74.1 christos # disk I/O load.
68 1.1.74.1 christos #options BUFQ_READPRIO
69 1.1.74.1 christos options BUFQ_PRIOCSCAN
70 1.1.74.1 christos
71 1.1.74.1 christos # Diagnostic/debugging support options
72 1.1.74.1 christos options DIAGNOSTIC # inexpensive kernel consistency checks
73 1.1.74.1 christos #options DEBUG # expensive debugging checks/support
74 1.1.74.1 christos options DDB # in-kernel debugger
75 1.1.74.1 christos options DDB_ONPANIC=1 # see also sysctl(7): `ddb.onpanic'
76 1.1.74.1 christos options DDB_HISTORY_SIZE=512 # enable history editing in DDB
77 1.1.74.1 christos #options KGDB # remote debugger
78 1.1.74.1 christos #options KGDB_DEVNAME="\"com\"",KGDB_DEVADDR=0x2f8,KGDB_DEVRATE=57600
79 1.1.74.1 christos #makeoptions DEBUG="-g" # compile full symbol table
80 1.1.74.1 christos options DDB_COMMANDONENTER="show registers"
81 1.1.74.1 christos
82 1.1.74.1 christos # Compatibility options
83 1.1.74.1 christos include "conf/compat_netbsd09.config"
84 1.1.74.1 christos options COMPAT_NOMID # NetBSD 0.8, 386BSD, and BSDI
85 1.1.74.1 christos #options COMPAT_386BSD_MBRPART # recognize old partition ID
86 1.1.74.1 christos
87 1.1.74.1 christos options COMPAT_OSSAUDIO # OSS (Voxware) audio driver compatibility
88 1.1.74.1 christos options COMPAT_LINUX # binary compatibility with Linux
89 1.1.74.1 christos #options COMPAT_FREEBSD # binary compatibility with FreeBSD
90 1.1.74.1 christos
91 1.1.74.1 christos # Wedge support
92 1.1.74.1 christos options DKWEDGE_AUTODISCOVER # Automatically add dk(4) instances
93 1.1.74.1 christos options DKWEDGE_METHOD_GPT # Supports GPT partitions as wedges
94 1.1.74.1 christos #options DKWEDGE_METHOD_BSDLABEL # Support disklabel entries as wedges
95 1.1.74.1 christos #options DKWEDGE_METHOD_MBR # Support MBR partitions as wedges
96 1.1.74.1 christos options DKWEDGE_METHOD_APPLE # Support Apple partitions as wedges
97 1.1.74.1 christos #options DKWEDGE_METHOD_RDB # Support RDB partitions as wedges
98 1.1.74.1 christos
99 1.1.74.1 christos # File systems
100 1.1.74.1 christos file-system FFS # UFS
101 1.1.74.1 christos file-system EXT2FS # second extended file system (linux)
102 1.1.74.1 christos file-system LFS # log-structured file system
103 1.1.74.1 christos file-system MFS # memory file system
104 1.1.74.1 christos file-system NFS # Network File System client
105 1.1.74.1 christos file-system NTFS # Windows/NT file system (experimental)
106 1.1.74.1 christos file-system CD9660 # ISO 9660 + Rock Ridge file system
107 1.1.74.1 christos file-system MSDOSFS # MS-DOS file system
108 1.1.74.1 christos file-system FDESC # /dev/fd
109 1.1.74.1 christos file-system KERNFS # /kern
110 1.1.74.1 christos file-system NULLFS # loopback file system
111 1.1.74.1 christos file-system OVERLAY # overlay file system
112 1.1.74.1 christos file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
113 1.1.74.1 christos file-system PROCFS # /proc
114 1.1.74.1 christos file-system UMAPFS # NULLFS + uid and gid remapping
115 1.1.74.1 christos file-system UNION # union file system
116 1.1.74.1 christos file-system CODA # Coda File System; also needs vcoda (below)
117 1.1.74.1 christos file-system PTYFS # /dev/pts/N support
118 1.1.74.1 christos file-system TMPFS # Efficient memory file-system
119 1.1.74.1 christos
120 1.1.74.1 christos # File system options
121 1.1.74.1 christos options QUOTA # legacy UFS quotas
122 1.1.74.1 christos options QUOTA2 # new, in-filesystem UFS quotas
123 1.1.74.1 christos #options DISKLABEL_EI # disklabel Endian Independent support
124 1.1.74.1 christos #options FFS_EI # FFS Endian Independent support
125 1.1.74.1 christos options WAPBL # File system journaling support
126 1.1.74.1 christos #options UFS_DIRHASH # UFS Large Directory Hashing - Experimental
127 1.1.74.1 christos options NFSSERVER # Network File System server
128 1.1.74.1 christos #options FFS_NO_SNAPSHOT # No FFS snapshot support
129 1.1.74.1 christos options UFS_EXTATTR # Extended attribute support for UFS1
130 1.1.74.1 christos #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
131 1.1.74.1 christos # immutable) behave as system flags.
132 1.1.74.1 christos
133 1.1.74.1 christos # Networking options
134 1.1.74.1 christos #options GATEWAY # packet forwarding
135 1.1.74.1 christos options INET # IP + ICMP + TCP + UDP
136 1.1.74.1 christos options INET6 # IPv6
137 1.1.74.1 christos options IPSEC # IP security
138 1.1.74.1 christos #options IPSEC_DEBUG # debug for IP security
139 1.1.74.1 christos #options MROUTING # IP multicast routing
140 1.1.74.1 christos #options PIM # Protocol Independent Multicast
141 1.1.74.1 christos options NETATALK # AppleTalk networking protocols
142 1.1.74.1 christos options PPP_BSDCOMP # BSD-Compress compression support for PPP
143 1.1.74.1 christos options PPP_DEFLATE # Deflate compression support for PPP
144 1.1.74.1 christos options PPP_FILTER # Active filter support for PPP (requires bpf)
145 1.1.74.1 christos #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
146 1.1.74.1 christos
147 1.1.74.1 christos #options ALTQ # Manipulate network interfaces' output queues
148 1.1.74.1 christos #options ALTQ_BLUE # Stochastic Fair Blue
149 1.1.74.1 christos #options ALTQ_CBQ # Class-Based Queueing
150 1.1.74.1 christos #options ALTQ_CDNR # Diffserv Traffic Conditioner
151 1.1.74.1 christos #options ALTQ_FIFOQ # First-In First-Out Queue
152 1.1.74.1 christos #options ALTQ_FLOWVALVE # RED/flow-valve (red-penalty-box)
153 1.1.74.1 christos #options ALTQ_HFSC # Hierarchical Fair Service Curve
154 1.1.74.1 christos #options ALTQ_LOCALQ # Local queueing discipline
155 1.1.74.1 christos #options ALTQ_PRIQ # Priority Queueing
156 1.1.74.1 christos #options ALTQ_RED # Random Early Detection
157 1.1.74.1 christos #options ALTQ_RIO # RED with IN/OUT
158 1.1.74.1 christos #options ALTQ_WFQ # Weighted Fair Queueing
159 1.1.74.1 christos
160 1.1.74.1 christos # These options enable verbose messages for several subsystems.
161 1.1.74.1 christos # Warning, these may compile large string tables into the kernel!
162 1.1.74.1 christos #options MIIVERBOSE # verbose PHY autoconfig messages
163 1.1.74.1 christos #options PCIVERBOSE # verbose PCI device autoconfig messages
164 1.1.74.1 christos #options PCI_CONFIG_DUMP # verbosely dump PCI config space
165 1.1.74.1 christos options SCSIVERBOSE # human readable SCSI error messages
166 1.1.74.1 christos #options USBVERBOSE # verbose USB device autoconfig messages
167 1.1.74.1 christos #options HDAUDIOVERBOSE # verbose HDAUDIO driver messages
168 1.1.74.1 christos
169 1.1.74.1 christos options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
170 1.1.74.1 christos #options NFS_BOOT_BOOTSTATIC
171 1.1.74.1 christos #options NFS_BOOTSTATIC_MYIP="\"169.254.1.2\""
172 1.1.74.1 christos #options NFS_BOOTSTATIC_GWIP="\"169.254.1.1\""
173 1.1.74.1 christos #options NFS_BOOTSTATIC_MASK="\"255.255.255.0\""
174 1.1.74.1 christos #options NFS_BOOTSTATIC_SERVADDR="\"169.254.1.1\""
175 1.1.74.1 christos #options NFS_BOOTSTATIC_SERVER="\"server:/path/to/root\""
176 1.1.74.1 christos
177 1.1.74.1 christos options WSEMUL_VT100 # VT100 / VT220 emulation
178 1.1.74.1 christos options WS_KERNEL_FG=WSCOL_GREEN
179 1.1.74.1 christos options WSDISPLAY_COMPAT_PCVT # emulate some ioctls
180 1.1.74.1 christos options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls
181 1.1.74.1 christos options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
182 1.1.74.1 christos options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
183 1.1.74.1 christos options WSDISPLAY_DEFAULTSCREENS=4
184 1.1.74.1 christos options WSDISPLAY_SCROLLSUPPORT
185 1.1.74.1 christos options PCDISPLAY_SOFTCURSOR
186 1.1.74.1 christos
187 1.1.74.1 christos config netbsd root on ? type ?
188 1.1.74.1 christos #config netbsd root on wd0a type ffs
189 1.1.74.1 christos #config netbsd root on xennet0 type nfs
190 1.1.74.1 christos
191 1.1.74.1 christos mainbus0 at root
192 1.1.74.1 christos
193 1.1.74.1 christos cpu* at mainbus?
194 1.1.74.1 christos
195 1.1.74.1 christos # IPMI support
196 1.1.74.1 christos ipmi0 at mainbus?
197 1.1.74.1 christos ipmi_acpi* at acpi?
198 1.1.74.1 christos ipmi0 at ipmi_acpi?
199 1.1.74.1 christos
200 1.1.74.1 christos hypervisor* at mainbus? # Xen hypervisor
201 1.1.74.1 christos
202 1.1.74.1 christos vcpu* at hypervisor? # Xen virtual CPUs
203 1.1.74.1 christos xenbus* at hypervisor? # Xen virtual bus
204 1.1.74.1 christos
205 1.1.74.1 christos xencons* at hypervisor? # Xen virtual console
206 1.1.74.1 christos #xennet* at hypervisor? # Xen virtual network interface
207 1.1.74.1 christos balloon* at xenbus? # Xen balloon device
208 1.1.74.1 christos
209 1.1.74.1 christos #xbd* at hypervisor? # Xen virtual block device
210 1.1.74.1 christos #wd* at hypervisor? # Xen vbd (wd identity)
211 1.1.74.1 christos #sd* at hypervisor? # Xen vbd (sd identity)
212 1.1.74.1 christos #cd* at hypervisor? # Xen vbd (cd identity)
213 1.1.74.1 christos
214 1.1.74.1 christos # PCI bus support
215 1.1.74.1 christos pci* at hypervisor? bus ?
216 1.1.74.1 christos pci* at pchb? bus ?
217 1.1.74.1 christos
218 1.1.74.1 christos # PCI bridges
219 1.1.74.1 christos ichlpcib* at pci? dev ? function ? # Intel ICH PCI-ISA w/ timecounter,
220 1.1.74.1 christos # watchdog and SpeedStep support
221 1.1.74.1 christos pcib* at pci? dev ? function ? # PCI-ISA bridges
222 1.1.74.1 christos pchb* at pci? dev ? function ? # PCI-Host bridges
223 1.1.74.1 christos options AGP_X86
224 1.1.74.1 christos ppb* at pci? dev ? function ? # PCI-PCI bridges
225 1.1.74.1 christos # XXX 'puc's aren't really bridges, but there's no better place for them here
226 1.1.74.1 christos puc* at pci? dev ? function ? # PCI "universal" comm. cards
227 1.1.74.1 christos
228 1.1.74.1 christos agp* at pchb?
229 1.1.74.1 christos
230 1.1.74.1 christos # ISA bus support
231 1.1.74.1 christos isa0 at ichlpcib?
232 1.1.74.1 christos isa0 at pcib?
233 1.1.74.1 christos isa0 at hypervisor?
234 1.1.74.1 christos
235 1.1.74.1 christos # Serial Devices
236 1.1.74.1 christos
237 1.1.74.1 christos # PCI serial interfaces
238 1.1.74.1 christos com* at puc? port ? # 16x50s on "universal" comm boards
239 1.1.74.1 christos cy* at pci? dev ? function ? # Cyclades Cyclom-Y serial boards
240 1.1.74.1 christos cz* at pci? dev ? function ? # Cyclades-Z multi-port serial boards
241 1.1.74.1 christos
242 1.1.74.1 christos # ISA serial interfaces
243 1.1.74.1 christos #options COM_HAYESP # adds Hayes ESP serial board support
244 1.1.74.1 christos # If a com port is used as Xen console it can't be used by the domain0 kernel
245 1.1.74.1 christos # and there's no easy way to detect this yet. Leave com0 out as it's the
246 1.1.74.1 christos # port usually used for serial console
247 1.1.74.1 christos #com0 at isa? port 0x3f8 irq 4 # Standard PC serial ports
248 1.1.74.1 christos com1 at isa? port 0x2f8 irq 3
249 1.1.74.1 christos #com2 at isa? port 0x3e8 irq 5
250 1.1.74.1 christos #com3 at isa? port 0x2e8 irq 9
251 1.1.74.1 christos
252 1.1.74.1 christos # Parallel Printer Interfaces
253 1.1.74.1 christos
254 1.1.74.1 christos # PCI parallel printer interfaces
255 1.1.74.1 christos lpt* at puc? port ? # || ports on "universal" comm boards
256 1.1.74.1 christos
257 1.1.74.1 christos # ISA parallel printer interfaces
258 1.1.74.1 christos lpt0 at isa? port 0x378 irq 7 # standard PC parallel ports
259 1.1.74.1 christos
260 1.1.74.1 christos # Hardware monitors
261 1.1.74.1 christos
262 1.1.74.1 christos amdnb_misc* at pci? # AMD NB Misc Configuration
263 1.1.74.1 christos amdtemp* at amdnb_misc? # AMD CPU Temperature sensors
264 1.1.74.1 christos
265 1.1.74.1 christos # AMD 768 and 8111 power/ACPI controllers
266 1.1.74.1 christos amdpm* at pci? dev ? function ? # RNG and SMBus 1.0 interface
267 1.1.74.1 christos
268 1.1.74.1 christos # Intel ICH SMBus controller
269 1.1.74.1 christos ichsmb* at pci? dev ? function ?
270 1.1.74.1 christos iic* at ichsmb?
271 1.1.74.1 christos
272 1.1.74.1 christos # I2C controller as found in some Intel PCH devices.
273 1.1.74.1 christos dwiic* at pci? # I2C controller
274 1.1.74.1 christos iic* at dwiic?
275 1.1.74.1 christos
276 1.1.74.1 christos # dbCool thermal monitor and fan controller
277 1.1.74.1 christos #iic* at amdpm? # sensors below are on this bus
278 1.1.74.1 christos #dbcool* at iic? addr 0x2C # Unknown other motherboard(s)
279 1.1.74.1 christos #dbcool* at iic? addr 0x2D # Tyan S2881
280 1.1.74.1 christos #dbcool* at iic? addr 0x2E # Tyan S2882-D
281 1.1.74.1 christos
282 1.1.74.1 christos # Serial Presence Detect capable memory modules
283 1.1.74.1 christos #spdmem* at iic? addr 0x50
284 1.1.74.1 christos #spdmem* at iic? addr 0x51
285 1.1.74.1 christos #spdmem* at iic? addr 0x52
286 1.1.74.1 christos #spdmem* at iic? addr 0x53
287 1.1.74.1 christos #spdmem* at iic? addr 0x54
288 1.1.74.1 christos #spdmem* at iic? addr 0x55
289 1.1.74.1 christos #spdmem* at iic? addr 0x56
290 1.1.74.1 christos #spdmem* at iic? addr 0x57
291 1.1.74.1 christos #sdtemp* at iic? addr 0x18
292 1.1.74.1 christos #sdtemp* at iic? addr 0x19
293 1.1.74.1 christos #sdtemp* at iic? addr 0x1a
294 1.1.74.1 christos #sdtemp* at iic? addr 0x1b
295 1.1.74.1 christos #sdtemp* at iic? addr 0x1c
296 1.1.74.1 christos #sdtemp* at iic? addr 0x1d
297 1.1.74.1 christos #sdtemp* at iic? addr 0x1e
298 1.1.74.1 christos #sdtemp* at iic? addr 0x1f
299 1.1.74.1 christos
300 1.1.74.1 christos # Winbond LPC Super I/O
301 1.1.74.1 christos #wbsio* at isa? port 0x2e
302 1.1.74.1 christos #wbsio* at isa? port 0x4e
303 1.1.74.1 christos
304 1.1.74.1 christos # LM7[89] and compatible hardware monitors
305 1.1.74.1 christos # Use flags to select temp sensor type (see lm(4) man page for details)
306 1.1.74.1 christos #lm0 at isa? port 0x290 flags 0x0 # other common: 0x280, 0x310, 0xc00
307 1.1.74.1 christos #lm* at wbsio?
308 1.1.74.1 christos
309 1.1.74.1 christos # VIA VT82C686A/VT8231 Hardware Monitor and Power Management TImer
310 1.1.74.1 christos #viaenv* at pci? dev ? function ?
311 1.1.74.1 christos
312 1.1.74.1 christos
313 1.1.74.1 christos # PCI network interfaces
314 1.1.74.1 christos age* at pci? dev ? function ? # Attansic/Atheros L1 Gigabit Ethernet
315 1.1.74.1 christos an* at pci? dev ? function ? # Aironet PC4500/PC4800 (802.11)
316 1.1.74.1 christos ale* at pci? dev ? function ? # Attansic/Atheros L1E Ethernet
317 1.1.74.1 christos ath* at pci? dev ? function ? # Atheros 5210/5211/5212 802.11
318 1.1.74.1 christos atw* at pci? dev ? function ? # ADMtek ADM8211 (802.11)
319 1.1.74.1 christos bce* at pci? dev ? function ? # Broadcom 4401 10/100 Ethernet
320 1.1.74.1 christos bge* at pci? dev ? function ? # Broadcom 570x gigabit Ethernet
321 1.1.74.1 christos bnx* at pci? dev ? function ? # Broadcom NetXtremeII gigabit Ethernet
322 1.1.74.1 christos dge* at pci? dev ? function ? # Intel 82597 10GbE LR
323 1.1.74.1 christos ep* at pci? dev ? function ? # 3Com 3c59x
324 1.1.74.1 christos epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet
325 1.1.74.1 christos et* at pci? dev ? function ? # Agere/LSI ET1310/ET1301 Gigabit
326 1.1.74.1 christos ex* at pci? dev ? function ? # 3Com 3c90x[BC]
327 1.1.74.1 christos fxp* at pci? dev ? function ? # Intel EtherExpress PRO 10+/100B
328 1.1.74.1 christos gsip* at pci? dev ? function ? # NS83820 Gigabit Ethernet
329 1.1.74.1 christos hme* at pci? dev ? function ? # Sun Microelectronics STP2002-STQ
330 1.1.74.1 christos ipw* at pci? dev ? function ? # Intel PRO/Wireless 2100
331 1.1.74.1 christos iwi* at pci? dev ? function ? # Intel PRO/Wireless 2200BG
332 1.1.74.1 christos iwn* at pci? dev ? function ? # Intel PRO/Wireless 4965AGN
333 1.1.74.1 christos iwm* at pci? dev ? function ? # Intel Wireless WiFi Link 7xxx
334 1.1.74.1 christos jme* at pci? dev ? function ? # JMicron JMC2[56]0 Ethernet
335 1.1.74.1 christos lii* at pci? dev ? function ? # Atheros L2 Fast-Ethernet
336 1.1.74.1 christos mskc* at pci? dev ? function ? # Marvell Yukon 2 Gigabit Ethernet
337 1.1.74.1 christos msk* at mskc? # Marvell Yukon 2 Gigabit Ethernet
338 1.1.74.1 christos mtd* at pci? dev ? function ? # Myson MTD803 3-in-1 Ethernet
339 1.1.74.1 christos ne* at pci? dev ? function ? # NE2000-compatible Ethernet
340 1.1.74.1 christos nfe* at pci? dev ? function ? # NVIDIA nForce Ethernet
341 1.1.74.1 christos ntwoc* at pci? dev ? function ? # Riscom/N2 PCI Sync Serial
342 1.1.74.1 christos pcn* at pci? dev ? function ? # AMD PCnet-PCI Ethernet
343 1.1.74.1 christos ral* at pci? dev ? function ? # Ralink Technology RT25x0 802.11a/b/g
344 1.1.74.1 christos re* at pci? dev ? function ? # Realtek 8139C+/8169/8169S/8110S
345 1.1.74.1 christos rtk* at pci? dev ? function ? # Realtek 8129/8139
346 1.1.74.1 christos sf* at pci? dev ? function ? # Adaptec AIC-6915 Ethernet
347 1.1.74.1 christos sip* at pci? dev ? function ? # SiS 900/DP83815 Ethernet
348 1.1.74.1 christos skc* at pci? dev ? function ? # SysKonnect SK9821 Gigabit Ethernet
349 1.1.74.1 christos sk* at skc? # SysKonnect SK9821 Gigabit Ethernet
350 1.1.74.1 christos ste* at pci? dev ? function ? # Sundance ST-201 Ethernet
351 1.1.74.1 christos stge* at pci? dev ? function ? # Sundance/Tamarack TC9021 Gigabit
352 1.1.74.1 christos ti* at pci? dev ? function ? # Alteon ACEnic gigabit Ethernet
353 1.1.74.1 christos tl* at pci? dev ? function ? # ThunderLAN-based Ethernet
354 1.1.74.1 christos tlp* at pci? dev ? function ? # DECchip 21x4x and clones
355 1.1.74.1 christos txp* at pci? dev ? function ? # 3com 3cr990
356 1.1.74.1 christos vge* at pci? dev ? function ? # VIATech VT612X Gigabit Ethernet
357 1.1.74.1 christos vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet
358 1.1.74.1 christos wi* at pci? dev ? function ? # Intersil Prism Mini-PCI (802.11b)
359 1.1.74.1 christos wm* at pci? dev ? function ? # Intel 8254x gigabit
360 1.1.74.1 christos wpi* at pci? dev ? function ? # Intel PRO/Wireless 3945ABG
361 1.1.74.1 christos xge* at pci? dev ? function ? # Neterion (S2io) Xframe-I 10GbE
362 1.1.74.1 christos
363 1.1.74.1 christos # MII/PHY support
364 1.1.74.1 christos acphy* at mii? phy ? # Altima AC101 and AMD Am79c874 PHYs
365 1.1.74.1 christos amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs
366 1.1.74.1 christos atphy* at mii? phy ? # Attansic/Atheros PHYs
367 1.1.74.1 christos bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs
368 1.1.74.1 christos brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs
369 1.1.74.1 christos ciphy* at mii? phy ? # Cicada CS8201 Gig-E PHYs
370 1.1.74.1 christos dmphy* at mii? phy ? # Davicom DM9101 PHYs
371 1.1.74.1 christos etphy* at mii? phy ? # Agere/LSI ET1011 TruePHY Gig-E PHYs
372 1.1.74.1 christos exphy* at mii? phy ? # 3Com internal PHYs
373 1.1.74.1 christos gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs
374 1.1.74.1 christos glxtphy* at mii? phy ? # Level One LXT-1000 PHYs
375 1.1.74.1 christos gphyter* at mii? phy ? # NS83861 Gig-E PHY
376 1.1.74.1 christos icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x
377 1.1.74.1 christos igphy* at mii? phy ? # Intel IGP01E1000
378 1.1.74.1 christos ihphy* at mii? phy ? # Intel 82577 PHYs
379 1.1.74.1 christos ikphy* at mii? phy ? # Intel 82563 PHYs
380 1.1.74.1 christos inphy* at mii? phy ? # Intel 82555 PHYs
381 1.1.74.1 christos iophy* at mii? phy ? # Intel 82553 PHYs
382 1.1.74.1 christos lxtphy* at mii? phy ? # Level One LXT-970 PHYs
383 1.1.74.1 christos makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs
384 1.1.74.1 christos nsphy* at mii? phy ? # NS83840 PHYs
385 1.1.74.1 christos nsphyter* at mii? phy ? # NS83843 PHYs
386 1.1.74.1 christos pnaphy* at mii? phy ? # generic HomePNA PHYs
387 1.1.74.1 christos qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
388 1.1.74.1 christos rgephy* at mii? phy ? # Realtek 8169S/8110S internal PHYs
389 1.1.74.1 christos rlphy* at mii? phy ? # Realtek 8139/8201L PHYs
390 1.1.74.1 christos sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
391 1.1.74.1 christos tlphy* at mii? phy ? # ThunderLAN PHYs
392 1.1.74.1 christos tqphy* at mii? phy ? # TDK Semiconductor PHYs
393 1.1.74.1 christos ukphy* at mii? phy ? # generic unknown PHYs
394 1.1.74.1 christos urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs
395 1.1.74.1 christos
396 1.1.74.1 christos # I2C HID devices
397 1.1.74.1 christos ihidev* at iic?
398 1.1.74.1 christos
399 1.1.74.1 christos # I2C Mice
400 1.1.74.1 christos ims* at ihidev? reportid ?
401 1.1.74.1 christos wsmouse* at ims? mux 0
402 1.1.74.1 christos
403 1.1.74.1 christos # I2O devices
404 1.1.74.1 christos iop* at pci? dev ? function ? # I/O processor
405 1.1.74.1 christos iopsp* at iop? tid ? # SCSI/FC-AL ports
406 1.1.74.1 christos ld* at iop? tid ? # block devices
407 1.1.74.1 christos dpti* at iop? tid 0 # DPT/Adaptec control interface
408 1.1.74.1 christos
409 1.1.74.1 christos # IDE and related devices
410 1.1.74.1 christos # PCI IDE controllers - see pciide(4) for supported hardware.
411 1.1.74.1 christos # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
412 1.1.74.1 christos # how to set up DMA modes for this chip. This may work, or may cause
413 1.1.74.1 christos # a machine hang with some controllers.
414 1.1.74.1 christos pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver
415 1.1.74.1 christos acardide* at pci? dev ? function ? # Acard IDE controllers
416 1.1.74.1 christos aceride* at pci? dev ? function ? # Acer Lab IDE controllers
417 1.1.74.1 christos ahcisata* at pci? dev ? function ? # AHCI SATA controllers
418 1.1.74.1 christos artsata* at pci? dev ? function ? # Intel i31244 SATA controller
419 1.1.74.1 christos cmdide* at pci? dev ? function ? # CMD tech IDE controllers
420 1.1.74.1 christos cypide* at pci? dev ? function ? # Cypress IDE controllers
421 1.1.74.1 christos geodeide* at pci? dev ? function ? # AMD Geode IDE controllers
422 1.1.74.1 christos hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers
423 1.1.74.1 christos iteide* at pci? dev ? function ? # IT Express IDE controllers
424 1.1.74.1 christos ixpide* at pci? dev ? function ? # ATI IXP IDE controllers
425 1.1.74.1 christos jmide* at pci? dev ? function ? # JMicron PCI-e PATA/SATA controllers
426 1.1.74.1 christos ahcisata* at jmide?
427 1.1.74.1 christos optiide* at pci? dev ? function ? # Opti IDE controllers
428 1.1.74.1 christos piixide* at pci? dev ? function ? # Intel IDE controllers
429 1.1.74.1 christos pdcide* at pci? dev ? function ? # Promise IDE controllers
430 1.1.74.1 christos pdcsata* at pci? dev ? function ? # Promise SATA150 controllers
431 1.1.74.1 christos rccide* at pci? dev ? function ? # ServerWorks IDE controllers
432 1.1.74.1 christos satalink* at pci? dev ? function ? # SiI SATALink controllers
433 1.1.74.1 christos schide* at pci? dev ? function ? # Intel SCH IDE controllers
434 1.1.74.1 christos siisata* at pci? dev ? function ? # SiI SteelVine controllers
435 1.1.74.1 christos siside* at pci? dev ? function ? # SiS IDE controllers
436 1.1.74.1 christos slide* at pci? dev ? function ? # Symphony Labs IDE controllers
437 1.1.74.1 christos svwsata* at pci? dev ? function ? # ServerWorks SATA controllers
438 1.1.74.1 christos stpcide* at pci? dev ? function ? # STMicro STPC IDE controllers
439 1.1.74.1 christos viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers
440 1.1.74.1 christos
441 1.1.74.1 christos # ATA (IDE) bus support
442 1.1.74.1 christos atabus* at ata?
443 1.1.74.1 christos
444 1.1.74.1 christos # IDE drives
445 1.1.74.1 christos # Flags are used only with controllers that support DMA operations
446 1.1.74.1 christos # and mode settings (e.g. some pciide controllers)
447 1.1.74.1 christos # The lowest order four bits (rightmost digit) of the flags define the PIO
448 1.1.74.1 christos # mode to use, the next set of four bits the DMA mode and the third set the
449 1.1.74.1 christos # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
450 1.1.74.1 christos # to use, and the last bit must be 1 for this setting to be used.
451 1.1.74.1 christos # For DMA and UDMA, 0xf (1111) means 'disable'.
452 1.1.74.1 christos # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
453 1.1.74.1 christos # (0xc=1100, 0xa=1010, 0xf=1111)
454 1.1.74.1 christos # 0x0000 means "use whatever the drive claims to support".
455 1.1.74.1 christos wd* at atabus? drive ? flags 0x0000
456 1.1.74.1 christos
457 1.1.74.1 christos # ATA RAID configuration support, as found on some Promise controllers.
458 1.1.74.1 christos pseudo-device ataraid
459 1.1.74.1 christos ld* at ataraid? vendtype ? unit ?
460 1.1.74.1 christos
461 1.1.74.1 christos # ATAPI bus support
462 1.1.74.1 christos atapibus* at atapi?
463 1.1.74.1 christos
464 1.1.74.1 christos # ATAPI devices
465 1.1.74.1 christos # flags have the same meaning as for IDE drives.
466 1.1.74.1 christos cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
467 1.1.74.1 christos sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
468 1.1.74.1 christos st* at atapibus? drive ? flags 0x0000 # ATAPI tape drives
469 1.1.74.1 christos uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
470 1.1.74.1 christos
471 1.1.74.1 christos # SCSI Controllers and Devices
472 1.1.74.1 christos
473 1.1.74.1 christos # PCI SCSI controllers
474 1.1.74.1 christos adv* at pci? dev ? function ? # AdvanSys 1200[A,B], 9xx[U,UA] SCSI
475 1.1.74.1 christos adw* at pci? dev ? function ? # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
476 1.1.74.1 christos ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
477 1.1.74.1 christos ahd* at pci? dev ? function ? # Adaptec 29320, 39320 (aic790x) SCSI
478 1.1.74.1 christos bha* at pci? dev ? function ? # BusLogic 9xx SCSI
479 1.1.74.1 christos dpt* at pci? dev ? function ? # DPT SmartCache/SmartRAID
480 1.1.74.1 christos iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI
481 1.1.74.1 christos isp* at pci? dev ? function ? # Qlogic ISP [12]0x0 SCSI/FibreChannel
482 1.1.74.1 christos mfi* at pci? dev ? function ? # LSI MegaRAID SAS
483 1.1.74.1 christos mfii* at pci? dev ? function ? # LSI MegaRAID SAS (Fusion and newer)
484 1.1.74.1 christos mly* at pci? dev ? function ? # Mylex AcceleRAID and eXtremeRAID
485 1.1.74.1 christos mpt* at pci? dev ? function ? # LSILogic 9x9 and 53c1030 (Fusion-MPT)
486 1.1.74.1 christos mpii* at pci? dev ? function ? # LSI Logic Fusion-MPT II
487 1.1.74.1 christos njs* at pci? dev ? function ? # Workbit NinjaSCSI-32
488 1.1.74.1 christos pcscp* at pci? dev ? function ? # AMD 53c974 PCscsi-PCI SCSI
489 1.1.74.1 christos siop* at pci? dev ? function ? # Symbios 53c8xx SCSI
490 1.1.74.1 christos esiop* at pci? dev ? function ? # Symbios 53c875 SCSI and newer
491 1.1.74.1 christos #options SIOP_SYMLED # drive the act. LED in software
492 1.1.74.1 christos trm* at pci? dev ? function ? # Tekram DC-395U/UW/F, DC-315/U SCSI
493 1.1.74.1 christos # SCSI bus support
494 1.1.74.1 christos scsibus* at scsi?
495 1.1.74.1 christos
496 1.1.74.1 christos # SCSI devices
497 1.1.74.1 christos sd* at scsibus? target ? lun ? # SCSI disk drives
498 1.1.74.1 christos st* at scsibus? target ? lun ? # SCSI tape drives
499 1.1.74.1 christos cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
500 1.1.74.1 christos ch* at scsibus? target ? lun ? # SCSI autochangers
501 1.1.74.1 christos ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices
502 1.1.74.1 christos ss* at scsibus? target ? lun ? # SCSI scanners
503 1.1.74.1 christos uk* at scsibus? target ? lun ? # SCSI unknown
504 1.1.74.1 christos
505 1.1.74.1 christos # RAID controllers and devices
506 1.1.74.1 christos aac* at pci? dev ? function ? # Adaptec AAC family
507 1.1.74.1 christos amr* at pci? dev ? function ? # AMI/LSI Logic MegaRAID
508 1.1.74.1 christos arcmsr* at pci? dev ? function ? # Areca SATA RAID controllers
509 1.1.74.1 christos cac* at pci? dev ? function ? # Compaq PCI array controllers
510 1.1.74.1 christos ciss* at pci? dev ? function ? # HP Smart Array controllers
511 1.1.74.1 christos icp* at pci? dev ? function ? # ICP-Vortex GDT & Intel RAID
512 1.1.74.1 christos mlx* at pci? dev ? function ? # Mylex DAC960 & DEC SWXCR family
513 1.1.74.1 christos twe* at pci? dev ? function ? # 3ware Escalade RAID controllers
514 1.1.74.1 christos twa* at pci? dev ? function ? # 3ware Escalade 95xx RAID controllers
515 1.1.74.1 christos
516 1.1.74.1 christos ld* at aac? unit ? # logical disk devices
517 1.1.74.1 christos ld* at amr? unit ?
518 1.1.74.1 christos ld* at cac? unit ?
519 1.1.74.1 christos ld* at icp? unit ?
520 1.1.74.1 christos ld* at twe? unit ?
521 1.1.74.1 christos ld* at twa? unit ?
522 1.1.74.1 christos ld* at mlx? unit ?
523 1.1.74.1 christos
524 1.1.74.1 christos icpsp* at icp? unit ? # SCSI pass-through
525 1.1.74.1 christos
526 1.1.74.1 christos # wscons
527 1.1.74.1 christos pckbc0 at isa? # PC keyboard controller
528 1.1.74.1 christos pckbd* at pckbc? # PC keyboard
529 1.1.74.1 christos pms* at pckbc? # PS/2 mouse for wsmouse
530 1.1.74.1 christos #options PMS_DISABLE_POWERHOOK # Disable PS/2 reset on resume
531 1.1.74.1 christos options PMS_SYNAPTICS_TOUCHPAD # Enable support for Synaptics Touchpads
532 1.1.74.1 christos #vga0 at isa?
533 1.1.74.1 christos vga* at pci? dev ? function ?
534 1.1.74.1 christos #pcdisplay0 at isa? # CGA, MDA, EGA, HGA
535 1.1.74.1 christos #machfb* at pci? dev ? function ? # ATI Mach64 framebuffer driver
536 1.1.74.1 christos wsdisplay* at vga? console ?
537 1.1.74.1 christos #wsdisplay* at pcdisplay? console ?
538 1.1.74.1 christos #wsdisplay* at machfb? console ?
539 1.1.74.1 christos wskbd* at pckbd? console ?
540 1.1.74.1 christos wsmouse* at pms? mux 0
541 1.1.74.1 christos
542 1.1.74.1 christos # USB Controller and Devices
543 1.1.74.1 christos
544 1.1.74.1 christos # PCI USB controllers
545 1.1.74.1 christos xhci* at pci? dev ? function ? # eXtensible Host Controller
546 1.1.74.1 christos # xhci is at best experimental
547 1.1.74.1 christos ehci* at pci? dev ? function ? # Enhanced Host Controller
548 1.1.74.1 christos ohci* at pci? dev ? function ? # Open Host Controller
549 1.1.74.1 christos uhci* at pci? dev ? function ? # Universal Host Controller (Intel)
550 1.1.74.1 christos
551 1.1.74.1 christos # USB bus support
552 1.1.74.1 christos usb* at xhci?
553 1.1.74.1 christos usb* at ehci?
554 1.1.74.1 christos usb* at ohci?
555 1.1.74.1 christos usb* at uhci?
556 1.1.74.1 christos
557 1.1.74.1 christos # USB Hubs
558 1.1.74.1 christos uhub* at usb?
559 1.1.74.1 christos uhub* at uhub? port ?
560 1.1.74.1 christos
561 1.1.74.1 christos # USB HID device
562 1.1.74.1 christos uhidev* at uhub? port ? configuration ? interface ?
563 1.1.74.1 christos
564 1.1.74.1 christos # USB Mice
565 1.1.74.1 christos ums* at uhidev? reportid ?
566 1.1.74.1 christos wsmouse* at ums? mux 0
567 1.1.74.1 christos
568 1.1.74.1 christos # USB eGalax touch-panel
569 1.1.74.1 christos uep* at uhub? port ?
570 1.1.74.1 christos wsmouse* at uep? mux 0
571 1.1.74.1 christos
572 1.1.74.1 christos # USB Keyboards
573 1.1.74.1 christos ukbd* at uhidev? reportid ?
574 1.1.74.1 christos wskbd* at ukbd? console ? mux 1
575 1.1.74.1 christos
576 1.1.74.1 christos # USB serial adapter
577 1.1.74.1 christos ucycom* at uhidev? reportid ?
578 1.1.74.1 christos
579 1.1.74.1 christos # USB Generic HID devices
580 1.1.74.1 christos uhid* at uhidev? reportid ?
581 1.1.74.1 christos
582 1.1.74.1 christos # USB Printer
583 1.1.74.1 christos ulpt* at uhub? port ? configuration ? interface ?
584 1.1.74.1 christos
585 1.1.74.1 christos # USB Modem
586 1.1.74.1 christos umodem* at uhub? port ? configuration ?
587 1.1.74.1 christos ucom* at umodem?
588 1.1.74.1 christos
589 1.1.74.1 christos # Option N.V. Wireless WAN modems
590 1.1.74.1 christos uhso* at uhub? port ? configuration ?
591 1.1.74.1 christos
592 1.1.74.1 christos # USB Mass Storage
593 1.1.74.1 christos umass* at uhub? port ? configuration ? interface ?
594 1.1.74.1 christos
595 1.1.74.1 christos # USB audio
596 1.1.74.1 christos uaudio* at uhub? port ? configuration ?
597 1.1.74.1 christos
598 1.1.74.1 christos # USB MIDI
599 1.1.74.1 christos umidi* at uhub? port ? configuration ?
600 1.1.74.1 christos
601 1.1.74.1 christos # USB IrDA
602 1.1.74.1 christos # USB-IrDA bridge spec
603 1.1.74.1 christos uirda* at uhub? port ? configuration ? interface ?
604 1.1.74.1 christos irframe* at uirda?
605 1.1.74.1 christos
606 1.1.74.1 christos # SigmaTel STIr4200 USB/IrDA Bridge
607 1.1.74.1 christos ustir* at uhub? port ?
608 1.1.74.1 christos irframe* at ustir?
609 1.1.74.1 christos
610 1.1.74.1 christos # USB Ethernet adapters
611 1.1.74.1 christos aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
612 1.1.74.1 christos axe* at uhub? port ? # ASIX AX88172 based adapters
613 1.1.74.1 christos cdce* at uhub? port ? # CDC, Ethernet Networking Control Model
614 1.1.74.1 christos cue* at uhub? port ? # CATC USB-EL1201A based adapters
615 1.1.74.1 christos kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
616 1.1.74.1 christos mue* at uhub? port ? # Microchip LAN75xx/LAN78xx based adapters
617 1.1.74.1 christos udav* at uhub? port ? # Davicom DM9601 based adapters
618 1.1.74.1 christos ure* at uhub? port ? # Realtek RTL8152/RTL8153 based adapters
619 1.1.74.1 christos url* at uhub? port ? # Realtek RTL8150L based adapters
620 1.1.74.1 christos urndis* at uhub? port ? # Microsoft RNDIS specification
621 1.1.74.1 christos
622 1.1.74.1 christos # USB 802.11 adapters
623 1.1.74.1 christos atu* at uhub? port ? # Atmel AT76C50XX based adapters
624 1.1.74.1 christos ural* at uhub? port ? # Ralink Technology RT2500USB 802.11a/b/g
625 1.1.74.1 christos rum* at uhub? port ? # Ralink Technology RT2501/RT2601 802.11a/b/g
626 1.1.74.1 christos urtw* at uhub? port ? # Realtek RTL8187/RTL8187B 802.11b/g
627 1.1.74.1 christos
628 1.1.74.1 christos # Prolific PL2301/PL2302 host-to-host adapter
629 1.1.74.1 christos upl* at uhub? port ?
630 1.1.74.1 christos
631 1.1.74.1 christos # Serial adapters
632 1.1.74.1 christos ubsa* at uhub? port ? # Belkin serial adapter
633 1.1.74.1 christos ucom* at ubsa? portno ?
634 1.1.74.1 christos
635 1.1.74.1 christos uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter
636 1.1.74.1 christos ucom* at uftdi? portno ?
637 1.1.74.1 christos
638 1.1.74.1 christos umct* at uhub? port ? # MCT USB-RS232 serial adapter
639 1.1.74.1 christos ucom* at umct? portno ?
640 1.1.74.1 christos
641 1.1.74.1 christos uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter
642 1.1.74.1 christos ucom* at uplcom? portno ?
643 1.1.74.1 christos
644 1.1.74.1 christos uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter
645 1.1.74.1 christos ucom* at uvscom? portno ?
646 1.1.74.1 christos
647 1.1.74.1 christos # USB Handspring Visor
648 1.1.74.1 christos uvisor* at uhub? port ?
649 1.1.74.1 christos ucom* at uvisor?
650 1.1.74.1 christos
651 1.1.74.1 christos # Kyocera AIR-EDGE PHONE
652 1.1.74.1 christos ukyopon* at uhub? port ?
653 1.1.74.1 christos ucom* at ukyopon? portno ?
654 1.1.74.1 christos
655 1.1.74.1 christos # USB scanners
656 1.1.74.1 christos #uscanner* at uhub? port ?
657 1.1.74.1 christos
658 1.1.74.1 christos # USB scanners that use SCSI emulation, e.g., HP5300
659 1.1.74.1 christos usscanner* at uhub? port ?
660 1.1.74.1 christos
661 1.1.74.1 christos # Y@P firmware loader
662 1.1.74.1 christos uyap* at uhub? port ?
663 1.1.74.1 christos
664 1.1.74.1 christos # D-Link DSB-R100 USB radio
665 1.1.74.1 christos udsbr* at uhub? port ?
666 1.1.74.1 christos radio* at udsbr?
667 1.1.74.1 christos
668 1.1.74.1 christos # USB Generic driver
669 1.1.74.1 christos ugen* at uhub? port ?
670 1.1.74.1 christos
671 1.1.74.1 christos # PCI IEEE1394 controllers
672 1.1.74.1 christos fwohci* at pci? dev ? function ? # IEEE1394 Open Host Controller
673 1.1.74.1 christos
674 1.1.74.1 christos # CardBus IEEE1394 controllers
675 1.1.74.1 christos #fwohci* at cardbus? function ? # IEEE1394 Open Host Controller
676 1.1.74.1 christos
677 1.1.74.1 christos ieee1394if* at fwohci?
678 1.1.74.1 christos fwip* at ieee1394if? # IP over IEEE1394
679 1.1.74.1 christos sbp* at ieee1394if? euihi ? euilo ? # SCSI over IEEE1394
680 1.1.74.1 christos
681 1.1.74.1 christos
682 1.1.74.1 christos # SD/MMC/SDIO Controller and Device support
683 1.1.74.1 christos
684 1.1.74.1 christos # PCI SD/MMC controller
685 1.1.74.1 christos sdhc* at pci? # SD Host Controller
686 1.1.74.1 christos rtsx* at pci? # Realtek RTS5209/RTS5229 Card Reader
687 1.1.74.1 christos
688 1.1.74.1 christos # CardBus SD/MMC controller
689 1.1.74.1 christos #sdhc* at cardbus? function ? # SD Host Controller
690 1.1.74.1 christos
691 1.1.74.1 christos sdmmc* at sdhc? # SD/MMC bus
692 1.1.74.1 christos sdmmc* at rtsx? # SD/MMC bus
693 1.1.74.1 christos ld* at sdmmc?
694 1.1.74.1 christos
695 1.1.74.1 christos
696 1.1.74.1 christos # Audio Devices
697 1.1.74.1 christos
698 1.1.74.1 christos # PCI audio devices
699 1.1.74.1 christos auacer* at pci? dev ? function ? # ALi M5455 integrated AC'97 Audio
700 1.1.74.1 christos auich* at pci? dev ? function ? # Intel ICH integrated AC'97 Audio
701 1.1.74.1 christos auixp* at pci? dev ? function ? # ATI IXP AC'97 Audio
702 1.1.74.1 christos autri* at pci? dev ? function ? # Trident 4DWAVE based AC'97 Audio
703 1.1.74.1 christos auvia* at pci? dev ? function ? # VIA VT82C686A integrated AC'97 Audio
704 1.1.74.1 christos clcs* at pci? dev ? function ? # Cirrus Logic CS4280
705 1.1.74.1 christos clct* at pci? dev ? function ? # Cirrus Logic CS4281
706 1.1.74.1 christos cmpci* at pci? dev ? function ? # C-Media CMI8338/8738
707 1.1.74.1 christos eap* at pci? dev ? function ? # Ensoniq AudioPCI
708 1.1.74.1 christos emuxki* at pci? dev ? function ? # Creative SBLive! and PCI512
709 1.1.74.1 christos esa* at pci? dev ? function ? # ESS Allegro-1 / Maestro-3 PCI Audio
710 1.1.74.1 christos esm* at pci? dev ? function ? # ESS Maestro-1/2/2e PCI Audio Accelerator
711 1.1.74.1 christos eso* at pci? dev ? function ? # ESS Solo-1 PCI AudioDrive
712 1.1.74.1 christos fms* at pci? dev ? function ? # Forte Media FM801
713 1.1.74.1 christos neo* at pci? dev ? function ? # NeoMagic 256 AC'97 Audio
714 1.1.74.1 christos sv* at pci? dev ? function ? # S3 SonicVibes
715 1.1.74.1 christos yds* at pci? dev ? function ? # Yamaha DS-1 PCI Audio
716 1.1.74.1 christos
717 1.1.74.1 christos # OPL[23] FM synthesizers
718 1.1.74.1 christos #opl0 at isa? port 0x388 # use only if not attached to sound card
719 1.1.74.1 christos opl* at cmpci? flags 1
720 1.1.74.1 christos opl* at eso?
721 1.1.74.1 christos opl* at fms?
722 1.1.74.1 christos opl* at sv?
723 1.1.74.1 christos opl* at yds?
724 1.1.74.1 christos
725 1.1.74.1 christos # High Definition Audio
726 1.1.74.1 christos hdaudio* at pci? dev ? function ? # High Definition Audio
727 1.1.74.1 christos hdafg* at hdaudiobus?
728 1.1.74.1 christos
729 1.1.74.1 christos # Audio support
730 1.1.74.1 christos audio* at audiobus?
731 1.1.74.1 christos
732 1.1.74.1 christos spkr* at audio? # PC speaker (synthesized)
733 1.1.74.1 christos
734 1.1.74.1 christos # MPU 401 UARTs
735 1.1.74.1 christos #mpu* at isa? port 0x330 irq 9 # MPU401 or compatible card
736 1.1.74.1 christos mpu* at cmpci?
737 1.1.74.1 christos mpu* at eso?
738 1.1.74.1 christos mpu* at fms?
739 1.1.74.1 christos mpu* at yds?
740 1.1.74.1 christos
741 1.1.74.1 christos # MIDI support
742 1.1.74.1 christos midi* at midibus?
743 1.1.74.1 christos
744 1.1.74.1 christos # Bluetooth Controller and Device support
745 1.1.74.1 christos
746 1.1.74.1 christos # Bluetooth PCMCIA Controllers
747 1.1.74.1 christos #bt3c* at pcmcia? function ? # 3Com 3CRWB6096-A
748 1.1.74.1 christos #btbc* at pcmcia? function ? # AnyCom BlueCard LSE041/039/139
749 1.1.74.1 christos
750 1.1.74.1 christos # Bluetooth USB Controllers
751 1.1.74.1 christos ubt* at uhub? port ?
752 1.1.74.1 christos aubtfwl* at uhub? port ?
753 1.1.74.1 christos
754 1.1.74.1 christos # Bluetooth Device Hub
755 1.1.74.1 christos #bthub* at bt3c?
756 1.1.74.1 christos #bthub* at btbh?
757 1.1.74.1 christos bthub* at ubt?
758 1.1.74.1 christos
759 1.1.74.1 christos # Bluetooth HID support
760 1.1.74.1 christos bthidev* at bthub?
761 1.1.74.1 christos
762 1.1.74.1 christos # Bluetooth Mouse
763 1.1.74.1 christos btms* at bthidev? reportid ?
764 1.1.74.1 christos wsmouse* at btms? mux 0
765 1.1.74.1 christos
766 1.1.74.1 christos # Bluetooth Keyboard
767 1.1.74.1 christos btkbd* at bthidev? reportid ?
768 1.1.74.1 christos wskbd* at btkbd? console ? mux 1
769 1.1.74.1 christos
770 1.1.74.1 christos # Bluetooth Apple Magic Mouse
771 1.1.74.1 christos btmagic* at bthub?
772 1.1.74.1 christos wsmouse* at btmagic? mux 0
773 1.1.74.1 christos
774 1.1.74.1 christos # Bluetooth Audio support
775 1.1.74.1 christos btsco* at bthub?
776 1.1.74.1 christos
777 1.1.74.1 christos
778 1.1.74.1 christos # Cryptographic Devices
779 1.1.74.1 christos
780 1.1.74.1 christos # PCI cryptographic devices
781 1.1.74.1 christos hifn* at pci? dev ? function ? # Hifn 7755/7811/795x
782 1.1.74.1 christos ubsec* at pci? dev ? function ? # Broadcom 5501/5601/580x/582x
783 1.1.74.1 christos
784 1.1.74.1 christos cinclude "arch/i386/conf/GENERIC.local"
785 1.1.74.1 christos cinclude "arch/i386/conf/XEN3_DOM0.local"
786 1.1.74.1 christos
787 1.1.74.1 christos # Pseudo-Devices
788 1.1.74.1 christos
789 1.1.74.1 christos pseudo-device crypto # /dev/crypto device
790 1.1.74.1 christos pseudo-device swcrypto # software crypto implementation
791 1.1.74.1 christos
792 1.1.74.1 christos # disk/mass storage pseudo-devices
793 1.1.74.1 christos pseudo-device bio # RAID control device driver
794 1.1.74.1 christos pseudo-device ccd # concatenated/striped disk devices
795 1.1.74.1 christos pseudo-device cgd # cryptographic disk devices
796 1.1.74.1 christos pseudo-device raid # RAIDframe disk driver
797 1.1.74.1 christos options RAID_AUTOCONFIG # auto-configuration of RAID components
798 1.1.74.1 christos # Options to enable various other RAIDframe RAID types.
799 1.1.74.1 christos #options RF_INCLUDE_EVENODD=1
800 1.1.74.1 christos #options RF_INCLUDE_RAID5_RS=1
801 1.1.74.1 christos #options RF_INCLUDE_PARITYLOGGING=1
802 1.1.74.1 christos #options RF_INCLUDE_CHAINDECLUSTER=1
803 1.1.74.1 christos #options RF_INCLUDE_INTERDECLUSTER=1
804 1.1.74.1 christos #options RF_INCLUDE_PARITY_DECLUSTERING=1
805 1.1.74.1 christos #options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
806 1.1.74.1 christos pseudo-device fss # file system snapshot device
807 1.1.74.1 christos
808 1.1.74.1 christos pseudo-device md # memory disk device (ramdisk)
809 1.1.74.1 christos pseudo-device vnd # disk-like interface to files
810 1.1.74.1 christos pseudo-device dm # device-mapper driver for LVM
811 1.1.74.1 christos
812 1.1.74.1 christos # network pseudo-devices
813 1.1.74.1 christos pseudo-device bpfilter # Berkeley packet filter
814 1.1.74.1 christos pseudo-device loop # network loopback
815 1.1.74.1 christos pseudo-device ppp # Point-to-Point Protocol
816 1.1.74.1 christos pseudo-device pppoe # PPP over Ethernet (RFC 2516)
817 1.1.74.1 christos pseudo-device sl # Serial Line IP
818 1.1.74.1 christos pseudo-device irframetty # IrDA frame line discipline
819 1.1.74.1 christos pseudo-device tap # virtual Ethernet
820 1.1.74.1 christos pseudo-device tun # network tunneling over tty
821 1.1.74.1 christos pseudo-device gre # generic L3 over IP tunnel
822 1.1.74.1 christos pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC 1933)
823 1.1.74.1 christos #pseudo-device faith # IPv[46] tcp relay translation i/f
824 1.1.74.1 christos pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
825 1.1.74.1 christos pseudo-device vlan # IEEE 802.1q encapsulation
826 1.1.74.1 christos pseudo-device bridge # simple inter-network bridging
827 1.1.74.1 christos #options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too
828 1.1.74.1 christos pseudo-device l2tp # L2TPv3 interface
829 1.1.74.1 christos pseudo-device npf # NPF packet filter
830 1.1.74.1 christos
831 1.1.74.1 christos # accept filters
832 1.1.74.1 christos pseudo-device accf_data # "dataready" accept filter
833 1.1.74.1 christos pseudo-device accf_http # "httpready" accept filter
834 1.1.74.1 christos
835 1.1.74.1 christos # miscellaneous pseudo-devices
836 1.1.74.1 christos pseudo-device pty # pseudo-terminals
837 1.1.74.1 christos pseudo-device sequencer # MIDI sequencer
838 1.1.74.1 christos # rnd works; RND_COM does not on port i386 yet.
839 1.1.74.1 christos #options RND_COM # use "com" randomness as well (BROKEN)
840 1.1.74.1 christos pseudo-device clockctl # user control of clock subsystem
841 1.1.74.1 christos pseudo-device ksyms # /dev/ksyms
842 1.1.74.1 christos pseudo-device putter # for puffs and pud
843 1.1.74.1 christos
844 1.1.74.1 christos # a pseudo device needed for Coda # also needs CODA (above)
845 1.1.74.1 christos pseudo-device vcoda # coda minicache <-> venus comm.
846 1.1.74.1 christos
847 1.1.74.1 christos # wscons pseudo-devices
848 1.1.74.1 christos pseudo-device wsmux # mouse & keyboard multiplexor
849 1.1.74.1 christos pseudo-device wsfont
850 1.1.74.1 christos
851 1.1.74.1 christos # userland interface to drivers, including autoconf and properties retrieval
852 1.1.74.1 christos pseudo-device drvctl
853 1.1.74.1 christos
854 1.1.74.1 christos # xen pseudo-devices
855 1.1.74.1 christos pseudo-device xenevt
856 1.1.74.1 christos pseudo-device xvif
857 1.1.74.1 christos pseudo-device xbdback
858 1.1.74.1 christos
859 1.1.74.1 christos options PAX_MPROTECT=0 # PaX mprotect(2) restrictions
860 1.1.74.1 christos options PAX_ASLR=0 # PaX Address Space Layout Randomization
861 1.1.74.1 christos
862 1.1.74.1 christos ppb* at pci? dev ? function ? # PCI-PCI bridges
863 1.1.74.1 christos pci* at ppb? bus ?
864 1.1.74.1 christos
865 1.1.74.1 christos # pci backend devices, used for PCI pass-through. To export a PCI device
866 1.1.74.1 christos # to a domU, the device has to be attached to the pciback driver in the dom0.
867 1.1.74.1 christos # you can force a device to attach to the pciback driver in dom0 passing
868 1.1.74.1 christos # pciback.hide=(bus:dev.fun)(bus:dev.func) to the dom0 kernel boot parameters.
869 1.1.74.1 christos # bus and dev are 2-digits hex number, func is a single-digit number:
870 1.1.74.1 christos # pciback.hide=(00:1a.0)(00:1a.1)(00:1a.7)
871 1.1.74.1 christos pciback* at pci? #pci backend device
872 1.1.74.1 christos
873 1.1.74.1 christos acpi0 at hypervisor? # ACPI access in PV mode
874 1.1.74.1 christos acpi0 at mainbus? # ACPI access in PVH(VM) mode
875 1.1.74.1 christos
876 1.1.74.1 christos options MPBIOS
877 1.1.74.1 christos #options MPDEBUG
878 1.1.74.1 christos #options MPVERBOSE
879 1.1.74.1 christos #options ACPIVERBOSE
880 1.1.74.1 christos #options PCI_ADDR_FIXUP # fixup PCI I/O addresses
881 1.1.74.1 christos #options PCI_BUS_FIXUP # fixup PCI bus numbering
882 1.1.74.1 christos #options PCI_INTR_FIXUP # fixup PCI interrupt routing
883 1.1.74.1 christos
884 1.1.74.1 christos ioapic* at mainbus? apid ?
885 1.1.74.1 christos
886 1.1.74.1 christos # ACPI devices
887 1.1.74.1 christos acpiacad* at acpi? # ACPI AC Adapter
888 1.1.74.1 christos acpibat* at acpi? # ACPI Battery
889 1.1.74.1 christos acpibut* at acpi? # ACPI Button
890 1.1.74.1 christos acpidalb* at acpi? # ACPI Direct Application Launch Button
891 1.1.74.1 christos # The ACPI Embedded Controller is generally configured via the special ECDT.
892 1.1.74.1 christos # This is required as parts of the DSDT can reference the EC before the normal
893 1.1.74.1 christos # attach phase.
894 1.1.74.1 christos acpiec* at acpi? # ACPI Embedded Controller (late binding)
895 1.1.74.1 christos acpiecdt* at acpi? # ACPI Embedded Controller (early binding)
896 1.1.74.1 christos acpilid* at acpi? # ACPI Lid Switch
897 1.1.74.1 christos aibs* at acpi? # ASUSTeK AI Booster hardware monitor
898 1.1.74.1 christos hpqlb* at acpi? # HP Quick Launch Buttons
899