COMPUTEXEVB revision 1.6 1 1.6 jdolecek # $NetBSD: COMPUTEXEVB,v 1.6 2000/09/24 15:59:31 jdolecek Exp $
2 1.1 msaitoh #
3 1.1 msaitoh # GENERIC -- everything that's currently supported
4 1.1 msaitoh #
5 1.1 msaitoh
6 1.1 msaitoh include "arch/evbsh3/conf/std.evbsh3"
7 1.1 msaitoh
8 1.1 msaitoh # Enable the hooks used for initializing the root memory-disk.
9 1.1 msaitoh options MEMORY_DISK_HOOKS
10 1.1 msaitoh options MEMORY_DISK_IS_ROOT # force root on memory disk
11 1.1 msaitoh options MEMORY_DISK_SERVER=0 # no userspace memory disk support
12 1.1 msaitoh options MINIROOTSIZE=3074 # size of memory disk, in blocks
13 1.1 msaitoh
14 1.1 msaitoh maxusers 32 # estimated number of users
15 1.1 msaitoh
16 1.1 msaitoh # CPU support. At least one is REQUIRED.
17 1.1 msaitoh options SH7709A # 100MHz
18 1.1 msaitoh options PCLOCK=25000000 # 25.000MHz
19 1.4 msaitoh options IOM_ROM_BEGIN=0x00000000
20 1.4 msaitoh options IOM_ROM_SIZE=0x00100000 # 1MB
21 1.4 msaitoh options IOM_RAM_BEGIN=0x8c000000
22 1.1 msaitoh options IOM_RAM_SIZE=0x01000000 # 16MB
23 1.1 msaitoh options LED_ADDR=0xb8000000
24 1.1 msaitoh
25 1.1 msaitoh options BSC_BCR1_VAL =0x0008
26 1.1 msaitoh options BSC_BCR2_VAL =0x3fd0
27 1.1 msaitoh options BSC_WCR1_VAL =0x3ff3
28 1.1 msaitoh options BSC_WCR2_VAL =0xffdf
29 1.1 msaitoh options BSC_MCR_VAL =0x0004
30 1.1 msaitoh options BSC_SDMR_VAL =0xffffe088
31 1.1 msaitoh options BSC_RTCSR_VAL =0xa508
32 1.1 msaitoh options BSC_RTCNT_VAL =0xa500
33 1.1 msaitoh options BSC_RTCOR_VAL =0xa582
34 1.1 msaitoh options FRQCR_VAL =0x0122
35 1.1 msaitoh options PFC_SCPCR_VAL =0x00aa
36 1.5 msaitoh
37 1.5 msaitoh makeoptions LDSCRIPTBASE="sh.x" # for big endian
38 1.5 msaitoh #makeoptions LDSCRIPTBASE="shl.x" # for little endian
39 1.1 msaitoh
40 1.1 msaitoh # CPU-related options.
41 1.1 msaitoh #options MATH_EMULATE # floating point emulation
42 1.1 msaitoh
43 1.1 msaitoh # This option allows you to force a serial console at the specified
44 1.1 msaitoh # I/O address. see console(4) for details.
45 1.1 msaitoh #options "CONSDEVNAME=\"com\""
46 1.1 msaitoh
47 1.1 msaitoh # Standard system options
48 1.1 msaitoh
49 1.1 msaitoh #options UCONSOLE # users can use TIOCCONS (for xconsole)
50 1.1 msaitoh #options INSECURE # disable kernel security levels
51 1.1 msaitoh
52 1.1 msaitoh options RTC_OFFSET=-540 # hardware clock is this many mins. west of GMT
53 1.1 msaitoh options HZ=50 # clock interrupt generates every 1/HZ sec
54 1.1 msaitoh #options NTP # NTP phase/frequency locked loop
55 1.1 msaitoh
56 1.1 msaitoh #options KTRACE # system call tracing via ktrace(1)
57 1.1 msaitoh
58 1.1 msaitoh options SYSVMSG # System V-like message queues
59 1.1 msaitoh options SYSVSEM # System V-like semaphores
60 1.1 msaitoh options SYSVSHM # System V-like memory sharing
61 1.1 msaitoh #options SHMMAXPGS=1024 # 1024 pages is the default
62 1.1 msaitoh
63 1.1 msaitoh #options LKM # loadable kernel modules
64 1.1 msaitoh
65 1.1 msaitoh # Diagnostic/debugging support options
66 1.1 msaitoh #options DIAGNOSTIC # cheap kernel consistency checks
67 1.1 msaitoh #options DEBUG # expensive debugging checks/support
68 1.1 msaitoh #options KMEMSTATS # kernel memory statistics (vmstat -m)
69 1.1 msaitoh #options DDB # in-kernel debugger
70 1.1 msaitoh #options KGDB # remote debugger
71 1.1 msaitoh #options "KGDB_DEVNAME=\"com\"",KGDBADDR=0x3f8,KGDBRATE=9600
72 1.1 msaitoh makeoptions DEBUG="-g" # compile full symbol table
73 1.1 msaitoh options SYSCALL_DEBUG
74 1.1 msaitoh
75 1.1 msaitoh # Compatibility options
76 1.1 msaitoh options COMPAT_13 # NetBSD 1.3,
77 1.1 msaitoh options COMPAT_14 # NetBSD 1.4,
78 1.1 msaitoh options COMPAT_43 # and 4.3BSD
79 1.1 msaitoh
80 1.1 msaitoh # Executable format options
81 1.1 msaitoh #options EXEC_ELF32 # 32-bit ELF executables (SVR4, Linux)
82 1.2 msaitoh options EXEC_COFF # 32-bit COFF executables (sh-compiler)
83 1.1 msaitoh
84 1.1 msaitoh # File systems
85 1.1 msaitoh file-system FFS # UFS
86 1.1 msaitoh #file-system EXT2FS # second extended file system (linux)
87 1.1 msaitoh #file-system LFS # log-structured file system
88 1.1 msaitoh file-system MFS # memory file system
89 1.1 msaitoh file-system NFS # Network File System client
90 1.1 msaitoh #file-system CD9660 # ISO 9660 + Rock Ridge file system
91 1.1 msaitoh #file-system MSDOSFS # MS-DOS file system
92 1.1 msaitoh file-system FDESC # /dev/fd
93 1.1 msaitoh file-system KERNFS # /kern
94 1.1 msaitoh file-system NULLFS # loopback file system
95 1.1 msaitoh #file-system PORTAL # portal filesystem (still experimental)
96 1.1 msaitoh file-system PROCFS # /proc
97 1.1 msaitoh #file-system UMAPFS # NULLFS + uid and gid remapping
98 1.1 msaitoh #file-system UNION # union file system
99 1.1 msaitoh
100 1.1 msaitoh # File system options
101 1.1 msaitoh #options QUOTA # UFS quotas
102 1.1 msaitoh #options NFSSERVER # Network File System server
103 1.1 msaitoh #options FIFO # FIFOs; RECOMMENDED
104 1.1 msaitoh #options EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
105 1.1 msaitoh # immutable) behave as system flags.
106 1.1 msaitoh
107 1.1 msaitoh # Networking options
108 1.1 msaitoh options GATEWAY # packet forwarding
109 1.1 msaitoh options INET # IP + ICMP + TCP + UDP
110 1.1 msaitoh options MROUTING # IP multicast routing
111 1.1 msaitoh options NS # XNS
112 1.1 msaitoh #options NSIP # XNS tunneling over IP
113 1.1 msaitoh #options ISO,TPIP # OSI
114 1.1 msaitoh #options EON # OSI tunneling over IP
115 1.1 msaitoh #options CCITT,LLC,HDLC # X.25
116 1.1 msaitoh #options NETATALK # AppleTalk networking protocols
117 1.1 msaitoh #options PPP_BSDCOMP # BSD-Compress compression support for PPP
118 1.1 msaitoh #options PPP_DEFLATE # Deflate compression support for PPP
119 1.1 msaitoh #options PPP_FILTER # Active filter support for PPP (requires bpf)
120 1.1 msaitoh #options PFIL_HOOKS # pfil(9) packet filter hooks
121 1.1 msaitoh
122 1.1 msaitoh # Compatibility with 4.2BSD implementation of TCP/IP. Not recommended.
123 1.1 msaitoh #options TCP_COMPAT_42
124 1.1 msaitoh
125 1.1 msaitoh # These options enable verbose messages for several subsystems.
126 1.1 msaitoh # Warning, these may compile large string tables into the kernel!
127 1.1 msaitoh #options PCMCIAVERBOSE # verbose PCMCIA configuration messages
128 1.1 msaitoh
129 1.1 msaitoh # Kernel root file system and dump configuration.
130 1.1 msaitoh config netbsd root on ? type ?
131 1.1 msaitoh #config netbsd root on ? type nfs
132 1.1 msaitoh #config netbsd root on wd0a type ffs
133 1.1 msaitoh
134 1.1 msaitoh #
135 1.1 msaitoh # Device configuration
136 1.1 msaitoh #
137 1.1 msaitoh
138 1.1 msaitoh mainbus0 at root
139 1.1 msaitoh
140 1.1 msaitoh shb* at mainbus?
141 1.3 msaitoh
142 1.3 msaitoh # WatchDog Timer
143 1.3 msaitoh wdog0 at shb? port 0xffffff84
144 1.1 msaitoh
145 1.1 msaitoh # Serial Devices
146 1.1 msaitoh
147 1.1 msaitoh # 115200bps (3.2%)
148 1.1 msaitoh # 57600bps (3.2%)
149 1.1 msaitoh # 38400bps (1.7%)
150 1.1 msaitoh # 19200bps (0.8%)
151 1.1 msaitoh # 9600bps (0.6%)
152 1.1 msaitoh
153 1.1 msaitoh #options SCICONSOLE,SCICN_SPEED=115200
154 1.1 msaitoh #sci0 at shb? port 0xa4000008 irq 12
155 1.1 msaitoh
156 1.1 msaitoh options SCIFCONSOLE,SCIFCN_SPEED=115200
157 1.1 msaitoh scif0 at shb? port 0xa4000008 irq 12
158 1.1 msaitoh
159 1.1 msaitoh # Miscellaneous mass storage devices
160 1.1 msaitoh
161 1.1 msaitoh # Network Interfaces
162 1.1 msaitoh
163 1.1 msaitoh # MII bus support
164 1.1 msaitoh #mii* at tl?
165 1.1 msaitoh
166 1.1 msaitoh # MII PHY network interfaces
167 1.1 msaitoh #tlphy* at mii? dev ? # ThunderLAN PHYs
168 1.1 msaitoh #nsphy* at mii? dev ? # NS and compatible PHYs
169 1.1 msaitoh
170 1.1 msaitoh
171 1.1 msaitoh # Pull in optional local configuration
172 1.1 msaitoh include "arch/evbsh3/conf/GENERIC.local"
173 1.1 msaitoh
174 1.1 msaitoh
175 1.1 msaitoh # Pseudo-Devices
176 1.1 msaitoh
177 1.1 msaitoh # disk/mass storage pseudo-devices
178 1.1 msaitoh #pseudo-device ccd 4 # concatenated/striped disk devices
179 1.1 msaitoh pseudo-device md 1 # memory disk device (ramdisk)
180 1.1 msaitoh pseudo-device vnd 4 # disk-like interface to files
181 1.1 msaitoh
182 1.1 msaitoh # network pseudo-devices
183 1.1 msaitoh #pseudo-device bpfilter 8 # Berkeley packet filter
184 1.1 msaitoh #pseudo-device ipfilter # IP filter (firewall) and NAT
185 1.1 msaitoh pseudo-device loop # network loopback
186 1.1 msaitoh pseudo-device ppp 2 # Point-to-Point Protocol
187 1.1 msaitoh #pseudo-device sl 2 # Serial Line IP
188 1.1 msaitoh #pseudo-device strip 2 # Starmode Radio IP (Metricom)
189 1.1 msaitoh pseudo-device tun 2 # network tunneling over tty
190 1.1 msaitoh
191 1.1 msaitoh # miscellaneous pseudo-devices
192 1.6 jdolecek pseudo-device pty # pseudo-terminals
193 1.1 msaitoh #pseudo-device tb 1 # tablet line discipline
194 1.1 msaitoh
195 1.1 msaitoh # rnd is EXPERIMENTAL at this point.
196 1.1 msaitoh #pseudo-device rnd # /dev/random and in-kernel generator
197 1.1 msaitoh #options RND_COM # use "com" randomness as well (BROKEN)
198