blob: 810af0f0db45b576af978c575d9372e8973c995b [file] [log] [blame]
Soby Mathewd29f67b2016-05-05 12:31:57 +01001/*
2 * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
3 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Soby Mathewd29f67b2016-05-05 12:31:57 +01005 */
6
7#include <arch.h>
8#include <asm_macros.S>
9
10 .globl flush_dcache_range
11 .globl clean_dcache_range
12 .globl inv_dcache_range
13 .globl dcsw_op_louis
14 .globl dcsw_op_all
15 .globl dcsw_op_level1
16 .globl dcsw_op_level2
17 .globl dcsw_op_level3
18
19/*
20 * This macro can be used for implementing various data cache operations `op`
21 */
22.macro do_dcache_maintenance_by_mva op, coproc, opc1, CRn, CRm, opc2
Soby Mathewf7e8aee2017-06-15 16:18:45 +010023 /* Exit early if size is zero */
24 cmp r1, #0
25 beq exit_loop_\op
Soby Mathewd29f67b2016-05-05 12:31:57 +010026 dcache_line_size r2, r3
27 add r1, r0, r1
28 sub r3, r2, #1
29 bic r0, r0, r3
30loop_\op:
31 stcopr r0, \coproc, \opc1, \CRn, \CRm, \opc2
32 add r0, r0, r2
33 cmp r0, r1
34 blo loop_\op
35 dsb sy
Soby Mathewf7e8aee2017-06-15 16:18:45 +010036exit_loop_\op:
Soby Mathewd29f67b2016-05-05 12:31:57 +010037 bx lr
38.endm
39
40 /* ------------------------------------------
41 * Clean+Invalidate from base address till
42 * size. 'r0' = addr, 'r1' = size
43 * ------------------------------------------
44 */
45func flush_dcache_range
46 do_dcache_maintenance_by_mva cimvac, DCCIMVAC
47endfunc flush_dcache_range
48
49 /* ------------------------------------------
50 * Clean from base address till size.
51 * 'r0' = addr, 'r1' = size
52 * ------------------------------------------
53 */
54func clean_dcache_range
55 do_dcache_maintenance_by_mva cmvac, DCCMVAC
56endfunc clean_dcache_range
57
58 /* ------------------------------------------
59 * Invalidate from base address till
60 * size. 'r0' = addr, 'r1' = size
61 * ------------------------------------------
62 */
63func inv_dcache_range
64 do_dcache_maintenance_by_mva imvac, DCIMVAC
65endfunc inv_dcache_range
66
67 /* ----------------------------------------------------------------
68 * Data cache operations by set/way to the level specified
69 *
70 * The main function, do_dcsw_op requires:
71 * r0: The operation type (DC_OP_ISW, DC_OP_CISW, DC_OP_CSW),
72 * as defined in arch.h
73 * r1: The cache level to begin operation from
74 * r2: clidr_el1
75 * r3: The last cache level to operate on
76 * and will carry out the operation on each data cache from level 0
77 * to the level in r3 in sequence
78 *
79 * The dcsw_op macro sets up the r2 and r3 parameters based on
80 * clidr_el1 cache information before invoking the main function
81 * ----------------------------------------------------------------
82 */
83
84 .macro dcsw_op shift, fw, ls
85 ldcopr r2, CLIDR
86 ubfx r3, r2, \shift, \fw
87 lsl r3, r3, \ls
88 mov r1, #0
89 b do_dcsw_op
90 .endm
91
92func do_dcsw_op
93 push {r4-r12,lr}
94 adr r11, dcsw_loop_table // compute cache op based on the operation type
95 add r6, r11, r0, lsl #3 // cache op is 2x32-bit instructions
96loop1:
97 add r10, r1, r1, LSR #1 // Work out 3x current cache level
98 mov r12, r2, LSR r10 // extract cache type bits from clidr
99 and r12, r12, #7 // mask the bits for current cache only
100 cmp r12, #2 // see what cache we have at this level
Douglas Raillard9d92e8c2017-03-07 16:36:14 +0000101 blo level_done // no cache or only instruction cache at this level
Soby Mathewd29f67b2016-05-05 12:31:57 +0100102
103 stcopr r1, CSSELR // select current cache level in csselr
104 isb // isb to sych the new cssr&csidr
105 ldcopr r12, CCSIDR // read the new ccsidr
106 and r10, r12, #7 // extract the length of the cache lines
107 add r10, r10, #4 // add 4 (r10 = line length offset)
108 ubfx r4, r12, #3, #10 // r4 = maximum way number (right aligned)
109 clz r5, r4 // r5 = the bit position of the way size increment
110 mov r9, r4 // r9 working copy of the aligned max way number
111
112loop2:
113 ubfx r7, r12, #13, #15 // r7 = max set number (right aligned)
114
115loop3:
116 orr r0, r1, r9, LSL r5 // factor in the way number and cache level into r0
117 orr r0, r0, r7, LSL r10 // factor in the set number
118
119 blx r6
120 subs r7, r7, #1 // decrement the set number
Douglas Raillard9d92e8c2017-03-07 16:36:14 +0000121 bhs loop3
Soby Mathewd29f67b2016-05-05 12:31:57 +0100122 subs r9, r9, #1 // decrement the way number
Douglas Raillard9d92e8c2017-03-07 16:36:14 +0000123 bhs loop2
Soby Mathewd29f67b2016-05-05 12:31:57 +0100124level_done:
125 add r1, r1, #2 // increment the cache number
126 cmp r3, r1
127 dsb sy // ensure completion of previous cache maintenance instruction
Douglas Raillard9d92e8c2017-03-07 16:36:14 +0000128 bhi loop1
Soby Mathewd29f67b2016-05-05 12:31:57 +0100129
130 mov r6, #0
131 stcopr r6, CSSELR //select cache level 0 in csselr
132 dsb sy
133 isb
134 pop {r4-r12,pc}
135
136dcsw_loop_table:
137 stcopr r0, DCISW
138 bx lr
139 stcopr r0, DCCISW
140 bx lr
141 stcopr r0, DCCSW
142 bx lr
143
144endfunc do_dcsw_op
145
146 /* ---------------------------------------------------------------
147 * Data cache operations by set/way till PoU.
148 *
149 * The function requires :
150 * r0: The operation type (DC_OP_ISW, DC_OP_CISW, DC_OP_CSW),
151 * as defined in arch.h
152 * ---------------------------------------------------------------
153 */
154func dcsw_op_louis
155 dcsw_op #LOUIS_SHIFT, #CLIDR_FIELD_WIDTH, #LEVEL_SHIFT
156endfunc dcsw_op_louis
157
158 /* ---------------------------------------------------------------
159 * Data cache operations by set/way till PoC.
160 *
161 * The function requires :
162 * r0: The operation type (DC_OP_ISW, DC_OP_CISW, DC_OP_CSW),
163 * as defined in arch.h
164 * ---------------------------------------------------------------
165 */
166func dcsw_op_all
167 dcsw_op #LOC_SHIFT, #CLIDR_FIELD_WIDTH, #LEVEL_SHIFT
168endfunc dcsw_op_all
169
170
171 /* ---------------------------------------------------------------
172 * Helper macro for data cache operations by set/way for the
173 * level specified
174 * ---------------------------------------------------------------
175 */
176 .macro dcsw_op_level level
177 ldcopr r2, CLIDR
178 mov r3, \level
179 sub r1, r3, #2
180 b do_dcsw_op
181 .endm
182
183 /* ---------------------------------------------------------------
184 * Data cache operations by set/way for level 1 cache
185 *
186 * The main function, do_dcsw_op requires:
187 * r0: The operation type (DC_OP_ISW, DC_OP_CISW, DC_OP_CSW),
188 * as defined in arch.h
189 * ---------------------------------------------------------------
190 */
191func dcsw_op_level1
192 dcsw_op_level #(1 << LEVEL_SHIFT)
193endfunc dcsw_op_level1
194
195 /* ---------------------------------------------------------------
196 * Data cache operations by set/way for level 2 cache
197 *
198 * The main function, do_dcsw_op requires:
199 * r0: The operation type (DC_OP_ISW, DC_OP_CISW, DC_OP_CSW),
200 * as defined in arch.h
201 * ---------------------------------------------------------------
202 */
203func dcsw_op_level2
204 dcsw_op_level #(2 << LEVEL_SHIFT)
205endfunc dcsw_op_level2
206
207 /* ---------------------------------------------------------------
208 * Data cache operations by set/way for level 3 cache
209 *
210 * The main function, do_dcsw_op requires:
211 * r0: The operation type (DC_OP_ISW, DC_OP_CISW, DC_OP_CSW),
212 * as defined in arch.h
213 * ---------------------------------------------------------------
214 */
215func dcsw_op_level3
216 dcsw_op_level #(3 << LEVEL_SHIFT)
217endfunc dcsw_op_level3