blob: 50c491567e11c2a43c6d86940f186299624e3f1a [file] [log] [blame]
Magnus Damm1c51ed42010-12-14 16:56:55 +09001/*
2 * SMP support for R-Mobile / SH-Mobile
3 *
4 * Copyright (C) 2010 Magnus Damm
5 * Copyright (C) 2010 Takashi Yoshii
6 *
7 * Based on vexpress, Copyright (c) 2003 ARM Limited, All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
Magnus Damm1c51ed42010-12-14 16:56:55 +090013#include <linux/init.h>
Magnus Damm8b438bc2014-06-06 16:20:10 +090014#include <linux/linkage.h>
15#include <linux/threads.h>
Russell King6ebbf2c2014-06-30 16:29:12 +010016#include <asm/assembler.h>
Magnus Damm6155f772010-12-20 11:04:50 +000017#include <asm/memory.h>
Magnus Damm1c51ed42010-12-14 16:56:55 +090018
Magnus Damm8b438bc2014-06-06 16:20:10 +090019#ifdef CONFIG_SMP
Magnus Damme994d5e2012-05-09 16:24:59 +090020ENTRY(shmobile_invalidate_start)
21 bl v7_invalidate_l1
22 b secondary_startup
23ENDPROC(shmobile_invalidate_start)
Magnus Damm8b438bc2014-06-06 16:20:10 +090024#endif
Magnus Damme994d5e2012-05-09 16:24:59 +090025
Magnus Damm1c51ed42010-12-14 16:56:55 +090026/*
27 * Reset vector for secondary CPUs.
28 * This will be mapped at address 0 by SBAR register.
29 * We need _long_ jump to the physical address.
30 */
Tetsuyuki Kobayashic1d7e2e2013-07-10 10:56:36 +090031 .arm
Magnus Damm1c51ed42010-12-14 16:56:55 +090032 .align 12
Magnus Dammebe72ab2013-06-10 18:19:36 +090033ENTRY(shmobile_boot_vector)
34 ldr r0, 2f
Tetsuyuki Kobayashic1d7e2e2013-07-10 10:56:36 +090035 ldr r1, 1f
36 bx r1
37
Magnus Dammebe72ab2013-06-10 18:19:36 +090038ENDPROC(shmobile_boot_vector)
39
Tetsuyuki Kobayashi0b933cb2013-07-10 10:56:37 +090040 .align 2
Magnus Dammebe72ab2013-06-10 18:19:36 +090041 .globl shmobile_boot_fn
42shmobile_boot_fn:
431: .space 4
44 .globl shmobile_boot_arg
45shmobile_boot_arg:
462: .space 4
Magnus Damma84a5ab2013-08-08 07:14:07 +090047 .globl shmobile_boot_size
48shmobile_boot_size:
49 .long . - shmobile_boot_vector
Magnus Dammcc615912013-08-01 03:38:18 +090050
51/*
52 * Per-CPU SMP boot function/argument selection code based on MPIDR
53 */
54
55ENTRY(shmobile_smp_boot)
56 @ r0 = MPIDR_HWID_BITMASK
57 mrc p15, 0, r1, c0, c0, 5 @ r1 = MPIDR
58 and r0, r1, r0 @ r0 = cpu_logical_map() value
59 mov r1, #0 @ r1 = CPU index
60 adr r5, 1f @ array of per-cpu mpidr values
61 adr r6, 2f @ array of per-cpu functions
62 adr r7, 3f @ array of per-cpu arguments
63
64shmobile_smp_boot_find_mpidr:
65 ldr r8, [r5, r1, lsl #2]
66 cmp r8, r0
67 bne shmobile_smp_boot_next
68
69 ldr r9, [r6, r1, lsl #2]
70 cmp r9, #0
71 bne shmobile_smp_boot_found
72
73shmobile_smp_boot_next:
74 add r1, r1, #1
Magnus Damm8b438bc2014-06-06 16:20:10 +090075 cmp r1, #NR_CPUS
Magnus Dammcc615912013-08-01 03:38:18 +090076 blo shmobile_smp_boot_find_mpidr
77
78 b shmobile_smp_sleep
79
80shmobile_smp_boot_found:
81 ldr r0, [r7, r1, lsl #2]
Russell King6ebbf2c2014-06-30 16:29:12 +010082 ret r9
Magnus Dammcc615912013-08-01 03:38:18 +090083ENDPROC(shmobile_smp_boot)
84
85ENTRY(shmobile_smp_sleep)
86 wfi
87 b shmobile_smp_boot
88ENDPROC(shmobile_smp_sleep)
89
90 .globl shmobile_smp_mpidr
91shmobile_smp_mpidr:
Magnus Damm8b438bc2014-06-06 16:20:10 +0900921: .space NR_CPUS * 4
Magnus Dammcc615912013-08-01 03:38:18 +090093 .globl shmobile_smp_fn
94shmobile_smp_fn:
Magnus Damm8b438bc2014-06-06 16:20:10 +0900952: .space NR_CPUS * 4
Magnus Dammcc615912013-08-01 03:38:18 +090096 .globl shmobile_smp_arg
97shmobile_smp_arg:
Magnus Damm8b438bc2014-06-06 16:20:10 +0900983: .space NR_CPUS * 4