blob: 4b3ee6ed6fa554662e522dbfabf49f9b1fd15984 [file] [log] [blame]
David Feng0ae76532013-12-14 11:47:35 +08001/*
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>
12#include <version.h>
13#include <asm/macro.h>
14#include <linux/linkage.h>
15
16/*
17 * void __asm_flush_dcache_level(level)
18 *
19 * clean and invalidate one level cache.
20 *
21 * x0: cache level
York Sun1e6ad552014-02-26 13:26:04 -080022 * x1: 0 flush & invalidate, 1 invalidate only
23 * x2~x9: clobbered
David Feng0ae76532013-12-14 11:47:35 +080024 */
25ENTRY(__asm_flush_dcache_level)
York Sun1e6ad552014-02-26 13:26:04 -080026 lsl x12, x0, #1
27 msr csselr_el1, x12 /* select cache level */
David Feng0ae76532013-12-14 11:47:35 +080028 isb /* sync change of cssidr_el1 */
29 mrs x6, ccsidr_el1 /* read the new cssidr_el1 */
30 and x2, x6, #7 /* x2 <- log2(cache line size)-4 */
31 add x2, x2, #4 /* x2 <- log2(cache line size) */
32 mov x3, #0x3ff
33 and x3, x3, x6, lsr #3 /* x3 <- max number of #ways */
Leo Yan42ddfad2014-03-31 09:50:35 +080034 clz w5, w3 /* bit position of #ways */
David Feng0ae76532013-12-14 11:47:35 +080035 mov x4, #0x7fff
36 and x4, x4, x6, lsr #13 /* x4 <- max number of #sets */
York Sun1e6ad552014-02-26 13:26:04 -080037 /* x12 <- cache level << 1 */
David Feng0ae76532013-12-14 11:47:35 +080038 /* x2 <- line length offset */
39 /* x3 <- number of cache ways - 1 */
40 /* x4 <- number of cache sets - 1 */
41 /* x5 <- bit position of #ways */
42
43loop_set:
44 mov x6, x3 /* x6 <- working copy of #ways */
45loop_way:
46 lsl x7, x6, x5
York Sun1e6ad552014-02-26 13:26:04 -080047 orr x9, x12, x7 /* map way and level to cisw value */
David Feng0ae76532013-12-14 11:47:35 +080048 lsl x7, x4, x2
49 orr x9, x9, x7 /* map set number to cisw value */
York Sun1e6ad552014-02-26 13:26:04 -080050 tbz w1, #0, 1f
51 dc isw, x9
52 b 2f
531: dc cisw, x9 /* clean & invalidate by set/way */
542: subs x6, x6, #1 /* decrement the way */
David Feng0ae76532013-12-14 11:47:35 +080055 b.ge loop_way
56 subs x4, x4, #1 /* decrement the set */
57 b.ge loop_set
58
59 ret
60ENDPROC(__asm_flush_dcache_level)
61
62/*
York Sun1e6ad552014-02-26 13:26:04 -080063 * void __asm_flush_dcache_all(int invalidate_only)
64 *
65 * x0: 0 flush & invalidate, 1 invalidate only
David Feng0ae76532013-12-14 11:47:35 +080066 *
67 * clean and invalidate all data cache by SET/WAY.
68 */
York Sun1e6ad552014-02-26 13:26:04 -080069ENTRY(__asm_dcache_all)
70 mov x1, x0
David Feng0ae76532013-12-14 11:47:35 +080071 dsb sy
72 mrs x10, clidr_el1 /* read clidr_el1 */
73 lsr x11, x10, #24
74 and x11, x11, #0x7 /* x11 <- loc */
75 cbz x11, finished /* if loc is 0, exit */
76 mov x15, lr
77 mov x0, #0 /* start flush at cache level 0 */
78 /* x0 <- cache level */
79 /* x10 <- clidr_el1 */
80 /* x11 <- loc */
81 /* x15 <- return address */
82
83loop_level:
York Sun1e6ad552014-02-26 13:26:04 -080084 lsl x12, x0, #1
85 add x12, x12, x0 /* x0 <- tripled cache level */
86 lsr x12, x10, x12
87 and x12, x12, #7 /* x12 <- cache type */
88 cmp x12, #2
David Feng0ae76532013-12-14 11:47:35 +080089 b.lt skip /* skip if no cache or icache */
York Sun1e6ad552014-02-26 13:26:04 -080090 bl __asm_flush_dcache_level /* x1 = 0 flush, 1 invalidate */
David Feng0ae76532013-12-14 11:47:35 +080091skip:
92 add x0, x0, #1 /* increment cache level */
93 cmp x11, x0
94 b.gt loop_level
95
96 mov x0, #0
97 msr csselr_el1, x0 /* resotre csselr_el1 */
98 dsb sy
99 isb
100 mov lr, x15
101
102finished:
103 ret
York Sun1e6ad552014-02-26 13:26:04 -0800104ENDPROC(__asm_dcache_all)
105
106ENTRY(__asm_flush_dcache_all)
107 mov x16, lr
108 mov x0, #0
109 bl __asm_dcache_all
110 mov lr, x16
111 ret
David Feng0ae76532013-12-14 11:47:35 +0800112ENDPROC(__asm_flush_dcache_all)
113
York Sun1e6ad552014-02-26 13:26:04 -0800114ENTRY(__asm_invalidate_dcache_all)
115 mov x16, lr
116 mov x0, #0xffff
117 bl __asm_dcache_all
118 mov lr, x16
119 ret
120ENDPROC(__asm_invalidate_dcache_all)
121
David Feng0ae76532013-12-14 11:47:35 +0800122/*
123 * void __asm_flush_dcache_range(start, end)
124 *
125 * clean & invalidate data cache in the range
126 *
127 * x0: start address
128 * x1: end address
129 */
130ENTRY(__asm_flush_dcache_range)
131 mrs x3, ctr_el0
132 lsr x3, x3, #16
133 and x3, x3, #0xf
134 mov x2, #4
135 lsl x2, x2, x3 /* cache line size */
136
137 /* x2 <- minimal cache line size in cache system */
138 sub x3, x2, #1
139 bic x0, x0, x3
1401: dc civac, x0 /* clean & invalidate data or unified cache */
141 add x0, x0, x2
142 cmp x0, x1
143 b.lo 1b
144 dsb sy
145 ret
146ENDPROC(__asm_flush_dcache_range)
147
148/*
149 * void __asm_invalidate_icache_all(void)
150 *
151 * invalidate all tlb entries.
152 */
153ENTRY(__asm_invalidate_icache_all)
154 ic ialluis
155 isb sy
156 ret
157ENDPROC(__asm_invalidate_icache_all)