Home | History | Annotate | Line # | Download | only in conf
TS7200 revision 1.52
      1 #	$NetBSD: TS7200,v 1.52 2012/09/11 19:43:10 msaitoh Exp $
      2 #
      3 #	TS7200 - Kernel for Technologic Systems TS7200 ARM hardware
      4 #
      5 #	Note - the kernel size for this hardware has two limitations:
      6 #
      7 #	1) The total size of the kernel (text, data, and bss) must fit
      8 #	   within 8MB.  This is mainly an issue for the INSTALL kernel
      9 #	   (TS7200_INSTALL)
     10 #	2) If you wish to install this kernel in flash, the compressed size
     11 #	   (including the gunzip booter) must fit within 1441792 bytes.
     12 #
     13 #	If you add new devices to this kernel, please check these limitations.
     14 #
     15 
     16 include	"arch/evbarm/conf/std.tsarm"
     17 
     18 #options 	INCLUDE_CONFIG_FILE	# embed config file in kernel binary
     19 options		MSGBUFSIZE=65536
     20 #options 	KSTACK_CHECK_MAGIC
     21 
     22 # estimated number of users
     23 maxusers	32
     24 
     25 # Standard system options
     26 
     27 options 	RTC_OFFSET=0	# hardware clock is this many mins. west of GMT
     28 options 	NTP		# NTP phase/frequency locked loop
     29 
     30 # CPU options
     31 
     32 options 	CPU_ARM9	# Support the ARM9TDMI core
     33 
     34 # File systems
     35 
     36 file-system	FFS		# UFS
     37 #file-system	LFS		# log-structured file system
     38 file-system	MFS		# memory file system
     39 file-system	NFS		# Network file system
     40 #file-system 	ADOSFS		# AmigaDOS-compatible file system
     41 file-system 	EXT2FS		# second extended file system (linux)
     42 #file-system	CD9660		# ISO 9660 + Rock Ridge file system
     43 file-system	MSDOSFS		# MS-DOS file system
     44 #file-system	FDESC		# /dev/fd
     45 #file-system    FILECORE        # Acorn filecore file system
     46 file-system	KERNFS		# /kern
     47 #file-system	NULLFS		# loopback file system
     48 file-system	PROCFS		# /proc
     49 #file-system	PUFFS		# Userspace file systems (e.g. ntfs-3g & sshfs)
     50 #file-system	UMAPFS		# NULLFS + uid and gid remapping
     51 #file-system	UNION		# union file system
     52 file-system	PTYFS		# /dev/pts/N support
     53 
     54 # File system options
     55 #options 	QUOTA		# legacy UFS quotas
     56 #options 	QUOTA2		# new, in-filesystem UFS quotas
     57 #options 	FFS_EI		# FFS Endian Independent support
     58 options 	NFSSERVER
     59 options 	WAPBL		# File system journaling support
     60 #options 	FFS_NO_SNAPSHOT	# No FFS snapshot support
     61 
     62 # Networking options
     63 
     64 #options 	GATEWAY		# packet forwarding
     65 options 	INET		# IP + ICMP + TCP + UDP
     66 options 	INET6		# IPV6
     67 #options 	IPSEC		# IP security
     68 #options 	IPSEC_ESP	# IP security (encryption part; define w/ IPSEC)
     69 #options 	IPSEC_NAT_T	# IPsec NAT traversal (NAT-T)
     70 #options 	IPSEC_DEBUG	# debug for IP security
     71 #options 	MROUTING	# IP multicast routing
     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 
     81 options 	NFS_BOOT_BOOTP
     82 options 	NFS_BOOT_DHCP
     83 #options 	NFS_BOOT_BOOTPARAM
     84 
     85 # Compatibility options
     86 
     87 #options 	COMPAT_LINUX
     88 #options 	COMPAT_43	# 4.3BSD compatibility.
     89 options 	COMPAT_50	# NetBSD 5.0 compatibility.
     90 options 	COMPAT_40	# NetBSD 4.0 compatibility.
     91 options 	COMPAT_30	# NetBSD 3.0 compatibility.
     92 options 	COMPAT_20	# NetBSD 2.0 compatibility.
     93 #options 	COMPAT_16	# NetBSD 1.6 compatibility.
     94 #options 	COMPAT_15	# NetBSD 1.5 compatibility.
     95 #options 	COMPAT_14	# NetBSD 1.4 compatibility.
     96 #options 	COMPAT_13	# NetBSD 1.3 compatibility.
     97 #options 	COMPAT_12	# NetBSD 1.2 compatibility.
     98 #options 	COMPAT_11	# NetBSD 1.1 compatibility.
     99 #options 	COMPAT_10	# NetBSD 1.0 compatibility.
    100 #options 	COMPAT_09	# NetBSD 0.9 compatibility.
    101 #options 	TCP_COMPAT_42	# 4.2BSD TCP/IP bug compat. Not recommended.
    102 
    103 # Shared memory options
    104 
    105 options 	SYSVMSG		# System V-like message queues
    106 options 	SYSVSEM		# System V-like semaphores
    107 options 	SYSVSHM		# System V-like memory sharing
    108 
    109 # Device options
    110 
    111 #options 	MEMORY_DISK_HOOKS	# boottime setup of ramdisk
    112 #options 	MEMORY_DISK_ROOT_SIZE=3400	# Size in blocks
    113 #options 	MEMORY_DISK_IS_ROOT	# use memory disk as root
    114 
    115 # Console options.  The default console is speed is 115200 baud.
    116 #options 	CONSPEED=9600		# Console speed
    117 
    118 # Miscellaneous kernel options
    119 options 	KTRACE		# system call tracing, a la ktrace(1)
    120 options 	IRQSTATS	# manage IRQ statistics
    121 #options 	KMEMSTATS	# kernel memory statistics
    122 #options 	SCSIVERBOSE	# Verbose SCSI errors
    123 #options 	PCIVERBOSE	# Verbose PCI descriptions
    124 #options 	MIIVERBOSE	# Verbose MII autoconfuration messages
    125 #options 	PCI_CONFIG_DUMP	# verbosely dump PCI config space
    126 #options 	DDB_KEYCODE=0x40
    127 #options 	USERCONF	# userconf(4) support
    128 #options	PIPE_SOCKETPAIR	# smaller, but slower pipe(2)
    129 
    130 # Development and Debugging options
    131 
    132 #options 	PERFCTRS	# performance counters
    133 options 	DIAGNOSTIC	# internally consistency checks
    134 #options 	DEBUG
    135 #options 	PMAP_DEBUG	# Enable pmap_debug_level code
    136 #options 	VERBOSE_INIT_ARM # verbose bootstraping messages
    137 options 	DDB		# in-kernel debugger
    138 options		DDB_ONPANIC=1
    139 options 	DDB_HISTORY_SIZE=100	# Enable history editing in DDB
    140 #makeoptions	DEBUG="-g"	# compile full symbol table
    141 options 	SYMTAB_SPACE=550000
    142 
    143 ##options 	PMAP_INCLUDE_PTE_SYNC
    144 ##options 	LOCKDEBUG
    145 
    146 config		netbsd		root on ? type ?
    147 config		netbsd-epe0	root on epe0 type nfs
    148 config		netbsd-wd0	root on wd0 type ffs
    149 #config		netbsd-sd0	root on sd0 type ffs
    150 
    151 # The main bus device
    152 mainbus0	at root
    153 
    154 # The boot cpu
    155 cpu0		at mainbus?
    156 
    157 # Cirrus Logic EP93xx System-on-chip
    158 epsoc0		at mainbus?
    159 # On-chip timers
    160 epclk0		at epsoc? addr 0x80810000 size 0x90 intr 35
    161 # On-chip serial UARTS
    162 epcom0		at epsoc? addr 0x808c0000 size 0x1000 intr 52
    163 epcom1		at epsoc? addr 0x808d0000 size 0x1000 intr 54
    164 # On-chip USB 1.1
    165 ohci*		at epsoc? addr 0x80020000 size 0x1000 intr 56
    166 # On-chip 10/100 Ethernet
    167 epe0		at epsoc? addr 0x80010000 size 0x10000 intr 39
    168 # On-board TS-7200 CPLD
    169 tspld0		at mainbus?
    170 # PC/104 bus
    171 isa0		at tspld?
    172 # CompactFlash interface
    173 wdc0		at tspld?
    174 # TS-5620 battery-backed real-time clock
    175 tsrtc*		at tspld?
    176 # On-board GPIO ports.  Note that only 20 total GPIO pins are available
    177 # across all ports
    178 epgpio0		at epsoc? addr 0x80840000 size 0xcc intr 59
    179 gpio*		at epgpio?
    180 options		EPGPIO_PORT_C_MASK=0x00
    181 options		EPGPIO_PORT_D_MASK=0x00
    182 options		EPGPIO_PORT_E_MASK=0x00
    183 options		EPGPIO_PORT_F_MASK=0x02
    184 options		EPGPIO_PORT_G_MASK=0x00
    185 options		EPGPIO_PORT_H_MASK=0x38
    186 
    187 # HD44780 LCD on LCD header
    188 #tslcd*		at tspld?
    189 #wsdisplay*	at tslcd? console ?
    190 
    191 # 4x4 Matrix Keypad on DIO header
    192 #tskp*		at tspld?
    193 #wskbd*	at tskp? console ? mux 1
    194 
    195 # TS-SER[1,2,4] multiport serial PC/104 cards
    196 com0		at isa? port 0x3f8 irq 6        # Standard PC serial ports
    197 com1		at isa? port 0x2f8 irq 6
    198 com2		at isa? port 0x3e8 irq 6
    199 com3		at isa? port 0x2e8 irq 6
    200 
    201 wdc1	at isa? port 0x1f0 irq 7 flags 0x00
    202 wdc2	at isa? port 0x170 irq 7 flags 0x00
    203 
    204 tscs0	at isa? port 0x300 iomem ? irq ? drq ?  # TS-ETH10 PC/104 ethernet
    205 tscs1	at isa? port 0x310 iomem ? irq ? drq ?
    206 tscs2	at isa? port 0x320 iomem ? irq ? drq ?
    207 tscs3	at isa? port 0x330 iomem ? irq ? drq ?
    208 
    209 tsdio0  at isa? port 0x100 # TS-DIO24 general-purpose I/O
    210 tsdio1  at isa? port 0x108
    211 tsdio2  at isa? port 0x110
    212 tsdio3  at isa? port 0x118
    213 
    214 # PCMCIA bus support
    215 #pcmcia* at pcic? controller ? socket ?
    216 
    217 #options PCIC_ISA_INTR_ALLOC_MASK=0xe0
    218 # ISA PCMCIA controllers
    219 #pcic0	at isa? port 0x3e0 iomem 0xd0000 iosiz 0x10000
    220 #pcic1	at isa? port 0x3e2 iomem 0xe0000 iosiz 0x4000
    221 #pcic2	at isa? port 0x3e4 iomem 0xe0000 iosiz 0x4000
    222 
    223 # ATA (IDE) bus support
    224 atabus* at ata?
    225 
    226 # IDE drives
    227 # Flags are used only with controllers that support DMA operations
    228 # and mode settings (e.g. some pciide controllers)
    229 # The lowest order four bits (rightmost digit) of the flags define the PIO
    230 # mode to use, the next set of four bits the DMA mode and the third set the
    231 # UltraDMA mode. For each set of four bits, the 3 lower bits define the mode
    232 # to use, and the last bit must be 1 for this setting to be used.
    233 # For DMA and UDMA, 0xf (1111) means 'disable'.
    234 # 0x0fac means 'use PIO mode 4, DMA mode 2, disable UltraDMA'.
    235 # (0xc=1100, 0xa=1010, 0xf=1111)
    236 # 0x0000 means "use whatever the drive claims to support".
    237 wd*	at atabus? drive ? flags 0x00ff
    238 
    239 # ATAPI bus support
    240 #atapibus* at atapi?
    241 
    242 # ATAPI devices
    243 # flags have the same meaning as for IDE drives.
    244 # XXX No DMA on IDE devices for now
    245 #cd*	at atapibus? drive ? flags 0x0ff0	# ATAPI CD-ROM drives
    246 #sd*	at atapibus? drive ? flags 0x0000	# ATAPI disk drives
    247 #st*	at atapibus? drive ? flags 0x0000	# ATAPI tape drives
    248 #uk*	at atapibus? drive ? flags 0x0000	# ATAPI unknown
    249 
    250 # MII/PHY support
    251 #acphy*	at mii? phy ?			# Altima AC101 and AMD Am79c874 PHYs
    252 #amhphy* at mii? phy ?			# AMD 79c901 Ethernet PHYs
    253 #bmtphy* at mii? phy ?			# Broadcom BCM5201 and BCM5202 PHYs
    254 #brgphy* at mii? phy ?			# Broadcom BCM5400-family PHYs
    255 #dmphy*	at mii? phy ?			# Davicom DM9101 PHYs
    256 #exphy*	at mii? phy ?			# 3Com internal PHYs
    257 #gentbi* at mii? phy ?			# Generic Ten-Bit 1000BASE-[CLS]X PHYs
    258 #glxtphy* at mii? phy ?			# Level One LXT-1000 PHYs
    259 #gphyter* at mii? phy ?			# NS83861 Gig-E PHY
    260 #icsphy* at mii? phy ?			# Integrated Circuit Systems ICS189x
    261 #igphy*	at mii? phy ?			# Intel IGP01E1000
    262 #inphy*	at mii? phy ?			# Intel 82555 PHYs
    263 #iophy*	at mii? phy ?			# Intel 82553 PHYs
    264 #lxtphy* at mii? phy ?			# Level One LXT-970 PHYs
    265 #makphy* at mii? phy ?			# Marvell Semiconductor 88E1000 PHYs
    266 #nsphy*	at mii? phy ?			# NS83840 PHYs
    267 #nsphyter* at mii? phy ? 		# NS83843 PHYs
    268 #pnaphy* at mii? phy ?			# generic HomePNA PHYs
    269 #qsphy*	at mii? phy ?			# Quality Semiconductor QS6612 PHYs
    270 #sqphy*	at mii? phy ?			# Seeq 80220/80221/80223 PHYs
    271 #tlphy*	at mii? phy ?			# ThunderLAN PHYs
    272 #tqphy*	at mii? phy ?			# TDK Semiconductor PHYs
    273 ukphy*	at mii? phy ?			# generic unknown PHYs
    274 #urlphy* at mii? phy ?			# Realtek RTL8150L internal PHYs
    275 
    276 # USB Controller and Devices
    277 
    278 # USB bus support
    279 #usb*	at ehci?
    280 usb*	at ohci?
    281 #usb*	at uhci?
    282 #usb*	at slhci?
    283 
    284 # USB Hubs
    285 uhub*	at usb?
    286 uhub*	at uhub? port ?
    287 
    288 # USB HID device
    289 #uhidev*	at uhub? port ? configuration ? interface ?
    290 
    291 # USB Mice
    292 # ums*	at uhidev? reportid ?
    293 # wsmouse* at ums? mux 0
    294 
    295 # USB eGalax touch-panel
    296 # uep*	at uhub? port ?
    297 # wsmouse* at uep? mux 0
    298 
    299 # USB Keyboards
    300 #ukbd*	at uhidev? reportid ?
    301 #wskbd*	at ukbd? console ? mux 1
    302 
    303 # USB serial adapter
    304 #ucycom*	at uhidev? reportid ?
    305 
    306 # USB Generic HID devices
    307 #uhid*	at uhidev? reportid ?
    308 
    309 # USB Printer
    310 #ulpt*	at uhub? port ? configuration ? interface ?
    311 
    312 # USB Modem
    313 #umodem*	at uhub? port ? configuration ?
    314 #ucom*	at umodem?
    315 
    316 # Option N.V. Wireless WAN modems
    317 #uhso*	at uhub? port ? configuration ?
    318 
    319 # USB Mass Storage
    320 #umass*	at uhub? port ? configuration ? interface ?
    321 #scsibus* at umass?
    322 # SCSI devices
    323 #sd*     at scsibus? target ? lun ?      # SCSI disk drives
    324 #st*     at scsibus? target ? lun ?      # SCSI tape drives
    325 #cd*     at scsibus? target ? lun ?      # SCSI CD-ROM drives
    326 #ch*     at scsibus? target ? lun ?      # SCSI autochangers
    327 #ses*    at scsibus? target ? lun ?      # SCSI Enclosure Services devices
    328 #ss*     at scsibus? target ? lun ?      # SCSI scanners
    329 #uk*     at scsibus? target ? lun ?      # SCSI unknown
    330 
    331 # wd*	at umass?
    332 
    333 # USB audio
    334 #uaudio*	at uhub? port ? configuration ?
    335 
    336 # USB MIDI
    337 #umidi* at uhub? port ? configuration ?
    338 
    339 # USB IrDA
    340 # USB-IrDA bridge spec
    341 #uirda* at uhub? port ? configuration ? interface ?
    342 #irframe* at uirda?
    343 
    344 # SigmaTel STIr4200 USB/IrDA Bridge
    345 #ustir* at uhub? port ?
    346 #irframe* at ustir?
    347 
    348 # USB Ethernet adapters
    349 #aue*	at uhub? port ?		# ADMtek AN986 Pegasus based adapters
    350 #axe*	at uhub? port ?		# ASIX AX88172 based adapters
    351 #cue*	at uhub? port ?		# CATC USB-EL1201A based adapters
    352 #kue*	at uhub? port ?		# Kawasaki LSI KL5KUSB101B based adapters
    353 #udav*	at uhub? port ?		# Davicom DM9601 based adapters
    354 #url*	at uhub? port ?		# Realtek RTL8150L based adapters
    355 
    356 # Prolific PL2301/PL2302 host-to-host adapter
    357 #upl*	at uhub? port ?
    358 
    359 # Serial adapters
    360 #ubsa*	at uhub? port ?		# Belkin serial adapter
    361 #ucom*	at ubsa? portno ?
    362 
    363 #uftdi*	at uhub? port ?		# FTDI FT8U100AX serial adapter
    364 #ucom*	at uftdi? portno ?
    365 
    366 #umct*	at uhub? port ?		# MCT USB-RS232 serial adapter
    367 #ucom*	at umct? portno ?
    368 
    369 #uplcom* at uhub? port ? 	# I/O DATA USB-RSAQ2 serial adapter
    370 #ucom*	at uplcom? portno ?
    371 
    372 #uvscom* at uhub? port ? 	# SUNTAC Slipper U VS-10U serial adapter
    373 #ucom*	at uvscom? portno ?
    374 #atu*	at uhub? port ?		# Atmel AT76C50XX 802.11b adapter
    375 
    376 # Diamond Multimedia Rio 500
    377 # urio*	at uhub? port ?
    378 
    379 # USB Handspring Visor
    380 # uvisor*	at uhub? port ?
    381 # ucom*	at uvisor?
    382 
    383 # Kyocera AIR-EDGE PHONE
    384 #ukyopon* at uhub? port ?
    385 #ucom*	at ukyopon? portno ?
    386 
    387 # USB scanners
    388 # uscanner* at uhub? port ?
    389 
    390 # USB scanners that use SCSI emulation, e.g., HP5300
    391 # usscanner* at uhub? port ?
    392 
    393 # Y@P firmware loader
    394 # uyap* at uhub? port ?
    395 
    396 # D-Link DSB-R100 USB radio
    397 # udsbr*	at uhub? port ?
    398 # radio*	at udsbr?
    399 
    400 # USB Generic driver
    401 ugen*	at uhub? port ?
    402 
    403 # IrDA and Consumer Ir devices
    404 
    405 # Toshiba Oboe
    406 # oboe* 	at pci? dev ? function ?
    407 # irframe* at oboe?
    408 
    409 # CardBus IEEE1394 controllers
    410 #fwohci* at cardbus? function ?	# IEEE1394 Open Host Controller
    411 
    412 #fw*	at fwbus?			# IP over 1394
    413 
    414 # IEEE1394 nodes
    415 #fwnode* at fwbus? idhi ? idlo ?
    416 #sbpscsi* at fwnode?
    417 #scsibus* at sbpscsi?
    418 
    419 # Audio Devices
    420 
    421 # OPL[23] FM synthesizers
    422 #opl*	at cmpci? flags 1
    423 #opl*	at eso?
    424 #opl*	at fms?
    425 #opl*	at sv?
    426 #opl*	at yds?
    427 
    428 # Audio support
    429 #audio*	at audiobus?
    430 
    431 # MPU 401 UARTs
    432 #mpu*	at cmpci?
    433 #mpu*	at eso?
    434 #mpu*	at fms?
    435 #mpu*	at yds?
    436 
    437 # MIDI support
    438 #midi*	at midibus?
    439 
    440 # Pseudo-Devices
    441 
    442 # disk/mass storage pseudo-devices
    443 #pseudo-device	md			# memory disk device (ramdisk)
    444 pseudo-device	vnd			# disk-like interface to files
    445 #pseudo-device	fss			# file system snapshot device
    446 #pseudo-device	putter			# for puffs and pud
    447 
    448 # network pseudo-devices
    449 pseudo-device	bpfilter		# Berkeley packet filter
    450 pseudo-device	loop			# network loopback
    451 pseudo-device	kttcp			# network loopback
    452 
    453 # miscellaneous pseudo-devices
    454 pseudo-device	pty			# pseudo-terminals
    455 #options	RND_COM
    456 pseudo-device	clockctl		# user control of clock subsystem
    457 pseudo-device	ksyms			# /dev/ksyms
    458 
    459 # data mover pseudo-devices
    460 #pseudo-device	swdmover		# software dmover(9) back-end
    461 #pseudo-device	dmoverio		# /dev/dmover dmover(9) interface
    462 
    463 #
    464 # wscons options
    465 #
    466 # builtin terminal emulations
    467 #options 	WSEMUL_SUN		# sun terminal emulation
    468 #options 	WSEMUL_VT100		# VT100 / VT220 emulation
    469 # customization of console and kernel output - see dev/wscons/wsdisplayvar.h
    470 #options 	WSDISPLAY_CUSTOM_OUTPUT	# color customization from wsconsctl(8)
    471 #options 	WS_DEFAULT_FG=WSCOL_WHITE
    472 #options 	WS_DEFAULT_BG=WSCOL_BLACK
    473 #options 	WS_DEFAULT_COLATTR="(0)"
    474 #options 	WS_DEFAULT_MONOATTR="(0)"
    475 #options 	WS_KERNEL_FG=WSCOL_GREEN
    476 #options 	WS_KERNEL_BG=WSCOL_BLACK
    477 #options 	WS_KERNEL_COLATTR=""
    478 #options 	WS_KERNEL_MONOATTR=""
    479 # customization of console border color
    480 #options 	WSDISPLAY_CUSTOM_BORDER	# border customization from wsconsctl(8)
    481 #options 	WSDISPLAY_BORDER_COLOR=WSCOL_BLUE	# default color
    482 # compatibility to other console drivers
    483 #options 	WSDISPLAY_COMPAT_PCVT		# emulate some ioctls
    484 #options 	WSDISPLAY_COMPAT_SYSCONS	# emulate some ioctls
    485 #options 	WSDISPLAY_COMPAT_USL		# wsconscfg VT handling
    486 #options 	WSDISPLAY_COMPAT_RAWKBD		# can get raw scancodes
    487 # see dev/pckbport/wskbdmap_mfii.c for implemented layouts
    488 #options 	PCKBD_LAYOUT="(KB_DE | KB_NODEAD)"
    489 # allocate a number of virtual screens at autoconfiguration time
    490 #options 	WSDISPLAY_DEFAULTSCREENS=4
    491 # use a large software cursor that doesn't blink
    492 #options 	PCDISPLAY_SOFTCURSOR
    493 # modify the screen type of the console; defaults to "80x25"
    494 #options 	VGA_CONSOLE_SCREENTYPE="\"80x24\""
    495 # work around a hardware bug that loaded fonts don't work; found on ATI cards
    496 #options 	VGA_CONSOLE_ATI_BROKEN_FONTSEL
    497 # console scrolling support.
    498 #options 	WSDISPLAY_SCROLLSUPPORT
    499 # enable VGA raster mode capable of displaying multilingual text on console
    500 #options 	VGA_RASTERCONSOLE
    501 
    502 # wscons pseudo-devices
    503 #pseudo-device	wsmux			# mouse & keyboard multiplexor
    504 #pseudo-device	wsfont
    505 
    506