David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2013 |
| 3 | * David Feng <fenghua@phytium.com.cn> |
| 4 | * |
| 5 | * This file is based on sample code from ARMv8 ARM. |
| 6 | * |
| 7 | * SPDX-License-Identifier: GPL-2.0+ |
| 8 | */ |
| 9 | |
| 10 | #include <asm-offsets.h> |
| 11 | #include <config.h> |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 12 | #include <asm/macro.h> |
Alexander Graf | 5e2ec77 | 2016-03-04 01:09:47 +0100 | [diff] [blame] | 13 | #include <asm/system.h> |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 14 | #include <linux/linkage.h> |
| 15 | |
| 16 | /* |
Masahiro Yamada | ba9eb6c | 2016-05-17 16:38:08 +0900 | [diff] [blame] | 17 | * void __asm_dcache_level(level) |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 18 | * |
Masahiro Yamada | ba9eb6c | 2016-05-17 16:38:08 +0900 | [diff] [blame] | 19 | * flush or invalidate one level cache. |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 20 | * |
| 21 | * x0: cache level |
Masahiro Yamada | 1a02123 | 2016-05-17 16:38:07 +0900 | [diff] [blame] | 22 | * x1: 0 clean & invalidate, 1 invalidate only |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 23 | * x2~x9: clobbered |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 24 | */ |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 25 | .pushsection .text.__asm_dcache_level, "ax" |
Masahiro Yamada | ba9eb6c | 2016-05-17 16:38:08 +0900 | [diff] [blame] | 26 | ENTRY(__asm_dcache_level) |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 27 | lsl x12, x0, #1 |
| 28 | msr csselr_el1, x12 /* select cache level */ |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 29 | isb /* sync change of cssidr_el1 */ |
| 30 | mrs x6, ccsidr_el1 /* read the new cssidr_el1 */ |
| 31 | and x2, x6, #7 /* x2 <- log2(cache line size)-4 */ |
| 32 | add x2, x2, #4 /* x2 <- log2(cache line size) */ |
| 33 | mov x3, #0x3ff |
| 34 | and x3, x3, x6, lsr #3 /* x3 <- max number of #ways */ |
Leo Yan | 42ddfad | 2014-03-31 09:50:35 +0800 | [diff] [blame] | 35 | clz w5, w3 /* bit position of #ways */ |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 36 | mov x4, #0x7fff |
| 37 | and x4, x4, x6, lsr #13 /* x4 <- max number of #sets */ |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 38 | /* x12 <- cache level << 1 */ |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 39 | /* x2 <- line length offset */ |
| 40 | /* x3 <- number of cache ways - 1 */ |
| 41 | /* x4 <- number of cache sets - 1 */ |
| 42 | /* x5 <- bit position of #ways */ |
| 43 | |
| 44 | loop_set: |
| 45 | mov x6, x3 /* x6 <- working copy of #ways */ |
| 46 | loop_way: |
| 47 | lsl x7, x6, x5 |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 48 | orr x9, x12, x7 /* map way and level to cisw value */ |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 49 | lsl x7, x4, x2 |
| 50 | orr x9, x9, x7 /* map set number to cisw value */ |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 51 | tbz w1, #0, 1f |
| 52 | dc isw, x9 |
| 53 | b 2f |
| 54 | 1: dc cisw, x9 /* clean & invalidate by set/way */ |
| 55 | 2: subs x6, x6, #1 /* decrement the way */ |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 56 | b.ge loop_way |
| 57 | subs x4, x4, #1 /* decrement the set */ |
| 58 | b.ge loop_set |
| 59 | |
| 60 | ret |
Masahiro Yamada | ba9eb6c | 2016-05-17 16:38:08 +0900 | [diff] [blame] | 61 | ENDPROC(__asm_dcache_level) |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 62 | .popsection |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 63 | |
| 64 | /* |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 65 | * void __asm_flush_dcache_all(int invalidate_only) |
| 66 | * |
Masahiro Yamada | 1a02123 | 2016-05-17 16:38:07 +0900 | [diff] [blame] | 67 | * x0: 0 clean & invalidate, 1 invalidate only |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 68 | * |
Masahiro Yamada | ba9eb6c | 2016-05-17 16:38:08 +0900 | [diff] [blame] | 69 | * flush or invalidate all data cache by SET/WAY. |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 70 | */ |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 71 | .pushsection .text.__asm_dcache_all, "ax" |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 72 | ENTRY(__asm_dcache_all) |
| 73 | mov x1, x0 |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 74 | dsb sy |
| 75 | mrs x10, clidr_el1 /* read clidr_el1 */ |
| 76 | lsr x11, x10, #24 |
| 77 | and x11, x11, #0x7 /* x11 <- loc */ |
| 78 | cbz x11, finished /* if loc is 0, exit */ |
| 79 | mov x15, lr |
| 80 | mov x0, #0 /* start flush at cache level 0 */ |
| 81 | /* x0 <- cache level */ |
| 82 | /* x10 <- clidr_el1 */ |
| 83 | /* x11 <- loc */ |
| 84 | /* x15 <- return address */ |
| 85 | |
| 86 | loop_level: |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 87 | lsl x12, x0, #1 |
| 88 | add x12, x12, x0 /* x0 <- tripled cache level */ |
| 89 | lsr x12, x10, x12 |
| 90 | and x12, x12, #7 /* x12 <- cache type */ |
| 91 | cmp x12, #2 |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 92 | b.lt skip /* skip if no cache or icache */ |
Masahiro Yamada | ba9eb6c | 2016-05-17 16:38:08 +0900 | [diff] [blame] | 93 | bl __asm_dcache_level /* x1 = 0 flush, 1 invalidate */ |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 94 | skip: |
| 95 | add x0, x0, #1 /* increment cache level */ |
| 96 | cmp x11, x0 |
| 97 | b.gt loop_level |
| 98 | |
| 99 | mov x0, #0 |
Michal Simek | f1075ae | 2015-01-14 15:36:35 +0100 | [diff] [blame] | 100 | msr csselr_el1, x0 /* restore csselr_el1 */ |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 101 | dsb sy |
| 102 | isb |
| 103 | mov lr, x15 |
| 104 | |
| 105 | finished: |
| 106 | ret |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 107 | ENDPROC(__asm_dcache_all) |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 108 | .popsection |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 109 | |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 110 | .pushsection .text.__asm_flush_dcache_all, "ax" |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 111 | ENTRY(__asm_flush_dcache_all) |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 112 | mov x0, #0 |
Masahiro Yamada | 2582858 | 2016-05-17 16:38:06 +0900 | [diff] [blame] | 113 | b __asm_dcache_all |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 114 | ENDPROC(__asm_flush_dcache_all) |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 115 | .popsection |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 116 | |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 117 | .pushsection .text.__asm_invalidate_dcache_all, "ax" |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 118 | ENTRY(__asm_invalidate_dcache_all) |
Peng Fan | 208bd51 | 2015-08-06 17:54:13 +0800 | [diff] [blame] | 119 | mov x0, #0x1 |
Masahiro Yamada | 2582858 | 2016-05-17 16:38:06 +0900 | [diff] [blame] | 120 | b __asm_dcache_all |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 121 | ENDPROC(__asm_invalidate_dcache_all) |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 122 | .popsection |
York Sun | 1e6ad55 | 2014-02-26 13:26:04 -0800 | [diff] [blame] | 123 | |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 124 | /* |
| 125 | * void __asm_flush_dcache_range(start, end) |
| 126 | * |
| 127 | * clean & invalidate data cache in the range |
| 128 | * |
| 129 | * x0: start address |
| 130 | * x1: end address |
| 131 | */ |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 132 | .pushsection .text.__asm_flush_dcache_range, "ax" |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 133 | ENTRY(__asm_flush_dcache_range) |
| 134 | mrs x3, ctr_el0 |
| 135 | lsr x3, x3, #16 |
| 136 | and x3, x3, #0xf |
| 137 | mov x2, #4 |
| 138 | lsl x2, x2, x3 /* cache line size */ |
| 139 | |
| 140 | /* x2 <- minimal cache line size in cache system */ |
| 141 | sub x3, x2, #1 |
| 142 | bic x0, x0, x3 |
| 143 | 1: dc civac, x0 /* clean & invalidate data or unified cache */ |
| 144 | add x0, x0, x2 |
| 145 | cmp x0, x1 |
| 146 | b.lo 1b |
| 147 | dsb sy |
| 148 | ret |
| 149 | ENDPROC(__asm_flush_dcache_range) |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 150 | .popsection |
Simon Glass | 6775a82 | 2017-04-05 17:53:18 -0600 | [diff] [blame] | 151 | /* |
| 152 | * void __asm_invalidate_dcache_range(start, end) |
| 153 | * |
| 154 | * invalidate data cache in the range |
| 155 | * |
| 156 | * x0: start address |
| 157 | * x1: end address |
| 158 | */ |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 159 | .pushsection .text.__asm_invalidate_dcache_range, "ax" |
Simon Glass | 6775a82 | 2017-04-05 17:53:18 -0600 | [diff] [blame] | 160 | ENTRY(__asm_invalidate_dcache_range) |
| 161 | mrs x3, ctr_el0 |
| 162 | ubfm x3, x3, #16, #19 |
| 163 | mov x2, #4 |
| 164 | lsl x2, x2, x3 /* cache line size */ |
| 165 | |
| 166 | /* x2 <- minimal cache line size in cache system */ |
| 167 | sub x3, x2, #1 |
| 168 | bic x0, x0, x3 |
| 169 | 1: dc ivac, x0 /* invalidate data or unified cache */ |
| 170 | add x0, x0, x2 |
| 171 | cmp x0, x1 |
| 172 | b.lo 1b |
| 173 | dsb sy |
| 174 | ret |
| 175 | ENDPROC(__asm_invalidate_dcache_range) |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 176 | .popsection |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 177 | |
| 178 | /* |
| 179 | * void __asm_invalidate_icache_all(void) |
| 180 | * |
| 181 | * invalidate all tlb entries. |
| 182 | */ |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 183 | .pushsection .text.__asm_invalidate_icache_all, "ax" |
David Feng | 0ae7653 | 2013-12-14 11:47:35 +0800 | [diff] [blame] | 184 | ENTRY(__asm_invalidate_icache_all) |
| 185 | ic ialluis |
| 186 | isb sy |
| 187 | ret |
| 188 | ENDPROC(__asm_invalidate_icache_all) |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 189 | .popsection |
York Sun | dcd468b | 2015-01-06 13:18:42 -0800 | [diff] [blame] | 190 | |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 191 | .pushsection .text.__asm_invalidate_l3_dcache, "ax" |
Stephen Warren | 1ab557a | 2016-10-19 15:18:46 -0600 | [diff] [blame] | 192 | ENTRY(__asm_invalidate_l3_dcache) |
York Sun | dcd468b | 2015-01-06 13:18:42 -0800 | [diff] [blame] | 193 | mov x0, #0 /* return status as success */ |
| 194 | ret |
Stephen Warren | 1ab557a | 2016-10-19 15:18:46 -0600 | [diff] [blame] | 195 | ENDPROC(__asm_invalidate_l3_dcache) |
| 196 | .weak __asm_invalidate_l3_dcache |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 197 | .popsection |
Stephen Warren | 1ab557a | 2016-10-19 15:18:46 -0600 | [diff] [blame] | 198 | |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 199 | .pushsection .text.__asm_flush_l3_dcache, "ax" |
Stephen Warren | 1ab557a | 2016-10-19 15:18:46 -0600 | [diff] [blame] | 200 | ENTRY(__asm_flush_l3_dcache) |
| 201 | mov x0, #0 /* return status as success */ |
| 202 | ret |
| 203 | ENDPROC(__asm_flush_l3_dcache) |
| 204 | .weak __asm_flush_l3_dcache |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 205 | .popsection |
Stephen Warren | 1ab557a | 2016-10-19 15:18:46 -0600 | [diff] [blame] | 206 | |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 207 | .pushsection .text.__asm_invalidate_l3_icache, "ax" |
Stephen Warren | 1ab557a | 2016-10-19 15:18:46 -0600 | [diff] [blame] | 208 | ENTRY(__asm_invalidate_l3_icache) |
| 209 | mov x0, #0 /* return status as success */ |
| 210 | ret |
| 211 | ENDPROC(__asm_invalidate_l3_icache) |
| 212 | .weak __asm_invalidate_l3_icache |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 213 | .popsection |
Alexander Graf | 5e2ec77 | 2016-03-04 01:09:47 +0100 | [diff] [blame] | 214 | |
| 215 | /* |
| 216 | * void __asm_switch_ttbr(ulong new_ttbr) |
| 217 | * |
| 218 | * Safely switches to a new page table. |
| 219 | */ |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 220 | .pushsection .text.__asm_switch_ttbr, "ax" |
Alexander Graf | 5e2ec77 | 2016-03-04 01:09:47 +0100 | [diff] [blame] | 221 | ENTRY(__asm_switch_ttbr) |
| 222 | /* x2 = SCTLR (alive throghout the function) */ |
| 223 | switch_el x4, 3f, 2f, 1f |
| 224 | 3: mrs x2, sctlr_el3 |
| 225 | b 0f |
| 226 | 2: mrs x2, sctlr_el2 |
| 227 | b 0f |
| 228 | 1: mrs x2, sctlr_el1 |
| 229 | 0: |
| 230 | |
| 231 | /* Unset CR_M | CR_C | CR_I from SCTLR to disable all caches */ |
| 232 | movn x1, #(CR_M | CR_C | CR_I) |
| 233 | and x1, x2, x1 |
| 234 | switch_el x4, 3f, 2f, 1f |
| 235 | 3: msr sctlr_el3, x1 |
| 236 | b 0f |
| 237 | 2: msr sctlr_el2, x1 |
| 238 | b 0f |
| 239 | 1: msr sctlr_el1, x1 |
| 240 | 0: isb |
| 241 | |
| 242 | /* This call only clobbers x30 (lr) and x9 (unused) */ |
| 243 | mov x3, x30 |
| 244 | bl __asm_invalidate_tlb_all |
| 245 | |
| 246 | /* From here on we're running safely with caches disabled */ |
| 247 | |
| 248 | /* Set TTBR to our first argument */ |
| 249 | switch_el x4, 3f, 2f, 1f |
| 250 | 3: msr ttbr0_el3, x0 |
| 251 | b 0f |
| 252 | 2: msr ttbr0_el2, x0 |
| 253 | b 0f |
| 254 | 1: msr ttbr0_el1, x0 |
| 255 | 0: isb |
| 256 | |
| 257 | /* Restore original SCTLR and thus enable caches again */ |
| 258 | switch_el x4, 3f, 2f, 1f |
| 259 | 3: msr sctlr_el3, x2 |
| 260 | b 0f |
| 261 | 2: msr sctlr_el2, x2 |
| 262 | b 0f |
| 263 | 1: msr sctlr_el1, x2 |
| 264 | 0: isb |
| 265 | |
| 266 | ret x3 |
| 267 | ENDPROC(__asm_switch_ttbr) |
Philipp Tomsich | e6a0586 | 2017-07-04 10:04:54 +0200 | [diff] [blame] | 268 | .popsection |