blob: c6951ee245889b8f79a83018740c0eea910d60dd [file] [log] [blame]
Magnus Dammf40aaf62012-01-10 17:44:39 +09001/*
2 * SMP support for R-Mobile / SH-Mobile - r8a7779 portion
3 *
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Copyright (C) 2011 Magnus Damm
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
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 Dammf40aaf62012-01-10 17:44:39 +090015 */
16#include <linux/kernel.h>
17#include <linux/init.h>
18#include <linux/smp.h>
19#include <linux/spinlock.h>
20#include <linux/io.h>
21#include <linux/delay.h>
Geert Uytterhoevenbe32bcb2016-04-20 14:02:36 +020022#include <linux/soc/renesas/rcar-sysc.h>
Geert Uytterhoeven1b553532014-06-20 18:53:05 +020023
Magnus Dammbbf26272013-02-18 22:47:25 +090024#include <asm/cacheflush.h>
Will Deaconeb504392012-01-20 12:01:12 +010025#include <asm/smp_plat.h>
Magnus Dammf40aaf62012-01-10 17:44:39 +090026#include <asm/smp_scu.h>
Geert Uytterhoeven1b553532014-06-20 18:53:05 +020027
Magnus Dammfd44aa52014-06-17 16:47:37 +090028#include "common.h"
Geert Uytterhoeven1b553532014-06-20 18:53:05 +020029#include "r8a7779.h"
Magnus Dammf40aaf62012-01-10 17:44:39 +090030
Rob Herringa2a47ca2012-03-09 17:16:40 -060031#define AVECR IOMEM(0xfe700040)
Magnus Dammabf88132013-02-18 22:47:16 +090032#define R8A7779_SCU_BASE 0xf0000000
Magnus Damm3b94afa2013-02-13 22:46:48 +090033
Geert Uytterhoeven5afcd902015-06-04 20:22:34 +020034static const struct rcar_sysc_ch r8a7779_ch_cpu1 = {
Magnus Dammf40aaf62012-01-10 17:44:39 +090035 .chan_offs = 0x40, /* PWRSR0 .. PWRER0 */
36 .chan_bit = 1, /* ARM1 */
37 .isr_bit = 1, /* ARM1 */
38};
39
Geert Uytterhoeven5afcd902015-06-04 20:22:34 +020040static const struct rcar_sysc_ch r8a7779_ch_cpu2 = {
Magnus Dammf40aaf62012-01-10 17:44:39 +090041 .chan_offs = 0x40, /* PWRSR0 .. PWRER0 */
42 .chan_bit = 2, /* ARM2 */
43 .isr_bit = 2, /* ARM2 */
44};
45
Geert Uytterhoeven5afcd902015-06-04 20:22:34 +020046static const struct rcar_sysc_ch r8a7779_ch_cpu3 = {
Magnus Dammf40aaf62012-01-10 17:44:39 +090047 .chan_offs = 0x40, /* PWRSR0 .. PWRER0 */
48 .chan_bit = 3, /* ARM3 */
49 .isr_bit = 3, /* ARM3 */
50};
51
Geert Uytterhoeven5afcd902015-06-04 20:22:34 +020052static const struct rcar_sysc_ch * const r8a7779_ch_cpu[4] = {
Magnus Dammf40aaf62012-01-10 17:44:39 +090053 [1] = &r8a7779_ch_cpu1,
54 [2] = &r8a7779_ch_cpu2,
55 [3] = &r8a7779_ch_cpu3,
56};
57
Marc Zyngiera62580e2011-09-08 13:15:22 +010058static int r8a7779_platform_cpu_kill(unsigned int cpu)
Magnus Dammf40aaf62012-01-10 17:44:39 +090059{
Geert Uytterhoeven5afcd902015-06-04 20:22:34 +020060 const struct rcar_sysc_ch *ch = NULL;
Magnus Dammf40aaf62012-01-10 17:44:39 +090061 int ret = -EIO;
62
63 cpu = cpu_logical_map(cpu);
64
Magnus Dammf40aaf62012-01-10 17:44:39 +090065 if (cpu < ARRAY_SIZE(r8a7779_ch_cpu))
66 ch = r8a7779_ch_cpu[cpu];
67
68 if (ch)
Magnus Damma6557eb2014-01-15 16:43:08 +090069 ret = rcar_sysc_power_down(ch);
Magnus Dammf40aaf62012-01-10 17:44:39 +090070
71 return ret ? ret : 1;
72}
73
Paul Gortmaker8bd26e32013-06-17 15:43:14 -040074static int r8a7779_boot_secondary(unsigned int cpu, struct task_struct *idle)
Magnus Dammf40aaf62012-01-10 17:44:39 +090075{
Geert Uytterhoeven5afcd902015-06-04 20:22:34 +020076 const struct rcar_sysc_ch *ch = NULL;
Magnus Damm0ca28942013-07-31 16:07:31 +090077 unsigned int lcpu = cpu_logical_map(cpu);
78 int ret;
Magnus Dammf40aaf62012-01-10 17:44:39 +090079
Magnus Damm0ca28942013-07-31 16:07:31 +090080 if (lcpu < ARRAY_SIZE(r8a7779_ch_cpu))
81 ch = r8a7779_ch_cpu[lcpu];
Magnus Dammf40aaf62012-01-10 17:44:39 +090082
83 if (ch)
Magnus Damma6557eb2014-01-15 16:43:08 +090084 ret = rcar_sysc_power_up(ch);
Magnus Damm0ca28942013-07-31 16:07:31 +090085 else
86 ret = -EIO;
Magnus Dammf40aaf62012-01-10 17:44:39 +090087
88 return ret;
89}
90
Marc Zyngiera62580e2011-09-08 13:15:22 +010091static void __init r8a7779_smp_prepare_cpus(unsigned int max_cpus)
Magnus Dammf40aaf62012-01-10 17:44:39 +090092{
Magnus Dammaf642312013-06-10 18:19:56 +090093 /* Map the reset vector (in headsmp-scu.S, headsmp.S) */
94 __raw_writel(__pa(shmobile_boot_vector), AVECR);
Magnus Dammf40aaf62012-01-10 17:44:39 +090095
Magnus Damm0ca28942013-07-31 16:07:31 +090096 /* setup r8a7779 specific SCU bits */
Geert Uytterhoeven8701d802016-01-28 16:13:32 +010097 shmobile_smp_scu_prepare_cpus(R8A7779_SCU_BASE, max_cpus);
Magnus Dammf40aaf62012-01-10 17:44:39 +090098
99 r8a7779_pm_init();
100
101 /* power off secondary CPUs */
102 r8a7779_platform_cpu_kill(1);
103 r8a7779_platform_cpu_kill(2);
104 r8a7779_platform_cpu_kill(3);
105}
Marc Zyngiera62580e2011-09-08 13:15:22 +0100106
Magnus Dammfd0865c2013-02-18 22:47:54 +0900107#ifdef CONFIG_HOTPLUG_CPU
Magnus Dammfd0865c2013-02-18 22:47:54 +0900108static int r8a7779_cpu_kill(unsigned int cpu)
109{
Magnus Damme9e7c4f2013-07-31 16:08:09 +0900110 if (shmobile_smp_scu_cpu_kill(cpu))
111 return r8a7779_platform_cpu_kill(cpu);
Magnus Dammfd0865c2013-02-18 22:47:54 +0900112
113 return 0;
114}
Magnus Dammfd0865c2013-02-18 22:47:54 +0900115#endif /* CONFIG_HOTPLUG_CPU */
116
Masahiro Yamada75305272015-11-15 10:39:53 +0900117const struct smp_operations r8a7779_smp_ops __initconst = {
Marc Zyngiera62580e2011-09-08 13:15:22 +0100118 .smp_prepare_cpus = r8a7779_smp_prepare_cpus,
Marc Zyngiera62580e2011-09-08 13:15:22 +0100119 .smp_boot_secondary = r8a7779_boot_secondary,
120#ifdef CONFIG_HOTPLUG_CPU
Magnus Damme9e7c4f2013-07-31 16:08:09 +0900121 .cpu_die = shmobile_smp_scu_cpu_die,
122 .cpu_kill = r8a7779_cpu_kill,
Marc Zyngiera62580e2011-09-08 13:15:22 +0100123#endif
124};