cpu.h revision 210105
1170754Sdelphij/*	$OpenBSD: cpu.h,v 1.4 1998/09/15 10:50:12 pefo Exp $	*/
2170754Sdelphij
3170754Sdelphij/*-
4170754Sdelphij * Copyright (c) 1992, 1993
5170754Sdelphij *	The Regents of the University of California.  All rights reserved.
6170754Sdelphij *
7170754Sdelphij * This code is derived from software contributed to Berkeley by
8170754Sdelphij * Ralph Campbell and Rick Macklem.
9170754Sdelphij *
10170754Sdelphij * Redistribution and use in source and binary forms, with or without
11170754Sdelphij * modification, are permitted provided that the following conditions
12170754Sdelphij * are met:
13170754Sdelphij * 1. Redistributions of source code must retain the above copyright
14170754Sdelphij *    notice, this list of conditions and the following disclaimer.
15170754Sdelphij * 2. Redistributions in binary form must reproduce the above copyright
16170754Sdelphij *    notice, this list of conditions and the following disclaimer in the
17170754Sdelphij *    documentation and/or other materials provided with the distribution.
18170754Sdelphij * 4. Neither the name of the University nor the names of its contributors
19170754Sdelphij *    may be used to endorse or promote products derived from this software
20170754Sdelphij *    without specific prior written permission.
21170754Sdelphij *
22170754Sdelphij * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23170754Sdelphij * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24170754Sdelphij * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25170754Sdelphij * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26170754Sdelphij * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27170754Sdelphij * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28170754Sdelphij * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29170754Sdelphij * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30170754Sdelphij * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31170754Sdelphij * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32170754Sdelphij * SUCH DAMAGE.
33170754Sdelphij *
34170754Sdelphij *	Copyright (C) 1989 Digital Equipment Corporation.
35170754Sdelphij *	Permission to use, copy, modify, and distribute this software and
36170754Sdelphij *	its documentation for any purpose and without fee is hereby granted,
37170754Sdelphij *	provided that the above copyright notice appears in all copies.
38170754Sdelphij *	Digital Equipment Corporation makes no representations about the
39170754Sdelphij *	suitability of this software for any purpose.  It is provided "as is"
40170754Sdelphij *	without express or implied warranty.
41170754Sdelphij *
42170754Sdelphij *	from: @(#)cpu.h	8.4 (Berkeley) 1/4/94
43170754Sdelphij *	JNPR: cpu.h,v 1.9.2.2 2007/09/10 08:23:46 girish
44170754Sdelphij * $FreeBSD: head/sys/mips/include/cpu.h 210105 2010-07-15 03:56:08Z imp $
45170754Sdelphij */
46170754Sdelphij
47170754Sdelphij#ifndef _MACHINE_CPU_H_
48#define	_MACHINE_CPU_H_
49
50#include <machine/endian.h>
51
52/* BEGIN: these are going away */
53
54#define	SR_KSU_MASK		0x00000018
55#define	SR_KSU_USER		0x00000010
56#define	SR_KSU_SUPER		0x00000008
57#define	SR_KSU_KERNEL		0x00000000
58
59#define	soft_int_mask(softintr)	(1 << ((softintr) + 8))
60#define	hard_int_mask(hardintr)	(1 << ((hardintr) + 10))
61
62/* END: These are going away */
63
64/*
65 * Exported definitions unique to mips cpu support.
66 */
67
68#ifndef _LOCORE
69#include <machine/cpufunc.h>
70#include <machine/frame.h>
71
72#define	TRAPF_USERMODE(framep)  (((framep)->sr & SR_KSU_USER) != 0)
73#define	TRAPF_PC(framep)	((framep)->pc)
74#define	cpu_getstack(td)	((td)->td_frame->sp)
75#define	cpu_setstack(td, nsp)	((td)->td_frame->sp = (nsp))
76#define	cpu_spinwait()		/* nothing */
77
78/*
79 * A machine-independent interface to the CPU's counter.
80 */
81static __inline uint64_t
82get_cyclecount(void)
83{
84	return (mips_rd_count());
85}
86#endif				/* !_LOCORE */
87
88#if defined(_KERNEL) && !defined(_LOCORE)
89
90extern char btext[];
91extern char etext[];
92
93void swi_vm(void *);
94void cpu_halt(void);
95void cpu_reset(void);
96
97#endif				/* _KERNEL */
98#endif				/* !_MACHINE_CPU_H_ */
99