blob: 936d7011c3141b73228c923129f29f3635b0df13 [file] [log] [blame]
Magnus Dammec0d84a2013-02-13 22:47:07 +09001/*
2 * Shared SCU setup for mach-shmobile
3 *
4 * Copyright (C) 2012 Bastian Hecht
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR /PURPOSE. See the
14 * GNU General Public License for more details.
Magnus Dammec0d84a2013-02-13 22:47:07 +090015 */
16
17#include <linux/linkage.h>
18#include <linux/init.h>
19#include <asm/memory.h>
20
Magnus Dammec0d84a2013-02-13 22:47:07 +090021/*
Magnus Damm4f6da362013-06-10 18:20:25 +090022 * Boot code for secondary CPUs.
Magnus Dammec0d84a2013-02-13 22:47:07 +090023 *
24 * First we turn on L1 cache coherency for our CPU. Then we jump to
Russell King02b4e272015-05-19 17:06:44 +010025 * secondary_startup that invalidates the cache and hands over control
Magnus Dammec0d84a2013-02-13 22:47:07 +090026 * to the common ARM startup code.
Magnus Dammec0d84a2013-02-13 22:47:07 +090027 */
Magnus Dammbfabbcc2013-06-10 18:19:46 +090028ENTRY(shmobile_boot_scu)
29 @ r0 = SCU base address
Geert Uytterhoevene24f3172016-01-28 16:13:30 +010030 mrc p15, 0, r1, c0, c0, 5 @ read MPIDR
Magnus Dammbfabbcc2013-06-10 18:19:46 +090031 and r1, r1, #3 @ mask out cpu ID
32 lsl r1, r1, #3 @ we will shift by cpu_id * 8 bits
33 ldr r2, [r0, #8] @ SCU Power Status Register
34 mov r3, #3
Tetsuyuki Kobayashibdea6c62013-07-10 10:56:35 +090035 lsl r3, r3, r1
36 bic r2, r2, r3 @ Clear bits of our CPU (Run Mode)
Magnus Dammbfabbcc2013-06-10 18:19:46 +090037 str r2, [r0, #8] @ write back
38
Russell King02b4e272015-05-19 17:06:44 +010039 b secondary_startup
Magnus Dammbfabbcc2013-06-10 18:19:46 +090040ENDPROC(shmobile_boot_scu)