HDL_G revision 1.56 1 # $NetBSD: HDL_G,v 1.56 2019/02/06 11:58:30 rin Exp $
2 #
3 # HDL_G -- I-O DATA HDL-G Kernel
4 #
5
6 include "arch/evbarm/conf/std.hdl_g"
7
8 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
9
10 maxusers 32 # estimated number of users
11
12 # CPU options
13
14 # For XScale systems
15 options CPU_XSCALE_80321 # Support the XScale core
16 makeoptions CPUFLAGS="-mcpu=xscale"
17
18 # Architecture options
19 options XSCALE_CACHE_READ_WRITE_ALLOCATE
20
21 # Standard system options
22
23 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
24 #options HZ=512 # clock interrupt generates every 1/HZ sec
25 #options NTP # NTP phase/frequency locked loop
26
27 # File systems
28
29 file-system FFS # UFS
30 file-system EXT2FS # second extended file system (linux)
31 #file-system LFS # log-structured file system
32 file-system MFS # memory file system
33 file-system NFS # Network file system
34 file-system CD9660 # ISO 9660 + Rock Ridge file system
35 #file-system CODA # Coda File System; also needs vcoda (below)
36 file-system FDESC # /dev/fd
37 file-system KERNFS # /kern
38 file-system MSDOSFS # MS-DOS file system
39 file-system NTFS # Windows/NT file system (experimental)
40 file-system NULLFS # loopback file system
41 #file-system OVERLAY # overlay file system
42 file-system PROCFS # /proc
43 file-system PTYFS # /dev/pts/N support
44 #file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
45 file-system SMBFS # experimental - CIFS; also needs nsmb (below)
46 file-system TMPFS # Efficient memory file-system
47 #file-system UDF # experimental - OSTA UDF CD/DVD file-system
48 file-system UMAPFS # NULLFS + uid and gid remapping
49 file-system UNION # union file system
50
51 # File system options
52 #options QUOTA # legacy UFS quotas
53 #options QUOTA2 # new, in-filesystem UFS quotas
54 #options DISKLABEL_EI # disklabel Endian Independent support
55 #options FFS_EI # FFS Endian Independent support
56 options NFSSERVER
57 options WAPBL # File system journaling support
58 #options UFS_DIRHASH # UFS Large Directory Hashing - Experimental
59 #options FFS_NO_SNAPSHOT # No FFS snapshot support
60 #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
61 # immutable) behave as system flags.
62
63 # Networking options
64
65 #options GATEWAY # packet forwarding
66 options INET # IP + ICMP + TCP + UDP
67 options INET6 # IPV6
68 #options IPSEC # IP security
69 #options IPSEC_DEBUG # debug for IP security
70 #options MROUTING # IP multicast routing
71 #options PIM # Protocol Independent Multicast
72 #options NETATALK # AppleTalk networking
73 #options PPP_BSDCOMP # BSD-Compress compression support for PPP
74 #options PPP_DEFLATE # Deflate compression support for PPP
75 #options PPP_FILTER # Active filter support for PPP (requires bpf)
76 #options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
77 #options TCP_SIGNATURE
78
79 #options NFS_BOOT_BOOTP
80 options NFS_BOOT_DHCP
81 options NFS_BOOT_BOOTPARAM
82
83 # Compatibility options
84
85 include "conf/compat_netbsd09.config"
86 options COMPAT_NETBSD32 # allow running arm (e.g. non-earm) binaries
87
88 options COMPAT_OSSAUDIO # OSS (Voxware) audio driver compatibility
89
90 # Shared memory options
91
92 options SYSVMSG # System V-like message queues
93 options SYSVSEM # System V-like semaphores
94 options SYSVSHM # System V-like memory sharing
95
96 # Device options
97
98 # Miscellaneous kernel options
99 options KTRACE # system call tracing via ktrace(1)
100 options IRQSTATS # manage IRQ statistics
101 #options SCSIVERBOSE # Verbose SCSI errors
102 options PCIVERBOSE # Verbose PCI descriptions
103 options MIIVERBOSE # Verbose MII autoconfuration messages
104 options USBVERBOSE # verbose USB device autoconfig messages
105 #options PCI_CONFIG_DUMP # verbosely dump PCI config space
106 options USERCONF # userconf(4) support
107 #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
108 #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
109
110 # Development and Debugging options
111
112 #options DIAGNOSTIC # internal consistency checks
113 #options DEBUG
114 #options PMAP_DEBUG # Enable pmap_debug_level code
115 #options VERBOSE_INIT_ARM # verbose bootstraping messages
116 options DDB # in-kernel debugger
117 #options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
118 #makeoptions DEBUG="-g" # compile full symbol table
119 makeoptions COPY_SYMTAB=1
120
121 #config netbsd root on ? type ?
122 config netbsd root on wd0a type ?
123 #config netbsd root on wd0e type ?
124
125 # The main bus device
126 mainbus0 at root
127
128 # The boot CPU
129 cpu0 at mainbus?
130
131 # On-board device support
132 obio* at mainbus?
133 com0 at obio? addr 0xfe800000 xint 3 # on-board TI 165C50 UART
134 btn0 at obio? addr 0xfe8d0002 xint 3 # buttons
135
136 # i80321 I/O Processor peripheral support
137 iopxs* at mainbus?
138
139 iopiic* at iopxs? # I2C Controller Unit(s)
140 iic0 at iopiic?
141 iic1 at iopiic?
142 pci0 at iopxs? bus ? # PCI/PCI-X support
143
144 # PCI-PCI bridges
145 ppb* at pci? dev ? function ?
146 pci* at ppb? bus ?
147
148 # RICOH RS5C372A Real-Time Clock
149 rs5c372rtc* at iic0 addr 0x32
150
151 #
152 # Storage devices
153 #
154
155 # SCSI Controllers and Devices
156
157 # SCSI bus support
158 scsibus* at scsi?
159
160 # SCSI devices
161 sd* at scsibus? target ? lun ? # SCSI disk drives
162 st* at scsibus? target ? lun ? # SCSI tape drives
163 cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
164 ch* at scsibus? target ? lun ? # SCSI autochangers
165 ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices
166 ss* at scsibus? target ? lun ? # SCSI scanners
167 uk* at scsibus? target ? lun ? # SCSI unknown
168
169 # PCI IDE/S-ATA controllers and devices
170 pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver
171 acardide* at pci? dev ? function ? # Acard IDE controllers
172
173 # ATA (IDE) bus support
174 atabus* at ata? channel ?
175
176 # IDE drives
177 # Flags are used only with controllers that support DMA operations
178 # and mode settings (e.g. some pciide controllers)
179 # The lowest order four bits (rightmost digit) of the flags define the PIO
180 # mode to use, the next set of four bits the DMA mode and the third set the
181 # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
182 # to use, and the last bit must be 1 for this setting to be used.
183 # For DMA and UDMA, 0xf (1111) means 'disable'.
184 # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
185 # (0xc=1100, 0xa=1010, 0xf=1111)
186 # 0x0000 means "use whatever the drive claims to support".
187 wd* at atabus? drive ? flags 0x0000
188
189 # ATAPI bus support
190 atapibus* at atapi?
191
192 # ATAPI devices
193 # flags have the same meaning as for IDE drives.
194 cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
195 sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
196 st* at atapibus? drive ? flags 0x0000 # ATAPI tape drives
197 uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
198
199 #
200 # Networking devices
201 #
202
203 # PCI network devices
204 wm* at pci? dev ? function ? # Intel i82541PI Gig-E
205
206 # MII/PHY support
207 acphy* at mii? phy ? # Altima AC101 and AMD Am79c874 PHYs
208 amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs
209 bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs
210 brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs
211 ciphy* at mii? phy ? # Cicada CS8201 Gig-E PHYs
212 dmphy* at mii? phy ? # Davicom DM9101 PHYs
213 exphy* at mii? phy ? # 3Com internal PHYs
214 gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs
215 glxtphy* at mii? phy ? # Level One LXT-1000 PHYs
216 gphyter* at mii? phy ? # NS83861 Gig-E PHY
217 icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x
218 igphy* at mii? phy ? # Intel IGP01E1000
219 inphy* at mii? phy ? # Intel 82555 PHYs
220 iophy* at mii? phy ? # Intel 82553 PHYs
221 lxtphy* at mii? phy ? # Level One LXT-970 PHYs
222 makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs
223 nsphy* at mii? phy ? # NS83840 PHYs
224 nsphyter* at mii? phy ? # NS83843 PHYs
225 pnaphy* at mii? phy ? # generic HomePNA PHYs
226 qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
227 rgephy* at mii? phy ? # Realtek 8169S/8110S/8211 PHYs
228 rlphy* at mii? phy ? # Realtek 8139/8201L PHYs
229 sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
230 tlphy* at mii? phy ? # ThunderLAN PHYs
231 tqphy* at mii? phy ? # TDK Semiconductor PHYs
232 ukphy* at mii? phy ? # generic unknown PHYs
233 urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs
234
235
236 # USB Controller and Devices
237
238 # PCI USB controllers
239 ehci* at pci? dev ? function ? # Enhanced Host Controller
240 ohci* at pci? dev ? function ? # Open Host Controller
241
242 # USB bus support
243 usb* at ehci?
244 usb* at ohci?
245
246 # USB Hubs
247 uhub* at usb?
248 uhub* at uhub? port ?
249
250 # USB HID device
251 uhidev* at uhub? port ? configuration ? interface ?
252
253 # USB Mice
254 ums* at uhidev? reportid ?
255 wsmouse* at ums? mux 0
256
257 # USB Keyboards
258 ukbd* at uhidev? reportid ?
259 wskbd* at ukbd? console ? mux 1
260
261 # USB serial adapter
262 ucycom* at uhidev? reportid ?
263
264 # USB Generic HID devices
265 uhid* at uhidev? reportid ?
266
267 # USB Printer
268 ulpt* at uhub? port ? configuration ? interface ?
269
270 # USB Modem
271 umodem* at uhub? port ? configuration ?
272 ucom* at umodem?
273
274 # Option N.V. Wireless WAN modems
275 uhso* at uhub? port ? configuration ?
276
277 # USB Mass Storage
278 umass* at uhub? port ? configuration ? interface ?
279
280 # USB audio
281 uaudio* at uhub? port ? configuration ?
282
283 # USB MIDI
284 umidi* at uhub? port ? configuration ?
285
286 # USB IrDA
287 # USB-IrDA bridge spec
288 uirda* at uhub? port ? configuration ? interface ?
289 irframe* at uirda?
290
291 # SigmaTel STIr4200 USB/IrDA Bridge
292 ustir* at uhub? port ?
293 irframe* at ustir?
294
295 # USB Ethernet adapters
296 aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
297 axe* at uhub? port ? # ASIX AX88172 based adapters
298 cdce* at uhub? port ? # CDC, Ethernet Networking Control Model
299 cue* at uhub? port ? # CATC USB-EL1201A based adapters
300 kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
301 mue* at uhub? port ? # Microchip LAN75xx/LAN78xx based adapters
302 udav* at uhub? port ? # Davicom DM9601 based adapters
303 ure* at uhub? port ? # Realtek RTL8152/RTL8153 based adapters
304 url* at uhub? port ? # Realtek RTL8150L based adapters
305
306 # USB 802.11b adapters
307 atu* at uhub? port ? # Atmel AT76C50XX based adapters
308 ural* at uhub? port ? # Ralink Technology RT2500USB 802.11a/b/g
309
310 # Prolific PL2301/PL2302 host-to-host adapter
311 upl* at uhub? port ?
312
313 # Serial adapters
314 ubsa* at uhub? port ? # Belkin serial adapter
315 ucom* at ubsa? portno ?
316
317 uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter
318 ucom* at uftdi? portno ?
319
320 umct* at uhub? port ? # MCT USB-RS232 serial adapter
321 ucom* at umct? portno ?
322
323 uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter
324 ucom* at uplcom? portno ?
325
326 uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter
327 ucom* at uvscom? portno ?
328
329 # Diamond Multimedia Rio 500
330 urio* at uhub? port ?
331
332 # USB Handspring Visor
333 uvisor* at uhub? port ?
334 ucom* at uvisor?
335
336 # Kyocera AIR-EDGE PHONE
337 ukyopon* at uhub? port ?
338 ucom* at ukyopon? portno ?
339
340 # USB scanners
341 #uscanner* at uhub? port ?
342
343 # USB scanners that use SCSI emulation, e.g., HP5300
344 usscanner* at uhub? port ?
345
346 # Y@P firmware loader
347 uyap* at uhub? port ?
348
349 # D-Link DSB-R100 USB radio
350 udsbr* at uhub? port ?
351 radio* at udsbr?
352
353 # USB Generic driver
354 ugen* at uhub? port ?
355
356
357 # Audio Devices
358
359 # Audio support
360 audio* at audiobus?
361
362 spkr* at audio? # PC speaker (synthesized)
363
364 # MIDI support
365 midi* at midibus?
366
367
368 # Pseudo-Devices
369
370 # disk/mass storage pseudo-devices
371 #pseudo-device ccd # concatenated/striped disk devices
372 #pseudo-device cgd # cryptographic disk devices
373 #pseudo-device raid # RAIDframe disk driver
374 #options RAID_AUTOCONFIG # auto-configuration of RAID components
375 # Options to enable various other RAIDframe RAID types.
376 #options RF_INCLUDE_EVENODD=1
377 #options RF_INCLUDE_RAID5_RS=1
378 #options RF_INCLUDE_PARITYLOGGING=1
379 #options RF_INCLUDE_CHAINDECLUSTER=1
380 #options RF_INCLUDE_INTERDECLUSTER=1
381 #options RF_INCLUDE_PARITY_DECLUSTERING=1
382 #options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
383 #pseudo-device fss # file system snapshot device
384 #pseudo-device putter # for puffs and pud
385
386 #pseudo-device md # memory disk device (ramdisk)
387 pseudo-device vnd # disk-like interface to files
388 options VND_COMPRESSION # compressed vnd(4)
389
390 # network pseudo-devices
391 pseudo-device bpfilter # Berkeley packet filter
392 pseudo-device npf # NPF packet filter
393 pseudo-device loop # network loopback
394 pseudo-device ppp # Point-to-Point Protocol
395 pseudo-device pppoe # PPP over Ethernet (RFC 2516)
396 #pseudo-device sl # Serial Line IP
397 #pseudo-device strip # Starmode Radio IP (Metricom)
398 #pseudo-device irframetty # IrDA frame line discipline
399 pseudo-device tap # virtual Ethernet
400 pseudo-device tun # network tunneling over tty
401 pseudo-device gre # generic L3 over IP tunnel
402 pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
403 pseudo-device faith # IPv[46] tcp relay translation i/f
404 pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
405 pseudo-device vlan # IEEE 802.1q encapsulation
406 pseudo-device bridge # simple inter-network bridging
407 options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too
408 #pseudo-device kttcp
409
410 # miscellaneous pseudo-devices
411 pseudo-device pty # pseudo-terminals
412 pseudo-device sequencer # MIDI sequencer
413 pseudo-device clockctl # user control of clock subsystem
414 pseudo-device ksyms # /dev/ksyms
415
416 # a pseudo device needed for Coda # also needs CODA (above)
417 #pseudo-device vcoda # coda minicache <-> venus comm.
418
419 # a pseudo device needed for SMBFS
420 pseudo-device nsmb # experimental - SMB requester
421
422 # a pseudo device needed for verified exec
423 #pseudo-device veriexec
424
425 # data mover pseudo-devices
426 pseudo-device swdmover # software dmover(9) back-end
427 pseudo-device dmoverio # /dev/dmover dmover(9) interface
428