blob: c5c9106bf6c49af76a5c1ce4ad015347a93642d4 [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.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
19 * MA 02111-1307 USA
20 */
21
22#include <linux/linkage.h>
23#include <linux/init.h>
24#include <asm/memory.h>
25
26 __CPUINIT
27/*
28 * Reset vector for secondary CPUs.
29 *
30 * First we turn on L1 cache coherency for our CPU. Then we jump to
31 * shmobile_invalidate_start that invalidates the cache and hands over control
32 * to the common ARM startup code.
33 * This function will be mapped to address 0 by the SBAR register.
34 * A normal branch is out of range here so we need a long jump. We jump to
35 * the physical address as the MMU is still turned off.
36 */
37 .align 12
38ENTRY(shmobile_secondary_vector_scu)
39 mrc p15, 0, r0, c0, c0, 5 @ read MIPDR
40 and r0, r0, #3 @ mask out cpu ID
41 lsl r0, r0, #3 @ we will shift by cpu_id * 8 bits
Magnus Damm73e57092013-02-18 22:46:57 +090042 ldr r1, 2f
Magnus Damm4c822842013-02-13 22:47:17 +090043 ldr r1, [r1] @ SCU base address
Magnus Dammec0d84a2013-02-13 22:47:07 +090044 ldr r2, [r1, #8] @ SCU Power Status Register
45 mov r3, #3
46 bic r2, r2, r3, lsl r0 @ Clear bits of our CPU (Run Mode)
47 str r2, [r1, #8] @ write back
48
49 ldr pc, 1f
501: .long shmobile_invalidate_start - PAGE_OFFSET + PLAT_PHYS_OFFSET
Magnus Damm73e57092013-02-18 22:46:57 +0900512: .long shmobile_scu_base - PAGE_OFFSET + PLAT_PHYS_OFFSET
Magnus Dammec0d84a2013-02-13 22:47:07 +090052ENDPROC(shmobile_secondary_vector_scu)
Magnus Damm4c822842013-02-13 22:47:17 +090053
Magnus Dammbfabbcc2013-06-10 18:19:46 +090054ENTRY(shmobile_boot_scu)
55 @ r0 = SCU base address
56 mrc p15, 0, r1, c0, c0, 5 @ read MIPDR
57 and r1, r1, #3 @ mask out cpu ID
58 lsl r1, r1, #3 @ we will shift by cpu_id * 8 bits
59 ldr r2, [r0, #8] @ SCU Power Status Register
60 mov r3, #3
61 bic r2, r2, r3, lsl r1 @ Clear bits of our CPU (Run Mode)
62 str r2, [r0, #8] @ write back
63
64 b shmobile_invalidate_start
65ENDPROC(shmobile_boot_scu)
66
Magnus Damm4c822842013-02-13 22:47:17 +090067 .text
68 .globl shmobile_scu_base
69shmobile_scu_base:
70 .space 4