GENERIC revision 1.93 1 # $NetBSD: GENERIC,v 1.93 2022/09/29 10:10:10 riastradh Exp $
2 #
3 # GENERIC machine description file
4 #
5 # This machine description file is used to generate the default NetBSD
6 # kernel. The generic kernel does not include all options, subsystems
7 # and device drivers, but should be useful for most applications.
8 #
9 # The machine description file can be customised for your specific
10 # machine to reduce the kernel size and improve its performance.
11 #
12 # For further information on compiling NetBSD kernels, see the config(8)
13 # man page.
14 #
15 # For further information on hardware support for this architecture, see
16 # the intro(4) man page. For further information about kernel options
17 # for this architecture, see the options(4) man page. For an explanation
18 # of each device driver in this file see the section 4 man page for the
19 # device.
20
21 include "arch/zaurus/conf/std.zaurus"
22
23 #options INCLUDE_CONFIG_FILE # embed config file in kernel binary
24
25 maxusers 32 # estimated number of users
26
27 # CPU options
28
29 # For XScale systems
30 options CPU_XSCALE_PXA250 # Support the XScale PXA25x core
31 options CPU_XSCALE_PXA270 # Support the XScale PXA27x core
32 makeoptions CPUFLAGS="-mcpu=xscale"
33
34 # Architecture options
35 options XSCALE_CACHE_READ_WRITE_ALLOCATE
36 options PXAGPIO_HAS_GPION_INTRS
37
38 # in-kernel bootloader, see kloader(4)
39 options KLOADER
40 #options KLOADER_KERNEL_PATH="\"/netbsd\""
41 #options KLOADER_DEBUG
42
43 # Standard system options
44 options INSECURE # disable kernel security levels
45
46 options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
47 #options HZ=512 # clock interrupt generates every 1/HZ sec
48 #options NTP # NTP phase/frequency locked loop
49
50 # File systems
51 file-system FFS # UFS
52 #file-system EXT2FS # second extended file system (linux)
53 #file-system LFS # log-structured file system
54 file-system MFS # memory file system
55 file-system NFS # Network File System client
56 #file-system NTFS # Windows/NT file system (experimental)
57 file-system CD9660 # ISO 9660 + Rock Ridge file system
58 file-system MSDOSFS # MS-DOS file system
59 #file-system FDESC # /dev/fd
60 file-system KERNFS # /kern
61 file-system NULLFS # loopback file system
62 #file-system OVERLAY # overlay file system
63 file-system PUFFS # Userspace file systems (e.g. ntfs-3g & sshfs)
64 file-system PROCFS # /proc
65 #file-system UMAPFS # NULLFS + uid and gid remapping
66 #file-system UNION # union file system
67 #file-system CODA # Coda File System; also needs vcoda (below)
68 file-system PTYFS # /dev/pts/N support
69 file-system TMPFS # Efficient memory file-system
70 #file-system UDF # experimental - OSTA UDF CD/DVD file-system
71
72 # File system options
73 #options FFS_EI # FFS Endian Independent support
74 options FFS_NO_SNAPSHOT # No FFS snapshot support
75 #options QUOTA # legacy UFS quotas
76 #options QUOTA2 # new, in-filesystem UFS quotas
77 #options UFS_DIRHASH # UFS Large Directory Hashing
78 #options UFS_EXTATTR # Extended attribute support for UFS1
79 options WAPBL # File system journaling support
80 #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
81 # immutable) behave as system flags.
82 #options DISKLABEL_EI # disklabel Endian Independent support
83 #options NFSSERVER # Network File System server
84
85 # Networking options
86 #options GATEWAY # packet forwarding
87 options INET # IP + ICMP + TCP + UDP
88 options INET6 # IPv6
89
90 # Compatibility options
91 include "conf/compat_netbsd13.config"
92 options COMPAT_NETBSD32 # allow running arm (e.g. non-earm) binaries
93
94 # Wedge support
95 options DKWEDGE_AUTODISCOVER # Automatically add dk(4) instances
96 options DKWEDGE_METHOD_GPT # Supports GPT partitions as wedges
97 #options DKWEDGE_METHOD_BSDLABEL # Support disklabel entries as wedges
98 #options DKWEDGE_METHOD_MBR # Support MBR partitions as wedges
99 options DKWEDGE_METHOD_APPLE # Support Apple partitions as wedges
100 #options DKWEDGE_METHOD_RDB # Support RDB partitions as wedges
101
102 # Shared memory options
103
104 options SYSVMSG # System V-like message queues
105 options SYSVSEM # System V-like semaphores
106 options SYSVSHM # System V-like memory sharing
107
108 # Loadable kernel module support
109 #options MODULAR # new style module(7) framework
110 #options MODULAR_DEFAULT_AUTOLOAD
111
112 # Device options
113
114 # Miscellaneous kernel options
115 #options KTRACE # system call tracing via ktrace(1)
116 #options SCSIVERBOSE # Verbose SCSI errors
117 #options MIIVERBOSE # Verbose MII autoconfuration messages
118 #options USBVERBOSE # verbose USB device autoconfig messages
119 #options USERCONF # userconf(4) support
120 #options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
121 #options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
122
123 #
124 # wscons options
125 #
126 # builtin terminal emulations
127 options WSEMUL_VT100
128 # allocate a number of virtual screens at autoconfiguration time
129 #options WSDISPLAY_DEFAULTSCREENS=2
130
131 # customization of console and kernel output - see dev/wscons/wsdisplayvar.h
132 #options WSDISPLAY_CUSTOM_OUTPUT # color customization from wsconsctl(8)
133 #options WS_DEFAULT_FG=WSCOL_WHITE
134 #options WS_DEFAULT_BG=WSCOL_BLACK
135 #options WS_DEFAULT_COLATTR="(0)"
136 #options WS_DEFAULT_MONOATTR="(0)"
137 options WS_KERNEL_FG=WSCOL_GREEN
138 #options WS_KERNEL_BG=WSCOL_BLACK
139 #options WS_KERNEL_COLATTR=""
140 #options WS_KERNEL_MONOATTR=""
141
142 # compatibility to other console drivers
143 options WSDISPLAY_COMPAT_PCVT # emulate some ioctls
144 options WSDISPLAY_COMPAT_USL # wsconscfg VT handling
145 options WSDISPLAY_COMPAT_RAWKBD # can get raw scancodes
146
147 # Development and Debugging options
148
149 options DIAGNOSTIC # internal consistency checks
150 #options DEBUG
151 #options VERBOSE_INIT_ARM # verbose bootstraping messages
152 options DDB # in-kernel debugger
153 options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
154 #options KGDB
155 #makeoptions DEBUG="-g" # compile full symbol table
156
157
158 # Kernel root file system and dump configuration.
159 config netbsd root on ? type ?
160
161
162 # The main bus device
163 mainbus0 at root
164
165 # The boot cpu
166 cpu0 at mainbus?
167
168 # integrated peripherals
169 pxaip0 at mainbus?
170
171 pxaintc0 at pxaip? # interrupt controller
172 pxagpio0 at pxaip? # GPIO
173 pxartc0 at pxaip? addr 0x40900000 size 0x10 # RTC
174
175 # DMAC support
176 pxadmac0 at pxaip? addr 0x40000000 intr 25
177 options PXA2X0_DMAC_DMOVER_CONCURRENCY=4 # Enable dmover(9) backend
178 #options PXA2X0_DMAC_FIXED_PRIORITY # Don't want multiple priority
179
180 # I2C support
181 ziic0 at pxaip?
182 iic0 at ziic?
183
184 # Power management
185 zapm0 at pxaip? # power management
186 apmdev0 at zapm0 # APM
187
188 # PCMCIA/CF socket and GPIO controllers
189 scoop0 at pxaip?
190 scoop1 at pxaip?
191
192 # alternate GPIO controller for SL-C1000
193 ioexp0 at iic? addr 0x18
194
195 # ADC, touchpad, backlight
196 zssp0 at pxaip?
197
198 # touchpad
199 ztp0 at zssp?
200 wsmouse* at ztp? mux 0
201
202 # keyboard
203 zkbd0 at pxaip?
204 wskbd* at zkbd? mux 1
205
206 # remote controller
207 zrc0 at pxaip?
208 wskbd* at zrc? mux 1
209
210 # LCD
211 lcd0 at pxaip? # PXA2x0 integrated LCD Controller
212 options PXA2X0_LCD_WRITETHROUGH
213 wsdisplay* at lcd? console ?
214 w100lcd0 at pxaip? # ATI Imageon100 LCDcontroller
215 wsdisplay* at w100lcd? console ?
216 lcdctl0 at zssp0
217
218 # WM8750 Audio
219 zaudio0 at iic? addr 0x1b
220 audio* at zaudio?
221 #options ZAUDIO_VOLUME_STRIDE=8
222
223 # Audio support
224 audio* at audiobus?
225
226 spkr* at audio? # PC speaker (synthesized)
227
228 # integrated 16550 UARTs
229 options COM_PXA2X0
230 #options FFUARTCONSOLE
231 com0 at pxaip? addr 0x40100000 intr 22 # Full Function UART
232 com1 at pxaip? addr 0x40200000 intr 21 # Bluetooth UART
233 com2 at pxaip? addr 0x40700000 intr 20 # Standard UART (for IrDA)
234
235 # integrated PCMCIA/CF controller
236 pxapcic0 at pxaip?
237
238 # PCMCIA bus support
239 pcmcia* at pxapcic?
240
241 # PCMCIA (CF) devices
242 com* at pcmcia? # PCMCIA modems/serial ports
243 wi* at pcmcia? # WaveLAN IEEE 802.11DS
244 ne* at pcmcia? # PCMCIA based NE2000 ethernet
245 wdc* at pcmcia? # hard disk controller
246
247 atabus* at wdc? channel ?
248
249 # IDE hard drives
250 wd* at atabus? drive ? flags 0x0000
251
252
253 # USB Controller and Devices
254 zusb* at pxaip?
255 #pxaudc0 at pxaip? addr 0x40600000 # USB Device Controller
256 ohci0 at pxaip? addr 0x4c000000 intr 3 # USB Host Controller
257
258 # PCMCIA USB controllers
259 #slhci* at pcmcia? function ? # ScanLogic SL811HS
260
261 # USB bus support
262 usb* at ohci?
263 #usb* at slhci?
264
265 # USB Hubs
266 uhub* at usb?
267 uhub* at uhub? port ?
268
269 # USB HID device
270 uhidev* at uhub? port ? configuration ? interface ?
271
272 # USB Mice
273 ums* at uhidev? reportid ?
274 wsmouse* at ums? mux 0
275
276 # USB Keyboards
277 ukbd* at uhidev? reportid ?
278 wskbd* at ukbd? console ? mux 1
279
280 # USB Generic HID devices
281 uhid* at uhidev? reportid ?
282
283 # USB Mass Storage
284 umass* at uhub? port ? configuration ? interface ?
285
286 # SCSI bus support
287 scsibus* at scsi?
288
289 # SCSI devices
290 sd* at scsibus? target ? lun ? # SCSI disk drives
291 cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
292 uk* at scsibus? target ? lun ? # SCSI unknown
293
294 # ATAPI bus support
295 atapibus* at atapi?
296
297 # ATAPI devices
298 cd* at atapibus? drive ? # ATAPI CD-ROM drives
299 #sd* at atapibus? drive ? # ATAPI disk drives
300 #st* at atapibus? drive ? # ATAPI tape drives
301 #uk* at atapibus? drive ? # ATAPI unknown
302
303 # USB audio
304 #uaudio* at uhub? port ? configuration ?
305
306 # USB Ethernet adapters
307 aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
308 axe* at uhub? port ? # ASIX AX88172 based adapters
309 #axen* at uhub? port ? # ASIX AX88178a/AX88179 based adapters
310 cdce* at uhub? port ? # CDC, Ethernet Networking Control Model
311 cue* at uhub? port ? # CATC USB-EL1201A based adapters
312 kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
313 mue* at uhub? port ? # Microchip LAN75xx/LAN78xx based adapters
314 udav* at uhub? port ? # Davicom DM9601 based adapters
315 #ure* at uhub? port ? # Realtek RTL8152/RTL8153 based adapters
316 url* at uhub? port ? # Realtek RTL8150L based adapters
317 #urndis* at uhub? port ? # Microsoft RNDIS specification
318 #usmsc* at uhub? port ? # SMSC95xx based adapters
319
320 # Kyocera AIR-EDGE PHONE
321 #ukyopon* at uhub? port ?
322 #ucom* at ukyopon? portno ?
323
324 # USB Generic driver
325 ugen* at uhub? port ?
326
327 # MII/PHY support
328 acphy* at mii? phy ? # DAltima AC101 and AMD Am79c874 PHYs
329 amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs
330 bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs
331 brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs
332 dmphy* at mii? phy ? # Davicom DM9101 PHYs
333 exphy* at mii? phy ? # 3Com internal PHYs
334 glxtphy* at mii? phy ? # Level One LXT-1000 PHYs
335 gphyter* at mii? phy ? # NS83861 Gig-E PHY
336 icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x
337 inphy* at mii? phy ? # Intel 82555 PHYs
338 iophy* at mii? phy ? # Intel 82553 PHYs
339 lxtphy* at mii? phy ? # Level One LXT-970 PHYs
340 makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs
341 nsphy* at mii? phy ? # NS83840 PHYs
342 nsphyter* at mii? phy ? # NS83843 PHYs
343 pnaphy* at mii? phy ? # generic HomePNA PHYs
344 qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
345 #rgephy* at mii? phy ? # Realtek 8169S/8110S/8211 PHYs
346 #rlphy* at mii? phy ? # Realtek 8139/8201L PHYs
347 sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
348 tlphy* at mii? phy ? # ThunderLAN PHYs
349 tqphy* at mii? phy ? # TDK Semiconductor PHYs
350 ukphy* at mii? phy ? # generic unknown PHYs
351 urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs
352
353
354 # integrated MMC/SD controller
355 pxamci0 at pxaip? addr 0x41100000 size 0x48
356 sdmmc* at pxamci?
357 #options PXAMCI_DEBUG
358 #options SDMMC_DEBUG
359 #options SDMMC_DUMP_CSD
360
361 ld* at sdmmc? # MMC/SD/SDHC card
362
363 # Pull in optional local configuration
364 cinclude "arch/zaurus/conf/GENERIC.local"
365
366
367 # Pseudo-Devices
368
369 # disk/mass storage pseudo-devices
370 pseudo-device md # memory disk device (ramdisk)
371 pseudo-device vnd # disk-like interface to files
372 options VND_COMPRESSION # compressed vnd(4)
373
374 # network pseudo-devices
375 pseudo-device bpfilter # Berkeley packet filter
376 pseudo-device loop # network loopback
377
378 # accept filters
379 pseudo-device accf_data # "dataready" accept filter
380 pseudo-device accf_http # "httpready" accept filter
381
382 # miscellaneous pseudo-devices
383 pseudo-device pty # pseudo-terminals
384 #pseudo-device sequencer # MIDI sequencer
385 pseudo-device clockctl # user control of clock subsystem
386 pseudo-device drvctl # user control of drive subsystem
387 pseudo-device ksyms # /dev/ksyms
388 pseudo-device putter # for puffs and pud
389 pseudo-device swwdog # software watchdog timer -- swwdog(4)
390
391 # a pseudo device needed for Coda # also needs CODA (above)
392 #pseudo-device vcoda # coda minicache <-> venus comm.
393
394 # wscons pseudo-devices
395 pseudo-device wsmux # mouse & keyboard multiplexor
396 pseudo-device wsfont
397