changes for 4.4BSD-Lite requested by USL
[unix-history] / usr / src / sys / sparc / include / cpu.h
CommitLineData
90587a41 1/*
9193edfc
KB
2 * Copyright (c) 1992, 1993
3 * The Regents of the University of California. All rights reserved.
90587a41
CT
4 *
5 * This software was developed by the Computer Systems Engineering group
6 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
7 * contributed to Berkeley.
8 *
b480239a
KB
9 * All advertising materials mentioning features or use of this software
10 * must display the following acknowledgement:
11 * This product includes software developed by the University of
062bb472 12 * California, Lawrence Berkeley Laboratory.
b480239a 13 *
90587a41
CT
14 * %sccs.include.redist.c%
15 *
715a14be 16 * @(#)cpu.h 8.3 (Berkeley) %G%
90587a41 17 *
42158806 18 * from: $Header: cpu.h,v 1.12 93/05/25 10:36:34 torek Exp $ (LBL)
90587a41
CT
19 */
20
21#ifndef _CPU_H_
22#define _CPU_H_
23
42158806
CT
24/*
25 * CTL_MACHDEP definitinos.
26 */
27#define CPU_MAXID 1 /* no valid machdep ids */
28
29#define CTL_MACHDEP_NAMES { \
30 { 0, 0 }, \
31}
90587a41 32
42158806 33#ifdef KERNEL
90587a41
CT
34/*
35 * Exported definitions unique to SPARC cpu support.
36 */
37
42158806
CT
38#include <machine/psl.h>
39#include <sparc/sparc/intreg.h>
40
90587a41
CT
41/*
42 * definitions of cpu-dependent requirements
43 * referenced in generic code
44 */
45#define COPY_SIGCODE /* copy sigcode above user stack in exec */
46
90587a41
CT
47#define cpu_exec(p) /* nothing */
48#define cpu_wait(p) /* nothing */
49#define cpu_setstack(p, ap) ((p)->p_md.md_tf->tf_out[6] = (ap) - 64)
50
51/*
52 * Arguments to hardclock, softclock and gatherstats encapsulate the
53 * previous machine state in an opaque clockframe. The ipl is here
54 * as well for strayintr (see locore.s:interrupt and intr.c:strayintr).
55 * Note that CLKF_INTR is valid only if CLKF_USERMODE is false.
56 */
57struct clockframe {
58 u_int psr; /* psr before interrupt, excluding PSR_ET */
59 u_int pc; /* pc at interrupt */
60 u_int npc; /* npc at interrupt */
61 u_int ipl; /* actual interrupt priority level */
62 u_int fp; /* %fp at interrupt */
63};
64
65extern int eintstack[];
66
67#define CLKF_USERMODE(framep) (((framep)->psr & PSR_PS) == 0)
68#define CLKF_BASEPRI(framep) (((framep)->psr & PSR_PIL) == 0)
69#define CLKF_PC(framep) ((framep)->pc)
70#define CLKF_INTR(framep) ((framep)->fp < (u_int)eintstack)
71
72/*
73 * Software interrupt request `register'.
74 */
75union sir {
76 int sir_any;
77 char sir_which[4];
78} sir;
79
80#define SIR_NET 0
81#define SIR_CLOCK 1
82
83#define setsoftint() ienab_bis(IE_L1)
84#define setsoftnet() (sir.sir_which[SIR_NET] = 1, setsoftint())
85#define setsoftclock() (sir.sir_which[SIR_CLOCK] = 1, setsoftint())
86
87int want_ast;
88
89/*
90 * Preempt the current process if in interrupt from user mode,
91 * or after the current trap/syscall if in system mode.
92 */
93int want_resched; /* resched() was called */
94#define need_resched() (want_resched = 1, want_ast = 1)
95
96/*
97 * Give a profiling tick to the current process when the user profiling
98 * buffer pages are invalid. On the sparc, request an ast to send us
99 * through trap(), marking the proc as needing a profiling tick.
100 */
cf5ef508 101#define need_proftick(p) ((p)->p_flag |= P_OWEUPC, want_ast = 1)
90587a41
CT
102
103/*
104 * Notify the current process (p) that it has a signal pending,
105 * process as soon as possible.
106 */
107#define signotify(p) (want_ast = 1)
108
109/*
110 * Only one process may own the FPU state.
111 *
112 * XXX this must be per-cpu (eventually)
113 */
114struct proc *fpproc; /* FPU owner */
115int foundfpu; /* true => we have an FPU */
116
117/*
118 * Interrupt handler chains. Interrupt handlers should return 0 for
119 * ``not me'' or 1 (``I took care of it''). intr_establish() inserts a
120 * handler into the list. The handler is called with its (single)
121 * argument, or with a pointer to a clockframe if ih_arg is NULL.
122 */
123struct intrhand {
124 int (*ih_fun) __P((void *));
125 void *ih_arg;
126 struct intrhand *ih_next;
127} *intrhand[15];
128
129void intr_establish __P((int level, struct intrhand *));
130
131/*
132 * intr_fasttrap() is a lot like intr_establish, but is used for ``fast''
133 * interrupt vectors (vectors that are not shared and are handled in the
134 * trap window). Such functions must be written in assembly.
135 */
136void intr_fasttrap __P((int level, void (*vec)(void)));
137
42158806
CT
138#endif /* KERNEL */
139#endif /* _CPU_H_ */