cpu.h revision 78962
177957Sbenno/*
277957Sbenno * Copyright (C) 1995-1997 Wolfgang Solfrank.
377957Sbenno * Copyright (C) 1995-1997 TooLs GmbH.
477957Sbenno * All rights reserved.
577957Sbenno *
677957Sbenno * Redistribution and use in source and binary forms, with or without
777957Sbenno * modification, are permitted provided that the following conditions
877957Sbenno * are met:
977957Sbenno * 1. Redistributions of source code must retain the above copyright
1077957Sbenno *    notice, this list of conditions and the following disclaimer.
1177957Sbenno * 2. Redistributions in binary form must reproduce the above copyright
1277957Sbenno *    notice, this list of conditions and the following disclaimer in the
1377957Sbenno *    documentation and/or other materials provided with the distribution.
1477957Sbenno * 3. All advertising materials mentioning features or use of this software
1577957Sbenno *    must display the following acknowledgement:
1677957Sbenno *	This product includes software developed by TooLs GmbH.
1777957Sbenno * 4. The name of TooLs GmbH may not be used to endorse or promote products
1877957Sbenno *    derived from this software without specific prior written permission.
1977957Sbenno *
2077957Sbenno * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``AS IS'' AND ANY EXPRESS OR
2177957Sbenno * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
2277957Sbenno * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2377957Sbenno * IN NO EVENT SHALL TOOLS GMBH BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2477957Sbenno * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
2577957Sbenno * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
2677957Sbenno * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
2777957Sbenno * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
2877957Sbenno * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
2977957Sbenno * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3077957Sbenno *
3177957Sbenno *	$NetBSD: cpu.h,v 1.11 2000/05/26 21:19:53 thorpej Exp $
3277957Sbenno * $FreeBSD: head/sys/powerpc/include/cpu.h 78962 2001-06-29 11:10:41Z jhb $
3377957Sbenno */
3477957Sbenno
3577957Sbenno#ifndef _MACHINE_CPU_H_
3677957Sbenno#define	_MACHINE_CPU_H_
3777957Sbenno
3877957Sbenno#include <machine/frame.h>
3977957Sbenno#include <machine/pcb.h>
4077957Sbenno#include <machine/psl.h>
4177957Sbenno
4277957Sbenno#define	CLKF_USERMODE(frame)	(((frame)->srr1 & PSL_PR) != 0)
4377957Sbenno#define	CLKF_BASEPRI(frame)	((frame)->pri == 0)
4477957Sbenno#define	CLKF_PC(frame)		((frame)->srr0)
4577957Sbenno#define	CLKF_INTR(frame)	((frame)->depth > 0)
4677957Sbenno
4777957Sbenno#define	cpu_swapout(p)
4877957Sbenno#define	cpu_number()		0
4977957Sbenno
5077957Sbennoextern void delay __P((unsigned));
5177957Sbenno#define	DELAY(n)		delay(n)
5277957Sbenno
5377957Sbennoextern int want_resched;
5477957Sbennoextern int astpending;
5577957Sbenno
5677957Sbenno#define	need_proftick(p)	((p)->p_flag |= PS_OWEUPC, astpending = 1)
5777957Sbenno
5877957Sbennoextern char bootpath[];
5977957Sbenno
6077957Sbenno#if defined(_KERNEL) || defined(_STANDALONE)
6177957Sbenno#define	CACHELINESIZE	32
6277957Sbenno#endif
6377957Sbenno
6477957Sbennoextern void __syncicache __P((void *, int));
6577957Sbenno
6677957Sbenno/*
6777957Sbenno * CTL_MACHDEP definitions.
6877957Sbenno */
6977957Sbenno#define	CPU_CACHELINE	1
7077957Sbenno#define	CPU_MAXID	2
7177957Sbenno#define CPU_CONSDEV	1
7277957Sbenno
7377957Sbenno#define	CTL_MACHDEP_NAMES { \
7477957Sbenno	{ 0, 0 }, \
7577957Sbenno	{ "cachelinesize", CTLTYPE_INT }, \
7677957Sbenno}
7777957Sbenno
7877957Sbennostatic __inline u_int64_t
7977957Sbennoget_cyclecount(void)
8077957Sbenno{
8177957Sbenno	u_int32_t upper, lower;
8277957Sbenno	u_int64_t time;
8377957Sbenno
8477957Sbenno	__asm __volatile(
8577957Sbenno		"mftb %0\n"
8677957Sbenno		"mftbu %1"
8777957Sbenno		: "=r" (lower), "=r" (upper));
8877957Sbenno
8977957Sbenno	time = (u_int64_t)upper;
9077957Sbenno	time = (time << 32) + lower;
9177957Sbenno	return (time);
9277957Sbenno}
9377957Sbenno
9478962Sjhb#define	cpu_getstack(p)		((p)->p_frame->fixreg[1])
9577957Sbenno
9677957Sbennovoid	savectx __P((struct pcb *));
9777957Sbenno
9877957Sbenno#endif	/* _MACHINE_CPU_H_ */
99