cpufunc.h revision 216972
1/*	$OpenBSD: pio.h,v 1.2 1998/09/15 10:50:12 pefo Exp $	*/
2
3/*-
4 * Copyright (c) 2002-2004 Juli Mallett.  All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 */
27/*
28 * Copyright (c) 1995-1999 Per Fogelstrom.  All rights reserved.
29 *
30 * Redistribution and use in source and binary forms, with or without
31 * modification, are permitted provided that the following conditions
32 * are met:
33 * 1. Redistributions of source code must retain the above copyright
34 *    notice, this list of conditions and the following disclaimer.
35 * 2. Redistributions in binary form must reproduce the above copyright
36 *    notice, this list of conditions and the following disclaimer in the
37 *    documentation and/or other materials provided with the distribution.
38 * 3. All advertising materials mentioning features or use of this software
39 *    must display the following acknowledgement:
40 *      This product includes software developed by Per Fogelstrom.
41 * 4. The name of the author may not be used to endorse or promote products
42 *    derived from this software without specific prior written permission
43 *
44 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
45 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
46 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
47 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
48 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
49 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
53 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
54 *
55 *	JNPR: cpufunc.h,v 1.5 2007/08/09 11:23:32 katta
56 * $FreeBSD: head/sys/mips/include/cpufunc.h 216972 2011-01-04 19:32:03Z jmallett $
57 */
58
59#ifndef _MACHINE_CPUFUNC_H_
60#define	_MACHINE_CPUFUNC_H_
61
62#include <sys/types.h>
63#include <machine/cpuregs.h>
64
65/*
66 * These functions are required by user-land atomi ops
67 */
68
69static __inline void
70mips_barrier(void)
71{
72	__asm __volatile (".set noreorder\n\t"
73			  "nop\n\t"
74			  "nop\n\t"
75			  "nop\n\t"
76			  "nop\n\t"
77			  "nop\n\t"
78			  "nop\n\t"
79			  "nop\n\t"
80			  "nop\n\t"
81			  ".set reorder\n\t"
82			  : : : "memory");
83}
84
85static __inline void
86mips_cp0_sync(void)
87{
88	__asm __volatile (__XSTRING(COP0_SYNC));
89}
90
91static __inline void
92mips_wbflush(void)
93{
94	__asm __volatile ("sync" : : : "memory");
95	mips_barrier();
96}
97
98static __inline void
99mips_read_membar(void)
100{
101	/* Nil */
102}
103
104static __inline void
105mips_write_membar(void)
106{
107	mips_wbflush();
108}
109
110#ifdef _KERNEL
111/*
112 * XXX
113 * It would be nice to add variants that read/write register_t, to avoid some
114 * ABI checks.
115 */
116#if defined(__mips_n32) || defined(__mips_n64)
117#define	MIPS_RW64_COP0(n,r)					\
118static __inline uint64_t					\
119mips_rd_ ## n (void)						\
120{								\
121	int v0;							\
122	__asm __volatile ("dmfc0 %[v0], $"__XSTRING(r)";"	\
123			  : [v0] "=&r"(v0));			\
124	mips_barrier();						\
125	return (v0);						\
126}								\
127static __inline void						\
128mips_wr_ ## n (uint64_t a0)					\
129{								\
130	__asm __volatile ("dmtc0 %[a0], $"__XSTRING(r)";"	\
131			 __XSTRING(COP0_SYNC)";"		\
132			 "nop;"					\
133			 "nop;"					\
134			 :					\
135			 : [a0] "r"(a0));			\
136	mips_barrier();						\
137} struct __hack
138
139#if defined(__mips_n64)
140MIPS_RW64_COP0(excpc, MIPS_COP_0_EXC_PC);
141MIPS_RW64_COP0(entrylo0, MIPS_COP_0_TLB_LO0);
142MIPS_RW64_COP0(entrylo1, MIPS_COP_0_TLB_LO1);
143MIPS_RW64_COP0(entryhi, MIPS_COP_0_TLB_HI);
144MIPS_RW64_COP0(pagemask, MIPS_COP_0_TLB_PG_MASK);
145#endif
146MIPS_RW64_COP0(xcontext, MIPS_COP_0_TLB_XCONTEXT);
147
148#undef	MIPS_RW64_COP0
149#endif
150
151#define	MIPS_RW32_COP0(n,r)					\
152static __inline uint32_t					\
153mips_rd_ ## n (void)						\
154{								\
155	int v0;							\
156	__asm __volatile ("mfc0 %[v0], $"__XSTRING(r)";"	\
157			  : [v0] "=&r"(v0));			\
158	mips_barrier();						\
159	return (v0);						\
160}								\
161static __inline void						\
162mips_wr_ ## n (uint32_t a0)					\
163{								\
164	__asm __volatile ("mtc0 %[a0], $"__XSTRING(r)";"	\
165			 __XSTRING(COP0_SYNC)";"		\
166			 "nop;"					\
167			 "nop;"					\
168			 :					\
169			 : [a0] "r"(a0));			\
170	mips_barrier();						\
171} struct __hack
172
173#define	MIPS_RW32_COP0_SEL(n,r,s)				\
174static __inline uint32_t					\
175mips_rd_ ## n(void)						\
176{								\
177	int v0;							\
178	__asm __volatile ("mfc0 %[v0], $"__XSTRING(r)", "__XSTRING(s)";"	\
179			  : [v0] "=&r"(v0));			\
180	mips_barrier();						\
181	return (v0);						\
182}								\
183static __inline void						\
184mips_wr_ ## n(uint32_t a0)					\
185{								\
186	__asm __volatile ("mtc0 %[a0], $"__XSTRING(r)", "__XSTRING(s)";"	\
187			 __XSTRING(COP0_SYNC)";"		\
188			 "nop;"					\
189			 "nop;"					\
190			 :					\
191			 : [a0] "r"(a0));			\
192	mips_barrier();						\
193} struct __hack
194
195#ifdef CPU_CNMIPS
196static __inline void mips_sync_icache (void)
197{
198	__asm __volatile (
199		".set push\n"
200		".set mips64\n"
201		".word 0x041f0000\n"		/* xxx ICACHE */
202		"nop\n"
203		".set pop\n"
204		: : );
205}
206#endif
207
208MIPS_RW32_COP0(compare, MIPS_COP_0_COMPARE);
209MIPS_RW32_COP0(config, MIPS_COP_0_CONFIG);
210MIPS_RW32_COP0_SEL(config1, MIPS_COP_0_CONFIG, 1);
211MIPS_RW32_COP0_SEL(config2, MIPS_COP_0_CONFIG, 2);
212MIPS_RW32_COP0_SEL(config3, MIPS_COP_0_CONFIG, 3);
213MIPS_RW32_COP0(count, MIPS_COP_0_COUNT);
214MIPS_RW32_COP0(index, MIPS_COP_0_TLB_INDEX);
215MIPS_RW32_COP0(wired, MIPS_COP_0_TLB_WIRED);
216MIPS_RW32_COP0(cause, MIPS_COP_0_CAUSE);
217#if !defined(__mips_n64)
218MIPS_RW32_COP0(excpc, MIPS_COP_0_EXC_PC);
219#endif
220MIPS_RW32_COP0(status, MIPS_COP_0_STATUS);
221
222/* XXX: Some of these registers are specific to MIPS32. */
223#if !defined(__mips_n64)
224MIPS_RW32_COP0(entrylo0, MIPS_COP_0_TLB_LO0);
225MIPS_RW32_COP0(entrylo1, MIPS_COP_0_TLB_LO1);
226MIPS_RW32_COP0(entryhi, MIPS_COP_0_TLB_HI);
227MIPS_RW32_COP0(pagemask, MIPS_COP_0_TLB_PG_MASK);
228#endif
229MIPS_RW32_COP0(prid, MIPS_COP_0_PRID);
230/* XXX 64-bit?  */
231MIPS_RW32_COP0_SEL(ebase, MIPS_COP_0_PRID, 1);
232MIPS_RW32_COP0(watchlo, MIPS_COP_0_WATCH_LO);
233MIPS_RW32_COP0_SEL(watchlo1, MIPS_COP_0_WATCH_LO, 1);
234MIPS_RW32_COP0_SEL(watchlo2, MIPS_COP_0_WATCH_LO, 2);
235MIPS_RW32_COP0_SEL(watchlo3, MIPS_COP_0_WATCH_LO, 3);
236MIPS_RW32_COP0(watchhi, MIPS_COP_0_WATCH_HI);
237MIPS_RW32_COP0_SEL(watchhi1, MIPS_COP_0_WATCH_HI, 1);
238MIPS_RW32_COP0_SEL(watchhi2, MIPS_COP_0_WATCH_HI, 2);
239MIPS_RW32_COP0_SEL(watchhi3, MIPS_COP_0_WATCH_HI, 3);
240
241MIPS_RW32_COP0_SEL(perfcnt0, MIPS_COP_0_PERFCNT, 0);
242MIPS_RW32_COP0_SEL(perfcnt1, MIPS_COP_0_PERFCNT, 1);
243MIPS_RW32_COP0_SEL(perfcnt2, MIPS_COP_0_PERFCNT, 2);
244MIPS_RW32_COP0_SEL(perfcnt3, MIPS_COP_0_PERFCNT, 3);
245
246#undef	MIPS_RW32_COP0
247#undef	MIPS_RW32_COP0_SEL
248
249static __inline register_t
250intr_disable(void)
251{
252	register_t s;
253
254	s = mips_rd_status();
255	mips_wr_status(s & ~MIPS_SR_INT_IE);
256
257	return (s & MIPS_SR_INT_IE);
258}
259
260static __inline register_t
261intr_enable(void)
262{
263	register_t s;
264
265	s = mips_rd_status();
266	mips_wr_status(s | MIPS_SR_INT_IE);
267
268	return (s);
269}
270
271static __inline void
272intr_restore(register_t ie)
273{
274	if (ie == MIPS_SR_INT_IE) {
275		intr_enable();
276	}
277}
278
279static __inline uint32_t
280set_intr_mask(uint32_t mask)
281{
282	uint32_t ostatus;
283
284	ostatus = mips_rd_status();
285	mask = (ostatus & ~MIPS_SR_INT_MASK) | (mask & MIPS_SR_INT_MASK);
286	mips_wr_status(mask);
287	return (ostatus);
288}
289
290static __inline uint32_t
291get_intr_mask(void)
292{
293
294	return (mips_rd_status() & MIPS_SR_INT_MASK);
295}
296
297static __inline void
298breakpoint(void)
299{
300	__asm __volatile ("break");
301}
302
303#if defined(__GNUC__) && !defined(__mips_o32)
304static inline uint64_t
305mips3_ld(const volatile uint64_t *va)
306{
307	uint64_t rv;
308
309#if defined(_LP64)
310	rv = *va;
311#else
312	__asm volatile("ld	%0,0(%1)" : "=d"(rv) : "r"(va));
313#endif
314
315	return (rv);
316}
317
318static inline void
319mips3_sd(volatile uint64_t *va, uint64_t v)
320{
321#if defined(_LP64)
322	*va = v;
323#else
324	__asm volatile("sd	%0,0(%1)" :: "r"(v), "r"(va));
325#endif
326}
327#else
328uint64_t mips3_ld(volatile uint64_t *va);
329void mips3_sd(volatile uint64_t *, uint64_t);
330#endif	/* __GNUC__ */
331
332#endif /* _KERNEL */
333
334#define	readb(va)	(*(volatile uint8_t *) (va))
335#define	readw(va)	(*(volatile uint16_t *) (va))
336#define	readl(va)	(*(volatile uint32_t *) (va))
337
338#define	writeb(va, d)	(*(volatile uint8_t *) (va) = (d))
339#define	writew(va, d)	(*(volatile uint16_t *) (va) = (d))
340#define	writel(va, d)	(*(volatile uint32_t *) (va) = (d))
341
342/*
343 * I/O macros.
344 */
345
346#define	outb(a,v)	(*(volatile unsigned char*)(a) = (v))
347#define	out8(a,v)	(*(volatile unsigned char*)(a) = (v))
348#define	outw(a,v)	(*(volatile unsigned short*)(a) = (v))
349#define	out16(a,v)	outw(a,v)
350#define	outl(a,v)	(*(volatile unsigned int*)(a) = (v))
351#define	out32(a,v)	outl(a,v)
352#define	inb(a)		(*(volatile unsigned char*)(a))
353#define	in8(a)		(*(volatile unsigned char*)(a))
354#define	inw(a)		(*(volatile unsigned short*)(a))
355#define	in16(a)		inw(a)
356#define	inl(a)		(*(volatile unsigned int*)(a))
357#define	in32(a)		inl(a)
358
359#define	out8rb(a,v)	(*(volatile unsigned char*)(a) = (v))
360#define	out16rb(a,v)	(__out16rb((volatile uint16_t *)(a), v))
361#define	out32rb(a,v)	(__out32rb((volatile uint32_t *)(a), v))
362#define	in8rb(a)	(*(volatile unsigned char*)(a))
363#define	in16rb(a)	(__in16rb((volatile uint16_t *)(a)))
364#define	in32rb(a)	(__in32rb((volatile uint32_t *)(a)))
365
366#define	_swap_(x)	(((x) >> 24) | ((x) << 24) | \
367	    (((x) >> 8) & 0xff00) | (((x) & 0xff00) << 8))
368
369static __inline void __out32rb(volatile uint32_t *, uint32_t);
370static __inline void __out16rb(volatile uint16_t *, uint16_t);
371static __inline uint32_t __in32rb(volatile uint32_t *);
372static __inline uint16_t __in16rb(volatile uint16_t *);
373
374static __inline void
375__out32rb(volatile uint32_t *a, uint32_t v)
376{
377	uint32_t _v_ = v;
378
379	_v_ = _swap_(_v_);
380	out32(a, _v_);
381}
382
383static __inline void
384__out16rb(volatile uint16_t *a, uint16_t v)
385{
386	uint16_t _v_;
387
388	_v_ = ((v >> 8) & 0xff) | (v << 8);
389	out16(a, _v_);
390}
391
392static __inline uint32_t
393__in32rb(volatile uint32_t *a)
394{
395	uint32_t _v_;
396
397	_v_ = in32(a);
398	_v_ = _swap_(_v_);
399	return _v_;
400}
401
402static __inline uint16_t
403__in16rb(volatile uint16_t *a)
404{
405	uint16_t _v_;
406
407	_v_ = in16(a);
408	_v_ = ((_v_ >> 8) & 0xff) | (_v_ << 8);
409	return _v_;
410}
411
412void insb(uint8_t *, uint8_t *,int);
413void insw(uint16_t *, uint16_t *,int);
414void insl(uint32_t *, uint32_t *,int);
415void outsb(uint8_t *, const uint8_t *,int);
416void outsw(uint16_t *, const uint16_t *,int);
417void outsl(uint32_t *, const uint32_t *,int);
418u_int loadandclear(volatile u_int *addr);
419
420#endif /* !_MACHINE_CPUFUNC_H_ */
421