blob: a3a64bf972507b3c311844fce4838aaed4446168 [file] [log] [blame]
Gregory CLEMENT009f1312012-08-02 11:16:29 +03001/*
2 * Coherency fabric: low level functions
3 *
4 * Copyright (C) 2012 Marvell
5 *
6 * Gregory CLEMENT <gregory.clement@free-electrons.com>
7 *
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
11 *
12 * This file implements the assembly function to add a CPU to the
13 * coherency fabric. This function is called by each of the secondary
14 * CPUs during their early boot in an SMP kernel, this why this
15 * function have to callable from assembly. It can also be called by a
16 * primary CPU from C code during its boot.
17 */
18
19#include <linux/linkage.h>
20#define ARMADA_XP_CFB_CTL_REG_OFFSET 0x0
21#define ARMADA_XP_CFB_CFG_REG_OFFSET 0x4
22
Ben Dooksbca028e2013-02-01 10:36:22 +000023#include <asm/assembler.h>
Gregory CLEMENTccd6a132014-04-14 17:10:05 +020024#include <asm/cp15.h>
Ben Dooksbca028e2013-02-01 10:36:22 +000025
Gregory CLEMENT009f1312012-08-02 11:16:29 +030026 .text
Thomas Petazzoni30cdef92014-11-13 10:38:56 +010027/*
28 * Returns the coherency base address in r1 (r0 is untouched), or 0 if
29 * the coherency fabric is not enabled.
30 */
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020031ENTRY(ll_get_coherency_base)
Gregory CLEMENTccd6a132014-04-14 17:10:05 +020032 mrc p15, 0, r1, c1, c0, 0
33 tst r1, #CR_M @ Check MMU bit enabled
34 bne 1f
35
Thomas Petazzoni4dd1b7f2014-05-22 14:48:01 +020036 /*
37 * MMU is disabled, use the physical address of the coherency
Ard Biesheuvel0b587252020-09-16 13:56:54 +030038 * base address, (or 0x0 if the coherency fabric is not mapped)
Thomas Petazzoni4dd1b7f2014-05-22 14:48:01 +020039 */
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020040 adr r1, 3f
41 ldr r3, [r1]
42 ldr r1, [r1, r3]
Gregory CLEMENTccd6a132014-04-14 17:10:05 +020043 b 2f
441:
Thomas Petazzoni4dd1b7f2014-05-22 14:48:01 +020045 /*
46 * MMU is enabled, use the virtual address of the coherency
47 * base address.
48 */
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020049 ldr r1, =coherency_base
50 ldr r1, [r1]
Gregory CLEMENTccd6a132014-04-14 17:10:05 +0200512:
Russell King6ebbf2c2014-06-30 16:29:12 +010052 ret lr
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020053ENDPROC(ll_get_coherency_base)
54
Thomas Petazzoni07ae1442014-05-22 14:48:02 +020055/*
56 * Returns the coherency CPU mask in r3 (r0 is untouched). This
57 * coherency CPU mask can be used with the coherency fabric
58 * configuration and control registers. Note that the mask is already
59 * endian-swapped as appropriate so that the calling functions do not
60 * have to care about endianness issues while accessing the coherency
61 * fabric registers
62 */
63ENTRY(ll_get_coherency_cpumask)
Stefan Agner969ad772019-04-11 09:54:03 +020064 mrc p15, 0, r3, cr0, cr0, 5
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020065 and r3, r3, #15
Gregory CLEMENTb41375f2014-04-14 17:10:06 +020066 mov r2, #(1 << 24)
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020067 lsl r3, r2, r3
Thomas Petazzoni4fbe6392014-05-22 14:47:59 +020068ARM_BE8(rev r3, r3)
Russell King6ebbf2c2014-06-30 16:29:12 +010069 ret lr
Thomas Petazzoni07ae1442014-05-22 14:48:02 +020070ENDPROC(ll_get_coherency_cpumask)
Gregory CLEMENT009f1312012-08-02 11:16:29 +030071
Thomas Petazzoni4dd1b7f2014-05-22 14:48:01 +020072/*
73 * ll_add_cpu_to_smp_group(), ll_enable_coherency() and
74 * ll_disable_coherency() use the strex/ldrex instructions while the
75 * MMU can be disabled. The Armada XP SoC has an exclusive monitor
76 * that tracks transactions to Device and/or SO memory and thanks to
77 * that, exclusive transactions are functional even when the MMU is
78 * disabled.
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020079 */
80
81ENTRY(ll_add_cpu_to_smp_group)
82 /*
Thomas Petazzoni4dd1b7f2014-05-22 14:48:01 +020083 * As r0 is not modified by ll_get_coherency_base() and
Thomas Petazzoni07ae1442014-05-22 14:48:02 +020084 * ll_get_coherency_cpumask(), we use it to temporarly save lr
85 * and avoid it being modified by the branch and link
86 * calls. This function is used very early in the secondary
87 * CPU boot, and no stack is available at this point.
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020088 */
Thomas Petazzoni90ba76f2014-05-22 14:48:00 +020089 mov r0, lr
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020090 bl ll_get_coherency_base
Thomas Petazzoni30cdef92014-11-13 10:38:56 +010091 /* Bail out if the coherency is not enabled */
92 cmp r1, #0
93 reteq r0
Thomas Petazzoni07ae1442014-05-22 14:48:02 +020094 bl ll_get_coherency_cpumask
Thomas Petazzoni90ba76f2014-05-22 14:48:00 +020095 mov lr, r0
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020096 add r0, r1, #ARMADA_XP_CFB_CFG_REG_OFFSET
Nadav Haklaib60b61d2013-05-23 10:54:02 +0200971:
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020098 ldrex r2, [r0]
99 orr r2, r2, r3
100 strex r1, r2, [r0]
101 cmp r1, #0
102 bne 1b
Russell King6ebbf2c2014-06-30 16:29:12 +0100103 ret lr
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +0200104ENDPROC(ll_add_cpu_to_smp_group)
Gregory CLEMENT009f1312012-08-02 11:16:29 +0300105
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +0200106ENTRY(ll_enable_coherency)
107 /*
Thomas Petazzoni4dd1b7f2014-05-22 14:48:01 +0200108 * As r0 is not modified by ll_get_coherency_base() and
Thomas Petazzoni07ae1442014-05-22 14:48:02 +0200109 * ll_get_coherency_cpumask(), we use it to temporarly save lr
110 * and avoid it being modified by the branch and link
111 * calls. This function is used very early in the secondary
112 * CPU boot, and no stack is available at this point.
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +0200113 */
114 mov r0, lr
115 bl ll_get_coherency_base
Thomas Petazzoni30cdef92014-11-13 10:38:56 +0100116 /* Bail out if the coherency is not enabled */
117 cmp r1, #0
118 reteq r0
Thomas Petazzoni07ae1442014-05-22 14:48:02 +0200119 bl ll_get_coherency_cpumask
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +0200120 mov lr, r0
121 add r0, r1, #ARMADA_XP_CFB_CTL_REG_OFFSET
Nadav Haklaib60b61d2013-05-23 10:54:02 +02001221:
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +0200123 ldrex r2, [r0]
124 orr r2, r2, r3
125 strex r1, r2, [r0]
126 cmp r1, #0
127 bne 1b
Gregory CLEMENT009f1312012-08-02 11:16:29 +0300128 dsb
Gregory CLEMENT009f1312012-08-02 11:16:29 +0300129 mov r0, #0
Russell King6ebbf2c2014-06-30 16:29:12 +0100130 ret lr
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +0200131ENDPROC(ll_enable_coherency)
132
Gregory CLEMENT1a6bfbc2014-04-14 17:10:09 +0200133ENTRY(ll_disable_coherency)
134 /*
Thomas Petazzoni4dd1b7f2014-05-22 14:48:01 +0200135 * As r0 is not modified by ll_get_coherency_base() and
Thomas Petazzoni07ae1442014-05-22 14:48:02 +0200136 * ll_get_coherency_cpumask(), we use it to temporarly save lr
137 * and avoid it being modified by the branch and link
138 * calls. This function is used very early in the secondary
139 * CPU boot, and no stack is available at this point.
Gregory CLEMENT1a6bfbc2014-04-14 17:10:09 +0200140 */
Thomas Petazzoni90ba76f2014-05-22 14:48:00 +0200141 mov r0, lr
Gregory CLEMENT1a6bfbc2014-04-14 17:10:09 +0200142 bl ll_get_coherency_base
Thomas Petazzoni30cdef92014-11-13 10:38:56 +0100143 /* Bail out if the coherency is not enabled */
144 cmp r1, #0
145 reteq r0
Thomas Petazzoni07ae1442014-05-22 14:48:02 +0200146 bl ll_get_coherency_cpumask
Thomas Petazzoni90ba76f2014-05-22 14:48:00 +0200147 mov lr, r0
Gregory CLEMENT1a6bfbc2014-04-14 17:10:09 +0200148 add r0, r1, #ARMADA_XP_CFB_CTL_REG_OFFSET
1491:
150 ldrex r2, [r0]
151 bic r2, r2, r3
152 strex r1, r2, [r0]
153 cmp r1, #0
154 bne 1b
155 dsb
Russell King6ebbf2c2014-06-30 16:29:12 +0100156 ret lr
Gregory CLEMENT1a6bfbc2014-04-14 17:10:09 +0200157ENDPROC(ll_disable_coherency)
Gregory CLEMENTccd6a132014-04-14 17:10:05 +0200158
159 .align 2
1603:
161 .long coherency_phys_base - .