GENERIC revision 1.46 1 1.46 darcy # $NetBSD: GENERIC,v 1.46 2001/06/30 11:00:32 darcy Exp $
2 1.27 soda # $OpenBSD: GENERIC,v 1.29 1999/08/29 12:14:03 niklas Exp $
3 1.1 jonathan #
4 1.27 soda # GENERIC -- everything that's currently supported
5 1.1 jonathan #
6 1.1 jonathan
7 1.23 soda include "arch/arc/conf/std.arc"
8 1.24 soda
9 1.46 darcy #ident "GENERIC-$Revision: 1.46 $"
10 1.1 jonathan
11 1.27 soda maxusers 32 # estimated number of users
12 1.27 soda
13 1.45 soda # Platform support
14 1.45 soda options PLATFORM_ACER_PICA_61 # Pica, NEC ImageRISCstation
15 1.45 soda options PLATFORM_DESKTECH_ARCSTATION_I # DESKstation rPC44
16 1.45 soda options PLATFORM_DESKTECH_TYNE # DESKstation Tyne
17 1.45 soda options PLATFORM_MICROSOFT_JAZZ # MIPS Magnum
18 1.45 soda options PLATFORM_NEC_JC94 # NEC Express 5800/230 PCI R4K
19 1.45 soda options PLATFORM_NEC_R94 # NEC RISCstation 2200 EISA
20 1.45 soda options PLATFORM_NEC_R96 # NEC Express RISCserver, RISCserver 2200
21 1.45 soda options PLATFORM_NEC_RAX94 # NEC RISCstation 2200 PCI
22 1.45 soda options PLATFORM_NEC_RD94 # NEC RISCstation 2250
23 1.45 soda options PLATFORM_SNI_RM200PCI
24 1.45 soda
25 1.27 soda # Standard system options
26 1.1 jonathan
27 1.23 soda options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
28 1.27 soda options NTP # NTP phase/frequency locked loop
29 1.1 jonathan
30 1.27 soda options KTRACE # system call tracing via ktrace(1)
31 1.1 jonathan
32 1.10 lukem options SYSVMSG # System V-like message queues
33 1.10 lukem options SYSVSEM # System V-like semaphores
34 1.46 darcy #options SEMMNI=10 # number of semaphore identifiers
35 1.46 darcy #options SEMMNS=60 # number of semaphores in system
36 1.46 darcy #options SEMUME=10 # max number of undo entries per process
37 1.46 darcy #options SEMMNU=30 # number of undo structures in system
38 1.10 lukem options SYSVSHM # System V-like memory sharing
39 1.27 soda #options SHMMAXPGS=1024 # 1024 pages is the default
40 1.27 soda
41 1.27 soda options LKM # loadable kernel modules
42 1.27 soda
43 1.27 soda # Diagnostic/debugging support options
44 1.27 soda options DIAGNOSTIC # cheap kernel consistency checks
45 1.27 soda #options DEBUG # expensive debugging checks/support
46 1.27 soda #options KMEMSTATS # kernel memory statistics (vmstat -m)
47 1.27 soda options DDB # in-kernel debugger
48 1.27 soda #options DDB_HISTORY_SIZE=100 # enable history editing in DDB
49 1.27 soda #options KGDB # remote gdb
50 1.27 soda #options KGDBRATE=19200 # kernel gdb port rate (default 9600)
51 1.27 soda #options KGDBDEV="17*256+0" # device for kernel gdb
52 1.27 soda #makeoptions DEBUG="-g" # compile full symbol table
53 1.27 soda
54 1.27 soda # Compatibility options
55 1.27 soda options COMPAT_10 # NetBSD 1.0,
56 1.27 soda options COMPAT_11 # NetBSD 1.1,
57 1.27 soda options COMPAT_12 # NetBSD 1.2,
58 1.27 soda options COMPAT_13 # NetBSD 1.3,
59 1.27 soda options COMPAT_14 # NetBSD 1.4,
60 1.27 soda options COMPAT_43 # and 4.3BSD
61 1.27 soda options COMPAT_386BSD_MBRPART # recognize old partition ID
62 1.27 soda
63 1.27 soda # mipsel specific
64 1.27 soda options COMPAT_ULTRIX # Ultrix binary compatibility
65 1.27 soda options EXEC_ECOFF # Ultrix RISC binaries are ECOFF format
66 1.1 jonathan
67 1.27 soda # File systems
68 1.6 thorpej file-system FFS # fast filesystem
69 1.27 soda file-system EXT2FS # second extended file system (linux)
70 1.27 soda file-system LFS # log-structured file system
71 1.27 soda file-system MFS # memory file system
72 1.27 soda file-system NTFS # Windows/NT file system (experimental)
73 1.23 soda file-system CD9660 # ISO 9660 + Rock Ridge file system
74 1.27 soda file-system MSDOSFS # MS-DOS file system
75 1.27 soda file-system NFS # Network File System client
76 1.27 soda file-system FDESC # /dev/fd
77 1.27 soda file-system KERNFS # /kern
78 1.27 soda file-system NULLFS # loopback file system
79 1.27 soda file-system OVERLAY # overlay file system
80 1.27 soda file-system PORTAL # portal filesystem (still experimental)
81 1.27 soda file-system PROCFS # /proc
82 1.27 soda file-system UMAPFS # NULLFS + uid and gid remapping
83 1.27 soda file-system UNION # union file system
84 1.27 soda #file-system CODA # Coda File System; also needs vcoda (below)
85 1.6 thorpej
86 1.27 soda # File system options
87 1.10 lukem options QUOTA # FFS quotas
88 1.27 soda #options FFS_EI # FFS Endian Independent support
89 1.34 fvdl options SOFTDEP # FFS soft updates support.
90 1.27 soda options NFSSERVER # Network File System server
91 1.27 soda #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
92 1.27 soda # immutable) behave as system flags.
93 1.20 itojun
94 1.1 jonathan # Networking options
95 1.23 soda #options GATEWAY # IP packet forwarding
96 1.27 soda options INET # IP + ICMP + TCP + UDP
97 1.27 soda options INET6 # IPV6
98 1.20 itojun #options IPSEC # IP security
99 1.20 itojun #options IPSEC_ESP # IP security (encryption part; define w/IPSEC)
100 1.20 itojun #options IPSEC_DEBUG # debug for IP security
101 1.27 soda #options MROUTING # IP multicast routing
102 1.27 soda options NS # XNS
103 1.27 soda #options NSIP # XNS tunneling over IP
104 1.27 soda options ISO,TPIP # OSI networking
105 1.36 sommerfe #options EON # OSI tunneling over IP
106 1.27 soda options CCITT,LLC,HDLC # X.25
107 1.27 soda options NETATALK # AppleTalk networking protocols
108 1.27 soda options PPP_BSDCOMP # BSD-Compress compression support for PPP
109 1.27 soda options PPP_DEFLATE # Deflate compression support for PPP
110 1.27 soda options PPP_FILTER # Active filter support for PPP (requires bpf)
111 1.27 soda options PFIL_HOOKS # pfil(9) packet filter hooks
112 1.27 soda options IPFILTER_LOG # ipmon(8) log support
113 1.27 soda
114 1.27 soda # Compatibility with 4.2BSD implementation of TCP/IP. Not recommended.
115 1.27 soda #options TCP_COMPAT_42
116 1.27 soda
117 1.27 soda # These options enable verbose messages for several subsystems.
118 1.27 soda # Warning, these may compile large string tables into the kernel!
119 1.27 soda #options EISAVERBOSE # verbose EISA device autoconfig messages
120 1.31 soda options PCIVERBOSE # verbose PCI device autoconfig messages
121 1.28 cgd #options PCI_CONFIG_DUMP # verbosely dump PCI config space
122 1.27 soda options SCSIVERBOSE # human readable SCSI error messages
123 1.37 ur
124 1.37 ur # wscons terminal emulation
125 1.37 ur options WSEMUL_VT100 # VT100 emulation
126 1.23 soda
127 1.25 soda # Kernel root file system and dump configuration.
128 1.27 soda options NFS_BOOT_DHCP,NFS_BOOT_BOOTPARAM
129 1.27 soda config netbsd root on ? type ?
130 1.27 soda #config netbsd root on sd0a type ffs
131 1.27 soda #config netbsd root on ? type nfs
132 1.1 jonathan
133 1.23 soda #
134 1.27 soda # Device configuration
135 1.23 soda #
136 1.27 soda
137 1.1 jonathan mainbus0 at root
138 1.1 jonathan cpu* at mainbus0
139 1.1 jonathan
140 1.41 ur #### Jazz-Internal bus devices
141 1.23 soda
142 1.45 soda # PLATFORM_ACER_PICA_61
143 1.45 soda # PLATFORM_MICROSOFT_JAZZ
144 1.45 soda # PLATFORM_NEC_JC94
145 1.45 soda # PLATFORM_NEC_R94
146 1.45 soda # PLATFORM_NEC_R96
147 1.45 soda # PLATFORM_NEC_RAX94
148 1.45 soda # PLATFORM_NEC_RD94
149 1.45 soda jazzio* at mainbus0 # Jazz-Internal bus host bridge.
150 1.45 soda
151 1.45 soda timer0 at jazzio?
152 1.45 soda mcclock0 at jazzio?
153 1.41 ur #pc0 at jazzio?
154 1.41 ur #opms0 at jazzio?
155 1.41 ur vga0 at jazzio? # Jazz localbus VGA
156 1.41 ur pckbc0 at jazzio? # PC keyboard controller
157 1.41 ur com0 at jazzio?
158 1.41 ur com1 at jazzio?
159 1.41 ur lpt0 at jazzio?
160 1.41 ur sn0 at jazzio?
161 1.1 jonathan
162 1.41 ur fdc0 at jazzio?
163 1.1 jonathan fd* at fdc? drive ?
164 1.1 jonathan
165 1.42 tsutsui asc0 at jazzio? # NCR53C9x SCSI
166 1.1 jonathan scsibus* at asc?
167 1.1 jonathan
168 1.42 tsutsui osiop0 at jazzio? flags 0x00000 # NCR53C710 SCSI
169 1.42 tsutsui osiop1 at jazzio? flags 0x00000
170 1.42 tsutsui scsibus* at osiop?
171 1.42 tsutsui
172 1.42 tsutsui #oosiop0 at jazzio? # NCR53C700 SCSI
173 1.42 tsutsui #oosiop1 at jazzio?
174 1.42 tsutsui #scsibus* at oosiop?
175 1.33 soda
176 1.27 soda #### ISA bus devices
177 1.23 soda
178 1.45 soda # PLATFORM_ACER_PICA_61
179 1.45 soda # PLATFORM_MICROSOFT_JAZZ
180 1.45 soda # PLATFORM_NEC_R94
181 1.45 soda # PLATFORM_NEC_R96
182 1.45 soda jazzisabr* at mainbus0 # Jazz-(E)ISA bus bridge.
183 1.45 soda isa* at jazzisabr?
184 1.45 soda
185 1.45 soda # PLATFORM_DESKTECH_ARCSTATION_I
186 1.45 soda arcsisabr* at mainbus0 # DESKstation rPC44 ISA host bridge.
187 1.45 soda isa* at arcsisabr?
188 1.45 soda
189 1.45 soda # PLATFORM_DESKTECH_TYNE
190 1.45 soda tyneisabr* at mainbus0 # DESKstation Tyne ISA host bridge.
191 1.45 soda isa* at tyneisabr?
192 1.45 soda
193 1.27 soda #isadma0 at isa?
194 1.23 soda
195 1.45 soda timer0 at isa? port 0x40 irq 0
196 1.45 soda mcclock0 at isa? port 0x70
197 1.23 soda
198 1.45 soda pc0 at isa? irq 1 # generic PC console device
199 1.45 soda opms0 at isa? irq 12 # PS/2 auxiliary port mouse
200 1.33 soda #vga0 at isa?
201 1.33 soda #pckbc0 at isa? # PC keyboard controller
202 1.23 soda com0 at isa? port 0x3f8 irq 4
203 1.23 soda com1 at isa? port 0x2f8 irq 3
204 1.23 soda com2 at isa? port 0x3e8 irq 4
205 1.23 soda com3 at isa? port 0x2e8 irq 3
206 1.27 soda ast0 at isa? port 0x1a0 irq 3 # AST 4-port serial cards
207 1.27 soda com* at ast? slave ?
208 1.27 soda
209 1.27 soda # Joystick driver. Probe is a little strange; add only if you have one.
210 1.27 soda #joy0 at isa? port 0x201
211 1.23 soda
212 1.23 soda # ISA ST506, ESDI, and IDE controllers
213 1.23 soda # Use flags 0x01 if you want to try to use 32bits data I/O (the driver will
214 1.23 soda # fall back to 16bits I/O if 32bits I/O are not functional).
215 1.23 soda # Some controllers pass the initial 32bit test, but will fail later.
216 1.23 soda # XXX - should be configured
217 1.27 soda #wdc0 at isa? port 0x1f0 irq 14 flags 0x00
218 1.27 soda #wdc1 at isa? port 0x170 irq 15 flags 0x00
219 1.27 soda #wdc* at isapnp?
220 1.23 soda
221 1.23 soda # IDE drives
222 1.23 soda # Flags are used only with controllers that support DMA operations
223 1.23 soda # and mode settings (e.g. some pciide controllers)
224 1.23 soda # The lowest order four bits (rightmost digit) of the flags define the PIO
225 1.23 soda # mode to use, the next set of four bits the DMA mode and the third set the
226 1.23 soda # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
227 1.23 soda # to use, and the last bit must be 1 for this setting to be used.
228 1.23 soda # For DMA and UDMA, 0xf (1111) means 'disable'.
229 1.23 soda # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
230 1.23 soda # (0xc=1100, 0xa=1010, 0xf=1111)
231 1.23 soda # 0x0000 means "use whatever the drive claims to support".
232 1.23 soda # XXX - should be configured
233 1.27 soda #wd* at wdc? channel ? drive ? flags 0x0000
234 1.23 soda
235 1.23 soda # ATAPI bus support
236 1.23 soda # XXX - should be configured
237 1.27 soda #atapibus* at wdc? channel ?
238 1.23 soda
239 1.27 soda # ISA parallel printer interfaces
240 1.27 soda lpt0 at isa? port 0x378 irq 7
241 1.27 soda
242 1.27 soda # ISA network interfaces
243 1.27 soda # XXX - should be configured
244 1.27 soda #ec0 at isa? port 0x250 iomem 0xd8000 irq 9 # 3Com 3c503 Ethernet
245 1.27 soda #ep0 at isa? port ? irq ? # 3C509 ethernet cards
246 1.27 soda #ne0 at isa? port 0x280 irq 9 # NE[12]000 ethernet cards
247 1.27 soda #ne1 at isa? port 0x300 irq 10
248 1.27 soda #ne* at isapnp? # NE[12]000 PnP ethernet
249 1.27 soda #we0 at isa? port 0x280 iomem 0xd0000 irq 9 # WD/SMC Ethernet
250 1.27 soda #we1 at isa? port 0x300 iomem 0xcc000 irq 10
251 1.27 soda #we* at isapnp?
252 1.23 soda
253 1.27 soda # XXX - should be configured
254 1.27 soda #btl0 at isa? port 0x330 irq ? drq ?
255 1.27 soda #scsibus* at btl?
256 1.23 soda
257 1.27 soda #### PCI bus devices
258 1.23 soda
259 1.45 soda # PLATFORM_NEC_JC94
260 1.45 soda # PLATFORM_NEC_RAX94
261 1.45 soda # PLATFORM_NEC_RD94
262 1.31 soda necpb* at mainbus0 # NEC RISCstation PCI host bridge.
263 1.31 soda pci* at necpb?
264 1.23 soda
265 1.27 soda #pcivga* at pci? dev ? function ?
266 1.43 tsutsui tga* at pci? dev ? function ? # DEC ZLXp-E[123] Graphics
267 1.43 tsutsui
268 1.43 tsutsui ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
269 1.43 tsutsui scsibus* at ahc?
270 1.44 tsutsui
271 1.44 tsutsui iha* at pci? dev ? function ? # Initio INIC-940/950 SCSI
272 1.44 tsutsui scsibus* at iha?
273 1.43 tsutsui
274 1.43 tsutsui #siop* at pci? dev ? function ? # NCR/Symbios 53c8xx SCSI
275 1.30 soren #scsibus* at siop?
276 1.43 tsutsui
277 1.27 soda #de* at pci? dev ? function ?
278 1.31 soda ex* at pci? dev ? function ? # 3Com 90x[B]
279 1.31 soda fxp* at pci? dev ? function ? # Intel EtherExpress PRO
280 1.31 soda le* at pci? dev ? function ? # PCnet-PCI
281 1.31 soda ne* at pci? dev ? function ? # NE2000-compatible
282 1.31 soda tlp* at pci? dev ? function ? # DECchip 21x4x (and clones)
283 1.31 soda #options TLP_MATCH_21040
284 1.31 soda #options TLP_MATCH_21041
285 1.31 soda #options TLP_MATCH_21140
286 1.31 soda #options TLP_MATCH_21142
287 1.31 soda
288 1.31 soda # IDE and related devices
289 1.31 soda # PCI IDE controllers - see pciide(4) for supported hardware.
290 1.31 soda # The 0x0001 flag force the driver to use DMA, even if the driver doesn't know
291 1.31 soda # how to set up DMA modes for this chip. This may work, or may cause
292 1.31 soda # a machine hang with some controllers.
293 1.31 soda pciide* at pci ? dev ? function ? flags 0x0000
294 1.31 soda wd* at pciide? channel ? drive ? flags 0x0000
295 1.31 soda atapibus* at pciide? channel ?
296 1.31 soda
297 1.31 soda #### MII/PHY support
298 1.31 soda
299 1.31 soda exphy* at mii? phy ? # 3Com internal PHYs
300 1.31 soda icsphy* at mii? phy ? # Integrated Circuit Systems ICS1890
301 1.31 soda inphy* at mii? phy ? # Intel 82555 PHYs
302 1.31 soda iophy* at mii? phy ? # Intel 82553 PHYs
303 1.31 soda lxtphy* at mii? phy ? # Level One LXT-970 PHYs
304 1.31 soda nsphy* at mii? phy ? # NS83840 PHYs
305 1.31 soda nsphyter* at mii? phy ? # NS83843 PHYs
306 1.31 soda qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
307 1.31 soda sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
308 1.31 soda tlphy* at mii? phy ? # ThunderLAN PHYs
309 1.31 soda tqphy* at mii? phy ? # TDK Semiconductor PHYs
310 1.31 soda ukphy* at mii? phy ? # generic unknown PHYs
311 1.31 soda
312 1.27 soda #### SCSI bus devices
313 1.23 soda
314 1.1 jonathan sd* at scsibus? target ? lun ?
315 1.1 jonathan st* at scsibus? target ? lun ?
316 1.1 jonathan cd* at scsibus? target ? lun ?
317 1.23 soda ch* at scsibus? target ? lun ?
318 1.23 soda ss* at scsibus? target ? lun ?
319 1.23 soda uk* at scsibus? target ? lun ?
320 1.31 soda
321 1.31 soda #### ATAPI bus devices
322 1.31 soda
323 1.31 soda # flags have the same meaning as for IDE drives.
324 1.31 soda cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
325 1.31 soda sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
326 1.31 soda uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
327 1.33 soda
328 1.33 soda #### Workstation Console attachments
329 1.33 soda
330 1.33 soda wsdisplay* at vga?
331 1.33 soda wsdisplay* at tga?
332 1.33 soda pckbd* at pckbc? # PC keyboard (kbd port)
333 1.33 soda wskbd* at pckbd?
334 1.33 soda pms* at pckbc? # PS/2-style mouse (aux port)
335 1.33 soda wsmouse* at pms?
336 1.33 soda #pmsi* at pckbc? # PS/2 "Intelli"mouse (aux port)
337 1.33 soda #wsmouse* at pmsi?
338 1.23 soda
339 1.27 soda #### Pseudo devices
340 1.1 jonathan
341 1.27 soda # disk/mass storage pseudo-devices
342 1.27 soda pseudo-device ccd 4 # concatenated/striped disk devices
343 1.27 soda #pseudo-device raid 4 # RAIDframe disk driver
344 1.27 soda pseudo-device md 1 # memory disk device (ramdisk)
345 1.27 soda pseudo-device vnd 4 # disk-like interface to files
346 1.27 soda
347 1.27 soda # network pseudo-devices
348 1.27 soda pseudo-device bpfilter 8 # Berkeley packet filter
349 1.27 soda pseudo-device ipfilter # IP filter (firewall) and NAT
350 1.27 soda pseudo-device loop 1 # network loopback
351 1.27 soda pseudo-device ppp 2 # Point-to-Point Protocol
352 1.27 soda pseudo-device sl 2 # Serial Line IP
353 1.27 soda #pseudo-device strip 2 # Starmode Radio IP (Metricom)
354 1.27 soda pseudo-device tun 2 # network tunneling over tty
355 1.23 soda #pseudo-device gre 2 # generic L3 over IP tunnel
356 1.27 soda pseudo-device ipip 2 # IP Encapsulation within IP (RFC 2003)
357 1.20 itojun pseudo-device gif 4 # IPv[46] over IPv[46] tunnel (RFC1933)
358 1.20 itojun #pseudo-device faith 1 # IPv[46] tcp relay translation i/f
359 1.29 itojun #pseudo-device stf 1 # 6to4 IPv6 over IPv4 encapsulation
360 1.40 bouyer pseudo-device vlan # IEEE 802.1q encapsulation
361 1.23 soda
362 1.27 soda # miscellaneous pseudo-devices
363 1.39 jdolecek pseudo-device pty # pseudo-terminals
364 1.27 soda pseudo-device tb 1 # tablet line discipline
365 1.27 soda #pseudo-device sequencer 1 # MIDI sequencer
366 1.27 soda # rnd works; RND_COM does not on port arc yet.
367 1.27 soda pseudo-device rnd # /dev/random and in-kernel generator
368 1.27 soda #options RND_COM # use "com" randomness as well (BROKEN)
369 1.27 soda
370 1.27 soda # a pseudo device needed for Coda # also needs CODA (above)
371 1.27 soda #pseudo-device vcoda 4 # coda minicache <-> venus comm.
372 1.27 soda
373 1.27 soda # mouse & keyboard multiplexor pseudo-devices
374 1.27 soda #pseudo-device wsmux 2
375