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