blob: 82ecb6c5f01510700934de6850bf1ffe45f6b89f [file] [log] [blame]
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +00001/*
2 * Cache maintenance
3 *
4 * Copyright (C) 2001 Deep Blue Solutions Ltd.
5 * Copyright (C) 2012 ARM Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
Vladimir Murzina2d25a52014-12-01 10:53:08 +000020#include <linux/errno.h>
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000021#include <linux/linkage.h>
22#include <linux/init.h>
23#include <asm/assembler.h>
Andre Przywara301bcfa2014-11-14 15:54:10 +000024#include <asm/cpufeature.h>
Marc Zyngier8d883b22015-06-01 10:47:41 +010025#include <asm/alternative.h>
Catalin Marinascfa93772016-09-02 14:54:03 +010026#include <asm/uaccess.h>
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000027
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000028/*
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000029 * flush_icache_range(start,end)
30 *
31 * Ensure that the I and D caches are coherent within specified region.
32 * This is typically used when code has been written to a memory region,
33 * and will be executed.
34 *
35 * - start - virtual start address of region
36 * - end - virtual end address of region
37 */
38ENTRY(flush_icache_range)
39 /* FALLTHROUGH */
40
41/*
42 * __flush_cache_user_range(start,end)
43 *
44 * Ensure that the I and D caches are coherent within specified region.
45 * This is typically used when code has been written to a memory region,
46 * and will be executed.
47 *
48 * - start - virtual start address of region
49 * - end - virtual end address of region
50 */
51ENTRY(__flush_cache_user_range)
Will Deacon599c71f2017-08-10 13:58:16 +010052 uaccess_ttbr0_enable x2, x3, x4
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000053 dcache_line_size x2, x3
54 sub x3, x2, #1
55 bic x4, x0, x3
561:
Andre Przywara290622e2016-06-28 18:07:28 +010057user_alt 9f, "dc cvau, x4", "dc civac, x4", ARM64_WORKAROUND_CLEAN_CACHE
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000058 add x4, x4, x2
59 cmp x4, x1
60 b.lo 1b
Will Deacondc60b772014-05-02 16:24:15 +010061 dsb ish
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000062
63 icache_line_size x2, x3
64 sub x3, x2, #1
65 bic x4, x0, x3
661:
67USER(9f, ic ivau, x4 ) // invalidate I line PoU
68 add x4, x4, x2
69 cmp x4, x1
70 b.lo 1b
Will Deacondc60b772014-05-02 16:24:15 +010071 dsb ish
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000072 isb
Vladimir Murzina2d25a52014-12-01 10:53:08 +000073 mov x0, #0
Catalin Marinascfa93772016-09-02 14:54:03 +0100741:
Catalin Marinas87883132018-01-10 13:18:30 +000075 uaccess_ttbr0_disable x1, x2
Vladimir Murzina2d25a52014-12-01 10:53:08 +000076 ret
779:
78 mov x0, #-EFAULT
Catalin Marinascfa93772016-09-02 14:54:03 +010079 b 1b
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000080ENDPROC(flush_icache_range)
81ENDPROC(__flush_cache_user_range)
82
83/*
Jingoo Han03324e62014-01-21 01:17:47 +000084 * __flush_dcache_area(kaddr, size)
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000085 *
Ashok Kumar0a287142015-12-17 01:38:32 -080086 * Ensure that any D-cache lines for the interval [kaddr, kaddr+size)
87 * are cleaned and invalidated to the PoC.
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000088 *
89 * - kaddr - kernel address
90 * - size - size in question
91 */
92ENTRY(__flush_dcache_area)
Ashok Kumar0a287142015-12-17 01:38:32 -080093 dcache_by_line_op civac, sy, x0, x1, x2, x3
Catalin Marinasf1a0c4a2012-03-05 11:49:28 +000094 ret
Ard Biesheuvel20791842015-10-08 20:02:03 +010095ENDPIPROC(__flush_dcache_area)
Catalin Marinas73635902013-05-21 17:35:19 +010096
97/*
Ashok Kumar0a287142015-12-17 01:38:32 -080098 * __clean_dcache_area_pou(kaddr, size)
99 *
100 * Ensure that any D-cache lines for the interval [kaddr, kaddr+size)
101 * are cleaned to the PoU.
102 *
103 * - kaddr - kernel address
104 * - size - size in question
105 */
106ENTRY(__clean_dcache_area_pou)
107 dcache_by_line_op cvau, ish, x0, x1, x2, x3
108 ret
109ENDPROC(__clean_dcache_area_pou)
110
111/*
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900112 * __dma_inv_area(start, size)
113 * - start - virtual start address of region
114 * - size - size in question
115 */
116__dma_inv_area:
117 add x1, x1, x0
118 /* FALLTHROUGH */
119
120/*
Catalin Marinasc218bca2014-03-26 18:25:55 +0000121 * __inval_cache_range(start, end)
122 * - start - start address of region
123 * - end - end address of region
124 */
125ENTRY(__inval_cache_range)
Catalin Marinas73635902013-05-21 17:35:19 +0100126 dcache_line_size x2, x3
127 sub x3, x2, #1
Catalin Marinasebf81a92014-04-01 18:32:55 +0100128 tst x1, x3 // end cache line aligned?
Catalin Marinas73635902013-05-21 17:35:19 +0100129 bic x1, x1, x3
Catalin Marinasebf81a92014-04-01 18:32:55 +0100130 b.eq 1f
131 dc civac, x1 // clean & invalidate D / U line
1321: tst x0, x3 // start cache line aligned?
133 bic x0, x0, x3
134 b.eq 2f
135 dc civac, x0 // clean & invalidate D / U line
136 b 3f
1372: dc ivac, x0 // invalidate D / U line
1383: add x0, x0, x2
Catalin Marinas73635902013-05-21 17:35:19 +0100139 cmp x0, x1
Catalin Marinasebf81a92014-04-01 18:32:55 +0100140 b.lo 2b
Catalin Marinas73635902013-05-21 17:35:19 +0100141 dsb sy
142 ret
Ard Biesheuvel20791842015-10-08 20:02:03 +0100143ENDPIPROC(__inval_cache_range)
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900144ENDPROC(__dma_inv_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100145
146/*
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900147 * __clean_dcache_area_poc(kaddr, size)
148 *
149 * Ensure that any D-cache lines for the interval [kaddr, kaddr+size)
150 * are cleaned to the PoC.
151 *
152 * - kaddr - kernel address
153 * - size - size in question
Catalin Marinas73635902013-05-21 17:35:19 +0100154 */
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900155ENTRY(__clean_dcache_area_poc)
156 /* FALLTHROUGH */
Catalin Marinas73635902013-05-21 17:35:19 +0100157
158/*
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900159 * __dma_clean_area(start, size)
Catalin Marinas73635902013-05-21 17:35:19 +0100160 * - start - virtual start address of region
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900161 * - size - size in question
Catalin Marinas73635902013-05-21 17:35:19 +0100162 */
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900163__dma_clean_area:
164 dcache_by_line_op cvac, sy, x0, x1, x2, x3
Catalin Marinas73635902013-05-21 17:35:19 +0100165 ret
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900166ENDPIPROC(__clean_dcache_area_poc)
167ENDPROC(__dma_clean_area)
168
169/*
170 * __dma_flush_area(start, size)
171 *
172 * clean & invalidate D / U line
173 *
174 * - start - virtual start address of region
175 * - size - size in question
176 */
177ENTRY(__dma_flush_area)
178 dcache_by_line_op civac, sy, x0, x1, x2, x3
179 ret
180ENDPIPROC(__dma_flush_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100181
182/*
183 * __dma_map_area(start, size, dir)
184 * - start - kernel virtual start address
185 * - size - size of region
186 * - dir - DMA direction
187 */
188ENTRY(__dma_map_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100189 cmp w2, #DMA_FROM_DEVICE
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900190 b.eq __dma_inv_area
191 b __dma_clean_area
Ard Biesheuvel20791842015-10-08 20:02:03 +0100192ENDPIPROC(__dma_map_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100193
194/*
195 * __dma_unmap_area(start, size, dir)
196 * - start - kernel virtual start address
197 * - size - size of region
198 * - dir - DMA direction
199 */
200ENTRY(__dma_unmap_area)
Catalin Marinas73635902013-05-21 17:35:19 +0100201 cmp w2, #DMA_TO_DEVICE
Kwangwoo Leed34fdb72016-08-02 09:50:50 +0900202 b.ne __dma_inv_area
Catalin Marinas73635902013-05-21 17:35:19 +0100203 ret
Ard Biesheuvel20791842015-10-08 20:02:03 +0100204ENDPIPROC(__dma_unmap_area)