VR41XX revision 1.26 1 1.26 tron # $NetBSD: VR41XX,v 1.26 2005/07/07 17:05:47 tron Exp $
2 1.1 uch #
3 1.1 uch # GENERIC machine description file
4 1.1 uch #
5 1.1 uch # This machine description file is used to generate the default NetBSD
6 1.1 uch # kernel. The generic kernel does not include all options, subsystems
7 1.1 uch # and device drivers, but should be useful for most applications.
8 1.1 uch #
9 1.1 uch # The machine description file can be customised for your specific
10 1.1 uch # machine to reduce the kernel size and improve its performance.
11 1.1 uch #
12 1.1 uch # For further information on compiling NetBSD kernels, see the config(8)
13 1.1 uch # man page.
14 1.1 uch #
15 1.1 uch # For further information on hardware support for this architecture, see
16 1.1 uch # the intro(4) man page. For further information about kernel options
17 1.1 uch # for this architecture, see the options(4) man page. For an explanation
18 1.1 uch # of each device driver in this file see the section 4 man page for the
19 1.1 uch # device.
20 1.1 uch
21 1.1 uch include "arch/hpcmips/conf/std.hpcmips"
22 1.1 uch include "arch/hpcmips/conf/std.hpcmips.vr41"
23 1.26 tron #ident "GENERIC-$Revision: 1.26 $"
24 1.8 atatat
25 1.8 atatat #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
26 1.1 uch
27 1.1 uch maxusers 16
28 1.1 uch
29 1.1 uch # Support for specific models of H/PC MIPS
30 1.18 tv makeoptions CPUFLAGS="-mips2" # CPU codegen options
31 1.1 uch options VR4102 # NEC VR4102
32 1.1 uch options VR4111 # NEC VR4111
33 1.1 uch options VR4121 # NEC VR4121
34 1.5 uch options VR4122 # NEC VR4122
35 1.5 uch options VR4131 # NEC VR4131
36 1.1 uch
37 1.1 uch # Standard system options
38 1.1 uch options DDB # in-kernel debugger
39 1.1 uch #options DDB_ONPANIC=0 # don't enter debugger on panic
40 1.1 uch #options KGDB # remote debugger
41 1.1 uch #options DIAGNOSTIC # extra kernel debugging checks
42 1.1 uch #options DEBUG # extra kernel debugging support
43 1.1 uch options KTRACE # system call tracing support
44 1.1 uch options MSGBUFSIZE=8192 # dmesg buffer size
45 1.10 lukem options USERCONF # userconf(4) support
46 1.3 jdolecek #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
47 1.19 atatat #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
48 1.4 uch options KLOADER_KERNEL_PATH="\"/netbsd\""
49 1.4 uch options KLOADER_DEBUG
50 1.1 uch
51 1.1 uch ## UVM options.
52 1.1 uch #options UVM_PAGE_TRKOWN
53 1.1 uch #options UVMHIST
54 1.1 uch #options UVMHIST_PRINT # Loud!
55 1.1 uch
56 1.1 uch #options SCSIVERBOSE # human readable SCSI error messages
57 1.1 uch #options PCMCIAVERBOSE # verbose PCMCIA configuration messages
58 1.1 uch
59 1.1 uch #options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
60 1.1 uch #options RTC_OFFSET=-540 # JST-9
61 1.1 uch #options RTC_OFFSET=480 # PST8
62 1.1 uch # In NO RTC_OFFSET , inherit RTC_OFFSET
63 1.1 uch # from Windows CE.
64 1.1 uch options NTP # network time protocol
65 1.1 uch
66 1.1 uch #options WINCE_DEFAULT_SETTING # Debugging use
67 1.1 uch
68 1.1 uch #options SYSCALL_DEBUG # for debug
69 1.1 uch #options HPCMIPS_L1CACHE_DISABLE # disable L1 cache for debug
70 1.1 uch
71 1.1 uch # Filesystem options
72 1.1 uch file-system FFS # fast filesystem with user and group quotas
73 1.1 uch file-system MFS # memory-based filesystem
74 1.1 uch file-system NFS # Sun NFS-compatible filesystem (client)
75 1.1 uch #file-system LFS # Log-based filesystem (still experimental)
76 1.1 uch file-system CD9660 # ISO 9660 + Rock Ridge file system
77 1.1 uch file-system MSDOSFS # MS-DOS file system
78 1.1 uch #file-system FDESC # /dev/fd
79 1.1 uch file-system KERNFS # /kern (kernel informational filesystem)
80 1.1 uch #file-system NULLFS # loopback file system
81 1.1 uch #file-system OVERLAY # overlay file system
82 1.1 uch #file-system PORTAL # portal filesystem (still experimental)
83 1.1 uch file-system PROCFS # /proc
84 1.1 uch #file-system UMAPFS # NULLFS + uid and gid remapping
85 1.1 uch file-system UNION
86 1.1 uch
87 1.1 uch #options NFSSERVER # Sun NFS-compatible filesystem (server)
88 1.1 uch options SOFTDEP # FFS soft updates support.
89 1.1 uch #options QUOTA # UFS quotas
90 1.1 uch options VNODE_OP_NOINLINE # don't inline vnode op calls
91 1.24 dsl options FFS_NO_SNAPSHOT # No FFS snapshots
92 1.1 uch
93 1.1 uch # Networking options
94 1.1 uch #options GATEWAY # IP packet forwarding
95 1.1 uch options INET # IP + ICMP + TCP + UDP
96 1.1 uch options INET6 # IPV6
97 1.1 uch #options IPSEC # IP security
98 1.1 uch #options IPSEC_ESP # IP security (encryption part; define w/ IPSEC)
99 1.26 tron #options IPSEC_NAT_T # IPsec NAT traversal (NAT-T)
100 1.1 uch #options IPSEC_DEBUG # debug for IP security
101 1.1 uch #options MROUTING # Multicast routing support
102 1.20 manu #options PIM # Protocol Independent Multicast
103 1.1 uch #options ISO # OSI networking
104 1.1 uch #options TPIP # TPIP
105 1.1 uch #options EON # OSI tunneling over IP
106 1.1 uch #options CCITT,LLC,HDLC # X.25
107 1.1 uch
108 1.1 uch # NetBSD backwards compatibility
109 1.1 uch options COMPAT_43
110 1.22 christos options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
111 1.1 uch
112 1.1 uch options NFS_BOOT_DHCP
113 1.1 uch
114 1.1 uch config netbsd root on ? type ?
115 1.2 takemura
116 1.2 takemura # compile options
117 1.11 shin #makeoptions DEFGP="-G 8"
118 1.1 uch
119 1.1 uch # WS console uses SUN or VT100 terminal emulation
120 1.1 uch options WSEMUL_VT100
121 1.1 uch #options WSDISPLAY_DEFAULTSCREENS=4
122 1.1 uch #options FONT_VT220L8x8
123 1.1 uch options FONT_VT220L8x10
124 1.1 uch # compatibility to other console drivers
125 1.1 uch options WSDISPLAY_COMPAT_PCVT # emulate some ioctls
126 1.1 uch options WSDISPLAY_COMPAT_SYSCONS # emulate some ioctls
127 1.1 uch options WSDISPLAY_COMPAT_USL # VT handling
128 1.1 uch options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
129 1.1 uch #
130 1.1 uch # Hpckbd will set key board layout appropriately. You can use option
131 1.1 uch # 'PCKBD_LAYOUT' to overrite the default layout.
132 1.1 uch #
133 1.1 uch #options PCKBD_LAYOUT="(KB_US | KB_SWAPCTRLCAPS | KB_MACHDEP)"
134 1.1 uch
135 1.1 uch # temporally power management
136 1.1 uch hpcapm0 at mainbus0 # power management
137 1.1 uch apmdev0 at hpcapm0 # APM
138 1.1 uch
139 1.1 uch options MQ200_DEBUG
140 1.1 uch #options MQ200_USECRT
141 1.5 uch mqvideo0 at vr4102ip? addr 0x0a000000 size 0x800000 # MQ200 video controller
142 1.1 uch hpcfb* at mqvideo?
143 1.1 uch
144 1.5 uch ite8181video0 at vr4102ip? addr 0x0a000000 size 0x800000 # ITE8181 video controller
145 1.1 uch hpcfb* at ite8181video?
146 1.1 uch
147 1.5 uch vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_430
148 1.5 uch vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_510
149 1.5 uch vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_520
150 1.5 uch vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_520A
151 1.5 uch vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_530
152 1.5 uch vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_SIGMARION
153 1.5 uch vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_530A
154 1.5 uch vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_700
155 1.16 shin vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_700A
156 1.16 shin vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_730
157 1.16 shin vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_730A
158 1.1 uch
159 1.1 uch # Workstation Console attachments
160 1.1 uch bivideo0 at mainbus0
161 1.1 uch hpcfb* at bivideo0
162 1.1 uch wsdisplay* at hpcfb?
163 1.1 uch wskbd* at hpckbd? mux 1
164 1.1 uch wsmouse* at vrpiu? mux 0
165 1.1 uch btnmgr0 at mainbus0
166 1.1 uch wskbd* at btnmgr0 mux 1
167 1.1 uch
168 1.1 uch #
169 1.1 uch # hpcmips isa? bus irq locator means:
170 1.1 uch #
171 1.1 uch # 0x0000000f ISA IRQ#
172 1.1 uch # 0x00ff0000 GPIO port#
173 1.1 uch # 0x01000000 interrupt signal hold/through (1:hold/0:though)
174 1.1 uch # 0x02000000 interrupt detection level (1:low /0:high )
175 1.1 uch # 0x04000000 interrupt detection trigger (1:edge/0:level )
176 1.1 uch
177 1.1 uch #
178 1.1 uch # MC-R300, MC-R500
179 1.1 uch # Button to GPIO port # mapping
180 1.1 uch # + REC button : 4
181 1.1 uch # + Open/Close button: 6
182 1.1 uch # (PCIC-ISA : 9)
183 1.1 uch # (COM power:14)
184 1.1 uch #
185 1.1 uch # MC-R510
186 1.1 uch # Button to GPIO port # mapping
187 1.1 uch # + Open/Close button: 3
188 1.1 uch # (PCIC-ISA : 9)
189 1.1 uch # (COM power:14)
190 1.1 uch #
191 1.1 uch # MC-R530
192 1.1 uch # Button to GPIO port # mapping
193 1.1 uch # + Open/Close button: 3
194 1.1 uch # + Application button: 2
195 1.1 uch # (PCIC-ISA : 9)
196 1.1 uch # (COM power:46)
197 1.1 uch #
198 1.1 uch # MC-R700
199 1.1 uch # Button to GPIO port # mapping
200 1.1 uch # + Open/Close button: 3
201 1.1 uch # (PCIC-ISA : 9)
202 1.1 uch # (COM power:46)
203 1.1 uch #
204 1.1 uch # MC-CS
205 1.1 uch # Button to GPIO port # mapping
206 1.1 uch # (PCIC-ISA : 9)
207 1.1 uch # (COM power:14)
208 1.1 uch #
209 1.1 uch # IBM WorkPad z50
210 1.1 uch # Button to GPIO port # mapping
211 1.1 uch # + REC button : 1
212 1.1 uch # + Application button? : 2
213 1.1 uch # (PCIC-ISA : 9)
214 1.1 uch #
215 1.1 uch button0 at vrgiu? platform NEC_MCR_3XX id BTN_REC port 4
216 1.1 uch button0 at vrgiu? platform NEC_MCR_500 id BTN_REC port 4
217 1.1 uch button0 at vrgiu? platform IBM_WORKPAD id BTN_REC port 1 active 0
218 1.1 uch button1 at vrgiu? platform NEC_MCR_430 id BTN_COVER port 3
219 1.1 uch button1 at vrgiu? platform NEC_MCR_510 id BTN_COVER port 3
220 1.1 uch button1 at vrgiu? platform NEC_MCR_520 id BTN_COVER port 3
221 1.1 uch #button1 at vrgiu? platform NEC_MCR_520A id BTN_COVER port 3
222 1.1 uch button1 at vrgiu? platform NEC_MCR_530 id BTN_COVER port 3
223 1.1 uch #button1 at vrgiu? platform NEC_MCR_530A id BTN_COVER port 3
224 1.1 uch button1 at vrgiu? platform NEC_MCR_SIGMARION id BTN_COVER port 3
225 1.1 uch button1 at vrgiu? platform NEC_MCR_7XX id BTN_COVER port 3
226 1.1 uch button1 at vrgiu? platform NEC_MCR_3XX id BTN_COVER port 6
227 1.1 uch button1 at vrgiu? platform NEC_MCR_500 id BTN_COVER port 6
228 1.1 uch button2 at vrgiu? platform NEC_MCR_530 id BTN_APP0 port 2
229 1.1 uch button2 at vrgiu? platform IBM_WORKPAD id BTN_APP0 port 2 active 0
230 1.1 uch button3 at vrgiu? platform NEC_MCCS id BTN_LIGHT port 8
231 1.1 uch pwctl0 at vrgiu? platform NEC_MCR_3XX id PWCTL_COM0 port 14
232 1.1 uch pwctl0 at vrgiu? platform NEC_MCR_430 id PWCTL_COM0 port 46
233 1.1 uch pwctl0 at vrgiu? platform NEC_MCR_500 id PWCTL_COM0 port 14
234 1.1 uch pwctl0 at vrgiu? platform NEC_MCR_530 id PWCTL_COM0 port 46
235 1.1 uch pwctl0 at vrgiu? platform NEC_MCR_530A id PWCTL_COM0 port 46
236 1.1 uch #pwctl0 at vrgiu? platform NEC_MCR_SIGMARION id PWCTL_COM0 port 46
237 1.1 uch pwctl0 at vrgiu? platform NEC_MCR_7XX id PWCTL_COM0 port 46
238 1.1 uch pwctl0 at vrgiu? platform NEC_MCCS id PWCTL_COM0 port 14
239 1.1 uch pwctl1 at vrgiu? platform NEC_MCR_3XX id PWCTL_LCDLIGHT port 45
240 1.1 uch pwctl1 at vrgiu? platform NEC_MCR_500 id PWCTL_LCDLIGHT port 45
241 1.1 uch pwctl1 at vrgiu? platform NEC_MCCS id PWCTL_LCDLIGHT port 45
242 1.1 uch pwctl2 at vrgiu? platform NEC_MCR_3XX id PWCTL_LCD port 10
243 1.1 uch pwctl2 at vrgiu? platform NEC_MCR_500 id PWCTL_LCD port 10
244 1.1 uch pwctl2 at vrgiu? platform NEC_MCCS id PWCTL_LCD port 10
245 1.17 sato ewctl3 at vrgiu? platform NEC_MCCS id PWCTL_SPEAKER port 12
246 1.1 uch pwctl3 at vrgiu? platform NEC_MCR_3XX id PWCTL_SPEAKER port 12
247 1.1 uch pwctl3 at vrgiu? platform NEC_MCR_430 id PWCTL_SPEAKER port 44
248 1.1 uch pwctl3 at vrgiu? platform NEC_MCR_500 id PWCTL_SPEAKER port 12
249 1.1 uch pwctl3 at vrgiu? platform NEC_MCR_510 id PWCTL_SPEAKER port 44
250 1.1 uch pwctl3 at vrgiu? platform NEC_MCR_520 id PWCTL_SPEAKER port 44
251 1.1 uch #pwctl3 at vrgiu? platform NEC_MCR_520A id PWCTL_SPEAKER port 44
252 1.1 uch pwctl3 at vrgiu? platform NEC_MCR_530 id PWCTL_SPEAKER port 44
253 1.1 uch #pwctl3 at vrgiu? platform NEC_MCR_530A id PWCTL_SPEAKER port 44
254 1.1 uch #pwctl3 at vrgiu? platform NEC_MCR_SIGMARION id PWCTL_SPEAKER port 44
255 1.1 uch pwctl3 at vrgiu? platform IBM_WORKPAD id PWCTL_SPEAKER port 49
256 1.1 uch #pwctl4 at vrgiu? platform NEC_MCR_430 id PWCTL_COM1 port 47
257 1.1 uch #pwctl4 at vrgiu? platform NEC_MCR_530 id PWCTL_COM1 port 47
258 1.1 uch #pwctl4 at vrgiu? platform NEC_MCR_SIGMARION id PWCTL_COM1 port 47
259 1.1 uch vrisab0 at vrgiu? platform NEC_MCR
260 1.1 uch vrisab0 at vrgiu? platform NEC_MCCS
261 1.1 uch vrisab0 at vrgiu? platform IBM_WORKPAD isaportoffset 0x1000000
262 1.1 uch isa0 at vrisab0
263 1.1 uch pcic0 at isa0 port 0x3e0 iomem 0x70000 iosiz 0x4000 irq 0x00090003
264 1.1 uch #
265 1.1 uch # Freestyle
266 1.1 uch # Button to GPIO port # mapping
267 1.1 uch # +---------+
268 1.1 uch # 1 +| |
269 1.1 uch # | |+ 7
270 1.1 uch # | |
271 1.1 uch #20 +| LCD |+ 4
272 1.1 uch # | | + 6
273 1.1 uch # 8 +| |+ 5
274 1.1 uch # | |
275 1.1 uch # | |+----Power On/Off (connected to PMU)
276 1.1 uch # +---------+
277 1.1 uch # +9
278 1.1 uch # +12 +10
279 1.1 uch # +11
280 1.1 uch # (PCIC-ISA : 23)
281 1.1 uch button0 at vrgiu? platform EVEREX_FREESTYLE id BTN_APP0 port 9
282 1.1 uch button1 at vrgiu? platform EVEREX_FREESTYLE id BTN_APP1 port 10
283 1.1 uch button2 at vrgiu? platform EVEREX_FREESTYLE id BTN_APP2 port 11
284 1.1 uch button3 at vrgiu? platform EVEREX_FREESTYLE id BTN_APP3 port 12
285 1.1 uch button4 at vrgiu? platform EVEREX_FREESTYLE id BTN_CANCEL port 7
286 1.1 uch button5 at vrgiu? platform EVEREX_FREESTYLE id BTN_UP port 4
287 1.1 uch button6 at vrgiu? platform EVEREX_FREESTYLE id BTN_OK port 6
288 1.1 uch button7 at vrgiu? platform EVEREX_FREESTYLE id BTN_DOWN port 5
289 1.1 uch button8 at vrgiu? platform EVEREX_FREESTYLE id BTN_REC port 1
290 1.1 uch button9 at vrgiu? platform EVEREX_FREESTYLE id BTN_LIGHT port 20
291 1.1 uch button10 at vrgiu? platform EVEREX_FREESTYLE id BTN_CONTRAST port 8
292 1.1 uch vrisab1 at vrgiu? platform EVEREX_FREESTYLE isaportoffset 0x1000000
293 1.1 uch isa1 at vrisab1
294 1.1 uch pcic0 at isa1 port 0x3e0 iomem 0x70000 iosiz 0x4000 irq 0x00170003
295 1.1 uch
296 1.1 uch options PCIC_ISA_INTR_ALLOC_MASK=0x0008 # IRQ 3 only (MCR/Freestyle)
297 1.1 uch
298 1.1 uch #
299 1.1 uch # Fujitsu INTERTOP CX300
300 1.1 uch #
301 1.1 uch pwctl0 at vrgiu? platform FUJITSU_INTERTOP id PWCTL_COM0 port 15
302 1.1 uch vrisab2 at vrgiu? platform FUJITSU_INTERTOP isaportoffset 0x1000000
303 1.1 uch isa2 at vrisab2
304 1.1 uch pcic0 at isa2 port 0x3e0 iomem 0x70000 iosiz 0x4000 irq 0x00060003
305 1.1 uch
306 1.1 uch #
307 1.1 uch # Vadem Clio and Sharp Tripad
308 1.1 uch #
309 1.1 uch vrisab3 at vrgiu? platform SHARP_TRIPAD isaportoffset 0x1000000
310 1.1 uch vrisab3 at vrgiu? platform VADEM_CLIO_C isaportoffset 0x1000000
311 1.1 uch isa3 at vrisab3
312 1.1 uch pcic0 at isa3 port 0x3e0 iomem 0x70000 iosiz 0x4000 irq 0x000d0003
313 1.1 uch
314 1.1 uch #
315 1.1 uch # CASIO CASSIOPEIA E55 and for DoCoMo
316 1.1 uch #
317 1.1 uch button0 at vrgiu? platform CASIO_CASSIOPEIAE_E55 id BTN_OK active 0 port 6
318 1.1 uch button1 at vrgiu? platform CASIO_CASSIOPEIAE_E55 id BTN_CANCEL active 0 port 7
319 1.1 uch button2 at vrgiu? platform CASIO_CASSIOPEIAE_E55 id BTN_APP0 active 0 port 8
320 1.1 uch button3 at vrgiu? platform CASIO_CASSIOPEIAE_E55 id BTN_APP1 active 0 port 9
321 1.1 uch button4 at vrgiu? platform CASIO_CASSIOPEIAE_E55 id BTN_APP2 active 0 port 10
322 1.1 uch button5 at vrgiu? platform CASIO_CASSIOPEIAE_E55 id BTN_APP3 active 0 port 11
323 1.1 uch button6 at vrgiu? platform CASIO_CASSIOPEIAE_E55 id BTN_DOWN active 0 port 12
324 1.1 uch button7 at vrgiu? platform CASIO_CASSIOPEIAE_E55 id BTN_UP active 0 port 13
325 1.1 uch pwctl0 at vrgiu? platform CASIO_CASSIOPEIAE_E55 id PWCTL_COM0 port 38
326 1.1 uch pwctl1 at vrgiu? platform CASIO_CASSIOPEIAE_E55 id PWCTL_LCDLIGHT port 26
327 1.1 uch
328 1.1 uch # 'CF hack' for all CASSIOPEIA E series
329 1.1 uch vrisab4 at vrgiu? platform CASIO_CASSIOPEIAE_EXX isaportoffset 0xc000
330 1.1 uch vrisab4 at vrgiu? platform CASIO_CASSIOPEIAE_EXXX isaportoffset 0xc000
331 1.1 uch isa4 at vrisab4
332 1.1 uch wdc0 at isa4 port 0x170 irq 0x02000003 flags 0x0002 # single drive
333 1.1 uch
334 1.1 uch #
335 1.1 uch # Fujitsu PenCentra 130
336 1.1 uch #
337 1.1 uch vrc4172gpio0 at vrgiu? platform FUJITSU_PENCENTRA_130 addr 0x15001080 size 0x4a port 10
338 1.1 uch vrisab5 at vrc4172gpio0 isaportoffset 0x1000000
339 1.1 uch isa5 at vrisab5
340 1.1 uch pcic0 at isa5 port 0x3e0 iomem 0x70000 iosiz 0x4000 irq 0x00010003
341 1.1 uch
342 1.5 uch #
343 1.5 uch # SigmarionII
344 1.5 uch #
345 1.5 uch com* at vrgiu? platform NEC_MCR_SIGMARION2 addr 0x0b600000 port 8
346 1.5 uch vrisab6 at vrgiu? platform NEC_MCR_SIGMARION2 isaportoffset 0xf780f800
347 1.5 uch isa6 at vrisab6
348 1.5 uch ne* at isa6 port 0x300 irq 0x00090003 # port 9, active high and thorough
349 1.5 uch #wdc* at isa6 port 0x170 irq 0x00090003 flags 0x0002 # single drive
350 1.5 uch hpcioman6 at vrgiu? platform NEC_MCR_SIGMARION2
351 1.5 uch hpcin* at hpcioman6 evtype PCIINTR id PCIINTR_00_12_02 port 0 level 1 connect 1
352 1.5 uch
353 1.5 uch #
354 1.5 uch # MP-C303/304
355 1.5 uch #
356 1.5 uch hpcioman7 at vrgiu? platform VICTOR_INTERLINK_MPC303
357 1.5 uch hpcioman7 at vrgiu? platform VICTOR_INTERLINK_MPC304
358 1.5 uch hpcin* at hpcioman7 evtype PCIINTR id PCIINTR_00_19_02 port 1 level 0 hold 1 connect 1
359 1.5 uch
360 1.5 uch
361 1.5 uch # PCI bus support
362 1.5 uch options PCIVERBOSE
363 1.5 uch pci* at vrpciu?
364 1.5 uch
365 1.5 uch # VRC4173
366 1.5 uch vrc4173bcu* at pci? dev ? function ? # VRC4173 BCU
367 1.5 uch #vrc4173cmu* at vrc4173bcu? # VRC4173 CMU
368 1.5 uch #vrc4173piu* at vrc4173bcu? # VRC4173 PIU
369 1.5 uch #vrc4173kiu* at vrc4173bcu? # VRC4173 KIU
370 1.5 uch
371 1.5 uch #vrc4173cardu* at pci? dev ? function ? # VRC4173 CARDU
372 1.5 uch #pcmcia* at vrc4173cardu?
373 1.5 uch
374 1.5 uch # PCI USB controllers
375 1.5 uch ohci* at pci? dev ? function ? # Open Host Controller
376 1.5 uch #options OHCI_DEBUG, USB_DEBUG, UHUB_DEBUG
377 1.5 uch
378 1.1 uch # PCMCIA bus support
379 1.1 uch pcmcia* at pcic? controller 0 socket ?
380 1.1 uch
381 1.1 uch # PCMCIA IDE disk
382 1.1 uch wdc* at pcmcia? function ?
383 1.15 lukem
384 1.15 lukem # ATA (IDE) bus support
385 1.15 lukem atabus* at ata?
386 1.15 lukem
387 1.15 lukem # IDE drives
388 1.14 bouyer wd* at atabus? drive ? flags 0x0000
389 1.1 uch
390 1.1 uch # PCMCIA network interfaces
391 1.1 uch ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet
392 1.1 uch mbe* at pcmcia? function ? # MB8696x based Ethernet
393 1.1 uch ne* at pcmcia? function ? # NE2000-compatible Ethernet
394 1.1 uch ray* at pcmcia? function ? # Raytheon Raylink (802.11)
395 1.1 uch sm* at pcmcia? function ? # Megahertz Ethernet
396 1.1 uch wi* at pcmcia? function ? # Lucent WaveLan IEEE (802.11)
397 1.1 uch awi* at pcmcia? function ? # WLI-PCM
398 1.1 uch an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11)
399 1.1 uch
400 1.1 uch # PCMCIA Serial interfaces
401 1.1 uch com* at pcmcia? function ? # Modems and serial cards
402 1.1 uch
403 1.1 uch # PCMCIA SCSI interfaces
404 1.1 uch aic* at pcmcia? function ?
405 1.1 uch esp* at pcmcia? function ? # NCR53c406 SCSI
406 1.1 uch
407 1.1 uch # ATAPI bus support
408 1.15 lukem atapibus* at atapi?
409 1.1 uch cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
410 1.1 uch sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
411 1.1 uch
412 1.1 uch # SCSI bus support
413 1.1 uch scsibus* at aic?
414 1.1 uch scsibus* at esp?
415 1.1 uch sd* at scsibus? target ? lun ? # SCSI disk drives
416 1.1 uch cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
417 1.5 uch
418 1.5 uch # USB Hubs
419 1.5 uch usb* at ohci?
420 1.5 uch uhub* at usb?
421 1.5 uch uhub* at uhub? port ? configuration ? interface ?
422 1.5 uch
423 1.5 uch # USB HID device
424 1.5 uch uhidev* at uhub? port ? configuration ? interface ?
425 1.5 uch
426 1.5 uch # USB Mice
427 1.5 uch ums* at uhidev? reportid ?
428 1.5 uch wsmouse* at ums? mux 0
429 1.5 uch
430 1.5 uch # USB Keyboards
431 1.5 uch ukbd* at uhidev? reportid ?
432 1.5 uch wskbd* at ukbd? console ? mux 1
433 1.5 uch
434 1.5 uch # USB Generic HID devices
435 1.5 uch uhid* at uhidev? reportid ?
436 1.5 uch
437 1.5 uch # USB Printer
438 1.5 uch ulpt* at uhub? port ? configuration ? interface ?
439 1.5 uch
440 1.5 uch # USB Modem
441 1.5 uch umodem* at uhub? port ? configuration ?
442 1.5 uch ucom* at umodem?
443 1.5 uch
444 1.5 uch # USB Mass Storage
445 1.5 uch umass* at uhub? port ? configuration ? interface ?
446 1.14 bouyer atapibus* at umass?
447 1.5 uch scsibus* at umass? channel ?
448 1.5 uch
449 1.5 uch # USB audio
450 1.5 uch uaudio* at uhub? port ? configuration ?
451 1.5 uch
452 1.5 uch # USB MIDI
453 1.5 uch umidi* at uhub? port ? configuration ?
454 1.5 uch
455 1.5 uch # USB IrDA bridges
456 1.5 uch #uirda* at uhub? port ? configuration ? interface ?
457 1.5 uch #irframe* at uirda?
458 1.5 uch
459 1.5 uch # USB Ethernet adapters
460 1.5 uch aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
461 1.21 augustss axe* at uhub? port ? # ASIX AX88172 based adapters
462 1.5 uch cue* at uhub? port ? # CATC USB-EL1201A based adapters
463 1.5 uch kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
464 1.12 augustss url* at uhub? port ? # Realtek RTL8150L based adapters
465 1.5 uch
466 1.5 uch # Prolofic PL2301/PL2302 host-to-host adapter
467 1.5 uch upl* at uhub? port ?
468 1.5 uch
469 1.5 uch # Serial adapters
470 1.5 uch # FTDI FT8U100AX serial adapter
471 1.5 uch uftdi* at uhub? port ?
472 1.5 uch ucom* at uftdi? portno ?
473 1.5 uch
474 1.5 uch uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter
475 1.5 uch ucom* at uplcom? portno ?
476 1.5 uch
477 1.5 uch umct* at uhub? port ? # MCT USB-RS232 serial adapter
478 1.5 uch ucom* at umct? portno ?
479 1.5 uch
480 1.5 uch # Diamond Multimedia Rio 500
481 1.5 uch urio* at uhub? port ?
482 1.5 uch
483 1.5 uch # USB Handspring Visor
484 1.5 uch uvisor* at uhub? port ?
485 1.5 uch ucom* at uvisor?
486 1.5 uch
487 1.25 itohy # Kyocera AIR-EDGE PHONE
488 1.25 itohy ukyopon* at uhub? port ?
489 1.25 itohy ucom* at ukyopon? portno ?
490 1.25 itohy
491 1.5 uch # USB scanners
492 1.5 uch uscanner* at uhub? port ?
493 1.5 uch
494 1.5 uch # USB scanners that use SCSI emulation, e.g., HP5300
495 1.5 uch usscanner* at uhub? port ?
496 1.5 uch scsibus* at usscanner? channel ?
497 1.5 uch
498 1.5 uch # Y@P firmware loader
499 1.5 uch uyap* at uhub? port ?
500 1.5 uch
501 1.5 uch # USB Generic driver
502 1.5 uch ugen* at uhub? port ?
503 1.5 uch
504 1.5 uch audio* at uaudio?
505 1.1 uch
506 1.1 uch pseudo-device loop 1 # network loopback
507 1.1 uch pseudo-device ppp 2 # serial-line IP ports
508 1.1 uch pseudo-device pty # pseudo-terminals
509 1.1 uch pseudo-device bpfilter 16 # packet filter ports
510 1.1 uch pseudo-device ipfilter # IP filter, NAT
511 1.1 uch
512 1.1 uch pseudo-device vnd 4 # virtual disk ick
513 1.1 uch #pseudo-device ccd 4 # concatenated disks
514 1.1 uch pseudo-device rnd # /dev/random and in-kernel generator
515 1.9 lukem pseudo-device clockctl # user control of clock subsystem
516 1.1 uch
517 1.1 uch pseudo-device biconsdev 1 # build-in console device
518 1.1 uch pseudo-device wsmux # mouse & keyboard multiplexor
519 1.1 uch #pseudo-device md 1 # memory disk device (ramdisk)
520 1.1 uch
521 1.1 uch #pseudo-device raid 4 # RAIDframe disk driver
522 1.1 uch #options RAID_AUTOCONFIG # auto-configuration of RAID components
523 1.23 hannken #pseudo-device fss 4 # file system snapshot device
524 1.1 uch
525 1.1 uch # for IPv6
526 1.1 uch pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933)
527 1.1 uch #pseudo-device faith 1 # IPv[46] tcp relay translation i/f
528 1.1 uch #pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation
529 1.1 uch
530 1.1 uch ## IEEE 802.1Q Virtual LAN encapsulation, see vlan(4).
531 1.1 uch pseudo-device vlan
532 1.1 uch
533 1.1 uch ## Simple inter-network traffic bridging
534 1.1 uch pseudo-device bridge
535