blob: 510c29e079ca960ba420fdc331eaa1016f677a71 [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 Petazzoni4dd1b7f2014-05-22 14:48:01 +020027/* Returns the coherency base address in r1 (r0 is untouched) */
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020028ENTRY(ll_get_coherency_base)
Gregory CLEMENTccd6a132014-04-14 17:10:05 +020029 mrc p15, 0, r1, c1, c0, 0
30 tst r1, #CR_M @ Check MMU bit enabled
31 bne 1f
32
Thomas Petazzoni4dd1b7f2014-05-22 14:48:01 +020033 /*
34 * MMU is disabled, use the physical address of the coherency
35 * base address.
36 */
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020037 adr r1, 3f
38 ldr r3, [r1]
39 ldr r1, [r1, r3]
Gregory CLEMENTccd6a132014-04-14 17:10:05 +020040 b 2f
411:
Thomas Petazzoni4dd1b7f2014-05-22 14:48:01 +020042 /*
43 * MMU is enabled, use the virtual address of the coherency
44 * base address.
45 */
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020046 ldr r1, =coherency_base
47 ldr r1, [r1]
Gregory CLEMENTccd6a132014-04-14 17:10:05 +0200482:
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020049 mov pc, lr
50ENDPROC(ll_get_coherency_base)
51
Thomas Petazzoni07ae1442014-05-22 14:48:02 +020052/*
53 * Returns the coherency CPU mask in r3 (r0 is untouched). This
54 * coherency CPU mask can be used with the coherency fabric
55 * configuration and control registers. Note that the mask is already
56 * endian-swapped as appropriate so that the calling functions do not
57 * have to care about endianness issues while accessing the coherency
58 * fabric registers
59 */
60ENTRY(ll_get_coherency_cpumask)
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020061 mrc 15, 0, r3, cr0, cr0, 5
62 and r3, r3, #15
Gregory CLEMENTb41375f2014-04-14 17:10:06 +020063 mov r2, #(1 << 24)
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020064 lsl r3, r2, r3
Thomas Petazzoni4fbe6392014-05-22 14:47:59 +020065ARM_BE8(rev r3, r3)
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020066 mov pc, lr
Thomas Petazzoni07ae1442014-05-22 14:48:02 +020067ENDPROC(ll_get_coherency_cpumask)
Gregory CLEMENT009f1312012-08-02 11:16:29 +030068
Thomas Petazzoni4dd1b7f2014-05-22 14:48:01 +020069/*
70 * ll_add_cpu_to_smp_group(), ll_enable_coherency() and
71 * ll_disable_coherency() use the strex/ldrex instructions while the
72 * MMU can be disabled. The Armada XP SoC has an exclusive monitor
73 * that tracks transactions to Device and/or SO memory and thanks to
74 * that, exclusive transactions are functional even when the MMU is
75 * disabled.
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020076 */
77
78ENTRY(ll_add_cpu_to_smp_group)
79 /*
Thomas Petazzoni4dd1b7f2014-05-22 14:48:01 +020080 * As r0 is not modified by ll_get_coherency_base() and
Thomas Petazzoni07ae1442014-05-22 14:48:02 +020081 * ll_get_coherency_cpumask(), we use it to temporarly save lr
82 * and avoid it being modified by the branch and link
83 * calls. This function is used very early in the secondary
84 * CPU boot, and no stack is available at this point.
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020085 */
Thomas Petazzoni90ba76f2014-05-22 14:48:00 +020086 mov r0, lr
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020087 bl ll_get_coherency_base
Thomas Petazzoni07ae1442014-05-22 14:48:02 +020088 bl ll_get_coherency_cpumask
Thomas Petazzoni90ba76f2014-05-22 14:48:00 +020089 mov lr, r0
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020090 add r0, r1, #ARMADA_XP_CFB_CFG_REG_OFFSET
Nadav Haklaib60b61d2013-05-23 10:54:02 +0200911:
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +020092 ldrex r2, [r0]
93 orr r2, r2, r3
94 strex r1, r2, [r0]
95 cmp r1, #0
96 bne 1b
97 mov pc, lr
98ENDPROC(ll_add_cpu_to_smp_group)
Gregory CLEMENT009f1312012-08-02 11:16:29 +030099
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +0200100ENTRY(ll_enable_coherency)
101 /*
Thomas Petazzoni4dd1b7f2014-05-22 14:48:01 +0200102 * As r0 is not modified by ll_get_coherency_base() and
Thomas Petazzoni07ae1442014-05-22 14:48:02 +0200103 * ll_get_coherency_cpumask(), we use it to temporarly save lr
104 * and avoid it being modified by the branch and link
105 * calls. This function is used very early in the secondary
106 * CPU boot, and no stack is available at this point.
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +0200107 */
108 mov r0, lr
109 bl ll_get_coherency_base
Thomas Petazzoni07ae1442014-05-22 14:48:02 +0200110 bl ll_get_coherency_cpumask
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +0200111 mov lr, r0
112 add r0, r1, #ARMADA_XP_CFB_CTL_REG_OFFSET
Nadav Haklaib60b61d2013-05-23 10:54:02 +02001131:
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +0200114 ldrex r2, [r0]
115 orr r2, r2, r3
116 strex r1, r2, [r0]
117 cmp r1, #0
118 bne 1b
Gregory CLEMENT009f1312012-08-02 11:16:29 +0300119 dsb
Gregory CLEMENT009f1312012-08-02 11:16:29 +0300120 mov r0, #0
121 mov pc, lr
Gregory CLEMENT2e8a5942014-04-14 17:10:08 +0200122ENDPROC(ll_enable_coherency)
123
Gregory CLEMENT1a6bfbc2014-04-14 17:10:09 +0200124ENTRY(ll_disable_coherency)
125 /*
Thomas Petazzoni4dd1b7f2014-05-22 14:48:01 +0200126 * As r0 is not modified by ll_get_coherency_base() and
Thomas Petazzoni07ae1442014-05-22 14:48:02 +0200127 * ll_get_coherency_cpumask(), we use it to temporarly save lr
128 * and avoid it being modified by the branch and link
129 * calls. This function is used very early in the secondary
130 * CPU boot, and no stack is available at this point.
Gregory CLEMENT1a6bfbc2014-04-14 17:10:09 +0200131 */
Thomas Petazzoni90ba76f2014-05-22 14:48:00 +0200132 mov r0, lr
Gregory CLEMENT1a6bfbc2014-04-14 17:10:09 +0200133 bl ll_get_coherency_base
Thomas Petazzoni07ae1442014-05-22 14:48:02 +0200134 bl ll_get_coherency_cpumask
Thomas Petazzoni90ba76f2014-05-22 14:48:00 +0200135 mov lr, r0
Gregory CLEMENT1a6bfbc2014-04-14 17:10:09 +0200136 add r0, r1, #ARMADA_XP_CFB_CTL_REG_OFFSET
1371:
138 ldrex r2, [r0]
139 bic r2, r2, r3
140 strex r1, r2, [r0]
141 cmp r1, #0
142 bne 1b
143 dsb
144 mov pc, lr
145ENDPROC(ll_disable_coherency)
Gregory CLEMENTccd6a132014-04-14 17:10:05 +0200146
147 .align 2
1483:
149 .long coherency_phys_base - .