Linux Audio

Check our new training course

Loading...
v6.2
  1/* SPDX-License-Identifier: GPL-2.0-only */
  2/*
  3 *  linux/arch/arm/mm/cache-v6.S
  4 *
  5 *  Copyright (C) 2001 Deep Blue Solutions Ltd.
  6 *
 
 
 
 
  7 *  This is the "shell" of the ARMv6 processor support.
  8 */
  9#include <linux/linkage.h>
 10#include <linux/init.h>
 11#include <asm/assembler.h>
 12#include <asm/errno.h>
 13#include <asm/unwind.h>
 14
 15#include "proc-macros.S"
 16
 17#define HARVARD_CACHE
 18#define CACHE_LINE_SIZE		32
 19#define D_CACHE_LINE_SIZE	32
 20#define BTB_FLUSH_SIZE		8
 21
 22.arch armv6
 23
 24/*
 25 *	v6_flush_icache_all()
 26 *
 27 *	Flush the whole I-cache.
 28 *
 29 *	ARM1136 erratum 411920 - Invalidate Instruction Cache operation can fail.
 30 *	This erratum is present in 1136, 1156 and 1176. It does not affect the
 31 *	MPCore.
 32 *
 33 *	Registers:
 34 *	r0 - set to 0
 35 *	r1 - corrupted
 36 */
 37ENTRY(v6_flush_icache_all)
 38	mov	r0, #0
 39#ifdef CONFIG_ARM_ERRATA_411920
 40	mrs	r1, cpsr
 41	cpsid	ifa				@ disable interrupts
 42	mcr	p15, 0, r0, c7, c5, 0		@ invalidate entire I-cache
 43	mcr	p15, 0, r0, c7, c5, 0		@ invalidate entire I-cache
 44	mcr	p15, 0, r0, c7, c5, 0		@ invalidate entire I-cache
 45	mcr	p15, 0, r0, c7, c5, 0		@ invalidate entire I-cache
 46	msr	cpsr_cx, r1			@ restore interrupts
 47	.rept	11				@ ARM Ltd recommends at least
 48	nop					@ 11 NOPs
 49	.endr
 50#else
 51	mcr	p15, 0, r0, c7, c5, 0		@ invalidate I-cache
 52#endif
 53	ret	lr
 54ENDPROC(v6_flush_icache_all)
 55
 56/*
 57 *	v6_flush_cache_all()
 58 *
 59 *	Flush the entire cache.
 60 *
 61 *	It is assumed that:
 62 */
 63ENTRY(v6_flush_kern_cache_all)
 64	mov	r0, #0
 65#ifdef HARVARD_CACHE
 66	mcr	p15, 0, r0, c7, c14, 0		@ D cache clean+invalidate
 67#ifndef CONFIG_ARM_ERRATA_411920
 68	mcr	p15, 0, r0, c7, c5, 0		@ I+BTB cache invalidate
 69#else
 70	b	v6_flush_icache_all
 71#endif
 72#else
 73	mcr	p15, 0, r0, c7, c15, 0		@ Cache clean+invalidate
 74#endif
 75	ret	lr
 76
 77/*
 78 *	v6_flush_cache_all()
 79 *
 80 *	Flush all TLB entries in a particular address space
 81 *
 82 *	- mm    - mm_struct describing address space
 83 */
 84ENTRY(v6_flush_user_cache_all)
 85	/*FALLTHROUGH*/
 86
 87/*
 88 *	v6_flush_cache_range(start, end, flags)
 89 *
 90 *	Flush a range of TLB entries in the specified address space.
 91 *
 92 *	- start - start address (may not be aligned)
 93 *	- end   - end address (exclusive, may not be aligned)
 94 *	- flags	- vm_area_struct flags describing address space
 95 *
 96 *	It is assumed that:
 97 *	- we have a VIPT cache.
 98 */
 99ENTRY(v6_flush_user_cache_range)
100	ret	lr
101
102/*
103 *	v6_coherent_kern_range(start,end)
104 *
105 *	Ensure that the I and D caches are coherent within specified
106 *	region.  This is typically used when code has been written to
107 *	a memory region, and will be executed.
108 *
109 *	- start   - virtual start address of region
110 *	- end     - virtual end address of region
111 *
112 *	It is assumed that:
113 *	- the Icache does not read data from the write buffer
114 */
115ENTRY(v6_coherent_kern_range)
116	/* FALLTHROUGH */
117
118/*
119 *	v6_coherent_user_range(start,end)
120 *
121 *	Ensure that the I and D caches are coherent within specified
122 *	region.  This is typically used when code has been written to
123 *	a memory region, and will be executed.
124 *
125 *	- start   - virtual start address of region
126 *	- end     - virtual end address of region
127 *
128 *	It is assumed that:
129 *	- the Icache does not read data from the write buffer
130 */
131ENTRY(v6_coherent_user_range)
132 UNWIND(.fnstart		)
133#ifdef HARVARD_CACHE
134	bic	r0, r0, #CACHE_LINE_SIZE - 1
1351:
136 USER(	mcr	p15, 0, r0, c7, c10, 1	)	@ clean D line
137	add	r0, r0, #CACHE_LINE_SIZE
138	cmp	r0, r1
139	blo	1b
140#endif
141	mov	r0, #0
142#ifdef HARVARD_CACHE
143	mcr	p15, 0, r0, c7, c10, 4		@ drain write buffer
144#ifndef CONFIG_ARM_ERRATA_411920
145	mcr	p15, 0, r0, c7, c5, 0		@ I+BTB cache invalidate
146#else
147	b	v6_flush_icache_all
148#endif
149#else
150	mcr	p15, 0, r0, c7, c5, 6		@ invalidate BTB
151#endif
152	ret	lr
153
154/*
155 * Fault handling for the cache operation above. If the virtual address in r0
156 * isn't mapped, fail with -EFAULT.
157 */
1589001:
159	mov	r0, #-EFAULT
160	ret	lr
161 UNWIND(.fnend		)
162ENDPROC(v6_coherent_user_range)
163ENDPROC(v6_coherent_kern_range)
164
165/*
166 *	v6_flush_kern_dcache_area(void *addr, size_t size)
167 *
168 *	Ensure that the data held in the page kaddr is written back
169 *	to the page in question.
170 *
171 *	- addr	- kernel address
172 *	- size	- region size
173 */
174ENTRY(v6_flush_kern_dcache_area)
175	add	r1, r0, r1
176	bic	r0, r0, #D_CACHE_LINE_SIZE - 1
1771:
178#ifdef HARVARD_CACHE
179	mcr	p15, 0, r0, c7, c14, 1		@ clean & invalidate D line
180#else
181	mcr	p15, 0, r0, c7, c15, 1		@ clean & invalidate unified line
182#endif	
183	add	r0, r0, #D_CACHE_LINE_SIZE
184	cmp	r0, r1
185	blo	1b
186#ifdef HARVARD_CACHE
187	mov	r0, #0
188	mcr	p15, 0, r0, c7, c10, 4
189#endif
190	ret	lr
191
192
193/*
194 *	v6_dma_inv_range(start,end)
195 *
196 *	Invalidate the data cache within the specified region; we will
197 *	be performing a DMA operation in this region and we want to
198 *	purge old data in the cache.
199 *
200 *	- start   - virtual start address of region
201 *	- end     - virtual end address of region
202 */
203v6_dma_inv_range:
204#ifdef CONFIG_DMA_CACHE_RWFO
205	ldrb	r2, [r0]			@ read for ownership
206	strb	r2, [r0]			@ write for ownership
207#endif
208	tst	r0, #D_CACHE_LINE_SIZE - 1
209	bic	r0, r0, #D_CACHE_LINE_SIZE - 1
210#ifdef HARVARD_CACHE
211	mcrne	p15, 0, r0, c7, c10, 1		@ clean D line
212#else
213	mcrne	p15, 0, r0, c7, c11, 1		@ clean unified line
214#endif
215	tst	r1, #D_CACHE_LINE_SIZE - 1
216#ifdef CONFIG_DMA_CACHE_RWFO
217	ldrbne	r2, [r1, #-1]			@ read for ownership
218	strbne	r2, [r1, #-1]			@ write for ownership
219#endif
220	bic	r1, r1, #D_CACHE_LINE_SIZE - 1
221#ifdef HARVARD_CACHE
222	mcrne	p15, 0, r1, c7, c14, 1		@ clean & invalidate D line
223#else
224	mcrne	p15, 0, r1, c7, c15, 1		@ clean & invalidate unified line
225#endif
2261:
227#ifdef HARVARD_CACHE
228	mcr	p15, 0, r0, c7, c6, 1		@ invalidate D line
229#else
230	mcr	p15, 0, r0, c7, c7, 1		@ invalidate unified line
231#endif
232	add	r0, r0, #D_CACHE_LINE_SIZE
233	cmp	r0, r1
234#ifdef CONFIG_DMA_CACHE_RWFO
235	ldrlo	r2, [r0]			@ read for ownership
236	strlo	r2, [r0]			@ write for ownership
237#endif
238	blo	1b
239	mov	r0, #0
240	mcr	p15, 0, r0, c7, c10, 4		@ drain write buffer
241	ret	lr
242
243/*
244 *	v6_dma_clean_range(start,end)
245 *	- start   - virtual start address of region
246 *	- end     - virtual end address of region
247 */
248v6_dma_clean_range:
249	bic	r0, r0, #D_CACHE_LINE_SIZE - 1
2501:
251#ifdef CONFIG_DMA_CACHE_RWFO
252	ldr	r2, [r0]			@ read for ownership
253#endif
254#ifdef HARVARD_CACHE
255	mcr	p15, 0, r0, c7, c10, 1		@ clean D line
256#else
257	mcr	p15, 0, r0, c7, c11, 1		@ clean unified line
258#endif
259	add	r0, r0, #D_CACHE_LINE_SIZE
260	cmp	r0, r1
261	blo	1b
262	mov	r0, #0
263	mcr	p15, 0, r0, c7, c10, 4		@ drain write buffer
264	ret	lr
265
266/*
267 *	v6_dma_flush_range(start,end)
268 *	- start   - virtual start address of region
269 *	- end     - virtual end address of region
270 */
271ENTRY(v6_dma_flush_range)
272#ifdef CONFIG_DMA_CACHE_RWFO
273	ldrb	r2, [r0]		@ read for ownership
274	strb	r2, [r0]		@ write for ownership
275#endif
276	bic	r0, r0, #D_CACHE_LINE_SIZE - 1
2771:
278#ifdef HARVARD_CACHE
279	mcr	p15, 0, r0, c7, c14, 1		@ clean & invalidate D line
280#else
281	mcr	p15, 0, r0, c7, c15, 1		@ clean & invalidate line
282#endif
283	add	r0, r0, #D_CACHE_LINE_SIZE
284	cmp	r0, r1
285#ifdef CONFIG_DMA_CACHE_RWFO
286	ldrblo	r2, [r0]			@ read for ownership
287	strblo	r2, [r0]			@ write for ownership
288#endif
289	blo	1b
290	mov	r0, #0
291	mcr	p15, 0, r0, c7, c10, 4		@ drain write buffer
292	ret	lr
293
294/*
295 *	dma_map_area(start, size, dir)
296 *	- start	- kernel virtual start address
297 *	- size	- size of region
298 *	- dir	- DMA direction
299 */
300ENTRY(v6_dma_map_area)
301	add	r1, r1, r0
302	teq	r2, #DMA_FROM_DEVICE
303	beq	v6_dma_inv_range
304#ifndef CONFIG_DMA_CACHE_RWFO
305	b	v6_dma_clean_range
306#else
307	teq	r2, #DMA_TO_DEVICE
308	beq	v6_dma_clean_range
309	b	v6_dma_flush_range
310#endif
311ENDPROC(v6_dma_map_area)
312
313/*
314 *	dma_unmap_area(start, size, dir)
315 *	- start	- kernel virtual start address
316 *	- size	- size of region
317 *	- dir	- DMA direction
318 */
319ENTRY(v6_dma_unmap_area)
320#ifndef CONFIG_DMA_CACHE_RWFO
321	add	r1, r1, r0
322	teq	r2, #DMA_TO_DEVICE
323	bne	v6_dma_inv_range
324#endif
325	ret	lr
326ENDPROC(v6_dma_unmap_area)
327
328	.globl	v6_flush_kern_cache_louis
329	.equ	v6_flush_kern_cache_louis, v6_flush_kern_cache_all
330
331	__INITDATA
332
333	@ define struct cpu_cache_fns (see <asm/cacheflush.h> and proc-macros.S)
334	define_cache_functions v6
v4.6
 
  1/*
  2 *  linux/arch/arm/mm/cache-v6.S
  3 *
  4 *  Copyright (C) 2001 Deep Blue Solutions Ltd.
  5 *
  6 * This program is free software; you can redistribute it and/or modify
  7 * it under the terms of the GNU General Public License version 2 as
  8 * published by the Free Software Foundation.
  9 *
 10 *  This is the "shell" of the ARMv6 processor support.
 11 */
 12#include <linux/linkage.h>
 13#include <linux/init.h>
 14#include <asm/assembler.h>
 15#include <asm/errno.h>
 16#include <asm/unwind.h>
 17
 18#include "proc-macros.S"
 19
 20#define HARVARD_CACHE
 21#define CACHE_LINE_SIZE		32
 22#define D_CACHE_LINE_SIZE	32
 23#define BTB_FLUSH_SIZE		8
 24
 
 
 25/*
 26 *	v6_flush_icache_all()
 27 *
 28 *	Flush the whole I-cache.
 29 *
 30 *	ARM1136 erratum 411920 - Invalidate Instruction Cache operation can fail.
 31 *	This erratum is present in 1136, 1156 and 1176. It does not affect the
 32 *	MPCore.
 33 *
 34 *	Registers:
 35 *	r0 - set to 0
 36 *	r1 - corrupted
 37 */
 38ENTRY(v6_flush_icache_all)
 39	mov	r0, #0
 40#ifdef CONFIG_ARM_ERRATA_411920
 41	mrs	r1, cpsr
 42	cpsid	ifa				@ disable interrupts
 43	mcr	p15, 0, r0, c7, c5, 0		@ invalidate entire I-cache
 44	mcr	p15, 0, r0, c7, c5, 0		@ invalidate entire I-cache
 45	mcr	p15, 0, r0, c7, c5, 0		@ invalidate entire I-cache
 46	mcr	p15, 0, r0, c7, c5, 0		@ invalidate entire I-cache
 47	msr	cpsr_cx, r1			@ restore interrupts
 48	.rept	11				@ ARM Ltd recommends at least
 49	nop					@ 11 NOPs
 50	.endr
 51#else
 52	mcr	p15, 0, r0, c7, c5, 0		@ invalidate I-cache
 53#endif
 54	ret	lr
 55ENDPROC(v6_flush_icache_all)
 56
 57/*
 58 *	v6_flush_cache_all()
 59 *
 60 *	Flush the entire cache.
 61 *
 62 *	It is assumed that:
 63 */
 64ENTRY(v6_flush_kern_cache_all)
 65	mov	r0, #0
 66#ifdef HARVARD_CACHE
 67	mcr	p15, 0, r0, c7, c14, 0		@ D cache clean+invalidate
 68#ifndef CONFIG_ARM_ERRATA_411920
 69	mcr	p15, 0, r0, c7, c5, 0		@ I+BTB cache invalidate
 70#else
 71	b	v6_flush_icache_all
 72#endif
 73#else
 74	mcr	p15, 0, r0, c7, c15, 0		@ Cache clean+invalidate
 75#endif
 76	ret	lr
 77
 78/*
 79 *	v6_flush_cache_all()
 80 *
 81 *	Flush all TLB entries in a particular address space
 82 *
 83 *	- mm    - mm_struct describing address space
 84 */
 85ENTRY(v6_flush_user_cache_all)
 86	/*FALLTHROUGH*/
 87
 88/*
 89 *	v6_flush_cache_range(start, end, flags)
 90 *
 91 *	Flush a range of TLB entries in the specified address space.
 92 *
 93 *	- start - start address (may not be aligned)
 94 *	- end   - end address (exclusive, may not be aligned)
 95 *	- flags	- vm_area_struct flags describing address space
 96 *
 97 *	It is assumed that:
 98 *	- we have a VIPT cache.
 99 */
100ENTRY(v6_flush_user_cache_range)
101	ret	lr
102
103/*
104 *	v6_coherent_kern_range(start,end)
105 *
106 *	Ensure that the I and D caches are coherent within specified
107 *	region.  This is typically used when code has been written to
108 *	a memory region, and will be executed.
109 *
110 *	- start   - virtual start address of region
111 *	- end     - virtual end address of region
112 *
113 *	It is assumed that:
114 *	- the Icache does not read data from the write buffer
115 */
116ENTRY(v6_coherent_kern_range)
117	/* FALLTHROUGH */
118
119/*
120 *	v6_coherent_user_range(start,end)
121 *
122 *	Ensure that the I and D caches are coherent within specified
123 *	region.  This is typically used when code has been written to
124 *	a memory region, and will be executed.
125 *
126 *	- start   - virtual start address of region
127 *	- end     - virtual end address of region
128 *
129 *	It is assumed that:
130 *	- the Icache does not read data from the write buffer
131 */
132ENTRY(v6_coherent_user_range)
133 UNWIND(.fnstart		)
134#ifdef HARVARD_CACHE
135	bic	r0, r0, #CACHE_LINE_SIZE - 1
1361:
137 USER(	mcr	p15, 0, r0, c7, c10, 1	)	@ clean D line
138	add	r0, r0, #CACHE_LINE_SIZE
139	cmp	r0, r1
140	blo	1b
141#endif
142	mov	r0, #0
143#ifdef HARVARD_CACHE
144	mcr	p15, 0, r0, c7, c10, 4		@ drain write buffer
145#ifndef CONFIG_ARM_ERRATA_411920
146	mcr	p15, 0, r0, c7, c5, 0		@ I+BTB cache invalidate
147#else
148	b	v6_flush_icache_all
149#endif
150#else
151	mcr	p15, 0, r0, c7, c5, 6		@ invalidate BTB
152#endif
153	ret	lr
154
155/*
156 * Fault handling for the cache operation above. If the virtual address in r0
157 * isn't mapped, fail with -EFAULT.
158 */
1599001:
160	mov	r0, #-EFAULT
161	ret	lr
162 UNWIND(.fnend		)
163ENDPROC(v6_coherent_user_range)
164ENDPROC(v6_coherent_kern_range)
165
166/*
167 *	v6_flush_kern_dcache_area(void *addr, size_t size)
168 *
169 *	Ensure that the data held in the page kaddr is written back
170 *	to the page in question.
171 *
172 *	- addr	- kernel address
173 *	- size	- region size
174 */
175ENTRY(v6_flush_kern_dcache_area)
176	add	r1, r0, r1
177	bic	r0, r0, #D_CACHE_LINE_SIZE - 1
1781:
179#ifdef HARVARD_CACHE
180	mcr	p15, 0, r0, c7, c14, 1		@ clean & invalidate D line
181#else
182	mcr	p15, 0, r0, c7, c15, 1		@ clean & invalidate unified line
183#endif	
184	add	r0, r0, #D_CACHE_LINE_SIZE
185	cmp	r0, r1
186	blo	1b
187#ifdef HARVARD_CACHE
188	mov	r0, #0
189	mcr	p15, 0, r0, c7, c10, 4
190#endif
191	ret	lr
192
193
194/*
195 *	v6_dma_inv_range(start,end)
196 *
197 *	Invalidate the data cache within the specified region; we will
198 *	be performing a DMA operation in this region and we want to
199 *	purge old data in the cache.
200 *
201 *	- start   - virtual start address of region
202 *	- end     - virtual end address of region
203 */
204v6_dma_inv_range:
205#ifdef CONFIG_DMA_CACHE_RWFO
206	ldrb	r2, [r0]			@ read for ownership
207	strb	r2, [r0]			@ write for ownership
208#endif
209	tst	r0, #D_CACHE_LINE_SIZE - 1
210	bic	r0, r0, #D_CACHE_LINE_SIZE - 1
211#ifdef HARVARD_CACHE
212	mcrne	p15, 0, r0, c7, c10, 1		@ clean D line
213#else
214	mcrne	p15, 0, r0, c7, c11, 1		@ clean unified line
215#endif
216	tst	r1, #D_CACHE_LINE_SIZE - 1
217#ifdef CONFIG_DMA_CACHE_RWFO
218	ldrneb	r2, [r1, #-1]			@ read for ownership
219	strneb	r2, [r1, #-1]			@ write for ownership
220#endif
221	bic	r1, r1, #D_CACHE_LINE_SIZE - 1
222#ifdef HARVARD_CACHE
223	mcrne	p15, 0, r1, c7, c14, 1		@ clean & invalidate D line
224#else
225	mcrne	p15, 0, r1, c7, c15, 1		@ clean & invalidate unified line
226#endif
2271:
228#ifdef HARVARD_CACHE
229	mcr	p15, 0, r0, c7, c6, 1		@ invalidate D line
230#else
231	mcr	p15, 0, r0, c7, c7, 1		@ invalidate unified line
232#endif
233	add	r0, r0, #D_CACHE_LINE_SIZE
234	cmp	r0, r1
235#ifdef CONFIG_DMA_CACHE_RWFO
236	ldrlo	r2, [r0]			@ read for ownership
237	strlo	r2, [r0]			@ write for ownership
238#endif
239	blo	1b
240	mov	r0, #0
241	mcr	p15, 0, r0, c7, c10, 4		@ drain write buffer
242	ret	lr
243
244/*
245 *	v6_dma_clean_range(start,end)
246 *	- start   - virtual start address of region
247 *	- end     - virtual end address of region
248 */
249v6_dma_clean_range:
250	bic	r0, r0, #D_CACHE_LINE_SIZE - 1
2511:
252#ifdef CONFIG_DMA_CACHE_RWFO
253	ldr	r2, [r0]			@ read for ownership
254#endif
255#ifdef HARVARD_CACHE
256	mcr	p15, 0, r0, c7, c10, 1		@ clean D line
257#else
258	mcr	p15, 0, r0, c7, c11, 1		@ clean unified line
259#endif
260	add	r0, r0, #D_CACHE_LINE_SIZE
261	cmp	r0, r1
262	blo	1b
263	mov	r0, #0
264	mcr	p15, 0, r0, c7, c10, 4		@ drain write buffer
265	ret	lr
266
267/*
268 *	v6_dma_flush_range(start,end)
269 *	- start   - virtual start address of region
270 *	- end     - virtual end address of region
271 */
272ENTRY(v6_dma_flush_range)
273#ifdef CONFIG_DMA_CACHE_RWFO
274	ldrb	r2, [r0]		@ read for ownership
275	strb	r2, [r0]		@ write for ownership
276#endif
277	bic	r0, r0, #D_CACHE_LINE_SIZE - 1
2781:
279#ifdef HARVARD_CACHE
280	mcr	p15, 0, r0, c7, c14, 1		@ clean & invalidate D line
281#else
282	mcr	p15, 0, r0, c7, c15, 1		@ clean & invalidate line
283#endif
284	add	r0, r0, #D_CACHE_LINE_SIZE
285	cmp	r0, r1
286#ifdef CONFIG_DMA_CACHE_RWFO
287	ldrlob	r2, [r0]			@ read for ownership
288	strlob	r2, [r0]			@ write for ownership
289#endif
290	blo	1b
291	mov	r0, #0
292	mcr	p15, 0, r0, c7, c10, 4		@ drain write buffer
293	ret	lr
294
295/*
296 *	dma_map_area(start, size, dir)
297 *	- start	- kernel virtual start address
298 *	- size	- size of region
299 *	- dir	- DMA direction
300 */
301ENTRY(v6_dma_map_area)
302	add	r1, r1, r0
303	teq	r2, #DMA_FROM_DEVICE
304	beq	v6_dma_inv_range
305#ifndef CONFIG_DMA_CACHE_RWFO
306	b	v6_dma_clean_range
307#else
308	teq	r2, #DMA_TO_DEVICE
309	beq	v6_dma_clean_range
310	b	v6_dma_flush_range
311#endif
312ENDPROC(v6_dma_map_area)
313
314/*
315 *	dma_unmap_area(start, size, dir)
316 *	- start	- kernel virtual start address
317 *	- size	- size of region
318 *	- dir	- DMA direction
319 */
320ENTRY(v6_dma_unmap_area)
321#ifndef CONFIG_DMA_CACHE_RWFO
322	add	r1, r1, r0
323	teq	r2, #DMA_TO_DEVICE
324	bne	v6_dma_inv_range
325#endif
326	ret	lr
327ENDPROC(v6_dma_unmap_area)
328
329	.globl	v6_flush_kern_cache_louis
330	.equ	v6_flush_kern_cache_louis, v6_flush_kern_cache_all
331
332	__INITDATA
333
334	@ define struct cpu_cache_fns (see <asm/cacheflush.h> and proc-macros.S)
335	define_cache_functions v6