LUBBOCK revision 1.21
1# 2# LUBBOCK -- Intel LUBBOCK Evaluation Board Kernel 3# 4 5include "arch/evbarm/conf/std.lubbock" 6 7# estimated number of users 8 9maxusers 32 10 11#options INTR_DEBUG 12 13# Standard system options 14 15options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 16#options NTP # NTP phase/frequency locked loop 17 18# CPU options 19 20options CPU_XSCALE_PXA250 # Support the XScale core 21#options XSCALE_CACHE_WRITE_THROUGH 22#options XSCALE_CACHE_WRITE_BACK 23makeoptions CPUFLAGS="-mcpu=xscale" 24 25# Architecture options 26 27# File systems 28 29file-system FFS # UFS 30#file-system LFS # log-structured file system 31file-system MFS # memory file system 32file-system NFS # Network file system 33#file-system ADOSFS # AmigaDOS-compatible file system 34#file-system EXT2FS # second extended file system (linux) 35#file-system CD9660 # ISO 9660 + Rock Ridge file system 36file-system MSDOSFS # MS-DOS file system 37#file-system FDESC # /dev/fd 38#file-system KERNFS # /kern 39#file-system NULLFS # loopback file system 40#file-system PORTAL # portal filesystem (still experimental) 41#file-system PROCFS # /proc 42#file-system UMAPFS # NULLFS + uid and gid remapping 43#file-system UNION # union file system 44file-system PTYFS # /dev/pts/N support 45 46# File system options 47#options QUOTA # UFS quotas 48#options FFS_EI # FFS Endian Independant support 49#options NFSSERVER 50options SOFTDEP 51#options FFS_NO_SNAPSHOT # No FFS snapshot support 52 53# Networking options 54 55#options GATEWAY # packet forwarding 56options INET # IP + ICMP + TCP + UDP 57options INET6 # IPV6 58#options IPSEC # IP security 59#options IPSEC_ESP # IP security (encryption part; define w/ IPSEC) 60#options IPSEC_NAT_T # IPsec NAT traversal (NAT-T) 61#options IPSEC_DEBUG # debug for IP security 62#options MROUTING # IP multicast routing 63#options PIM # Protocol Independent Multicast 64#options NS # XNS 65#options NSIP # XNS tunneling over IP 66#options ISO,TPIP # OSI 67#options EON # OSI tunneling over IP 68#options CCITT,LLC,HDLC # X.25 69#options NETATALK # AppleTalk networking 70#options PFIL_HOOKS # pfil(9) packet filter hooks 71#options PPP_BSDCOMP # BSD-Compress compression support for PPP 72#options PPP_DEFLATE # Deflate compression support for PPP 73#options PPP_FILTER # Active filter support for PPP (requires bpf) 74#options TCP_DEBUG # Record last TCP_NDEBUG packets with SO_DEBUG 75 76options NFS_BOOT_BOOTP 77options NFS_BOOT_DHCP 78options NFS_BOOT_BOOTPARAM 79 80# Compatibility options 81 82#options COMPAT_43 # 4.3BSD compatibility. 83options COMPAT_30 # NetBSD 3.0 compatibility. 84options COMPAT_20 # NetBSD 2.0 compatibility. 85options COMPAT_16 # NetBSD 1.6 compatibility. 86#options COMPAT_15 # NetBSD 1.5 compatibility. 87#options COMPAT_14 # NetBSD 1.4 compatibility. 88#options COMPAT_13 # NetBSD 1.3 compatibility. 89#options COMPAT_12 # NetBSD 1.2 compatibility. 90#options COMPAT_11 # NetBSD 1.1 compatibility. 91#options COMPAT_10 # NetBSD 1.0 compatibility. 92#options COMPAT_09 # NetBSD 0.9 compatibility. 93#options TCP_COMPAT_42 # 4.2BSD TCP/IP bug compat. Not recommended. 94options COMPAT_BSDPTY # /dev/[pt]ty?? ptys. 95 96# Shared memory options 97 98#options SYSVMSG # System V-like message queues 99#options SYSVSEM # System V-like semaphores 100#options SEMMNI=10 # number of semaphore identifiers 101#options SEMMNS=60 # number of semaphores in system 102#options SEMUME=10 # max number of undo entries per process 103#options SEMMNU=30 # number of undo structures in system 104#options SYSVSHM # System V-like memory sharing 105#options SHMMAXPGS=1024 # 1024 pages is the default 106 107# Device options 108 109#options MEMORY_DISK_HOOKS # boottime setup of ramdisk 110#options MEMORY_DISK_ROOT_SIZE=16384 # Size in blocks 111#options MEMORY_DISK_DYNAMIC 112#options MINIROOTSIZE=1000 # Size in blocks 113#options MEMORY_DISK_IS_ROOT # use memory disk as root 114 115# Miscellaneous kernel options 116options KTRACE # system call tracing, a la ktrace(1) 117#options LKM # loadable kernel modules 118#options KMEMSTATS # kernel memory statistics 119options PCMCIAVERBOSE # verbose PCMCIA configuration messages 120#options SCSIVERBOSE # Verbose SCSI errors 121#options MIIVERBOSE # Verbose MII autoconfuration messages 122#options DDB_KEYCODE=0x40 123#options USERCONF # userconf(4) support 124 125# Development and Debugging options 126 127options DIAGNOSTIC # internally consistency checks 128#options DEBUG 129#options PMAP_DEBUG # Enable pmap_debug_level code 130#options IPKDB # remote kernel debugging 131#options VERBOSE_INIT_ARM # verbose bootstraping messages 132#options DDB # in-kernel debugger 133#options DDB_HISTORY_SIZE=100 # Enable history editing in DDB 134#options KGDB 135#options DEBUG_KGDB 136#makeoptions DEBUG="-g" # compile full symbol table 137#options SYMTAB_SPACE=200000 138 139config netbsd root on ? type ? 140config netbsd-sm0 root on sm0 type nfs 141 142# The main bus device 143mainbus0 at root 144 145# The boot cpu 146cpu0 at mainbus? 147 148# integrated peripherals 149pxaip0 at mainbus? 150 151pxaintc0 at pxaip? # interrupt controller 152pxagpio0 at pxaip? # GPIO 153 154# cotulla integrated 16550 UARTs 155options COM_PXA2X0 156com0 at pxaip? addr 0x40100000 intr 22 # Full Function UART 157com1 at pxaip? addr 0x40200000 intr 21 # BlueTootth UART 158#com2 at pxaip? addr 0x40700000 intr 20 # Standard UART (for IrDA) 159options FFUARTCONSOLE 160options BTUARTCONSOLE 161options KGDB_DEVNAME="\"btuart\"" # ffuart or btuart 162options KGDB_DEVRATE=115200 163 164# DMAC support 165pxadmac0 at pxaip? addr 0x40000000 intr 25 166options PXA2X0_DMAC_DMOVER_CONCURRENCY=4 # Enable dmover(9) backend 167#options PXA2X0_DMAC_FIXED_PRIORITY # Don't want multiple priority 168 169# AC97 Audio support 170pxaacu0 at pxaip? addr 0x40500000 intr 14 171audio* at audiobus? 172 173# On-board device support 174obio0 at pxaip? intr 8 175sm0 at obio? addr 0x0c000000 intr 3 # on-board SMC 91C96 176#options LUBBOCK_SMC91C96_16BIT 177 178# LCD 179lcd0 at obio? 180wsdisplay* at lcd? console ? 181options WSEMUL_VT100 # VT100 / VT220 emulation 182 183# SA1111 companion chip 184sacc0 at obio? addr 0x10000000 intr 1 185 186sacpcic* at sacc? 187pcmcia* at sacpcic? 188 189sackbc0 at sacc0 addr 0x0a00 intr 21 190sackbc1 at sacc0 addr 0x0c00 intr 18 191 192# PS/2 controller of SA-1111 doesn't have "slot"; One device is attached 193# to one controller. However, pckbd driver requires "slot 0" and pms driver 194# requires "slot 1" 195pckbd* at sackbc0 slot 0 196wskbd* at pckbd? # console ? 197pms* at sackbc1 slot 1 198wsmouse* at pms? mux 0 199 200# PCMCIA serial interfaces 201com* at pcmcia? function ? # Modems and serial cards 202 203pcmcom* at pcmcia? function ? # PCMCIA multi-port serial cards 204com* at pcmcom? slave ? # ...and the slave devices 205 206# PCMCIA SCSI controllers 207aic* at pcmcia? function ? # Adaptec APA-1460 SCSI 208esp* at pcmcia? function ? # Qlogic ESP406/FAS408 SCSI 209 210# SCSI bus support 211scsibus* at scsi? 212 213# SCSI devices 214sd* at scsibus? target ? lun ? # SCSI disk drives 215st* at scsibus? target ? lun ? # SCSI tape drives 216cd* at scsibus? target ? lun ? # SCSI CD-ROM drives 217ch* at scsibus? target ? lun ? # SCSI autochangers 218ses* at scsibus? target ? lun ? # SCSI Enclosure Services devices 219ss* at scsibus? target ? lun ? # SCSI scanners 220uk* at scsibus? target ? lun ? # SCSI unknown 221 222# PCMCIA IDE controllers and disks 223wdc* at pcmcia? function ? 224atabus* at wdc? channel ? 225wd* at atabus? drive ? flags 0x0000 226 227# 228# Networking devices 229# 230an* at pcmcia? function ? # Aironet PC4500/PC4800 (802.11) 231awi* at pcmcia? function ? # BayStack 650/660 (802.11FH/DS) 232cnw* at pcmcia? function ? # Xircom/Netwave AirSurfer 233ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 234mbe* at pcmcia? function ? # MB8696x based Ethernet 235ne* at pcmcia? function ? # NE2000-compatible Ethernet 236ray* at pcmcia? function ? # Raytheon Raylink (802.11) 237sm* at pcmcia? function ? # Megahertz Ethernet 238tr* at pcmcia? function ? # TROPIC based Token-Ring 239wi* at pcmcia? function ? # Lucent/Intersil WaveLan IEEE (802.11) 240xirc* at pcmcia? function ? # Xircom CreditCard Ethernet 241com* at xirc? 242xi* at xirc? 243 244mhzc* at pcmcia? function ? # Megahertz Ethernet/Modem combo cards 245com* at mhzc? 246sm* at mhzc? 247 248# PCMCIA audio devices 249#esl* at pcmcia? function ? # ESS 1688 AudioDrive 250 251# Pseudo-Devices 252 253# disk/mass storage pseudo-devices 254pseudo-device md 1 # memory disk device (ramdisk) 255#pseudo-device vnd 4 # disk-like interface to files 256#pseudo-device fss 4 # file system snapshot device 257 258# network pseudo-devices 259pseudo-device bpfilter 4 # Berkeley packet filter 260pseudo-device loop # network loopback 261 262# miscellaneous pseudo-devices 263pseudo-device pty # pseudo-terminals 264#pseudo-device rnd # /dev/random and in-kernel generator 265 266pseudo-device wsmux # mouse & keyboard multiplexor 267