machdep.c revision 1.84 1 1.84 chs /* $NetBSD: machdep.c,v 1.84 2002/10/20 02:37:38 chs Exp $ */
2 1.1 gwr
3 1.1 gwr /*
4 1.1 gwr * Copyright (c) 1988 University of Utah.
5 1.1 gwr * Copyright (c) 1982, 1986, 1990, 1993
6 1.1 gwr * The Regents of the University of California. All rights reserved.
7 1.1 gwr *
8 1.1 gwr * This code is derived from software contributed to Berkeley by
9 1.1 gwr * the Systems Programming Group of the University of Utah Computer
10 1.1 gwr * Science Department.
11 1.1 gwr *
12 1.1 gwr * Redistribution and use in source and binary forms, with or without
13 1.1 gwr * modification, are permitted provided that the following conditions
14 1.1 gwr * are met:
15 1.1 gwr * 1. Redistributions of source code must retain the above copyright
16 1.1 gwr * notice, this list of conditions and the following disclaimer.
17 1.1 gwr * 2. Redistributions in binary form must reproduce the above copyright
18 1.1 gwr * notice, this list of conditions and the following disclaimer in the
19 1.1 gwr * documentation and/or other materials provided with the distribution.
20 1.1 gwr * 3. All advertising materials mentioning features or use of this software
21 1.1 gwr * must display the following acknowledgement:
22 1.1 gwr * This product includes software developed by the University of
23 1.1 gwr * California, Berkeley and its contributors.
24 1.1 gwr * 4. Neither the name of the University nor the names of its contributors
25 1.1 gwr * may be used to endorse or promote products derived from this software
26 1.1 gwr * without specific prior written permission.
27 1.1 gwr *
28 1.1 gwr * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 1.1 gwr * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 1.1 gwr * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 1.1 gwr * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 1.1 gwr * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 1.1 gwr * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 1.1 gwr * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 1.1 gwr * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 1.1 gwr * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 1.1 gwr * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 1.1 gwr * SUCH DAMAGE.
39 1.1 gwr *
40 1.1 gwr * from: Utah Hdr: machdep.c 1.74 92/12/20
41 1.1 gwr * from: @(#)machdep.c 8.10 (Berkeley) 4/20/94
42 1.1 gwr */
43 1.1 gwr
44 1.35 jonathan #include "opt_ddb.h"
45 1.69 lukem #include "opt_kgdb.h"
46 1.34 gwr
47 1.1 gwr #include <sys/param.h>
48 1.1 gwr #include <sys/systm.h>
49 1.1 gwr #include <sys/kernel.h>
50 1.1 gwr #include <sys/proc.h>
51 1.1 gwr #include <sys/buf.h>
52 1.1 gwr #include <sys/reboot.h>
53 1.1 gwr #include <sys/conf.h>
54 1.1 gwr #include <sys/file.h>
55 1.37 kleink #include <sys/device.h>
56 1.1 gwr #include <sys/malloc.h>
57 1.1 gwr #include <sys/mbuf.h>
58 1.1 gwr #include <sys/msgbuf.h>
59 1.1 gwr #include <sys/ioctl.h>
60 1.1 gwr #include <sys/tty.h>
61 1.1 gwr #include <sys/mount.h>
62 1.1 gwr #include <sys/user.h>
63 1.1 gwr #include <sys/exec.h>
64 1.1 gwr #include <sys/core.h>
65 1.1 gwr #include <sys/kcore.h>
66 1.1 gwr #include <sys/vnode.h>
67 1.1 gwr #include <sys/syscallargs.h>
68 1.8 gwr #ifdef KGDB
69 1.8 gwr #include <sys/kgdb.h>
70 1.8 gwr #endif
71 1.26 hannken
72 1.42 mrg #include <uvm/uvm_extern.h>
73 1.34 gwr
74 1.26 hannken #include <sys/sysctl.h>
75 1.1 gwr
76 1.1 gwr #include <dev/cons.h>
77 1.1 gwr
78 1.1 gwr #include <machine/cpu.h>
79 1.29 gwr #include <machine/dvma.h>
80 1.29 gwr #include <machine/idprom.h>
81 1.29 gwr #include <machine/kcore.h>
82 1.1 gwr #include <machine/reg.h>
83 1.1 gwr #include <machine/psl.h>
84 1.1 gwr #include <machine/pte.h>
85 1.29 gwr
86 1.41 kleink #if defined(DDB)
87 1.1 gwr #include <machine/db_machdep.h>
88 1.33 gwr #include <ddb/db_sym.h>
89 1.32 tv #include <ddb/db_extern.h>
90 1.41 kleink #endif
91 1.1 gwr
92 1.29 gwr #include <sun3/sun3/machdep.h>
93 1.1 gwr
94 1.1 gwr /* Defined in locore.s */
95 1.1 gwr extern char kernel_text[];
96 1.1 gwr /* Defined by the linker */
97 1.1 gwr extern char etext[];
98 1.56 thorpej
99 1.56 thorpej /* Our exported CPU info; we can have only one. */
100 1.56 thorpej struct cpu_info cpu_info_store;
101 1.1 gwr
102 1.70 chs struct vm_map *exec_map = NULL;
103 1.70 chs struct vm_map *mb_map = NULL;
104 1.70 chs struct vm_map *phys_map = NULL;
105 1.34 gwr
106 1.1 gwr int physmem;
107 1.9 gwr int fputype;
108 1.22 leo caddr_t msgbufaddr;
109 1.1 gwr
110 1.29 gwr /* Virtual page frame for /dev/mem (see mem.c) */
111 1.73 tsutsui vaddr_t vmmap;
112 1.79 lukem
113 1.79 lukem union sun3sir sun3sir;
114 1.1 gwr
115 1.1 gwr /*
116 1.1 gwr * safepri is a safe priority for sleep to set for a spin-wait
117 1.1 gwr * during autoconfiguration or after a panic.
118 1.1 gwr */
119 1.1 gwr int safepri = PSL_LOWIPL;
120 1.1 gwr
121 1.29 gwr u_char cpu_machine_id = 0;
122 1.15 gwr char *cpu_string = NULL;
123 1.15 gwr int cpu_has_vme = 0;
124 1.15 gwr int has_iocache = 0;
125 1.15 gwr
126 1.66 chs vaddr_t dumppage;
127 1.66 chs
128 1.1 gwr static void identifycpu __P((void));
129 1.1 gwr static void initcpu __P((void));
130 1.1 gwr
131 1.1 gwr /*
132 1.1 gwr * Console initialization: called early on from main,
133 1.15 gwr * before vm init or cpu_startup. This system is able
134 1.29 gwr * to use the console for output immediately (via PROM)
135 1.29 gwr * but can not use it for input until after this point.
136 1.1 gwr */
137 1.8 gwr void
138 1.8 gwr consinit()
139 1.1 gwr {
140 1.29 gwr
141 1.29 gwr /*
142 1.29 gwr * Switch from the PROM console (output only)
143 1.29 gwr * to our own console driver.
144 1.29 gwr */
145 1.29 gwr cninit();
146 1.1 gwr
147 1.1 gwr #ifdef DDB
148 1.32 tv {
149 1.63 chs extern int nsym;
150 1.63 chs extern char *ssym, *esym;
151 1.32 tv
152 1.63 chs ddb_init(nsym, ssym, esym);
153 1.32 tv }
154 1.72 simonb #endif /* DDB */
155 1.31 gwr
156 1.31 gwr /*
157 1.31 gwr * Now that the console can do input as well as
158 1.31 gwr * output, consider stopping for a debugger.
159 1.31 gwr */
160 1.31 gwr if (boothowto & RB_KDB) {
161 1.31 gwr #ifdef KGDB
162 1.31 gwr /* XXX - Ask on console for kgdb_dev? */
163 1.31 gwr /* Note: this will just return if kgdb_dev==NODEV */
164 1.31 gwr kgdb_connect(1);
165 1.31 gwr #else /* KGDB */
166 1.31 gwr /* Either DDB or no debugger (just PROM). */
167 1.1 gwr Debugger();
168 1.31 gwr #endif /* KGDB */
169 1.31 gwr }
170 1.1 gwr }
171 1.1 gwr
172 1.1 gwr /*
173 1.1 gwr * cpu_startup: allocate memory for variable-sized tables,
174 1.1 gwr * initialize cpu, and do autoconfiguration.
175 1.1 gwr *
176 1.1 gwr * This is called early in init_main.c:main(), after the
177 1.1 gwr * kernel memory allocator is ready for use, but before
178 1.1 gwr * the creation of processes 1,2, and mountroot, etc.
179 1.1 gwr */
180 1.1 gwr void
181 1.1 gwr cpu_startup()
182 1.1 gwr {
183 1.1 gwr caddr_t v;
184 1.73 tsutsui vsize_t size;
185 1.80 thorpej int sz, i, base, residual;
186 1.73 tsutsui vaddr_t minaddr, maxaddr;
187 1.50 lukem char pbuf[9];
188 1.1 gwr
189 1.1 gwr /*
190 1.1 gwr * Initialize message buffer (for kernel printf).
191 1.1 gwr * This is put in physical page zero so it will
192 1.1 gwr * always be in the same place after a reboot.
193 1.1 gwr * Its mapping was prepared in pmap_bootstrap().
194 1.1 gwr * Also, offset some to avoid PROM scribbles.
195 1.1 gwr */
196 1.1 gwr v = (caddr_t) KERNBASE;
197 1.23 gwr msgbufaddr = (caddr_t)(v + MSGBUFOFF);
198 1.23 gwr initmsgbuf(msgbufaddr, MSGBUFSIZE);
199 1.1 gwr
200 1.1 gwr /*
201 1.1 gwr * Good {morning,afternoon,evening,night}.
202 1.1 gwr */
203 1.1 gwr printf(version);
204 1.1 gwr identifycpu();
205 1.1 gwr initfpu(); /* also prints FPU type */
206 1.1 gwr
207 1.50 lukem format_bytes(pbuf, sizeof(pbuf), ctob(physmem));
208 1.50 lukem printf("total memory = %s\n", pbuf);
209 1.1 gwr
210 1.1 gwr /*
211 1.66 chs * Get scratch page for dumpsys().
212 1.66 chs */
213 1.66 chs if ((dumppage = uvm_km_alloc(kernel_map, NBPG)) == 0)
214 1.66 chs panic("startup: alloc dumppage");
215 1.66 chs
216 1.66 chs /*
217 1.1 gwr * Find out how much space we need, allocate it,
218 1.1 gwr * and then give everything true virtual addresses.
219 1.1 gwr */
220 1.80 thorpej sz = (u_int)allocsys(NULL, NULL);
221 1.42 mrg if ((v = (caddr_t)uvm_km_alloc(kernel_map, round_page(sz))) == 0)
222 1.1 gwr panic("startup: no room for tables");
223 1.50 lukem if (allocsys(v, NULL) - v != sz)
224 1.1 gwr panic("startup: table size inconsistency");
225 1.1 gwr
226 1.1 gwr /*
227 1.1 gwr * Now allocate buffers proper. They are different than the above
228 1.1 gwr * in that they usually occupy more virtual memory than physical.
229 1.1 gwr */
230 1.1 gwr size = MAXBSIZE * nbuf;
231 1.73 tsutsui if (uvm_map(kernel_map, (vaddr_t *) &buffers, round_page(size),
232 1.60 thorpej NULL, UVM_UNKNOWN_OFFSET, 0,
233 1.34 gwr UVM_MAPFLAG(UVM_PROT_NONE, UVM_PROT_NONE, UVM_INH_NONE,
234 1.64 chs UVM_ADV_NORMAL, 0)) != 0)
235 1.34 gwr panic("startup: cannot allocate VM for buffers");
236 1.73 tsutsui minaddr = (vaddr_t)buffers;
237 1.1 gwr if ((bufpages / nbuf) >= btoc(MAXBSIZE)) {
238 1.1 gwr /* don't want to alloc more physical mem than needed */
239 1.1 gwr bufpages = btoc(MAXBSIZE) * nbuf;
240 1.1 gwr }
241 1.1 gwr base = bufpages / nbuf;
242 1.1 gwr residual = bufpages % nbuf;
243 1.1 gwr for (i = 0; i < nbuf; i++) {
244 1.73 tsutsui vsize_t curbufsize;
245 1.73 tsutsui vaddr_t curbuf;
246 1.34 gwr struct vm_page *pg;
247 1.34 gwr
248 1.34 gwr /*
249 1.34 gwr * Each buffer has MAXBSIZE bytes of VM space allocated. Of
250 1.34 gwr * that MAXBSIZE space, we allocate and map (base+1) pages
251 1.34 gwr * for the first "residual" buffers, and then we allocate
252 1.34 gwr * "base" pages for the rest.
253 1.34 gwr */
254 1.73 tsutsui curbuf = (vaddr_t) buffers + (i * MAXBSIZE);
255 1.54 ragge curbufsize = NBPG * ((i < residual) ? (base+1) : base);
256 1.34 gwr
257 1.34 gwr while (curbufsize) {
258 1.47 chs pg = uvm_pagealloc(NULL, 0, NULL, 0);
259 1.34 gwr if (pg == NULL)
260 1.34 gwr panic("cpu_startup: not enough memory for "
261 1.34 gwr "buffer cache");
262 1.52 chs pmap_kenter_pa(curbuf, VM_PAGE_TO_PHYS(pg),
263 1.52 chs VM_PROT_READ|VM_PROT_WRITE);
264 1.34 gwr curbuf += PAGE_SIZE;
265 1.34 gwr curbufsize -= PAGE_SIZE;
266 1.34 gwr }
267 1.1 gwr }
268 1.75 chris pmap_update(pmap_kernel());
269 1.1 gwr
270 1.1 gwr /*
271 1.1 gwr * Allocate a submap for exec arguments. This map effectively
272 1.1 gwr * limits the number of processes exec'ing at any time.
273 1.1 gwr */
274 1.34 gwr exec_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
275 1.51 thorpej 16*NCARGS, VM_MAP_PAGEABLE, FALSE, NULL);
276 1.1 gwr
277 1.1 gwr /*
278 1.84 chs * Allocate a submap for physio
279 1.1 gwr */
280 1.84 chs phys_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
281 1.84 chs VM_PHYS_SIZE, 0, FALSE, NULL);
282 1.1 gwr
283 1.1 gwr /*
284 1.12 thorpej * Finally, allocate mbuf cluster submap.
285 1.1 gwr */
286 1.39 thorpej mb_map = uvm_km_suballoc(kernel_map, &minaddr, &maxaddr,
287 1.51 thorpej nmbclusters * mclbytes, VM_MAP_INTRSAFE,
288 1.51 thorpej FALSE, NULL);
289 1.1 gwr
290 1.50 lukem format_bytes(pbuf, sizeof(pbuf), ptoa(uvmexp.free));
291 1.50 lukem printf("avail memory = %s\n", pbuf);
292 1.54 ragge format_bytes(pbuf, sizeof(pbuf), bufpages * NBPG);
293 1.80 thorpej printf("using %u buffers containing %s of memory\n", nbuf, pbuf);
294 1.1 gwr
295 1.1 gwr /*
296 1.1 gwr * Allocate a virtual page (for use by /dev/mem)
297 1.1 gwr * This page is handed to pmap_enter() therefore
298 1.1 gwr * it has to be in the normal kernel VA range.
299 1.1 gwr */
300 1.34 gwr vmmap = uvm_km_valloc_wait(kernel_map, NBPG);
301 1.1 gwr
302 1.1 gwr /*
303 1.1 gwr * Create the DVMA maps.
304 1.1 gwr */
305 1.1 gwr dvma_init();
306 1.1 gwr
307 1.1 gwr /*
308 1.1 gwr * Set up CPU-specific registers, cache, etc.
309 1.1 gwr */
310 1.1 gwr initcpu();
311 1.1 gwr
312 1.1 gwr /*
313 1.1 gwr * Set up buffers, so they can be used to read disk labels.
314 1.1 gwr */
315 1.1 gwr bufinit();
316 1.1 gwr }
317 1.1 gwr
318 1.1 gwr /*
319 1.1 gwr * Set registers on exec.
320 1.1 gwr */
321 1.1 gwr void
322 1.19 mycroft setregs(p, pack, stack)
323 1.34 gwr struct proc *p;
324 1.1 gwr struct exec_package *pack;
325 1.1 gwr u_long stack;
326 1.1 gwr {
327 1.5 gwr struct trapframe *tf = (struct trapframe *)p->p_md.md_regs;
328 1.1 gwr
329 1.21 mycroft tf->tf_sr = PSL_USERSET;
330 1.5 gwr tf->tf_pc = pack->ep_entry & ~1;
331 1.20 mycroft tf->tf_regs[D0] = 0;
332 1.20 mycroft tf->tf_regs[D1] = 0;
333 1.20 mycroft tf->tf_regs[D2] = 0;
334 1.20 mycroft tf->tf_regs[D3] = 0;
335 1.20 mycroft tf->tf_regs[D4] = 0;
336 1.20 mycroft tf->tf_regs[D5] = 0;
337 1.20 mycroft tf->tf_regs[D6] = 0;
338 1.20 mycroft tf->tf_regs[D7] = 0;
339 1.20 mycroft tf->tf_regs[A0] = 0;
340 1.20 mycroft tf->tf_regs[A1] = 0;
341 1.78 christos tf->tf_regs[A2] = (int)p->p_psstr;
342 1.20 mycroft tf->tf_regs[A3] = 0;
343 1.20 mycroft tf->tf_regs[A4] = 0;
344 1.20 mycroft tf->tf_regs[A5] = 0;
345 1.20 mycroft tf->tf_regs[A6] = 0;
346 1.5 gwr tf->tf_regs[SP] = stack;
347 1.1 gwr
348 1.1 gwr /* restore a null state frame */
349 1.1 gwr p->p_addr->u_pcb.pcb_fpregs.fpf_null = 0;
350 1.19 mycroft if (fputype)
351 1.1 gwr m68881_restore(&p->p_addr->u_pcb.pcb_fpregs);
352 1.19 mycroft
353 1.1 gwr p->p_md.md_flags = 0;
354 1.1 gwr }
355 1.1 gwr
356 1.1 gwr /*
357 1.1 gwr * Info for CTL_HW
358 1.1 gwr */
359 1.46 gwr char machine[16] = MACHINE; /* from <machine/param.h> */
360 1.46 gwr char kernel_arch[16] = "sun3x"; /* XXX needs a sysctl node */
361 1.1 gwr char cpu_model[120];
362 1.15 gwr
363 1.15 gwr /*
364 1.15 gwr * XXX - Should empirically estimate the divisor...
365 1.15 gwr * Note that the value of delay_divisor is roughly
366 1.15 gwr * 2048 / cpuclock (where cpuclock is in MHz).
367 1.15 gwr */
368 1.16 gwr int delay_divisor = 62; /* assume the fastest (33 MHz) */
369 1.1 gwr
370 1.1 gwr void
371 1.1 gwr identifycpu()
372 1.1 gwr {
373 1.29 gwr u_char machtype;
374 1.1 gwr
375 1.15 gwr machtype = identity_prom.idp_machtype;
376 1.29 gwr if ((machtype & IDM_ARCH_MASK) != IDM_ARCH_SUN3X) {
377 1.29 gwr printf("Bad IDPROM arch!\n");
378 1.15 gwr sunmon_abort();
379 1.15 gwr }
380 1.15 gwr
381 1.29 gwr cpu_machine_id = machtype;
382 1.15 gwr switch (cpu_machine_id) {
383 1.15 gwr
384 1.15 gwr case SUN3X_MACH_80:
385 1.15 gwr cpu_string = "80"; /* Hydra */
386 1.16 gwr delay_divisor = 102; /* 20 MHz */
387 1.15 gwr cpu_has_vme = FALSE;
388 1.15 gwr break;
389 1.15 gwr
390 1.15 gwr case SUN3X_MACH_470:
391 1.15 gwr cpu_string = "470"; /* Pegasus */
392 1.15 gwr delay_divisor = 62; /* 33 MHz */
393 1.15 gwr cpu_has_vme = TRUE;
394 1.15 gwr break;
395 1.15 gwr
396 1.15 gwr default:
397 1.15 gwr printf("unknown sun3x model\n");
398 1.15 gwr sunmon_abort();
399 1.15 gwr }
400 1.15 gwr
401 1.15 gwr /* Other stuff? (VAC, mc6888x version, etc.) */
402 1.46 gwr /* Note: miniroot cares about the kernel_arch part. */
403 1.46 gwr sprintf(cpu_model, "%s %s", kernel_arch, cpu_string);
404 1.1 gwr
405 1.29 gwr printf("Model: %s\n", cpu_model);
406 1.1 gwr }
407 1.1 gwr
408 1.1 gwr /*
409 1.1 gwr * machine dependent system variables.
410 1.1 gwr */
411 1.1 gwr int
412 1.1 gwr cpu_sysctl(name, namelen, oldp, oldlenp, newp, newlen, p)
413 1.1 gwr int *name;
414 1.1 gwr u_int namelen;
415 1.1 gwr void *oldp;
416 1.1 gwr size_t *oldlenp;
417 1.1 gwr void *newp;
418 1.1 gwr size_t newlen;
419 1.1 gwr struct proc *p;
420 1.1 gwr {
421 1.1 gwr int error;
422 1.1 gwr dev_t consdev;
423 1.1 gwr
424 1.1 gwr /* all sysctl names at this level are terminal */
425 1.1 gwr if (namelen != 1)
426 1.1 gwr return (ENOTDIR); /* overloaded */
427 1.1 gwr
428 1.1 gwr switch (name[0]) {
429 1.1 gwr case CPU_CONSDEV:
430 1.1 gwr if (cn_tab != NULL)
431 1.1 gwr consdev = cn_tab->cn_dev;
432 1.1 gwr else
433 1.1 gwr consdev = NODEV;
434 1.1 gwr error = sysctl_rdstruct(oldp, oldlenp, newp,
435 1.1 gwr &consdev, sizeof consdev);
436 1.1 gwr break;
437 1.1 gwr
438 1.1 gwr #if 0 /* XXX - Not yet... */
439 1.1 gwr case CPU_ROOT_DEVICE:
440 1.1 gwr error = sysctl_rdstring(oldp, oldlenp, newp, root_device);
441 1.1 gwr break;
442 1.1 gwr
443 1.1 gwr case CPU_BOOTED_KERNEL:
444 1.1 gwr error = sysctl_rdstring(oldp, oldlenp, newp, booted_kernel);
445 1.1 gwr break;
446 1.1 gwr #endif
447 1.1 gwr
448 1.1 gwr default:
449 1.1 gwr error = EOPNOTSUPP;
450 1.1 gwr }
451 1.1 gwr return (error);
452 1.1 gwr }
453 1.1 gwr
454 1.7 gwr /* See: sig_machdep.c */
455 1.1 gwr
456 1.1 gwr /*
457 1.1 gwr * Do a sync in preparation for a reboot.
458 1.1 gwr * XXX - This could probably be common code.
459 1.1 gwr * XXX - And now, most of it is in vfs_shutdown()
460 1.1 gwr * XXX - Put waittime checks in there too?
461 1.1 gwr */
462 1.1 gwr int waittime = -1; /* XXX - Who else looks at this? -gwr */
463 1.1 gwr static void
464 1.1 gwr reboot_sync __P((void))
465 1.1 gwr {
466 1.1 gwr
467 1.1 gwr /* Check waittime here to localize its use to this function. */
468 1.1 gwr if (waittime >= 0)
469 1.1 gwr return;
470 1.1 gwr waittime = 0;
471 1.1 gwr vfs_shutdown();
472 1.1 gwr }
473 1.1 gwr
474 1.1 gwr /*
475 1.1 gwr * Common part of the BSD and SunOS reboot system calls.
476 1.1 gwr */
477 1.1 gwr __dead void
478 1.11 gwr cpu_reboot(howto, user_boot_string)
479 1.1 gwr int howto;
480 1.1 gwr char *user_boot_string;
481 1.1 gwr {
482 1.2 gwr /* Note: this string MUST be static! */
483 1.2 gwr static char bootstr[128];
484 1.2 gwr char *p;
485 1.1 gwr
486 1.1 gwr /* If system is cold, just halt. (early panic?) */
487 1.1 gwr if (cold)
488 1.1 gwr goto haltsys;
489 1.1 gwr
490 1.24 gwr /* Un-blank the screen if appropriate. */
491 1.24 gwr cnpollc(1);
492 1.24 gwr
493 1.1 gwr if ((howto & RB_NOSYNC) == 0) {
494 1.1 gwr reboot_sync();
495 1.1 gwr /*
496 1.1 gwr * If we've been adjusting the clock, the todr
497 1.1 gwr * will be out of synch; adjust it now.
498 1.1 gwr *
499 1.1 gwr * XXX - However, if the kernel has been sitting in ddb,
500 1.1 gwr * the time will be way off, so don't set the HW clock!
501 1.1 gwr * XXX - Should do sanity check against HW clock. -gwr
502 1.1 gwr */
503 1.1 gwr /* resettodr(); */
504 1.1 gwr }
505 1.1 gwr
506 1.1 gwr /* Disable interrupts. */
507 1.1 gwr splhigh();
508 1.1 gwr
509 1.1 gwr /* Write out a crash dump if asked. */
510 1.1 gwr if (howto & RB_DUMP)
511 1.1 gwr dumpsys();
512 1.1 gwr
513 1.1 gwr /* run any shutdown hooks */
514 1.1 gwr doshutdownhooks();
515 1.1 gwr
516 1.1 gwr if (howto & RB_HALT) {
517 1.1 gwr haltsys:
518 1.63 chs printf("halted.\n");
519 1.61 tsutsui sunmon_halt();
520 1.1 gwr }
521 1.1 gwr
522 1.1 gwr /*
523 1.1 gwr * Automatic reboot.
524 1.1 gwr */
525 1.2 gwr if (user_boot_string)
526 1.2 gwr strncpy(bootstr, user_boot_string, sizeof(bootstr));
527 1.2 gwr else {
528 1.1 gwr /*
529 1.1 gwr * Build our own boot string with an empty
530 1.1 gwr * boot device/file and (maybe) some flags.
531 1.1 gwr * The PROM will supply the device/file name.
532 1.1 gwr */
533 1.2 gwr p = bootstr;
534 1.2 gwr *p = '\0';
535 1.1 gwr if (howto & (RB_KDB|RB_ASKNAME|RB_SINGLE)) {
536 1.1 gwr /* Append the boot flags. */
537 1.1 gwr *p++ = ' ';
538 1.1 gwr *p++ = '-';
539 1.1 gwr if (howto & RB_KDB)
540 1.1 gwr *p++ = 'd';
541 1.1 gwr if (howto & RB_ASKNAME)
542 1.1 gwr *p++ = 'a';
543 1.1 gwr if (howto & RB_SINGLE)
544 1.1 gwr *p++ = 's';
545 1.1 gwr *p = '\0';
546 1.1 gwr }
547 1.1 gwr }
548 1.63 chs printf("rebooting...\n");
549 1.3 gwr sunmon_reboot(bootstr);
550 1.1 gwr for (;;) ;
551 1.1 gwr /*NOTREACHED*/
552 1.1 gwr }
553 1.1 gwr
554 1.1 gwr /*
555 1.1 gwr * These variables are needed by /sbin/savecore
556 1.1 gwr */
557 1.77 tsutsui u_int32_t dumpmag = 0x8fca0101; /* magic number */
558 1.1 gwr int dumpsize = 0; /* pages */
559 1.1 gwr long dumplo = 0; /* blocks */
560 1.1 gwr
561 1.71 tsutsui #define DUMP_EXTRA 1 /* CPU-dependent extra pages */
562 1.71 tsutsui
563 1.1 gwr /*
564 1.11 gwr * This is called by main to set dumplo, dumpsize.
565 1.54 ragge * Dumps always skip the first NBPG of disk space
566 1.1 gwr * in case there might be a disk label stored there.
567 1.1 gwr * If there is extra space, put dump at the end to
568 1.1 gwr * reduce the chance that swapping trashes it.
569 1.1 gwr */
570 1.1 gwr void
571 1.11 gwr cpu_dumpconf()
572 1.1 gwr {
573 1.81 gehenna const struct bdevsw *bdev;
574 1.71 tsutsui int devblks; /* size of dump device in blocks */
575 1.71 tsutsui int dumpblks; /* size of dump image in blocks */
576 1.1 gwr int (*getsize)__P((dev_t));
577 1.1 gwr
578 1.1 gwr if (dumpdev == NODEV)
579 1.1 gwr return;
580 1.1 gwr
581 1.81 gehenna bdev = bdevsw_lookup(dumpdev);
582 1.81 gehenna if (bdev == NULL)
583 1.1 gwr panic("dumpconf: bad dumpdev=0x%x", dumpdev);
584 1.81 gehenna getsize = bdev->d_psize;
585 1.1 gwr if (getsize == NULL)
586 1.1 gwr return;
587 1.71 tsutsui devblks = (*getsize)(dumpdev);
588 1.71 tsutsui if (devblks <= ctod(1))
589 1.1 gwr return;
590 1.71 tsutsui devblks &= ~(ctod(1) - 1);
591 1.71 tsutsui
592 1.71 tsutsui /*
593 1.71 tsutsui * Note: savecore expects dumpsize to be the
594 1.71 tsutsui * number of pages AFTER the dump header.
595 1.71 tsutsui */
596 1.71 tsutsui dumpsize = physmem; /* pages */
597 1.1 gwr
598 1.1 gwr /* Position dump image near end of space, page aligned. */
599 1.71 tsutsui dumpblks = ctod(physmem + DUMP_EXTRA);
600 1.71 tsutsui dumplo = devblks - dumpblks;
601 1.1 gwr
602 1.1 gwr /* If it does not fit, truncate it by moving dumplo. */
603 1.1 gwr /* Note: Must force signed comparison. */
604 1.1 gwr if (dumplo < ((long)ctod(1))) {
605 1.1 gwr dumplo = ctod(1);
606 1.71 tsutsui dumpsize = dtoc(devblks - dumplo) - DUMP_EXTRA;
607 1.1 gwr }
608 1.1 gwr }
609 1.1 gwr
610 1.13 gwr /* Note: gdb looks for "dumppcb" in a kernel crash dump. */
611 1.1 gwr struct pcb dumppcb;
612 1.1 gwr
613 1.1 gwr /*
614 1.1 gwr * Write a crash dump. The format while in swap is:
615 1.1 gwr * kcore_seg_t cpu_hdr;
616 1.1 gwr * cpu_kcore_hdr_t cpu_data;
617 1.1 gwr * padding (NBPG-sizeof(kcore_seg_t))
618 1.1 gwr * pagemap (2*NBPG)
619 1.1 gwr * physical memory...
620 1.1 gwr */
621 1.1 gwr void
622 1.1 gwr dumpsys()
623 1.1 gwr {
624 1.81 gehenna const struct bdevsw *dsw;
625 1.66 chs kcore_seg_t *kseg_p;
626 1.10 gwr cpu_kcore_hdr_t *chdr_p;
627 1.14 thorpej struct sun3x_kcore_hdr *sh;
628 1.14 thorpej phys_ram_seg_t *crs_p;
629 1.1 gwr char *vaddr;
630 1.73 tsutsui paddr_t paddr;
631 1.10 gwr int psize, todo, seg, segsz;
632 1.1 gwr daddr_t blkno;
633 1.1 gwr int error = 0;
634 1.1 gwr
635 1.1 gwr if (dumpdev == NODEV)
636 1.1 gwr return;
637 1.81 gehenna dsw = bdevsw_lookup(dumpdev);
638 1.81 gehenna if (dsw == NULL || dsw->d_psize == NULL)
639 1.81 gehenna return;
640 1.1 gwr
641 1.1 gwr /*
642 1.1 gwr * For dumps during autoconfiguration,
643 1.1 gwr * if dump device has already configured...
644 1.1 gwr */
645 1.1 gwr if (dumpsize == 0)
646 1.11 gwr cpu_dumpconf();
647 1.28 mycroft if (dumplo <= 0) {
648 1.28 mycroft printf("\ndump to dev %u,%u not possible\n", major(dumpdev),
649 1.28 mycroft minor(dumpdev));
650 1.1 gwr return;
651 1.28 mycroft }
652 1.1 gwr savectx(&dumppcb);
653 1.1 gwr
654 1.1 gwr psize = (*(dsw->d_psize))(dumpdev);
655 1.1 gwr if (psize == -1) {
656 1.1 gwr printf("dump area unavailable\n");
657 1.1 gwr return;
658 1.1 gwr }
659 1.1 gwr
660 1.28 mycroft printf("\ndumping to dev %u,%u offset %ld\n", major(dumpdev),
661 1.28 mycroft minor(dumpdev), dumplo);
662 1.1 gwr
663 1.1 gwr /*
664 1.71 tsutsui * Prepare the dump header
665 1.1 gwr */
666 1.71 tsutsui blkno = dumplo;
667 1.71 tsutsui todo = dumpsize; /* pages */
668 1.71 tsutsui vaddr = (char *)dumppage;
669 1.74 tsutsui memset(vaddr, 0, NBPG);
670 1.25 gwr
671 1.25 gwr /* Set pointers to all three parts. */
672 1.71 tsutsui kseg_p = (kcore_seg_t *)vaddr;
673 1.66 chs chdr_p = (cpu_kcore_hdr_t *)(kseg_p + 1);
674 1.14 thorpej sh = &chdr_p->un._sun3x;
675 1.25 gwr
676 1.25 gwr /* Fill in kcore_seg_t part. */
677 1.10 gwr CORE_SETMAGIC(*kseg_p, KCORE_MAGIC, MID_MACHINE, CORE_CPU);
678 1.71 tsutsui kseg_p->c_size = (ctob(DUMP_EXTRA) - sizeof(*kseg_p));
679 1.25 gwr
680 1.25 gwr /* Fill in cpu_kcore_hdr_t part. */
681 1.46 gwr strncpy(chdr_p->name, kernel_arch, sizeof(chdr_p->name));
682 1.25 gwr chdr_p->page_size = NBPG;
683 1.25 gwr chdr_p->kernbase = KERNBASE;
684 1.25 gwr
685 1.25 gwr /* Fill in the sun3x_kcore_hdr part. */
686 1.25 gwr pmap_kcore_hdr(sh);
687 1.10 gwr
688 1.71 tsutsui /* Write out the dump header. */
689 1.71 tsutsui error = (*dsw->d_dump)(dumpdev, blkno, vaddr, NBPG);
690 1.71 tsutsui if (error)
691 1.71 tsutsui goto fail;
692 1.71 tsutsui blkno += btodb(NBPG);
693 1.71 tsutsui
694 1.10 gwr /*
695 1.10 gwr * Now dump physical memory. Note that physical memory
696 1.10 gwr * might NOT be congiguous, so do it by segments.
697 1.10 gwr */
698 1.10 gwr
699 1.66 chs vaddr = (char *)vmmap; /* Borrow /dev/mem VA */
700 1.1 gwr
701 1.14 thorpej for (seg = 0; seg < SUN3X_NPHYS_RAM_SEGS; seg++) {
702 1.14 thorpej crs_p = &sh->ram_segs[seg];
703 1.10 gwr paddr = crs_p->start;
704 1.10 gwr segsz = crs_p->size;
705 1.1 gwr
706 1.10 gwr while (todo && (segsz > 0)) {
707 1.1 gwr
708 1.10 gwr /* Print pages left after every 16. */
709 1.10 gwr if ((todo & 0xf) == 0)
710 1.10 gwr printf("\r%4d", todo);
711 1.10 gwr
712 1.10 gwr /* Make a temporary mapping for the page. */
713 1.76 chs pmap_kenter_pa(vmmap, paddr | PMAP_NC, VM_PROT_READ);
714 1.75 chris pmap_update(pmap_kernel());
715 1.10 gwr error = (*dsw->d_dump)(dumpdev, blkno, vaddr, NBPG);
716 1.76 chs pmap_kremove(vmmap, NBPG);
717 1.75 chris pmap_update(pmap_kernel());
718 1.10 gwr if (error)
719 1.10 gwr goto fail;
720 1.10 gwr paddr += NBPG;
721 1.10 gwr segsz -= NBPG;
722 1.10 gwr blkno += btodb(NBPG);
723 1.10 gwr todo--;
724 1.10 gwr }
725 1.10 gwr }
726 1.1 gwr printf("\rdump succeeded\n");
727 1.1 gwr return;
728 1.1 gwr fail:
729 1.1 gwr printf(" dump error=%d\n", error);
730 1.1 gwr }
731 1.1 gwr
732 1.1 gwr static void
733 1.1 gwr initcpu()
734 1.1 gwr {
735 1.1 gwr /* XXX: Enable RAM parity/ECC checking? */
736 1.1 gwr /* XXX: parityenable(); */
737 1.1 gwr
738 1.1 gwr #ifdef HAVECACHE
739 1.1 gwr cache_enable();
740 1.1 gwr #endif
741 1.1 gwr }
742 1.1 gwr
743 1.8 gwr /* straptrap() in trap.c */
744 1.1 gwr
745 1.1 gwr /* from hp300: badaddr() */
746 1.15 gwr /* peek_byte(), peek_word() moved to bus_subr.c */
747 1.1 gwr
748 1.1 gwr /* XXX: parityenable() ? */
749 1.7 gwr /* regdump() moved to regdump.c */
750 1.1 gwr
751 1.1 gwr /*
752 1.1 gwr * cpu_exec_aout_makecmds():
753 1.1 gwr * cpu-dependent a.out format hook for execve().
754 1.1 gwr *
755 1.1 gwr * Determine if the given exec package refers to something which we
756 1.1 gwr * understand and, if so, set up the vmcmds for it.
757 1.1 gwr */
758 1.1 gwr int
759 1.1 gwr cpu_exec_aout_makecmds(p, epp)
760 1.1 gwr struct proc *p;
761 1.1 gwr struct exec_package *epp;
762 1.1 gwr {
763 1.27 tv return ENOEXEC;
764 1.1 gwr }
765