Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 1 | /* |
| 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 Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 15 | */ |
| 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 Uytterhoeven | be32bcb | 2016-04-20 14:02:36 +0200 | [diff] [blame] | 22 | #include <linux/soc/renesas/rcar-sysc.h> |
Geert Uytterhoeven | 1b55353 | 2014-06-20 18:53:05 +0200 | [diff] [blame] | 23 | |
Magnus Damm | bbf2627 | 2013-02-18 22:47:25 +0900 | [diff] [blame] | 24 | #include <asm/cacheflush.h> |
Will Deacon | eb50439 | 2012-01-20 12:01:12 +0100 | [diff] [blame] | 25 | #include <asm/smp_plat.h> |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 26 | #include <asm/smp_scu.h> |
Geert Uytterhoeven | 1b55353 | 2014-06-20 18:53:05 +0200 | [diff] [blame] | 27 | |
Magnus Damm | fd44aa5 | 2014-06-17 16:47:37 +0900 | [diff] [blame] | 28 | #include "common.h" |
Geert Uytterhoeven | 1b55353 | 2014-06-20 18:53:05 +0200 | [diff] [blame] | 29 | #include "r8a7779.h" |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 30 | |
Rob Herring | a2a47ca | 2012-03-09 17:16:40 -0600 | [diff] [blame] | 31 | #define AVECR IOMEM(0xfe700040) |
Magnus Damm | abf8813 | 2013-02-18 22:47:16 +0900 | [diff] [blame] | 32 | #define R8A7779_SCU_BASE 0xf0000000 |
Magnus Damm | 3b94afa | 2013-02-13 22:46:48 +0900 | [diff] [blame] | 33 | |
Geert Uytterhoeven | 5afcd90 | 2015-06-04 20:22:34 +0200 | [diff] [blame] | 34 | static const struct rcar_sysc_ch r8a7779_ch_cpu1 = { |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 35 | .chan_offs = 0x40, /* PWRSR0 .. PWRER0 */ |
| 36 | .chan_bit = 1, /* ARM1 */ |
| 37 | .isr_bit = 1, /* ARM1 */ |
| 38 | }; |
| 39 | |
Geert Uytterhoeven | 5afcd90 | 2015-06-04 20:22:34 +0200 | [diff] [blame] | 40 | static const struct rcar_sysc_ch r8a7779_ch_cpu2 = { |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 41 | .chan_offs = 0x40, /* PWRSR0 .. PWRER0 */ |
| 42 | .chan_bit = 2, /* ARM2 */ |
| 43 | .isr_bit = 2, /* ARM2 */ |
| 44 | }; |
| 45 | |
Geert Uytterhoeven | 5afcd90 | 2015-06-04 20:22:34 +0200 | [diff] [blame] | 46 | static const struct rcar_sysc_ch r8a7779_ch_cpu3 = { |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 47 | .chan_offs = 0x40, /* PWRSR0 .. PWRER0 */ |
| 48 | .chan_bit = 3, /* ARM3 */ |
| 49 | .isr_bit = 3, /* ARM3 */ |
| 50 | }; |
| 51 | |
Geert Uytterhoeven | 5afcd90 | 2015-06-04 20:22:34 +0200 | [diff] [blame] | 52 | static const struct rcar_sysc_ch * const r8a7779_ch_cpu[4] = { |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 53 | [1] = &r8a7779_ch_cpu1, |
| 54 | [2] = &r8a7779_ch_cpu2, |
| 55 | [3] = &r8a7779_ch_cpu3, |
| 56 | }; |
| 57 | |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 58 | static int r8a7779_platform_cpu_kill(unsigned int cpu) |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 59 | { |
Geert Uytterhoeven | 5afcd90 | 2015-06-04 20:22:34 +0200 | [diff] [blame] | 60 | const struct rcar_sysc_ch *ch = NULL; |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 61 | int ret = -EIO; |
| 62 | |
| 63 | cpu = cpu_logical_map(cpu); |
| 64 | |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 65 | if (cpu < ARRAY_SIZE(r8a7779_ch_cpu)) |
| 66 | ch = r8a7779_ch_cpu[cpu]; |
| 67 | |
| 68 | if (ch) |
Magnus Damm | a6557eb | 2014-01-15 16:43:08 +0900 | [diff] [blame] | 69 | ret = rcar_sysc_power_down(ch); |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 70 | |
| 71 | return ret ? ret : 1; |
| 72 | } |
| 73 | |
Paul Gortmaker | 8bd26e3 | 2013-06-17 15:43:14 -0400 | [diff] [blame] | 74 | static int r8a7779_boot_secondary(unsigned int cpu, struct task_struct *idle) |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 75 | { |
Geert Uytterhoeven | 5afcd90 | 2015-06-04 20:22:34 +0200 | [diff] [blame] | 76 | const struct rcar_sysc_ch *ch = NULL; |
Magnus Damm | 0ca2894 | 2013-07-31 16:07:31 +0900 | [diff] [blame] | 77 | unsigned int lcpu = cpu_logical_map(cpu); |
| 78 | int ret; |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 79 | |
Magnus Damm | 0ca2894 | 2013-07-31 16:07:31 +0900 | [diff] [blame] | 80 | if (lcpu < ARRAY_SIZE(r8a7779_ch_cpu)) |
| 81 | ch = r8a7779_ch_cpu[lcpu]; |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 82 | |
| 83 | if (ch) |
Magnus Damm | a6557eb | 2014-01-15 16:43:08 +0900 | [diff] [blame] | 84 | ret = rcar_sysc_power_up(ch); |
Magnus Damm | 0ca2894 | 2013-07-31 16:07:31 +0900 | [diff] [blame] | 85 | else |
| 86 | ret = -EIO; |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 87 | |
| 88 | return ret; |
| 89 | } |
| 90 | |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 91 | static void __init r8a7779_smp_prepare_cpus(unsigned int max_cpus) |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 92 | { |
Magnus Damm | af64231 | 2013-06-10 18:19:56 +0900 | [diff] [blame] | 93 | /* Map the reset vector (in headsmp-scu.S, headsmp.S) */ |
| 94 | __raw_writel(__pa(shmobile_boot_vector), AVECR); |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 95 | |
Magnus Damm | 0ca2894 | 2013-07-31 16:07:31 +0900 | [diff] [blame] | 96 | /* setup r8a7779 specific SCU bits */ |
Geert Uytterhoeven | 8701d80 | 2016-01-28 16:13:32 +0100 | [diff] [blame] | 97 | shmobile_smp_scu_prepare_cpus(R8A7779_SCU_BASE, max_cpus); |
Magnus Damm | f40aaf6 | 2012-01-10 17:44:39 +0900 | [diff] [blame] | 98 | |
| 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 Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 106 | |
Magnus Damm | fd0865c | 2013-02-18 22:47:54 +0900 | [diff] [blame] | 107 | #ifdef CONFIG_HOTPLUG_CPU |
Magnus Damm | fd0865c | 2013-02-18 22:47:54 +0900 | [diff] [blame] | 108 | static int r8a7779_cpu_kill(unsigned int cpu) |
| 109 | { |
Magnus Damm | e9e7c4f | 2013-07-31 16:08:09 +0900 | [diff] [blame] | 110 | if (shmobile_smp_scu_cpu_kill(cpu)) |
| 111 | return r8a7779_platform_cpu_kill(cpu); |
Magnus Damm | fd0865c | 2013-02-18 22:47:54 +0900 | [diff] [blame] | 112 | |
| 113 | return 0; |
| 114 | } |
Magnus Damm | fd0865c | 2013-02-18 22:47:54 +0900 | [diff] [blame] | 115 | #endif /* CONFIG_HOTPLUG_CPU */ |
| 116 | |
Masahiro Yamada | 7530527 | 2015-11-15 10:39:53 +0900 | [diff] [blame] | 117 | const struct smp_operations r8a7779_smp_ops __initconst = { |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 118 | .smp_prepare_cpus = r8a7779_smp_prepare_cpus, |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 119 | .smp_boot_secondary = r8a7779_boot_secondary, |
| 120 | #ifdef CONFIG_HOTPLUG_CPU |
Magnus Damm | e9e7c4f | 2013-07-31 16:08:09 +0900 | [diff] [blame] | 121 | .cpu_die = shmobile_smp_scu_cpu_die, |
| 122 | .cpu_kill = r8a7779_cpu_kill, |
Marc Zyngier | a62580e | 2011-09-08 13:15:22 +0100 | [diff] [blame] | 123 | #endif |
| 124 | }; |