No empty .Rs/.Re
[netbsd-mini2440.git] / sys / arch / m68k / include / cacheops_40.h
blob94919c5adbf93324efc6e74ffac4d0e731d05898
1 /* $NetBSD: cacheops_40.h,v 1.10 2007/10/17 19:55:05 garbled Exp $ */
3 /*-
4 * Copyright (c) 1997 The NetBSD Foundation, Inc.
5 * All rights reserved.
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Leo Weppelman
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
33 * Invalidate entire TLB.
35 static __inline void __attribute__((__unused__))
36 TBIA_40(void)
38 __asm volatile (" .word 0xf518" ); /* pflusha */
42 * Invalidate any TLB entry for given VA (TB Invalidate Single)
44 static __inline void __attribute__((__unused__))
45 TBIS_40(vaddr_t va)
47 register uint8_t *r_va __asm("%a0") = (void *)va;
48 int tmp;
50 __asm volatile (" movc %1, %%dfc;" /* select supervisor */
51 " .word 0xf508;" /* pflush %a0@ */
52 " moveq %3, %1;" /* select user */
53 " movc %1, %%dfc;"
54 " .word 0xf508;" : "=d" (tmp) :
55 "0" (FC_SUPERD), "a" (r_va), "i" (FC_USERD));
59 * Invalidate supervisor side of TLB
61 static __inline void __attribute__((__unused__))
62 TBIAS_40(void)
65 * Cannot specify supervisor/user on pflusha, so we flush all
67 __asm volatile (" .word 0xf518;");
71 * Invalidate user side of TLB
73 static __inline void __attribute__((__unused__))
74 TBIAU_40(void)
77 * Cannot specify supervisor/user on pflusha, so we flush all
79 __asm volatile (" .word 0xf518;");
83 * Invalidate instruction cache
85 static __inline void __attribute__((__unused__))
86 ICIA_40(void)
88 __asm volatile (" .word 0xf498;"); /* cinva ic */
91 static __inline void __attribute__((__unused__))
92 ICPA_40(void)
94 __asm volatile (" .word 0xf498;"); /* cinva ic */
98 * Invalidate data cache.
100 static __inline void __attribute__((__unused__))
101 DCIA_40(void)
103 __asm volatile (" .word 0xf478;"); /* cpusha dc */
106 static __inline void __attribute__((__unused__))
107 DCIS_40(void)
109 __asm volatile (" .word 0xf478;"); /* cpusha dc */
112 static __inline void __attribute__((__unused__))
113 DCIU_40(void)
115 __asm volatile (" .word 0xf478;"); /* cpusha dc */
118 static __inline void __attribute__((__unused__))
119 DCIAS_40(paddr_t pa)
121 register uint8_t *r_pa __asm("%a0") = (void *)pa;
123 __asm volatile (" .word 0xf468;" : : "a" (r_pa)); /* cpushl dc,%a0@ */
126 static __inline void __attribute__((__unused__))
127 PCIA_40(void)
129 __asm volatile (" .word 0xf478;"); /* cpusha dc */
132 static __inline void __attribute__((__unused__))
133 DCFA_40(void)
135 __asm volatile (" .word 0xf478;"); /* cpusha dc */
138 /* invalidate instruction physical cache line */
139 static __inline void __attribute__((__unused__))
140 ICPL_40(paddr_t pa)
142 register uint8_t *r_pa __asm("%a0") = (void *)pa;
144 __asm volatile (" .word 0xf488;" : : "a" (r_pa)); /* cinvl ic,%a0@ */
147 /* invalidate instruction physical cache page */
148 static __inline void __attribute__((__unused__))
149 ICPP_40(paddr_t pa)
151 register uint8_t *r_pa __asm("%a0") = (void *)pa;
153 __asm volatile (" .word 0xf490;" : : "a" (r_pa)); /* cinvp ic,%a0@ */
156 /* invalidate data physical cache line */
157 static __inline void __attribute__((__unused__))
158 DCPL_40(paddr_t pa)
160 register uint8_t *r_pa __asm("%a0") = (void *)pa;
162 __asm volatile (" .word 0xf448;" : : "a" (r_pa)); /* cinvl dc,%a0@ */
165 /* invalidate data physical cache page */
166 static __inline void __attribute__((__unused__))
167 DCPP_40(paddr_t pa)
169 register uint8_t *r_pa __asm("%a0") = (void *)pa;
171 __asm volatile (" .word 0xf450;" : : "a" (r_pa)); /* cinvp dc,%a0@ */
174 /* invalidate data physical all */
175 static __inline void __attribute__((__unused__))
176 DCPA_40(void)
178 __asm volatile (" .word 0xf458;"); /* cinva dc */
181 /* data cache flush line */
182 static __inline void __attribute__((__unused__))
183 DCFL_40(paddr_t pa)
185 register uint8_t *r_pa __asm("%a0") = (void *)pa;
187 __asm volatile (" .word 0xf468;" : : "a" (r_pa)); /* cpushl dc,%a0@ */
190 /* data cache flush page */
191 static __inline void __attribute__((__unused__))
192 DCFP_40(paddr_t pa)
194 register uint8_t *r_pa __asm("%a0") = (void *)pa;
196 __asm volatile (" .word 0xf470;" : : "a" (r_pa)); /* cpushp dc,%a0@ */