blob: b854fe2095ad14616b7c4aae209b47f7e4f7ded3 [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 Uytterhoeven1b553532014-06-20 18:53:05 +020022
Magnus Dammbbf26272013-02-18 22:47:25 +090023#include <asm/cacheflush.h>
Will Deaconeb504392012-01-20 12:01:12 +010024#include <asm/smp_plat.h>
Magnus Dammf40aaf62012-01-10 17:44:39 +090025#include <asm/smp_scu.h>
Geert Uytterhoeven1b553532014-06-20 18:53:05 +020026
Magnus Dammfd44aa52014-06-17 16:47:37 +090027#include "common.h"
Magnus Damm585c09d2014-06-17 16:47:53 +090028#include "pm-rcar.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);
95 shmobile_boot_fn = virt_to_phys(shmobile_boot_scu);
96 shmobile_boot_arg = (unsigned long)shmobile_scu_base;
Magnus Dammf40aaf62012-01-10 17:44:39 +090097
Magnus Damm0ca28942013-07-31 16:07:31 +090098 /* setup r8a7779 specific SCU bits */
99 shmobile_scu_base = IOMEM(R8A7779_SCU_BASE);
100 shmobile_smp_scu_prepare_cpus(max_cpus);
Magnus Dammf40aaf62012-01-10 17:44:39 +0900101
102 r8a7779_pm_init();
103
104 /* power off secondary CPUs */
105 r8a7779_platform_cpu_kill(1);
106 r8a7779_platform_cpu_kill(2);
107 r8a7779_platform_cpu_kill(3);
108}
Marc Zyngiera62580e2011-09-08 13:15:22 +0100109
Magnus Dammfd0865c2013-02-18 22:47:54 +0900110#ifdef CONFIG_HOTPLUG_CPU
Magnus Dammfd0865c2013-02-18 22:47:54 +0900111static int r8a7779_cpu_kill(unsigned int cpu)
112{
Magnus Damme9e7c4f2013-07-31 16:08:09 +0900113 if (shmobile_smp_scu_cpu_kill(cpu))
114 return r8a7779_platform_cpu_kill(cpu);
Magnus Dammfd0865c2013-02-18 22:47:54 +0900115
116 return 0;
117}
Magnus Dammfd0865c2013-02-18 22:47:54 +0900118#endif /* CONFIG_HOTPLUG_CPU */
119
Masahiro Yamada75305272015-11-15 10:39:53 +0900120const struct smp_operations r8a7779_smp_ops __initconst = {
Marc Zyngiera62580e2011-09-08 13:15:22 +0100121 .smp_prepare_cpus = r8a7779_smp_prepare_cpus,
Marc Zyngiera62580e2011-09-08 13:15:22 +0100122 .smp_boot_secondary = r8a7779_boot_secondary,
123#ifdef CONFIG_HOTPLUG_CPU
Magnus Damme9e7c4f2013-07-31 16:08:09 +0900124 .cpu_die = shmobile_smp_scu_cpu_die,
125 .cpu_kill = r8a7779_cpu_kill,
Marc Zyngiera62580e2011-09-08 13:15:22 +0100126#endif
127};