Home | History | Annotate | Line # | Download | only in include
cpufunc.h revision 1.10.28.1
      1 /*	$NetBSD: cpufunc.h,v 1.10.28.1 2008/10/27 08:02:41 skrll Exp $	*/
      2 
      3 /*	$OpenBSD: cpufunc.h,v 1.17 2000/05/15 17:22:40 mickey Exp $	*/
      4 
      5 /*
      6  * Copyright (c) 1998,2000 Michael Shalayeff
      7  * All rights reserved.
      8  *
      9  * Redistribution and use in source and binary forms, with or without
     10  * modification, are permitted provided that the following conditions
     11  * are met:
     12  * 1. Redistributions of source code must retain the above copyright
     13  *    notice, this list of conditions and the following disclaimer.
     14  * 2. Redistributions in binary form must reproduce the above copyright
     15  *    notice, this list of conditions and the following disclaimer in the
     16  *    documentation and/or other materials provided with the distribution.
     17  * 3. All advertising materials mentioning features or use of this software
     18  *    must display the following acknowledgement:
     19  *	This product includes software developed by Michael Shalayeff.
     20  * 4. The name of the author may not be used to endorse or promote products
     21  *    derived from this software without specific prior written permission.
     22  *
     23  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     24  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     25  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     26  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     27  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     28  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     29  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     30  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     31  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     32  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     33  */
     34 /*
     35  *  (c) Copyright 1988 HEWLETT-PACKARD COMPANY
     36  *
     37  *  To anyone who acknowledges that this file is provided "AS IS"
     38  *  without any express or implied warranty:
     39  *      permission to use, copy, modify, and distribute this file
     40  *  for any purpose is hereby granted without fee, provided that
     41  *  the above copyright notice and this notice appears in all
     42  *  copies, and that the name of Hewlett-Packard Company not be
     43  *  used in advertising or publicity pertaining to distribution
     44  *  of the software without specific, written prior permission.
     45  *  Hewlett-Packard Company makes no representations about the
     46  *  suitability of this software for any purpose.
     47  */
     48 /*
     49  * Copyright (c) 1990,1994 The University of Utah and
     50  * the Computer Systems Laboratory (CSL).  All rights reserved.
     51  *
     52  * THE UNIVERSITY OF UTAH AND CSL PROVIDE THIS SOFTWARE IN ITS "AS IS"
     53  * CONDITION, AND DISCLAIM ANY LIABILITY OF ANY KIND FOR ANY DAMAGES
     54  * WHATSOEVER RESULTING FROM ITS USE.
     55  *
     56  * CSL requests users of this software to return to csl-dist (at) cs.utah.edu any
     57  * improvements that they make and grant CSL redistribution rights.
     58  *
     59  * 	Utah $Hdr: c_support.s 1.8 94/12/14$
     60  *	Author: Bob Wheeler, University of Utah CSL
     61  */
     62 
     63 #ifndef _HPPA_CPUFUNC_H_
     64 #define _HPPA_CPUFUNC_H_
     65 
     66 #include <machine/psl.h>
     67 #include <machine/pte.h>
     68 
     69 #define tlbbtop(b) ((b) >> (PGSHIFT - 5))
     70 #define tlbptob(p) ((p) << (PGSHIFT - 5))
     71 
     72 #define hptbtop(b) ((b) >> 17)
     73 
     74 /* Get space register for an address */
     75 static __inline register_t ldsid(vaddr_t p) {
     76 	register_t ret;
     77 	__asm volatile("ldsid (%1),%0" : "=r" (ret) : "r" (p));
     78 	return ret;
     79 }
     80 
     81 #define mtctl(v,r) __asm volatile("mtctl %0,%1":: "r" (v), "i" (r))
     82 #define mfctl(r,v) __asm volatile("mfctl %1,%0": "=r" (v): "i" (r))
     83 
     84 #define mfcpu(r,v)	/* XXX for the lack of the mnemonics */		\
     85 	__asm volatile("diag  %1\n\t"					\
     86 			 "copy  %%r22, %0"				\
     87 	: "=r" (v) : "i" ((0x1400 | ((r) << 21) | (22))) : "r22")
     88 
     89 #define mtsp(v,r) __asm volatile("mtsp %0,%1":: "r" (v), "i" (r))
     90 #define mfsp(r,v) __asm volatile("mfsp %1,%0": "=r" (v): "i" (r))
     91 
     92 #define ssm(v,r) __asm volatile("ssm %1,%0": "=r" (r): "i" (v))
     93 #define rsm(v,r) __asm volatile("rsm %1,%0": "=r" (r): "i" (v))
     94 
     95 /* Move to system mask. Old value of system mask is returned. */
     96 static __inline register_t mtsm(register_t mask) {
     97 	register_t ret;
     98 	__asm volatile(
     99 	    "ssm 0,%0\n\t"
    100 	    "mtsm %1": "=&r" (ret) : "r" (mask));
    101 	return ret;
    102 }
    103 
    104 #define	fdce(sp,off) __asm volatile("fdce 0(%0,%1)":: "i" (sp), "r" (off))
    105 #define	fice(sp,off) __asm volatile("fice 0(%0,%1)":: "i" (sp), "r" (off))
    106 #define sync_caches() \
    107     __asm volatile("sync\n\tnop\n\tnop\n\tnop\n\tnop\n\tnop\n\tnop\n\tnop":::"memory")
    108 
    109 static __inline void
    110 iitlba(u_int pg, pa_space_t sp, vaddr_t va)
    111 {
    112 	mtsp(sp, 1);
    113 	__asm volatile("iitlba %0,(%%sr1, %1)":: "r" (pg), "r" (va));
    114 }
    115 
    116 static __inline void
    117 idtlba(u_int pg, pa_space_t sp, vaddr_t va)
    118 {
    119 	mtsp(sp, 1);
    120 	__asm volatile("idtlba %0,(%%sr1, %1)":: "r" (pg), "r" (va));
    121 }
    122 
    123 static __inline void
    124 iitlbp(u_int prot, pa_space_t sp, vaddr_t va)
    125 {
    126 	mtsp(sp, 1);
    127 	__asm volatile("iitlbp %0,(%%sr1, %1)":: "r" (prot), "r" (va));
    128 }
    129 
    130 static __inline void
    131 idtlbp(u_int prot, pa_space_t sp, vaddr_t va)
    132 {
    133 	mtsp(sp, 1);
    134 	__asm volatile("idtlbp %0,(%%sr1, %1)":: "r" (prot), "r" (va));
    135 }
    136 
    137 static __inline void
    138 pitlb(pa_space_t sp, vaddr_t va)
    139 {
    140 	mtsp(sp, 1);
    141 	__asm volatile("pitlb %%r0(%%sr1, %0)":: "r" (va));
    142 }
    143 
    144 static __inline void
    145 pdtlb(pa_space_t sp, vaddr_t va)
    146 {
    147 	mtsp(sp, 1);
    148 	__asm volatile("pdtlb %%r0(%%sr1, %0)":: "r" (va));
    149 }
    150 
    151 static __inline void
    152 pitlbe(pa_space_t sp, vaddr_t va)
    153 {
    154 	mtsp(sp, 1);
    155 	__asm volatile("pitlbe %%r0(%%sr1, %0)":: "r" (va));
    156 }
    157 
    158 static __inline void
    159 pdtlbe(pa_space_t sp, vaddr_t va)
    160 {
    161 	mtsp(sp, 1);
    162 	__asm volatile("pdtlbe %%r0(%%sr1, %0)":: "r" (va));
    163 }
    164 
    165 #ifdef _KERNEL
    166 extern int (*cpu_hpt_init)(vaddr_t, vsize_t);
    167 
    168 void ficache(pa_space_t, vaddr_t, vsize_t);
    169 void fdcache(pa_space_t, vaddr_t, vsize_t);
    170 void pdcache(pa_space_t, vaddr_t, vsize_t);
    171 void fcacheall(void);
    172 void ptlball(void);
    173 hppa_hpa_t cpu_gethpa(int);
    174 
    175 #define PCXL2_ACCEL_IO_START		0xf4000000
    176 #define PCXL2_ACCEL_IO_END		(0xfc000000 - 1)
    177 #define PCXL2_ACCEL_IO_ADDR2MASK(a)	(0x8 >> ((((a) >> 25) - 2) & 3))
    178 void eaio_l2(int);
    179 
    180 /*
    181  * These flush or purge the data cache for a item whose total
    182  * size is <= the size of a data cache line, however they don't
    183  * check this constraint.
    184  */
    185 static __inline void
    186 fdcache_small(pa_space_t sp, vaddr_t va, vsize_t size)
    187 {
    188 	__asm volatile(
    189 		"	mtsp	%0,%%sr1		\n"
    190 		"	fdc	%%r0(%%sr1, %1)		\n"
    191 		"	fdc	%2(%%sr1, %1)		\n"
    192 		"	sync				\n"
    193 		"	syncdma				\n"
    194 		:
    195 		: "r" (sp), "r" (va), "r" (size - 1));
    196 }
    197 static __inline void
    198 pdcache_small(pa_space_t sp, vaddr_t va, vsize_t size)
    199 {
    200 	__asm volatile(
    201 		"	mtsp	%0,%%sr1		\n"
    202 		"	pdc	%%r0(%%sr1, %1)		\n"
    203 		"	pdc	%2(%%sr1, %1)		\n"
    204 		"	sync				\n"
    205 		"	syncdma				\n"
    206 		:
    207 		: "r" (sp), "r" (va), "r" (size - 1));
    208 }
    209 
    210 #endif /* _KERNEL */
    211 
    212 #endif /* _HPPA_CPUFUNC_H_ */
    213