GENERIC revision 1.128 1 1.128 thorpej # $NetBSD: GENERIC,v 1.128 1999/08/29 16:55:48 thorpej Exp $
2 1.1 cgd #
3 1.1 cgd # Generic Alpha kernel. Enough to get booted, etc., but not much more.
4 1.1 cgd
5 1.24 cgd include "arch/alpha/conf/std.alpha"
6 1.1 cgd
7 1.77 thorpej maxusers 32
8 1.36 cgd
9 1.1 cgd # CPU Support
10 1.58 mellon #options DEC_2000_300 # "Jensen": 2000/300 (DECpc AXP 150)
11 1.58 mellon options DEC_2100_A50 # Avanti etc: AlphaStation 400, 200, etc.
12 1.58 mellon options DEC_3000_500 # Flamingo etc: 3000/[4-9]00*
13 1.58 mellon options DEC_3000_300 # Pelican etc: 3000/300*
14 1.58 mellon options DEC_AXPPCI_33 # NoName: AXPpci33, etc.
15 1.58 mellon options DEC_EB164 # EB164: AlphaPC 164
16 1.58 mellon options DEC_EB64PLUS # EB64+: AlphaPC 64, etc.
17 1.58 mellon options DEC_KN20AA # KN20AA: AlphaStation 500 and 600
18 1.58 mellon options DEC_KN8AE # KN8AE: AlphaServer 8200 and 8400
19 1.100 enami options DEC_KN300 # KN300: AlphaServer 4100
20 1.89 thorpej options DEC_550 # Miata: Digital Personal Workstation
21 1.93 ross options DEC_1000 # Mikasa etc: Digital AlphaServer 1000
22 1.90 ross options DEC_1000A # Corelle etc: Digital AlphaServer 800/1000A
23 1.92 thorpej options DEC_ALPHABOOK1 # AlphaBook1: Tadpole/DEC AlphaBook
24 1.94 thorpej options DEC_EB66 # EB66: 21066 Evaluation Board
25 1.122 ross options DEC_6600 # EV6: 264DP OEM Board
26 1.1 cgd
27 1.1 cgd # Standard system options
28 1.58 mellon options KTRACE # System call tracing support
29 1.1 cgd
30 1.38 cgd # Diagnostic/debugging support options
31 1.58 mellon options DIAGNOSTIC # Cheap kernel consistency checks
32 1.108 thorpej options DDB # kernel debugger
33 1.111 ross #makeoptions DEBUG="-g"
34 1.38 cgd
35 1.37 thorpej # File systems
36 1.65 cgd file-system FFS # Fast file system
37 1.65 cgd file-system MFS # Memory-based file system
38 1.65 cgd file-system CD9660 # ISO-9660 CD-ROM FS (w/RockRidge extensions)
39 1.65 cgd file-system MSDOSFS # MS-DOS-compatible file system
40 1.65 cgd file-system NFS # Sun NFS-compatible file system client
41 1.125 jdolecek file-system NTFS # Windows/NT file system (experimental)
42 1.122 ross #file-system KERNFS
43 1.122 ross #file-system PROCFS
44 1.37 thorpej
45 1.1 cgd # File system options
46 1.58 mellon options NFSSERVER # Sun NFS-compatible file system server
47 1.78 bouyer #options FFS_EI # FFS Endian Independant support
48 1.1 cgd
49 1.1 cgd # Networking options
50 1.58 mellon options INET # Internet protocol suite
51 1.1 cgd
52 1.1 cgd # 4.3BSD compatibility. Should be optional, but necessary for now.
53 1.58 mellon options COMPAT_43
54 1.1 cgd
55 1.9 cgd # Binary compatibility with previous versions of NetBSD.
56 1.58 mellon #options COMPAT_09
57 1.58 mellon options COMPAT_10
58 1.58 mellon options COMPAT_11
59 1.58 mellon options COMPAT_12
60 1.72 mjacob options COMPAT_13
61 1.123 augustss options COMPAT_14
62 1.118 cgd
63 1.118 cgd # OSF/1 binary compatibility
64 1.118 cgd options COMPAT_OSF1
65 1.70 mjacob
66 1.70 mjacob # System V-like message queues
67 1.70 mjacob options SYSVMSG
68 1.70 mjacob
69 1.70 mjacob # System V-like semaphores
70 1.70 mjacob options SYSVSEM
71 1.9 cgd
72 1.34 cgd # System V-like shared memory
73 1.58 mellon options SYSVSHM
74 1.58 mellon #options SHMMAXPGS=1024 # 1024 pages is the default
75 1.1 cgd
76 1.7 cgd # Loadable Kernel Modules
77 1.58 mellon options LKM
78 1.5 cgd
79 1.5 cgd # Disable kernel security.
80 1.116 ross #options INSECURE
81 1.2 cgd
82 1.7 cgd # Misc. options
83 1.58 mellon options EISAVERBOSE # recognize "unknown" EISA devices
84 1.58 mellon options PCIVERBOSE # recognize "unknown" PCI devices
85 1.71 mjacob options SCSIVERBOSE # Verbose SCSI errors
86 1.58 mellon options TCVERBOSE # recognize "unknown" TC devices
87 1.58 mellon options UCONSOLE # users can use TIOCCONS (for xconsole)
88 1.73 drochner
89 1.73 drochner # The Alpha console firmware network boots using the BOOTP
90 1.76 cgd # protocol, so we ask the NFS code to use BOOTP/DHCP as well,
91 1.76 cgd # in case we have NFS root.
92 1.76 cgd options NFS_BOOT_DHCP # superset of BOOTP
93 1.7 cgd
94 1.117 ross # WS console uses SUN or VT100 terminal emulation
95 1.117 ross options WSEMUL_VT100
96 1.101 drochner
97 1.101 drochner # realtime clock compatible to OSF/1
98 1.101 drochner #options CLOCK_COMPAT_OSF1
99 1.81 drochner
100 1.37 thorpej config netbsd root on ? type ?
101 1.57 mrg #config netbsd root on sd0 type ffs
102 1.37 thorpej #config netbsd root on ? type nfs
103 1.7 cgd
104 1.7 cgd mainbus0 at root
105 1.7 cgd cpu* at mainbus0
106 1.1 cgd
107 1.41 cgd # TurboLaser bus support and devices
108 1.41 cgd tlsb* at mainbus0
109 1.41 cgd gbus* at tlsb? node ? offset ?
110 1.41 cgd tlsbmem* at tlsb? node ? offset ?
111 1.41 cgd kft* at tlsb? node ? offset ?
112 1.41 cgd
113 1.41 cgd # Gbus Devices
114 1.85 thorpej mcclock* at gbus? offset ?
115 1.41 cgd
116 1.80 mjacob # MCBUS bus support
117 1.80 mjacob mcbus* at mainbus0
118 1.80 mjacob mcmem* at mcbus? mid ?
119 1.80 mjacob
120 1.80 mjacob #i2c at mcbus?
121 1.80 mjacob
122 1.122 ross #EV6 Tsunami Core Logic
123 1.122 ross
124 1.122 ross tsc* at mainbus0
125 1.122 ross
126 1.10 cgd # TurboChannel host bus adapter support
127 1.10 cgd tcasic* at mainbus0
128 1.10 cgd
129 1.8 cgd # TurboChannel bus support
130 1.10 cgd tc* at tcasic?
131 1.8 cgd
132 1.8 cgd # TurboChannel devices
133 1.29 cgd ioasic* at tc? slot ? offset ?
134 1.29 cgd mcclock* at ioasic? offset ?
135 1.12 cgd le* at ioasic? offset ?
136 1.10 cgd scc0 at ioasic? offset ?
137 1.10 cgd scc1 at ioasic? offset ?
138 1.87 thorpej tcds* at tc? slot ? offset ?
139 1.87 thorpej asc* at tcds? chip ?
140 1.46 cgd #cfb* at tc? slot ? offset ?
141 1.46 cgd #sfb* at tc? slot ? offset ?
142 1.12 cgd le* at tc? slot ? offset ?
143 1.15 cgd fta* at tc? slot ? offset ? # DEC DEFTA FDDI cards
144 1.1 cgd
145 1.8 cgd # PCI host bus adapter support
146 1.7 cgd apecs* at mainbus?
147 1.9 cgd cia* at mainbus?
148 1.9 cgd lca* at mainbus?
149 1.41 cgd dwlpx* at kft?
150 1.80 mjacob mcpcia* at mcbus? mid ?
151 1.122 ross tsp* at tsc?
152 1.7 cgd
153 1.8 cgd # PCI bus support
154 1.7 cgd pci* at apecs?
155 1.9 cgd pci* at cia?
156 1.9 cgd pci* at lca?
157 1.9 cgd pci* at ppb?
158 1.41 cgd pci* at dwlpx?
159 1.80 mjacob pci* at mcpcia?
160 1.122 ross pci* at tsp?
161 1.7 cgd
162 1.8 cgd # PCI devices
163 1.126 thorpej adv* at pci? dev ? function ? # AdvanSys SCSI
164 1.126 thorpej adw* at pci? dev ? function ? # AdvanSys Wide SCSI
165 1.43 cgd ahc* at pci? dev ? function ? # Adaptec [23]94x, aic78x0 SCSI
166 1.43 cgd bha* at pci? dev ? function ? # BusLogic 9xx SCSI (untested)
167 1.49 cgd cy* at pci? dev ? function ? # Cyclades Cyclom-Y (untested)
168 1.43 cgd de* at pci? dev ? function ? # 21x4x-based Ethernet
169 1.120 christos eap* at pci? dev ? function ? # Ensoniq AudioPCI
170 1.20 cgd en* at pci? dev ? function ? # ENI PCI ATM (untested)
171 1.103 fvdl ep* at pci? dev ? function ? # 3COM 3c59x
172 1.120 christos epic* at pci? dev ? function ? # SMC EPIC/100 Ethernet
173 1.103 fvdl ex* at pci? dev ? function ? # 3COM 3c90x[B] Ethernet
174 1.43 cgd fpa* at pci? dev ? function ? # DEC DEFPA FDDI
175 1.75 enami fxp* at pci? dev ? function ? # Intel EEPRO 10+/100B
176 1.43 cgd isp* at pci? dev ? function ? # Qlogic ISP 10x0 SCSI
177 1.20 cgd le* at pci? dev ? function ? # PCI LANCE Ethernet (untested)
178 1.20 cgd ncr* at pci? dev ? function ? # NCR 53c8xx SCSI
179 1.120 christos ne* at pci? dev ? function ? # NE2000-compatible Ethernet
180 1.120 christos ohci* at pci? dev ? function ? # USB Open Host Controller
181 1.43 cgd pceb* at pci? dev ? function ? # Intel PCI-EISA Bridges
182 1.120 christos pciide* at pci? dev ? function ? # PCI IDE controllers
183 1.108 thorpej pcscp* at pci? dev ? function ? # AMD Am53c974 PCscsi-PCI
184 1.43 cgd ppb* at pci? dev ? function ? # PCI-PCI Bridges
185 1.43 cgd sio* at pci? dev ? function ? # Intel PCI-ISA Bridges
186 1.120 christos sv* at pci? dev ? function ? # S3 SonicVibes
187 1.43 cgd tga* at pci? dev ? function ? # DEC ZLXp-E[123] Graphics
188 1.99 thorpej tl* at pci? dev ? function ? # TI ThunderLAN Ethernet
189 1.120 christos uhci* at pci? dev ? function ? # USB Univ. Host Controller
190 1.49 cgd vga* at pci? dev ? function ? # PCI VGA Graphics
191 1.120 christos vr* at pci? dev ? function ? # VIA Rhine Fast Ethernet
192 1.120 christos
193 1.114 ross audio* at eap?
194 1.114 ross audio* at sv?
195 1.120 christos
196 1.107 augustss #opl* at sv?
197 1.99 thorpej
198 1.99 thorpej # MII/PHY support
199 1.121 christos exphy* at mii? phy ? # 3Com internal PHYs
200 1.121 christos icsphy* at mii? phy ? # Integrated Circuit Systems ICS1890
201 1.121 christos inphy* at mii? phy ? # Intel 82555 PHYs
202 1.121 christos lxtphy* at mii? phy ? # Level One LXT-970 PHYs
203 1.121 christos nsphy* at mii? phy ? # NS83840 PHYs
204 1.121 christos qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
205 1.121 christos sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
206 1.121 christos tlphy* at mii? phy ? # ThunderLAN PHYs
207 1.121 christos ukphy* at mii? phy ? # generic unknown PHYs
208 1.7 cgd
209 1.9 cgd # ISA/EISA bus support
210 1.9 cgd isa* at pceb?
211 1.9 cgd eisa* at pceb?
212 1.9 cgd isa* at sio?
213 1.8 cgd
214 1.8 cgd # ISA devices
215 1.29 cgd mcclock* at isa? port 0x70
216 1.115 ross pckbc0 at isa? # PC keyboard controller
217 1.81 drochner pckbd* at pckbc? # PC keyboard (kbd port)
218 1.109 drochner pms* at pckbc? # PS/2-style mouse (aux port)
219 1.83 thorpej pcppi* at isa? # PC prog. periph. interface
220 1.83 thorpej spkr0 at pcppi? # IBM BASIC emulation
221 1.98 drochner isabeep0 at pcppi? # "keyboard" beep
222 1.29 cgd com* at isa? port 0x3f8 irq 4 # standard serial ports
223 1.29 cgd com* at isa? port 0x2f8 irq 3
224 1.97 thorpej cs* at isa? port 0x300 iomem ? irq ? drq ? # CS8900 Ethernet
225 1.52 cjs ep* at isa? port ? irq ? # 3COM 3c509 Ethernet
226 1.112 thorpej fdc0 at isa? port 0x3f0 irq 6 drq 2 # floppy controller
227 1.86 matt lc0 at isa? port 0x300 iomem ? irq ? # DEC EtherWORKS III (LEMAC)
228 1.86 matt lc1 at isa? port 0x320 iomem ? irq ? # DEC EtherWORKS III (LEMAC)
229 1.86 matt depca0 at isa? port 0x300 iomem 0xd0000 iosiz 0x10000 irq 5 # DEPCA
230 1.86 matt depca1 at isa? port 0x200 iomem 0xd8000 iosiz 0x8000 irq 10 # DEPCA
231 1.86 matt le* at depca?
232 1.29 cgd lpt* at isa? port 0x3bc irq 7 # standard parallel port
233 1.29 cgd vga* at isa? # ISA (EISA: XXX) VGA
234 1.74 thorpej wdc0 at isa? port 0x1f0 irq 14 # ST506/ESDI/IDE controllers
235 1.74 thorpej wdc1 at isa? port 0x170 irq 15
236 1.108 thorpej #wss* at isa? port 0x530 irq 9 drq 0 # Windows Sound System
237 1.108 thorpej #audio* at wss?
238 1.84 augustss #midi* at wss?
239 1.114 ross sb* at isa? port 0x220 irq 5 drq 1 # SoundBlaster
240 1.114 ross #sb* at isapnp?
241 1.114 ross audio* at sb?
242 1.119 dante #adv* at isa? port ? irq ? drq ? # AdvanSys APB-514[02]
243 1.56 thorpej aha* at isa? port 0x330 irq ? drq ? # Adaptec 154[02] SCSI
244 1.56 thorpej aha* at isa? port 0x334 irq ? drq ? # Adaptec 154[02] SCSI
245 1.56 thorpej bha* at isa? port 0x330 irq ? drq ? # BusLogic [57]4X SCSI (unt.)
246 1.56 thorpej bha* at isa? port 0x334 irq ? drq ? # BusLogic [57]4X SCSI (unt.)
247 1.56 thorpej uha* at isa? port 0x330 irq ? drq ? # UltraStor [13]4f SCSI (unt.)
248 1.56 thorpej uha* at isa? port 0x334 irq ? drq ? # UltraStor [13]4f SCSI (unt.)
249 1.15 cgd
250 1.15 cgd # EISA devices
251 1.56 thorpej ahb* at eisa? slot ? # Adaptec 174[024] SCSI (unt.)
252 1.44 cgd ahc* at eisa? slot ? # Adaptec 274x, aic7770 SCSI
253 1.44 cgd bha* at eisa? slot ? # BusLogic 7xx SCSI
254 1.53 cjs ep* at eisa? slot ? # 3COM 3c579 Ethernet (untested)
255 1.50 cgd fea* at eisa? slot ? # DEC DEFEA FDDI
256 1.56 thorpej uha* at eisa? slot ? # UltraStor 24f SCSI (unt.)
257 1.7 cgd
258 1.8 cgd # SCSI bus support
259 1.126 thorpej scsibus* at adv?
260 1.126 thorpej scsibus* at adw?
261 1.56 thorpej scsibus* at aha?
262 1.56 thorpej scsibus* at ahb?
263 1.43 cgd scsibus* at ahc?
264 1.40 thorpej scsibus* at asc?
265 1.43 cgd scsibus* at bha?
266 1.42 cgd scsibus* at isp?
267 1.7 cgd scsibus* at ncr?
268 1.108 thorpej scsibus* at pcscp?
269 1.56 thorpej scsibus* at uha?
270 1.1 cgd
271 1.8 cgd # SCSI devices
272 1.31 cgd cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
273 1.31 cgd sd* at scsibus? target ? lun ? # SCSI disk drives
274 1.31 cgd st* at scsibus? target ? lun ? # SCSI tape drives
275 1.51 cgd
276 1.51 cgd # ST506/ESDI/IDE devices
277 1.102 matt wd* at pciide? channel ?
278 1.74 thorpej wd* at wdc? drive ?
279 1.74 thorpej
280 1.74 thorpej # ATAPI bus support
281 1.102 matt atapibus* at pciide? channel ?
282 1.74 thorpej atapibus* at wdc?
283 1.74 thorpej
284 1.74 thorpej # ATAPI devices
285 1.74 thorpej sd* at atapibus? drive ? # ATAPI disk devices
286 1.74 thorpej cd* at atapibus? drive ? # ATAPI CD-ROM devices
287 1.112 thorpej
288 1.112 thorpej # Floppy drives
289 1.112 thorpej fd* at fdc? drive ?
290 1.108 thorpej
291 1.108 thorpej # USB bus support
292 1.108 thorpej usb* at uhci?
293 1.108 thorpej usb* at ohci?
294 1.108 thorpej
295 1.127 augustss # USB Hubs
296 1.108 thorpej uhub* at usb?
297 1.127 augustss uhub* at uhub? port ? configuration ? interface ?
298 1.108 thorpej
299 1.127 augustss # USB Mice
300 1.127 augustss ums* at uhub? port ? configuration ? interface ?
301 1.127 augustss wsmouse* at ums? mux 0
302 1.108 thorpej
303 1.108 thorpej # USB Keyboards
304 1.127 augustss ukbd* at uhub? port ? configuration ? interface ?
305 1.124 augustss wskbd* at ukbd? console ? mux 1
306 1.108 thorpej
307 1.108 thorpej # USB Generic HID devices
308 1.127 augustss uhid* at uhub? port ? configuration ? interface ?
309 1.108 thorpej
310 1.127 augustss # USB Printer
311 1.127 augustss ulpt* at uhub? port ? configuration ? interface ?
312 1.127 augustss
313 1.127 augustss # USB Modem
314 1.127 augustss umodem* at uhub? port ? configuration ?
315 1.128 thorpej
316 1.128 thorpej # USB Mass Storage
317 1.128 thorpej umass* at uhub? port ? configuration ? interface ?
318 1.128 thorpej scsibus* at umass? channel ?
319 1.127 augustss
320 1.127 augustss # USB Generic driver
321 1.127 augustss ugen* at uhub? port ?
322 1.11 cgd
323 1.11 cgd # Workstation Console attachments
324 1.83 thorpej #wsdisplay* at cfb?
325 1.81 drochner wsdisplay* at vga?
326 1.83 thorpej #wsdisplay* at sfb?
327 1.81 drochner wsdisplay* at tga?
328 1.124 augustss wskbd* at pckbd? mux 1
329 1.124 augustss wsmouse* at pms? mux 0
330 1.1 cgd
331 1.19 cgd pseudo-device bpfilter 16
332 1.34 cgd pseudo-device ccd 4
333 1.104 oster #pseudo-device raid 4 # RAIDframe disk driver
334 1.67 cjs pseudo-device ipfilter 1
335 1.34 cgd pseudo-device loop 1
336 1.34 cgd pseudo-device md 1
337 1.34 cgd pseudo-device ppp 4
338 1.19 cgd pseudo-device pty 64
339 1.19 cgd pseudo-device sl 4
340 1.19 cgd pseudo-device vnd 4
341 1.106 hwr #pseudo-device gre 2 # generic L3 over IP tunnel
342 1.124 augustss pseudo-device wsmux 2 # mouse & keyboard multiplexor
343 1.69 explorer
344 1.69 explorer # rnd is EXPERIMENTAL
345 1.69 explorer #pseudo-device rnd # /dev/random and in-kernel generator
346 1.69 explorer #options RND_COM # use "com" randomness too
347