2001-06-16 07:14:07 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1998 Doug Rabson
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MACHINE_CPUFUNC_H_
|
|
|
|
#define _MACHINE_CPUFUNC_H_
|
|
|
|
|
|
|
|
#ifdef _KERNEL
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
2001-06-27 12:17:23 +00:00
|
|
|
#include <machine/psl.h>
|
2008-04-26 17:47:28 +00:00
|
|
|
#include <machine/spr.h>
|
2001-06-27 12:17:23 +00:00
|
|
|
|
2002-03-27 05:39:23 +00:00
|
|
|
struct thread;
|
2001-12-18 00:27:18 +00:00
|
|
|
|
2004-07-12 22:16:04 +00:00
|
|
|
#ifdef KDB
|
2008-04-27 22:33:43 +00:00
|
|
|
void breakpoint(void);
|
2008-10-30 21:02:00 +00:00
|
|
|
#else
|
|
|
|
static __inline void
|
|
|
|
breakpoint(void)
|
|
|
|
{
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2003-12-09 13:37:31 +00:00
|
|
|
#endif
|
2001-06-16 07:14:07 +00:00
|
|
|
|
2001-06-27 12:17:23 +00:00
|
|
|
/* CPU register mangling inlines */
|
|
|
|
|
|
|
|
static __inline void
|
2002-03-21 13:07:31 +00:00
|
|
|
mtmsr(register_t value)
|
2001-06-27 12:17:23 +00:00
|
|
|
{
|
2001-08-16 10:13:34 +00:00
|
|
|
|
2004-08-07 00:20:00 +00:00
|
|
|
__asm __volatile ("mtmsr %0; isync" :: "r"(value));
|
2001-06-27 12:17:23 +00:00
|
|
|
}
|
|
|
|
|
2010-07-13 05:32:19 +00:00
|
|
|
#ifdef __powerpc64__
|
|
|
|
static __inline void
|
|
|
|
mtmsrd(register_t value)
|
|
|
|
{
|
|
|
|
|
|
|
|
__asm __volatile ("mtmsrd %0; isync" :: "r"(value));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2002-03-21 13:07:31 +00:00
|
|
|
static __inline register_t
|
2001-06-27 12:17:23 +00:00
|
|
|
mfmsr(void)
|
|
|
|
{
|
2009-05-14 16:56:56 +00:00
|
|
|
register_t value;
|
2001-06-27 12:17:23 +00:00
|
|
|
|
|
|
|
__asm __volatile ("mfmsr %0" : "=r"(value));
|
|
|
|
|
|
|
|
return (value);
|
|
|
|
}
|
|
|
|
|
2010-07-13 05:32:19 +00:00
|
|
|
#ifndef __powerpc64__
|
2002-04-16 11:45:09 +00:00
|
|
|
static __inline void
|
|
|
|
mtsrin(vm_offset_t va, register_t value)
|
|
|
|
{
|
|
|
|
|
|
|
|
__asm __volatile ("mtsrin %0,%1" :: "r"(value), "r"(va));
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline register_t
|
|
|
|
mfsrin(vm_offset_t va)
|
|
|
|
{
|
2009-05-14 16:56:56 +00:00
|
|
|
register_t value;
|
2002-04-16 11:45:09 +00:00
|
|
|
|
|
|
|
__asm __volatile ("mfsrin %0,%1" : "=r"(value) : "r"(va));
|
|
|
|
|
|
|
|
return (value);
|
|
|
|
}
|
2010-07-13 05:32:19 +00:00
|
|
|
#endif
|
2002-04-16 11:45:09 +00:00
|
|
|
|
2010-11-12 15:20:10 +00:00
|
|
|
static __inline register_t
|
|
|
|
mfctrl(void)
|
|
|
|
{
|
|
|
|
register_t value;
|
|
|
|
|
|
|
|
__asm __volatile ("mfspr %0,136" : "=r"(value));
|
|
|
|
|
|
|
|
return (value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-27 12:17:23 +00:00
|
|
|
static __inline void
|
2002-03-21 13:07:31 +00:00
|
|
|
mtdec(register_t value)
|
2001-06-27 12:17:23 +00:00
|
|
|
{
|
2001-08-16 10:13:34 +00:00
|
|
|
|
2001-06-27 12:17:23 +00:00
|
|
|
__asm __volatile ("mtdec %0" :: "r"(value));
|
|
|
|
}
|
|
|
|
|
2002-03-21 13:07:31 +00:00
|
|
|
static __inline register_t
|
2001-06-27 12:17:23 +00:00
|
|
|
mfdec(void)
|
|
|
|
{
|
2009-05-14 16:56:56 +00:00
|
|
|
register_t value;
|
2001-06-27 12:17:23 +00:00
|
|
|
|
|
|
|
__asm __volatile ("mfdec %0" : "=r"(value));
|
|
|
|
|
|
|
|
return (value);
|
|
|
|
}
|
|
|
|
|
2003-02-05 11:59:27 +00:00
|
|
|
static __inline register_t
|
|
|
|
mfpvr(void)
|
|
|
|
{
|
2009-05-14 16:48:25 +00:00
|
|
|
register_t value;
|
2003-02-05 11:59:27 +00:00
|
|
|
|
|
|
|
__asm __volatile ("mfpvr %0" : "=r"(value));
|
|
|
|
|
|
|
|
return (value);
|
|
|
|
}
|
|
|
|
|
2009-05-14 16:48:25 +00:00
|
|
|
static __inline u_quad_t
|
|
|
|
mftb(void)
|
|
|
|
{
|
|
|
|
u_quad_t tb;
|
2010-07-13 05:32:19 +00:00
|
|
|
#ifdef __powerpc64__
|
|
|
|
__asm __volatile ("mftb %0" : "=r"(tb));
|
|
|
|
#else
|
2009-05-14 16:48:25 +00:00
|
|
|
uint32_t *tbup = (uint32_t *)&tb;
|
|
|
|
uint32_t *tblp = tbup + 1;
|
|
|
|
|
|
|
|
do {
|
|
|
|
*tbup = mfspr(TBR_TBU);
|
|
|
|
*tblp = mfspr(TBR_TBL);
|
|
|
|
} while (*tbup != mfspr(TBR_TBU));
|
2010-07-13 05:32:19 +00:00
|
|
|
#endif
|
2009-05-14 16:48:25 +00:00
|
|
|
|
|
|
|
return (tb);
|
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void
|
|
|
|
mttb(u_quad_t time)
|
|
|
|
{
|
|
|
|
|
|
|
|
mtspr(TBR_TBWL, 0);
|
|
|
|
mtspr(TBR_TBWU, (uint32_t)(time >> 32));
|
|
|
|
mtspr(TBR_TBWL, (uint32_t)(time & 0xffffffff));
|
|
|
|
}
|
|
|
|
|
2002-06-29 10:00:07 +00:00
|
|
|
static __inline void
|
|
|
|
eieio(void)
|
|
|
|
{
|
|
|
|
|
2012-04-22 21:55:19 +00:00
|
|
|
__asm __volatile ("eieio" : : : "memory");
|
2002-06-29 10:00:07 +00:00
|
|
|
}
|
|
|
|
|
2002-03-21 13:07:31 +00:00
|
|
|
static __inline void
|
|
|
|
isync(void)
|
|
|
|
{
|
|
|
|
|
2012-04-22 21:55:19 +00:00
|
|
|
__asm __volatile ("isync" : : : "memory");
|
2002-03-21 13:07:31 +00:00
|
|
|
}
|
|
|
|
|
2008-08-30 18:38:37 +00:00
|
|
|
static __inline void
|
|
|
|
powerpc_sync(void)
|
|
|
|
{
|
|
|
|
|
2012-04-22 21:55:19 +00:00
|
|
|
__asm __volatile ("sync" : : : "memory");
|
2008-08-30 18:38:37 +00:00
|
|
|
}
|
|
|
|
|
2002-03-21 12:04:58 +00:00
|
|
|
static __inline register_t
|
|
|
|
intr_disable(void)
|
2001-06-16 07:14:07 +00:00
|
|
|
{
|
2009-05-14 16:56:56 +00:00
|
|
|
register_t msr;
|
2001-06-16 07:14:07 +00:00
|
|
|
|
2001-06-27 12:17:23 +00:00
|
|
|
msr = mfmsr();
|
2002-09-19 04:45:06 +00:00
|
|
|
mtmsr(msr & ~PSL_EE);
|
2002-03-21 12:04:58 +00:00
|
|
|
return (msr);
|
2001-06-16 07:14:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static __inline void
|
2002-03-21 12:04:58 +00:00
|
|
|
intr_restore(register_t msr)
|
2001-06-16 07:14:07 +00:00
|
|
|
{
|
|
|
|
|
2002-03-21 12:04:58 +00:00
|
|
|
mtmsr(msr);
|
2001-06-16 07:14:07 +00:00
|
|
|
}
|
|
|
|
|
2001-12-11 23:33:44 +00:00
|
|
|
static __inline struct pcpu *
|
|
|
|
powerpc_get_pcpup(void)
|
2001-06-16 07:14:07 +00:00
|
|
|
{
|
2009-05-14 16:56:56 +00:00
|
|
|
struct pcpu *ret;
|
2001-06-16 07:14:07 +00:00
|
|
|
|
2008-09-16 16:28:51 +00:00
|
|
|
__asm __volatile("mfsprg %0, 0" : "=r"(ret));
|
2001-06-16 07:14:07 +00:00
|
|
|
|
2009-05-14 16:56:56 +00:00
|
|
|
return (ret);
|
2001-06-16 07:14:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _KERNEL */
|
|
|
|
|
|
|
|
#endif /* !_MACHINE_CPUFUNC_H_ */
|