1/*	$NetBSD: cpufunc_asm_arm11x6.S,v 1.1 2012/07/21 12:19:15 skrll Exp $	*/
2
3/*
4 * Copyright (c) 2007 Microsoft
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 *    notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 *    must display the following acknowledgement:
17 *	This product includes software developed by Microsoft
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
20 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTERS BE LIABLE FOR ANY DIRECT,
23 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32/*-
33 * Copyright (c) 2012 The NetBSD Foundation, Inc.
34 * All rights reserved.
35 *
36 * This code is derived from software contributed to The NetBSD Foundation
37 * by Eben Upton
38 *
39 * Redistribution and use in source and binary forms, with or without
40 * modification, are permitted provided that the following conditions
41 * are met:
42 * 1. Redistributions of source code must retain the above copyright
43 *    notice, this list of conditions and the following disclaimer.
44 * 2. Redistributions in binary form must reproduce the above copyright
45 *    notice, this list of conditions and the following disclaimer in the
46 *    documentation and/or other materials provided with the distribution.
47 *
48 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
49 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
50 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
51 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
52 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
53 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
54 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
55 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
56 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
57 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
58 * POSSIBILITY OF SUCH DAMAGE.
59 */
60
61
62#include <machine/asm.h>
63__FBSDID("$FreeBSD$");
64
65	.cpu arm1176jz-s
66
67#if 0
68#define Invalidate_I_cache(Rtmp1, Rtmp2) \
69	mcr	p15, 0, Rtmp1, c7, c5, 0	/* Invalidate Entire I cache */
70#else
71/*
72 * Workaround for
73 *
74 *    Erratum 411920 in ARM1136 (fixed in r1p4)
75 *    Erratum 415045 in ARM1176 (fixed in r0p5?)
76 *
77 *	- value of arg 'reg' Should Be Zero
78 */
79#define Invalidate_I_cache(Rtmp1, Rtmp2) \
80	mov	Rtmp1, #0;		/* SBZ */			\
81	mrs	Rtmp2, cpsr;						\
82	cpsid	ifa;							\
83	mcr	p15, 0, Rtmp1, c7, c5, 0;	/* Nuke Whole Icache */	\
84	mcr	p15, 0, Rtmp1, c7, c5, 0;	/* Nuke Whole Icache */	\
85	mcr	p15, 0, Rtmp1, c7, c5, 0;	/* Nuke Whole Icache */	\
86	mcr	p15, 0, Rtmp1, c7, c5, 0;	/* Nuke Whole Icache */	\
87	msr	cpsr_cx, Rtmp2;						\
88	nop;								\
89	nop;								\
90	nop;								\
91	nop;								\
92	nop;								\
93	nop;								\
94	nop;								\
95	nop;								\
96	nop;								\
97	nop;								\
98	nop;
99#endif
100
101#if 1
102#define Flush_D_cache(reg) \
103	mov	reg, #0;		/* SBZ */					\
104	mcr	p15, 0, reg, c7, c14, 0;/* Clean and Invalidate Entire Data Cache */	\
105	mcr	p15, 0, reg, c7, c10, 4;/* Data Synchronization Barrier */
106#else
107#define Flush_D_cache(reg) \
1081:	mov	reg, #0;		/* SBZ */					\
109	mcr	p15, 0, reg, c7, c14, 0;/* Clean and Invalidate Entire Data Cache */	\
110	mrc	p15, 0, reg, C7, C10, 6;/* Read Cache Dirty Status Register */		\
111	ands	reg, reg, #01;		/* Check if it is clean */			\
112	bne	1b;			/* loop if not */				\
113	mcr	p15, 0, reg, c7, c10, 4;/* Data Synchronization Barrier */
114#endif
115
116ENTRY(arm11x6_setttb)
117	mov	r1, #0
118	mcr	p15, 0, r0, c2, c0, 0	/* load new TTB */
119	mcr	p15, 0, r1, c8, c7, 0	/* invalidate I+D TLBs */
120	mcr	p15, 0, r1, c7, c10, 4	/* drain write buffer */
121	RET
122END(arm11x6_setttb)
123
124ENTRY_NP(arm11x6_idcache_wbinv_all)
125	Flush_D_cache(r0)
126	Invalidate_I_cache(r0, r1)
127	RET
128END(arm11x6_idcache_wbinv_all)
129
130ENTRY_NP(arm11x6_dcache_wbinv_all)
131	Flush_D_cache(r0)
132	RET
133END(arm11x6_dcache_wbinv_all)
134
135ENTRY_NP(arm11x6_icache_sync_range)
136	add	r1, r1, r0
137	sub	r1, r1, #1
138	/* Erratum ARM1136 371025, workaround #2 */
139	/* Erratum ARM1176 371367 */
140	mrs	r2, cpsr		/* save the CPSR */
141	cpsid	ifa			/* disable interrupts (irq,fiq,abort) */
142	mov	r3, #0
143	mcr	p15, 0, r3, c13, c0, 0	/* write FCSE (uTLB invalidate) */
144	mcr	p15, 0, r3, c7, c5, 4	/* flush prefetch buffer */
145	add	r3, pc, #0x24
146	mcr	p15, 0, r3, c7, c13, 1	/* prefetch I-cache line */
147	mcrr	p15, 0, r1, r0, c5	/* invalidate I-cache range */
148	msr	cpsr_cx, r2		/* local_irq_restore */
149	nop
150	nop
151	nop
152	nop
153	nop
154	nop
155	nop
156
157	mcrr	p15, 0, r1, r0, c12	/* clean and invalidate D cache range */ /* XXXNH */
158	mcr	p15, 0, r0, c7, c10, 4	/* drain the write buffer */
159	RET
160END(arm11x6_icache_sync_range)
161
162ENTRY_NP(arm11x6_idcache_wbinv_range)
163	add	r1, r1, r0
164	sub	r1, r1, #1
165	/* Erratum ARM1136 371025, workaround #2 */
166	/* Erratum ARM1176 371367 */
167	mrs	r2, cpsr		/* save the CPSR */
168	cpsid	ifa			/* disable interrupts (irq,fiq,abort) */
169	mov	r3, #0
170	mcr	p15, 0, r3, c13, c0, 0	/* write FCSE (uTLB invalidate) */
171	mcr	p15, 0, r3, c7, c5, 4	/* flush prefetch buffer */
172	add	r3, pc, #0x24
173	mcr	p15, 0, r3, c7, c13, 1	/* prefetch I-cache line */
174	mcrr	p15, 0, r1, r0, c5	/* invalidate I-cache range */
175	msr	cpsr_cx, r2		/* local_irq_restore */
176	nop
177	nop
178	nop
179	nop
180	nop
181	nop
182	nop
183
184	mcrr	p15, 0, r1, r0, c14	/* clean and invalidate D cache range */
185	mcr	p15, 0, r0, c7, c10, 4	/* drain the write buffer */
186	RET
187END(arm11x6_idcache_wbinv_range)
188
189/*
190 * Preload the cache before issuing the WFI by conditionally disabling the
191 * mcr intstructions the first time around the loop. Ensure the function is
192 * cacheline aligned.
193 */
194	.arch	armv6
195	.p2align 5
196
197ENTRY_NP(arm11x6_sleep)
198	mov	r0, #0
199	mov	r1, #2
2001:
201	subs	r1, #1
202	nop
203	mcreq	p15, 0, r0, c7, c10, 4		/* data sync barrier */
204	mcreq	p15, 0, r0, c7, c0, 4		/* wait for interrupt */
205	nop
206	nop
207	nop
208	bne	1b
209	RET
210END(arm11x6_sleep)
211
212