diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-07 21:32:46 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-07 21:32:46 +0000 |
commit | 3a6ee8eaae240dc3b58c436411dc9dbc5d07f8f3 (patch) | |
tree | dc27568caedfe7addb7e969180536e355a93f710 /sys/arch/hppa/include/cpufunc.h | |
parent | d14b61429aac4f95aaa920d1bd79faec66995e52 (diff) |
more includes
Diffstat (limited to 'sys/arch/hppa/include/cpufunc.h')
-rw-r--r-- | sys/arch/hppa/include/cpufunc.h | 512 |
1 files changed, 512 insertions, 0 deletions
diff --git a/sys/arch/hppa/include/cpufunc.h b/sys/arch/hppa/include/cpufunc.h new file mode 100644 index 00000000000..4caa651bd6a --- /dev/null +++ b/sys/arch/hppa/include/cpufunc.h @@ -0,0 +1,512 @@ +/* $OpenBSD: cpufunc.h,v 1.1 1998/07/07 21:32:40 mickey Exp $ */ + +/* + * (c) Copyright 1988 HEWLETT-PACKARD COMPANY + * + * To anyone who acknowledges that this file is provided "AS IS" + * without any express or implied warranty: + * permission to use, copy, modify, and distribute this file + * for any purpose is hereby granted without fee, provided that + * the above copyright notice and this notice appears in all + * copies, and that the name of Hewlett-Packard Company not be + * used in advertising or publicity pertaining to distribution + * of the software without specific, written prior permission. + * Hewlett-Packard Company makes no representations about the + * suitability of this software for any purpose. + */ + +/* + * Copyright (c) 1990,1994 The University of Utah and + * the Computer Systems Laboratory (CSL). All rights reserved. + * + * THE UNIVERSITY OF UTAH AND CSL PROVIDE THIS SOFTWARE IN ITS "AS IS" + * CONDITION, AND DISCLAIM ANY LIABILITY OF ANY KIND FOR ANY DAMAGES + * WHATSOEVER RESULTING FROM ITS USE. + * + * CSL requests users of this software to return to csl-dist@cs.utah.edu any + * improvements that they make and grant CSL redistribution rights. + * + * Utah $Hdr: c_support.s 1.8 94/12/14$ + * Author: Bob Wheeler, University of Utah CSL + */ + +/* + * hppa routines to move to and from control registers from C + */ + + +/* + * Get space register for an address + */ + +static __inline u_int ldsid(vm_offset_t p) { + register u_int ret; + __asm __volatile("ldsid (%1),%0" : "=r" (p) : "r" (ret)); + return ret; +} + +/* + * Move the specified value into the control register. The register is taken + * modulo 32. If the register is invalid the operation is ignored. + */ +static __inline void mtctl(int reg, int value) { + reg %= 32; + if (reg == 0) + __asm __volatile("mtctl %0, cr0" : : "r" (value)); + else if (reg > 7) + ; +#if 0 + bv 0(r2) + mtctl arg1,cr8 + bv 0(r2) + mtctl arg1,cr9 + bv 0(r2) + mtctl arg1,cr10 + bv 0(r2) + mtctl arg1,cr11 + bv 0(r2) + mtctl arg1,cr12 + bv 0(r2) + mtctl arg1,cr13 + bv 0(r2) + mtctl arg1,cr14 + bv 0(r2) + mtctl arg1,cr15 + bv 0(r2) + mtctl arg1,cr16 + bv 0(r2) + mtctl arg1,cr17 + bv 0(r2) + mtctl arg1,cr18 + bv 0(r2) + mtctl arg1,cr19 + bv 0(r2) + mtctl arg1,cr20 + bv 0(r2) + mtctl arg1,cr21 + bv 0(r2) + mtctl arg1,cr22 + bv 0(r2) + mtctl arg1,cr23 + bv 0(r2) + mtctl arg1,cr24 + bv 0(r2) + mtctl arg1,cr25 + bv 0(r2) + mtctl arg1,cr26 + bv 0(r2) + mtctl arg1,cr27 + bv 0(r2) + mtctl arg1,cr28 + bv 0(r2) + mtctl arg1,cr29 + bv 0(r2) + mtctl arg1,cr30 + bv 0(r2) + mtctl arg1,cr31 +#endif +} + +/* + * Return the contents of the specified control register. The register is taken + * modulo 32. If the register is invalid the operation is ignored. + */ + +static __inline u_int mfctl(int reg) { + register u_int ret; + reg %= 32; + if (reg == 0) + __asm __volatile("mfctl cr0,%0" : "=r" (ret)); + else if (reg > 7) + ; +#if 0 + bv 0(r2) + mfctl cr8,ret0 + bv 0(r2) + mfctl cr9,ret0 + bv 0(r2) + mfctl cr10,ret0 + bv 0(r2) + mfctl cr11,ret0 + bv 0(r2) + mfctl cr12,ret0 + bv 0(r2) + mfctl cr13,ret0 + bv 0(r2) + mfctl cr14,ret0 + bv 0(r2) + mfctl cr15,ret0 + bv 0(r2) + mfctl cr16,ret0 + bv 0(r2) + mfctl cr17,ret0 + bv 0(r2) + mfctl cr18,ret0 + bv 0(r2) + mfctl cr19,ret0 + bv 0(r2) + mfctl cr20,ret0 + bv 0(r2) + mfctl cr21,ret0 + bv 0(r2) + mfctl cr22,ret0 + bv 0(r2) + mfctl cr23,ret0 + bv 0(r2) + mfctl cr24,ret0 + bv 0(r2) + mfctl cr25,ret0 + bv 0(r2) + mfctl cr26,ret0 + bv 0(r2) + mfctl cr27,ret0 + bv 0(r2) + mfctl cr28,ret0 + bv 0(r2) + mfctl cr29,ret0 + bv 0(r2) + mfctl cr30,ret0 + bv 0(r2) + mfctl cr31,ret0 +#endif + return ret; +} + +#if 0 +/* + * int mtsp(sr, value) + * int sr; + * int value; + * + * Move the specified value into a space register. The space register is taken + * modulo 8. + */ + + .export mtsp,entry + .proc + .callinfo +mtsp + +/* + * take the register number modulo 8 + */ + ldi 7,t1 + and t1,arg0,arg0 + +/* + * write the value to the specified register + */ + + blr,n arg0,r0 + nop + + bv 0(r2) + mtsp arg1,sr0 + bv 0(r2) + mtsp arg1,sr1 + bv 0(r2) + mtsp arg1,sr2 + bv 0(r2) + mtsp arg1,sr3 + bv 0(r2) + mtsp arg1,sr4 + bv 0(r2) + mtsp arg1,sr5 + bv 0(r2) + mtsp arg1,sr6 + bv 0(r2) + mtsp arg1,sr7 + + .procend + + +/* + * int mfsr(reg) + * int reg; + * + * Return the contents of the specified space register. The space register is + * taken modulo 8. + */ + + .export mfsp,entry + .proc + .callinfo +mfsp + +/* + * take the register number modulo 8 + */ + ldi 7,t1 + and t1,arg0,arg0 + +/* + * write the value to the specified register + */ + + blr,n arg0,r0 + nop + + bv 0(r2) + mfsp sr0,ret0 + bv 0(r2) + mfsp sr1,ret0 + bv 0(r2) + mfsp sr2,ret0 + bv 0(r2) + mfsp sr3,ret0 + bv 0(r2) + mfsp sr4,ret0 + bv 0(r2) + mfsp sr5,ret0 + bv 0(r2) + mfsp sr6,ret0 + bv 0(r2) + mfsp sr7,ret0 + + .procend + + +/* + * int ssm(mask) + * int mask; + * + * Set system mask. This call will not set the Q bit even if it is + * specified. + * + * Returns the old system mask + */ + + .export ssm,entry + .proc + .callinfo +ssm + +/* + * look at only the lower 5 bits of the mask + */ + ldi 31,t1 + and t1,arg0,arg0 + + +/* + * Set System Mask and Return + */ + + blr,n arg0,r0 + nop + + bv 0(r2) + ssm 0,ret0 + bv 0(r2) + ssm 1,ret0 + bv 0(r2) + ssm 2,ret0 + bv 0(r2) + ssm 3,ret0 + bv 0(r2) + ssm 4,ret0 + bv 0(r2) + ssm 5,ret0 + bv 0(r2) + ssm 6,ret0 + bv 0(r2) + ssm 7,ret0 + bv 0(r2) + ssm 0,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 1,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 2,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 3,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 4,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 5,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 6,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 7,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 16,ret0 + bv 0(r2) + ssm 17,ret0 + bv 0(r2) + ssm 18,ret0 + bv 0(r2) + ssm 19,ret0 + bv 0(r2) + ssm 20,ret0 + bv 0(r2) + ssm 21,ret0 + bv 0(r2) + ssm 22,ret0 + bv 0(r2) + ssm 23,ret0 + bv 0(r2) + ssm 16,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 17,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 18,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 19,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 20,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 21,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 22,ret0 /* can't set Q bit with ssm */ + bv 0(r2) + ssm 23,ret0 /* can't set Q bit with ssm */ + + .procend + + +/* + * int rsm(mask) + * int mask; + * + * Reset system mask. + * + * Returns the old system mask + */ + + .export rsm,entry + .proc + .callinfo +rsm + +/* + * look at only the lower 5 bits of the mask + */ + ldi 31,t1 + and t1,arg0,arg0 + +/* + * Set System Mask and Return + */ + + blr,n arg0,r0 + nop + + bv 0(r2) + rsm 0,ret0 + bv 0(r2) + rsm 1,ret0 + bv 0(r2) + rsm 2,ret0 + bv 0(r2) + rsm 3,ret0 + bv 0(r2) + rsm 4,ret0 + bv 0(r2) + rsm 5,ret0 + bv 0(r2) + rsm 6,ret0 + bv 0(r2) + rsm 7,ret0 + bv 0(r2) + rsm 8,ret0 + bv 0(r2) + rsm 9,ret0 + bv 0(r2) + rsm 10,ret0 + bv 0(r2) + rsm 11,ret0 + bv 0(r2) + rsm 12,ret0 + bv 0(r2) + rsm 13,ret0 + bv 0(r2) + rsm 14,ret0 + bv 0(r2) + rsm 15,ret0 + bv 0(r2) + rsm 16,ret0 + bv 0(r2) + rsm 17,ret0 + bv 0(r2) + rsm 18,ret0 + bv 0(r2) + rsm 19,ret0 + bv 0(r2) + rsm 20,ret0 + bv 0(r2) + rsm 21,ret0 + bv 0(r2) + rsm 22,ret0 + bv 0(r2) + rsm 23,ret0 + bv 0(r2) + rsm 24,ret0 + bv 0(r2) + rsm 25,ret0 + bv 0(r2) + rsm 26,ret0 + bv 0(r2) + rsm 27,ret0 + bv 0(r2) + rsm 28,ret0 + bv 0(r2) + rsm 29,ret0 + bv 0(r2) + rsm 30,ret0 + bv 0(r2) + rsm 31,ret0 + + .procend + + +/* + * int mtsm(mask) + * int mask; + * + * Move to system mask. Old value of system mask is returned. + */ + + .export mtsm,entry + .proc + .callinfo +mtsm + +/* + * Move System Mask and Return + */ + ssm 0,ret0 + bv 0(r2) + mtsm arg0 + + .procend +#endif + +static __inline void +ficache(pa_space_t space, vm_offset_t off, vm_size_t size) +{ + +} + +static __inline void +fdcache(pa_space_t space, vm_offset_t off, vm_size_t size) +{ + +} + +static __inline void +pitlb(pa_space_t sp, vm_offset_t off) +{ + +} + +static __inline void +pdtlb(pa_space_t sp, vm_offset_t off) +{ + +} + +void phys_page_copy __P((vm_offset_t, vm_offset_t)); +void phys_bzero __P((vm_offset_t, vm_size_t)); +void lpage_copy __P((int, pa_space_t, vm_offset_t, vm_offset_t)); +void lpage_zero __P((int, vm_offset_t, pa_space_t)); + + |