cpu.h revision 72200
1/* $FreeBSD: head/sys/ia64/include/cpu.h 72200 2001-02-09 06:11:45Z bmilekic $ */
2/* From: NetBSD: cpu.h,v 1.18 1997/09/23 23:17:49 mjacob Exp */
3
4/*
5 * Copyright (c) 1988 University of Utah.
6 * Copyright (c) 1982, 1990, 1993
7 *	The Regents of the University of California.  All rights reserved.
8 *
9 * This code is derived from software contributed to Berkeley by
10 * the Systems Programming Group of the University of Utah Computer
11 * Science Department.
12 *
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
15 * are met:
16 * 1. Redistributions of source code must retain the above copyright
17 *    notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 *    notice, this list of conditions and the following disclaimer in the
20 *    documentation and/or other materials provided with the distribution.
21 * 3. All advertising materials mentioning features or use of this software
22 *    must display the following acknowledgement:
23 *	This product includes software developed by the University of
24 *	California, Berkeley and its contributors.
25 * 4. Neither the name of the University nor the names of its contributors
26 *    may be used to endorse or promote products derived from this software
27 *    without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 * SUCH DAMAGE.
40 *
41 * from: Utah $Hdr: cpu.h 1.16 91/03/25$
42 *
43 *	@(#)cpu.h	8.4 (Berkeley) 1/5/94
44 */
45
46#ifndef _MACHINE_CPU_H_
47#define _MACHINE_CPU_H_
48
49/*
50 * Exported definitions unique to Alpha cpu support.
51 */
52
53#include <machine/frame.h>
54
55#define	cpu_getstack(p)		((p)->p_md.md_tf->tf_r[FRAME_SP])
56
57/*
58 * Arguments to hardclock and gatherstats encapsulate the previous
59 * machine state in an opaque clockframe.  One the Alpha, we use
60 * what we push on an interrupt (a trapframe).
61 */
62struct clockframe {
63	struct trapframe	cf_tf;
64};
65#define	CLKF_USERMODE(framep)						\
66	(((framep)->cf_tf.tf_cr_ipsr & IA64_PSR_CPL) == IA64_PSR_CPL_USER)
67#define	CLKF_BASEPRI(framep)						\
68	(((framep)->cf_tf.tf_cr_ipsr & IA64_PSR_I) == 0)
69#define	CLKF_PC(framep)		((framep)->cf_tf.tf_cr_iip)
70#define	CLKF_INTR(framep)	(curproc->p_intr_nesting_level >= 2)
71
72/*
73 * Preempt the current process if in interrupt from user mode,
74 * or after the current trap/syscall if in system mode.
75 */
76#define	need_resched()		do { want_resched = 1; aston(); } while (0)
77
78#define	resched_wanted()	want_resched
79
80/*
81 * Give a profiling tick to the current process when the user profiling
82 * buffer pages are invalid.  On the hp300, request an ast to send us
83 * through trap, marking the proc as needing a profiling tick.
84 */
85#define	need_proftick(p) do {						\
86	mtx_lock_spin(&sched_lock);				\
87	(p)->p_sflag |= PS_OWEUPC;					\
88	aston();							\
89	mtx_unlock_spin(&sched_lock);				\
90} while (0)
91
92/*
93 * Notify the current process (p) that it has a signal pending,
94 * process as soon as possible.
95 */
96#define	signotify(p)	aston()
97
98#define	aston()		PCPU_SET(astpending, 1)
99
100#ifdef _KERNEL
101extern u_int32_t want_resched;		/* resched() was called */
102#endif
103
104
105/*
106 * CTL_MACHDEP definitions.
107 */
108#define	CPU_CONSDEV		1	/* dev_t: console terminal device */
109#define	CPU_ROOT_DEVICE		2	/* string: root device name */
110#define	CPU_UNALIGNED_PRINT	3	/* int: print unaligned accesses */
111#define	CPU_UNALIGNED_FIX	4	/* int: fix unaligned accesses */
112#define	CPU_UNALIGNED_SIGBUS	5	/* int: SIGBUS unaligned accesses */
113#define	CPU_BOOTED_KERNEL	6	/* string: booted kernel name */
114#define	CPU_ADJKERNTZ		7	/* int:	timezone offset	(seconds) */
115#define	CPU_DISRTCSET		8	/* int: disable resettodr() call */
116#define	CPU_WALLCLOCK		9	/* int:	indicates wall CMOS clock */
117#define	CPU_MAXID		9	/* 9 valid machdep IDs */
118
119#define	CTL_MACHDEP_NAMES { \
120	{ 0, 0 }, \
121	{ "console_device", CTLTYPE_STRUCT }, \
122	{ "root_device", CTLTYPE_STRING }, \
123	{ "unaligned_print", CTLTYPE_INT }, \
124	{ "unaligned_fix", CTLTYPE_INT }, \
125	{ "unaligned_sigbus", CTLTYPE_INT }, \
126	{ "booted_kernel", CTLTYPE_STRING }, \
127	{ "adjkerntz", CTLTYPE_INT }, \
128	{ "disable_rtc_set", CTLTYPE_INT }, \
129	{ "wall_cmos_clock", CTLTYPE_INT }, \
130}
131
132#ifdef _KERNEL
133
134struct pcb;
135struct proc;
136struct reg;
137struct rpb;
138struct trapframe;
139
140extern struct rpb *hwrpb;
141extern volatile int mc_expected, mc_received;
142
143void	ast __P((struct trapframe *));
144int	badaddr	__P((void *, size_t));
145int	badaddr_read __P((void *, size_t, void *));
146void	child_return __P((struct proc *p));
147u_int64_t console_restart __P((u_int64_t, u_int64_t, u_int64_t));
148void	do_sir __P((void));
149void	dumpconf __P((void));
150void	exception_restore __P((void));				/* MAGIC */
151void	frametoreg __P((struct trapframe *, struct reg *));
152long	fswintrberr __P((void));				/* MAGIC */
153int	ia64_pa_access __P((u_long));
154void	ia64_init __P((void));
155void	ia64_fpstate_check __P((struct proc *p));
156void	ia64_fpstate_save __P((struct proc *p, int write));
157void	ia64_fpstate_drop __P((struct proc *p));
158void	ia64_fpstate_switch __P((struct proc *p));
159void	init_prom_interface __P((struct rpb*));
160void	interrupt __P((u_int64_t, struct trapframe *));
161void	machine_check
162	__P((unsigned long, struct trapframe *, unsigned long, unsigned long));
163u_int64_t hwrpb_checksum __P((void));
164void	hwrpb_restart_setup __P((void));
165void	regdump __P((struct trapframe *));
166void	regtoframe __P((struct reg *, struct trapframe *));
167int	savectx __P((struct pcb *));
168void	restorectx __P((struct pcb *));
169void	set_iointr __P((void (*)(void *, unsigned long)));
170void    switch_exit __P((struct proc *));			/* MAGIC */
171void	switch_trampoline __P((void));				/* MAGIC */
172void	syscall __P((int, u_int64_t *, struct trapframe *));
173void	trap __P((int vector, int imm, struct trapframe *framep));
174
175/*
176 * Return contents of in-cpu fast counter as a sort of "bogo-time"
177 * for non-critical timing.
178 */
179static __inline u_int64_t
180get_cyclecount(void)
181{
182	return (ia64_get_itc());
183}
184
185#endif /* _KERNEL */
186
187#endif /* _MACHINE_CPU_H_ */
188