6ba528b5bc
Proposed on tech-kern@.
446 lines
14 KiB
Plaintext
446 lines
14 KiB
Plaintext
# $NetBSD: HDL_G,v 1.13 2008/11/24 11:41:09 ad Exp $
|
|
#
|
|
# HDL_G -- I-O DATA HDL-G Kernel
|
|
#
|
|
|
|
include "arch/evbarm/conf/std.hdl_g"
|
|
|
|
#options INCLUDE_CONFIG_FILE # embed config file in kernel binary
|
|
|
|
maxusers 32 # estimated number of users
|
|
|
|
# CPU options
|
|
|
|
# For XScale systems
|
|
options CPU_XSCALE_80321 # Support the XScale core
|
|
makeoptions CPUFLAGS="-mcpu=xscale"
|
|
|
|
# Architecture options
|
|
options XSCALE_CACHE_READ_WRITE_ALLOCATE
|
|
|
|
# Standard system options
|
|
|
|
options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT
|
|
#options HZ=512 # clock interrupt generates every 1/HZ sec
|
|
#options NTP # NTP phase/frequency locked loop
|
|
|
|
# File systems
|
|
|
|
file-system FFS # UFS
|
|
file-system EXT2FS # second extended file system (linux)
|
|
#file-system LFS # log-structured file system
|
|
file-system MFS # memory file system
|
|
file-system NFS # Network file system
|
|
file-system CD9660 # ISO 9660 + Rock Ridge file system
|
|
#file-system CODA # Coda File System; also needs vcoda (below)
|
|
file-system FDESC # /dev/fd
|
|
file-system KERNFS # /kern
|
|
file-system MSDOSFS # MS-DOS file system
|
|
file-system NTFS # Windows/NT file system (experimental)
|
|
file-system NULLFS # loopback file system
|
|
#file-system OVERLAY # overlay file system
|
|
#file-system PORTAL # portal filesystem (still experimental)
|
|
file-system PROCFS # /proc
|
|
file-system PTYFS # /dev/pts/N support
|
|
file-system SMBFS # experimental - CIFS; also needs nsmb (below)
|
|
file-system TMPFS # Efficient memory file-system
|
|
#file-system UDF # experimental - OSTA UDF CD/DVD file-system
|
|
file-system UMAPFS # NULLFS + uid and gid remapping
|
|
file-system UNION # union file system
|
|
|
|
# File system options
|
|
#options QUOTA # UFS quotas
|
|
#options FFS_EI # FFS Endian Independant support
|
|
options NFSSERVER
|
|
options WAPBL # File system journaling support - Experimental
|
|
#options UFS_DIRHASH # UFS Large Directory Hashing - Experimental
|
|
#options FFS_NO_SNAPSHOT # No FFS snapshot support
|
|
#options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
|
|
# immutable) behave as system flags.
|
|
|
|
# Networking options
|
|
|
|
#options GATEWAY # packet forwarding
|
|
options INET # IP + ICMP + TCP + UDP
|
|
options INET6 # IPV6
|
|
#options IPSEC # IP security
|
|
#options IPSEC_ESP # IP security (encryption part; define w/ IPSEC)
|
|
#options IPSEC_NAT_T # IPsec NAT traversal (NAT-T)
|
|
#options IPSEC_DEBUG # debug for IP security
|
|
#options MROUTING # IP multicast routing
|
|
#options PIM # Protocol Independent Multicast
|
|
#options ISO,TPIP # OSI
|
|
#options EON # OSI tunneling over IP
|
|
#options NETATALK # AppleTalk networking
|
|
#options PFIL_HOOKS # pfil(9) packet filter hooks
|
|
#options PPP_BSDCOMP # BSD-Compress compression support for PPP
|
|
#options PPP_DEFLATE # Deflate compression support for PPP
|
|
#options PPP_FILTER # Active filter support for PPP (requires bpf)
|
|
#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG
|
|
#options TCP_SIGNATURE
|
|
|
|
#options NFS_BOOT_BOOTP
|
|
options NFS_BOOT_DHCP
|
|
options NFS_BOOT_BOOTPARAM
|
|
|
|
# Compatibility options
|
|
|
|
options COMPAT_09 # NetBSD 0.9 compatibility.
|
|
options COMPAT_10 # NetBSD 1.0 compatibility.
|
|
options COMPAT_11 # NetBSD 1.1 compatibility.
|
|
options COMPAT_12 # NetBSD 1.2 compatibility.
|
|
options COMPAT_13 # NetBSD 1.3 compatibility.
|
|
options COMPAT_14 # NetBSD 1.4 compatibility.
|
|
options COMPAT_15 # NetBSD 1.5 compatibility.
|
|
options COMPAT_16 # NetBSD 1.6 compatibility.
|
|
options COMPAT_20 # NetBSD 2.0 compatibility.
|
|
options COMPAT_30 # NetBSD 3.0 compatibility.
|
|
options COMPAT_40 # NetBSD 4.0 compatibility.
|
|
options COMPAT_43 # 4.3BSD compatibility.
|
|
#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended.
|
|
|
|
options COMPAT_OSSAUDIO # OSS (Voxware) audio driver compatibility
|
|
options COMPAT_BSDPTY # /dev/[pt]ty?? ptys.
|
|
|
|
# Shared memory options
|
|
|
|
options SYSVMSG # System V-like message queues
|
|
options SYSVSEM # System V-like semaphores
|
|
#options SEMMNI=10 # number of semaphore identifiers
|
|
#options SEMMNS=60 # number of semaphores in system
|
|
#options SEMUME=10 # max number of undo entries per process
|
|
#options SEMMNU=30 # number of undo structures in system
|
|
options SYSVSHM # System V-like memory sharing
|
|
#options SHMMAXPGS=1024 # 1024 pages is the default
|
|
options P1003_1B_SEMAPHORE # p1003.1b semaphore support
|
|
|
|
# Device options
|
|
|
|
# Miscellaneous kernel options
|
|
options KTRACE # system call tracing via ktrace(1)
|
|
options IRQSTATS # manage IRQ statistics
|
|
#options KMEMSTATS # kernel memory statistics
|
|
#options SCSIVERBOSE # Verbose SCSI errors
|
|
options PCIVERBOSE # Verbose PCI descriptions
|
|
options MIIVERBOSE # Verbose MII autoconfuration messages
|
|
options USBVERBOSE # verbose USB device autoconfig messages
|
|
#options PCI_CONFIG_DUMP # verbosely dump PCI config space
|
|
options USERCONF # userconf(4) support
|
|
#options PIPE_SOCKETPAIR # smaller, but slower pipe(2)
|
|
#options SYSCTL_INCLUDE_DESCR # Include sysctl descriptions in kernel
|
|
|
|
# Development and Debugging options
|
|
|
|
#options PERFCTRS # performance counters
|
|
#options DIAGNOSTIC # internally consistency checks
|
|
#options DEBUG
|
|
#options PMAP_DEBUG # Enable pmap_debug_level code
|
|
#options VERBOSE_INIT_ARM # verbose bootstraping messages
|
|
options DDB # in-kernel debugger
|
|
#options DDB_HISTORY_SIZE=100 # Enable history editing in DDB
|
|
#makeoptions DEBUG="-g" # compile full symbol table
|
|
options SYMTAB_SPACE=512000
|
|
|
|
#config netbsd root on ? type ?
|
|
config netbsd root on wd0a type ?
|
|
#config netbsd root on wd0e type ?
|
|
|
|
# The main bus device
|
|
mainbus0 at root
|
|
|
|
# The boot CPU
|
|
cpu0 at mainbus?
|
|
|
|
# On-board device support
|
|
obio* at mainbus?
|
|
com0 at obio? addr 0xfe800000 xint 3 # on-board TI 165C50 UART
|
|
btn0 at obio? addr 0xfe8d0002 xint 3 # buttons
|
|
|
|
# i80321 I/O Processor peripheral support
|
|
iopxs* at mainbus?
|
|
|
|
iopiic* at iopxs? # I2C Controller Unit(s)
|
|
iic0 at iopiic?
|
|
iic1 at iopiic?
|
|
pci0 at iopxs? bus ? # PCI/PCI-X support
|
|
|
|
# PCI-PCI bridges
|
|
ppb* at pci? dev ? function ?
|
|
pci* at ppb? bus ?
|
|
|
|
# RICOH RS5C372A Real-Time Clock
|
|
rs5c372rtc* at iic0 addr 0x32
|
|
|
|
#
|
|
# Storage devices
|
|
#
|
|
|
|
# SCSI Controllers and Devices
|
|
|
|
# SCSI bus support
|
|
scsibus* at scsi?
|
|
|
|
# SCSI devices
|
|
sd* at scsibus? target ? lun ? # SCSI disk drives
|
|
st* at scsibus? target ? lun ? # SCSI tape drives
|
|
cd* at scsibus? target ? lun ? # SCSI CD-ROM drives
|
|
ch* at scsibus? target ? lun ? # SCSI autochangers
|
|
ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices
|
|
ss* at scsibus? target ? lun ? # SCSI scanners
|
|
uk* at scsibus? target ? lun ? # SCSI unknown
|
|
|
|
# PCI IDE/S-ATA controllers and devices
|
|
pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver
|
|
acardide* at pci? dev ? function ? # Acard IDE controllers
|
|
|
|
# ATA (IDE) bus support
|
|
atabus* at ata? channel ?
|
|
|
|
# IDE drives
|
|
# Flags are used only with controllers that support DMA operations
|
|
# and mode settings (e.g. some pciide controllers)
|
|
# The lowest order four bits (rightmost digit) of the flags define the PIO
|
|
# mode to use, the next set of four bits the DMA mode and the third set the
|
|
# UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
|
|
# to use, and the last bit must be 1 for this setting to be used.
|
|
# For DMA and UDMA, 0xf (1111) means 'disable'.
|
|
# 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
|
|
# (0xc=1100, 0xa=1010, 0xf=1111)
|
|
# 0x0000 means "use whatever the drive claims to support".
|
|
wd* at atabus? drive ? flags 0x0000
|
|
|
|
# ATAPI bus support
|
|
atapibus* at atapi?
|
|
|
|
# ATAPI devices
|
|
# flags have the same meaning as for IDE drives.
|
|
cd* at atapibus? drive ? flags 0x0000 # ATAPI CD-ROM drives
|
|
sd* at atapibus? drive ? flags 0x0000 # ATAPI disk drives
|
|
st* at atapibus? drive ? flags 0x0000 # ATAPI tape drives
|
|
uk* at atapibus? drive ? flags 0x0000 # ATAPI unknown
|
|
|
|
#
|
|
# Networking devices
|
|
#
|
|
|
|
# PCI network devices
|
|
wm* at pci? dev ? function ? # Intel i82541PI Gig-E
|
|
|
|
# MII/PHY support
|
|
acphy* at mii? phy ? # Altima AC101 and AMD Am79c874 PHYs
|
|
amhphy* at mii? phy ? # AMD 79c901 Ethernet PHYs
|
|
bmtphy* at mii? phy ? # Broadcom BCM5201 and BCM5202 PHYs
|
|
brgphy* at mii? phy ? # Broadcom BCM5400-family PHYs
|
|
ciphy* at mii? phy ? # Cicada CS8201 Gig-E PHYs
|
|
dmphy* at mii? phy ? # Davicom DM9101 PHYs
|
|
exphy* at mii? phy ? # 3Com internal PHYs
|
|
gentbi* at mii? phy ? # Generic Ten-Bit 1000BASE-[CLS]X PHYs
|
|
glxtphy* at mii? phy ? # Level One LXT-1000 PHYs
|
|
gphyter* at mii? phy ? # NS83861 Gig-E PHY
|
|
icsphy* at mii? phy ? # Integrated Circuit Systems ICS189x
|
|
igphy* at mii? phy ? # Intel IGP01E1000
|
|
inphy* at mii? phy ? # Intel 82555 PHYs
|
|
iophy* at mii? phy ? # Intel 82553 PHYs
|
|
lxtphy* at mii? phy ? # Level One LXT-970 PHYs
|
|
makphy* at mii? phy ? # Marvell Semiconductor 88E1000 PHYs
|
|
nsphy* at mii? phy ? # NS83840 PHYs
|
|
nsphyter* at mii? phy ? # NS83843 PHYs
|
|
pnaphy* at mii? phy ? # generic HomePNA PHYs
|
|
qsphy* at mii? phy ? # Quality Semiconductor QS6612 PHYs
|
|
rgephy* at mii? phy ? # Realtek 8169S/8110 internal PHYs
|
|
sqphy* at mii? phy ? # Seeq 80220/80221/80223 PHYs
|
|
tlphy* at mii? phy ? # ThunderLAN PHYs
|
|
tqphy* at mii? phy ? # TDK Semiconductor PHYs
|
|
ukphy* at mii? phy ? # generic unknown PHYs
|
|
urlphy* at mii? phy ? # Realtek RTL8150L internal PHYs
|
|
|
|
|
|
# USB Controller and Devices
|
|
|
|
# PCI USB controllers
|
|
ehci* at pci? dev ? function ? # Enhanced Host Controller
|
|
ohci* at pci? dev ? function ? # Open Host Controller
|
|
|
|
# USB bus support
|
|
usb* at ehci?
|
|
usb* at ohci?
|
|
|
|
# USB Hubs
|
|
uhub* at usb?
|
|
uhub* at uhub? port ?
|
|
|
|
# USB HID device
|
|
uhidev* at uhub? port ? configuration ? interface ?
|
|
|
|
# USB Mice
|
|
ums* at uhidev? reportid ?
|
|
wsmouse* at ums? mux 0
|
|
|
|
# USB Keyboards
|
|
ukbd* at uhidev? reportid ?
|
|
wskbd* at ukbd? console ? mux 1
|
|
|
|
# USB serial adapter
|
|
ucycom* at uhidev? reportid ?
|
|
|
|
# USB Generic HID devices
|
|
uhid* at uhidev? reportid ?
|
|
|
|
# USB Printer
|
|
ulpt* at uhub? port ? configuration ? interface ?
|
|
|
|
# USB Modem
|
|
umodem* at uhub? port ? configuration ?
|
|
ucom* at umodem?
|
|
|
|
# USB Mass Storage
|
|
umass* at uhub? port ? configuration ? interface ?
|
|
wd* at umass?
|
|
|
|
# USB audio
|
|
uaudio* at uhub? port ? configuration ?
|
|
|
|
# USB MIDI
|
|
umidi* at uhub? port ? configuration ?
|
|
|
|
# USB IrDA
|
|
# USB-IrDA bridge spec
|
|
uirda* at uhub? port ? configuration ? interface ?
|
|
irframe* at uirda?
|
|
|
|
# SigmaTel STIr4200 USB/IrDA Bridge
|
|
ustir* at uhub? port ?
|
|
irframe* at ustir?
|
|
|
|
# USB Ethernet adapters
|
|
aue* at uhub? port ? # ADMtek AN986 Pegasus based adapters
|
|
axe* at uhub? port ? # ASIX AX88172 based adapters
|
|
cdce* at uhub? port ? # CDC, Ethernet Networking Control Model
|
|
cue* at uhub? port ? # CATC USB-EL1201A based adapters
|
|
kue* at uhub? port ? # Kawasaki LSI KL5KUSB101B based adapters
|
|
udav* at uhub? port ? # Davicom DM9601 based adapters
|
|
url* at uhub? port ? # Realtek RTL8150L based adapters
|
|
|
|
# USB 802.11b adapters
|
|
atu* at uhub? port ? # Atmel AT76C50XX based adapters
|
|
ral* at uhub? port ? # Ralink Technology RT25x0 802.11a/b/g
|
|
|
|
# Prolific PL2301/PL2302 host-to-host adapter
|
|
upl* at uhub? port ?
|
|
|
|
# Serial adapters
|
|
ubsa* at uhub? port ? # Belkin serial adapter
|
|
ucom* at ubsa? portno ?
|
|
|
|
uftdi* at uhub? port ? # FTDI FT8U100AX serial adapter
|
|
ucom* at uftdi? portno ?
|
|
|
|
umct* at uhub? port ? # MCT USB-RS232 serial adapter
|
|
ucom* at umct? portno ?
|
|
|
|
uplcom* at uhub? port ? # I/O DATA USB-RSAQ2 serial adapter
|
|
ucom* at uplcom? portno ?
|
|
|
|
uvscom* at uhub? port ? # SUNTAC Slipper U VS-10U serial adapter
|
|
ucom* at uvscom? portno ?
|
|
|
|
# Diamond Multimedia Rio 500
|
|
urio* at uhub? port ?
|
|
|
|
# USB Handspring Visor
|
|
uvisor* at uhub? port ?
|
|
ucom* at uvisor?
|
|
|
|
# Kyocera AIR-EDGE PHONE
|
|
ukyopon* at uhub? port ?
|
|
ucom* at ukyopon? portno ?
|
|
|
|
# USB scanners
|
|
uscanner* at uhub? port ?
|
|
|
|
# USB scanners that use SCSI emulation, e.g., HP5300
|
|
usscanner* at uhub? port ?
|
|
|
|
# Y@P firmware loader
|
|
uyap* at uhub? port ?
|
|
|
|
# D-Link DSB-R100 USB radio
|
|
udsbr* at uhub? port ?
|
|
radio* at udsbr?
|
|
|
|
# USB Generic driver
|
|
ugen* at uhub? port ?
|
|
|
|
|
|
# Audio Devices
|
|
|
|
# Audio support
|
|
audio* at audiobus?
|
|
|
|
# MIDI support
|
|
midi* at midibus?
|
|
|
|
|
|
# Pseudo-Devices
|
|
|
|
# disk/mass storage pseudo-devices
|
|
#pseudo-device ccd 4 # concatenated/striped disk devices
|
|
#pseudo-device cgd 4 # cryptographic disk devices
|
|
#pseudo-device raid 8 # RAIDframe disk driver
|
|
#options RAID_AUTOCONFIG # auto-configuration of RAID components
|
|
# Options to enable various other RAIDframe RAID types.
|
|
#options RF_INCLUDE_EVENODD=1
|
|
#options RF_INCLUDE_RAID5_RS=1
|
|
#options RF_INCLUDE_PARITYLOGGING=1
|
|
#options RF_INCLUDE_CHAINDECLUSTER=1
|
|
#options RF_INCLUDE_INTERDECLUSTER=1
|
|
#options RF_INCLUDE_PARITY_DECLUSTERING=1
|
|
#options RF_INCLUDE_PARITY_DECLUSTERING_DS=1
|
|
#pseudo-device fss 4 # file system snapshot device
|
|
|
|
#pseudo-device md 1 # memory disk device (ramdisk)
|
|
pseudo-device vnd 4 # disk-like interface to files
|
|
options VND_COMPRESSION # compressed vnd(4)
|
|
|
|
# network pseudo-devices
|
|
pseudo-device bpfilter # Berkeley packet filter
|
|
pseudo-device ipfilter # IP filter (firewall) and NAT
|
|
pseudo-device loop # network loopback
|
|
pseudo-device ppp # Point-to-Point Protocol
|
|
pseudo-device pppoe # PPP over Ethernet (RFC 2516)
|
|
#pseudo-device sl # Serial Line IP
|
|
#pseudo-device strip # Starmode Radio IP (Metricom)
|
|
#pseudo-device irframetty # IrDA frame line discipline
|
|
pseudo-device tap # virtual Ethernet
|
|
pseudo-device tun # network tunneling over tty
|
|
pseudo-device gre # generic L3 over IP tunnel
|
|
pseudo-device gif # IPv[46] over IPv[46] tunnel (RFC1933)
|
|
pseudo-device faith # IPv[46] tcp relay translation i/f
|
|
pseudo-device stf # 6to4 IPv6 over IPv4 encapsulation
|
|
pseudo-device vlan # IEEE 802.1q encapsulation
|
|
pseudo-device bridge # simple inter-network bridging
|
|
options BRIDGE_IPF # bridge uses IP/IPv6 pfil hooks too
|
|
pseudo-device pf # PF packet filter
|
|
pseudo-device pflog # PF log if
|
|
#pseudo-device kttcp
|
|
|
|
# miscellaneous pseudo-devices
|
|
pseudo-device pty # pseudo-terminals
|
|
pseudo-device sequencer # MIDI sequencer
|
|
pseudo-device rnd # /dev/random and in-kernel generator
|
|
pseudo-device clockctl # user control of clock subsystem
|
|
pseudo-device ksyms # /dev/ksyms
|
|
|
|
# a pseudo device needed for Coda # also needs CODA (above)
|
|
#pseudo-device vcoda 4 # coda minicache <-> venus comm.
|
|
|
|
# a pseudo device needed for SMBFS
|
|
pseudo-device nsmb # experimental - SMB requester
|
|
|
|
# a pseudo device needed for verified exec
|
|
#pseudo-device veriexec 1
|
|
|
|
# data mover pseudo-devices
|
|
pseudo-device swdmover # softare dmover(9) back-end
|
|
pseudo-device dmoverio # /dev/dmover dmover(9) interface
|