COMPUTEX7750 revision 1.6
1# $NetBSD: COMPUTEX7750,v 1.6 2000/08/12 06:59:01 msaitoh Exp $ 2# 3# GENERIC -- everything that's currently supported 4# 5 6include "arch/evbsh3/conf/std.evbsh3" 7 8# Enable the hooks used for initializing the root memory-disk. 9options MEMORY_DISK_HOOKS 10options MEMORY_DISK_IS_ROOT # force root on memory disk 11options MEMORY_DISK_SERVER=0 # no userspace memory disk support 12options MINIROOTSIZE=2880 # size of memory disk, in blocks 13 14maxusers 16 # estimated number of users 15 16# CPU support 17options SH7750 18options SH4 19options SH4_PCMCIA 20options EVBSH4 21options MMEYE 22#options MMEYE_NEW_INT 23#options MMEYE_50M 24#options MMEYE_NO_CACHE 25options PCLOCK=33333300 # 33.3333MHz 26options IOM_ROM_BEGIN=0x00000000 27options IOM_ROM_SIZE=0x00100000 # 1MB 28options IOM_RAM_BEGIN=0x8c000000 29options IOM_RAM_SIZE=0x02000000 # 32MB 30options INITTODR_ALWAYS_USE_RTC 31options BRAINS 32options USE_RTCCLK 33options SYNC_CLOCK_TO_RTC 34 35options TEXT_START_ADDR=0x88010000 36 37options BSC_BCR1_VAL =0x0000000c 38options BSC_BCR2_VAL =0xff34 39options BSC_WCR1_VAL =0x07770777 40options BSC_WCR2_VAL =0xffff4e27 41options BSC_WCR3_VAL =0x07777777 42#options BSC_MCR_VAL =0xc0010014 43options BSC_MCR_VAL =0x80010014 44#options BSC_PCR_VAL =0x08eb 45options BSC_RTCSR_VAL =0xa508 46#options BSC_RTCNT_VAL =0xa500 47options BSC_RTCOR_VAL =0xa582 48#options BSC_RFCR_VAL =0xa400 49options FRQCR_VAL =0x0e23 50options BSC_SDMR3_VAL =0xff940110 51 52makeoptions LDSCRIPTBASE="sh.x" # for big endian 53#makeoptions LDSCRIPTBASE="shl.x" # for little endian 54 55# Standard system options 56#options UCONSOLE # users can use TIOCCONS (for xconsole) 57#options INSECURE # disable kernel security levels 58 59options RTC_OFFSET=0 # hardware clock is this many mins. west of GMT 60options HZ=64 # clock interrupt generates every 1/HZ sec 61#options NTP # NTP phase/frequency locked loop 62 63#options KTRACE # system call tracing via ktrace(1) 64 65#options SYSVMSG # System V-like message queues 66#options SYSVSEM # System V-like semaphores 67#options SYSVSHM # System V-like memory sharing 68#options SHMMAXPGS=1024 # 1024 pages is the default 69 70# Diagnostic/debugging support options 71#options DIAGNOSTIC # cheap kernel consistency checks 72#options DEBUG # expensive debugging checks/support 73#options DDB # in-kernel debugger 74#makeoptions DEBUG="-g" # compile full symbol table 75#options SYSCALL_DEBUG 76#options UVMHIST 77#options UVMHIST_PRINT 78 79# Compatibility options 80options COMPAT_13 # NetBSD 1.3 81options COMPAT_14 # NetBSD 1.4, 82options COMPAT_43 # and 4.3BSD 83 84# Executable format options 85options EXEC_COFF # COFF executables 86#options EXEC_ELF32 # 32-bit ELF executables 87 88# File systems 89file-system FFS # UFS 90file-system MFS # memory file system 91#file-system NFS # Network File System client 92file-system PROCFS # /proc 93file-system KERNFS # /kern 94file-system NULLFS # loopback file system 95file-system UMAPFS # NULLFS + uid and gid remapping 96 97# File system options 98#options QUOTA # UFS quotas 99#options NFSSERVER # Network File System server 100 101# Networking options 102options INET # IP + ICMP + TCP + UDP 103#options NFS_BOOT_DHCP # Support DHCP NFS root 104 105#options PCIVERBOSE # verbose PCI device autoconfig messages 106#options PCI_CONFIG_DUMP # verbosely dump PCI config space 107#options PCMCIAVERBOSE # verbose PCMCIA configuration messages 108 109# Kernel root file system and dump configuration. 110#config netbsd root on ? type nfs 111#config netbsd root on wd0a type ffs 112config netbsd root on ? type ffs 113 114# 115# Device configuration 116# 117 118mainbus0 at root 119 120shb* at mainbus? 121 122# Serial Devices 123 124options SCICONSOLE,SCICN_SPEED=115200 125sci0 at shb? port 0xffe00000 irq 11 126 127#options SCIFCN_SPEED=115200 128#scif0 at shb? port 0xffe80000 irq 12 129 130#com0 at shb? port 0xa4000000 irq 11 131#com1 at shb? port 0xa4000008 irq 12 132 133# SH PCMCIA controllers 134#shpcic0 at shb? port 0xb000000a iomem 0xb8000000 iosiz 0x1000000 135#shpcic1 at shb? port 0xb000000c iomem 0xb9000000 iosiz 0x1000000 136 137# PCMCIA bus support 138#pcmcia* at shpcic? controller ? socket ? 139 140#com* at pcmcia? function ? # Modems and serial cards 141#wdc* at pcmcia? function ? 142#wd* at wdc? drive ? # the drives themselves 143 144#ep* at pcmcia? function ? # 3Com 3c589 and 3c562 Ethernet 145#mbe* at pcmcia? function ? # MB8696x based Ethernet 146#ne* at pcmcia? function ? # NE2000-compatible Ethernet 147#sm* at pcmcia? function ? # Megahertz Ethernet 148 149#pseudo-device vnd 4 # disk-like interface to files 150#pseudo-device bpfilter 8 # Berkeley packet filter 151#pseudo-device ipfilter # IP filter (firewall) and NAT 152pseudo-device loop # network loopback 153pseudo-device pty 16 # pseudo-terminals 154#pseudo-device ppp 2 # Point-to-Point Protocol 155#pseudo-device tun 2 # network tunneling over tty 156 157# Enable the hooks used for initializing the root memory-disk. 158#options MEMORY_DISK_HOOKS 159#options MEMORY_DISK_IS_ROOT # force root on memory disk 160#options MEMORY_DISK_SERVER=0 # no userspace memory disk support 161#options MINIROOTSIZE=3074 # size of memory disk, in blocks 162 163pseudo-device md 1 # memory disk device (ramdisk) 164