blob: 0d3637c494bfe174854a3783702d60c81902cbdb [file] [log] [blame]
Paul Mundt1a442fe2007-09-21 19:16:05 +09001/*
2 * SH-X3 SMP
3 *
Paul Mundt3366e352010-03-30 12:38:01 +09004 * Copyright (C) 2007 - 2010 Paul Mundt
Paul Mundt1a442fe2007-09-21 19:16:05 +09005 * Copyright (C) 2007 Magnus Damm
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
9 * for more details.
10 */
11#include <linux/init.h>
Paul Mundte7dc9512010-04-26 19:09:57 +090012#include <linux/kernel.h>
Paul Mundt1a442fe2007-09-21 19:16:05 +090013#include <linux/cpumask.h>
14#include <linux/smp.h>
15#include <linux/interrupt.h>
16#include <linux/io.h>
Paul Mundte7dc9512010-04-26 19:09:57 +090017#include <linux/sched.h>
18#include <linux/delay.h>
19#include <linux/cpu.h>
20#include <asm/sections.h>
Paul Mundt1a442fe2007-09-21 19:16:05 +090021
Paul Mundt94eab0b2009-10-16 17:19:08 +090022#define STBCR_REG(phys_id) (0xfe400004 | (phys_id << 12))
23#define RESET_REG(phys_id) (0xfe400008 | (phys_id << 12))
24
25#define STBCR_MSTP 0x00000001
26#define STBCR_RESET 0x00000002
Paul Mundte7dc9512010-04-26 19:09:57 +090027#define STBCR_SLEEP 0x00000004
Paul Mundt94eab0b2009-10-16 17:19:08 +090028#define STBCR_LTSLP 0x80000000
29
Paul Mundtc7936b92008-08-06 18:05:09 +090030static irqreturn_t ipi_interrupt_handler(int irq, void *arg)
31{
32 unsigned int message = (unsigned int)(long)arg;
33 unsigned int cpu = hard_smp_processor_id();
34 unsigned int offs = 4 * cpu;
35 unsigned int x;
36
Paul Mundt94eab0b2009-10-16 17:19:08 +090037 x = __raw_readl(0xfe410070 + offs); /* C0INITICI..CnINTICI */
Paul Mundtc7936b92008-08-06 18:05:09 +090038 x &= (1 << (message << 2));
Paul Mundt94eab0b2009-10-16 17:19:08 +090039 __raw_writel(x, 0xfe410080 + offs); /* C0INTICICLR..CnINTICICLR */
Paul Mundtc7936b92008-08-06 18:05:09 +090040
41 smp_message_recv(message);
42
43 return IRQ_HANDLED;
44}
45
Paul Mundt3366e352010-03-30 12:38:01 +090046static void shx3_smp_setup(void)
Paul Mundt1a442fe2007-09-21 19:16:05 +090047{
48 unsigned int cpu = 0;
49 int i, num;
50
Rusty Russelle09377b2009-06-12 22:33:14 +093051 init_cpu_possible(cpumask_of(cpu));
Paul Mundt1a442fe2007-09-21 19:16:05 +090052
Paul Mundt94eab0b2009-10-16 17:19:08 +090053 /* Enable light sleep for the boot CPU */
54 __raw_writel(__raw_readl(STBCR_REG(cpu)) | STBCR_LTSLP, STBCR_REG(cpu));
55
Paul Mundt1a442fe2007-09-21 19:16:05 +090056 __cpu_number_map[0] = 0;
57 __cpu_logical_map[0] = 0;
58
59 /*
60 * Do this stupidly for now.. we don't have an easy way to probe
61 * for the total number of cores.
62 */
63 for (i = 1, num = 0; i < NR_CPUS; i++) {
Rusty Russelle09377b2009-06-12 22:33:14 +093064 set_cpu_possible(i, true);
Paul Mundt1a442fe2007-09-21 19:16:05 +090065 __cpu_number_map[i] = ++num;
66 __cpu_logical_map[num] = i;
67 }
68
69 printk(KERN_INFO "Detected %i available secondary CPU(s)\n", num);
70}
71
Paul Mundt3366e352010-03-30 12:38:01 +090072static void shx3_prepare_cpus(unsigned int max_cpus)
Paul Mundt1a442fe2007-09-21 19:16:05 +090073{
Paul Mundtc7936b92008-08-06 18:05:09 +090074 int i;
75
76 BUILD_BUG_ON(SMP_MSG_NR >= 8);
77
78 for (i = 0; i < SMP_MSG_NR; i++)
Paul Mundtfecf0662010-04-15 11:59:28 +090079 request_irq(104 + i, ipi_interrupt_handler,
Yong Zhangd11584a2011-10-22 17:56:28 +080080 IRQF_PERCPU, "IPI", (void *)(long)i);
Paul Mundt7acb59e2010-04-26 18:44:04 +090081
82 for (i = 0; i < max_cpus; i++)
83 set_cpu_present(i, true);
Paul Mundt1a442fe2007-09-21 19:16:05 +090084}
85
Paul Mundt3366e352010-03-30 12:38:01 +090086static void shx3_start_cpu(unsigned int cpu, unsigned long entry_point)
Paul Mundt1a442fe2007-09-21 19:16:05 +090087{
Paul Mundtf0cb7732010-01-15 15:13:48 +090088 if (__in_29bit_mode())
89 __raw_writel(entry_point, RESET_REG(cpu));
90 else
91 __raw_writel(virt_to_phys(entry_point), RESET_REG(cpu));
Paul Mundt1a442fe2007-09-21 19:16:05 +090092
Paul Mundt94eab0b2009-10-16 17:19:08 +090093 if (!(__raw_readl(STBCR_REG(cpu)) & STBCR_MSTP))
94 __raw_writel(STBCR_MSTP, STBCR_REG(cpu));
Paul Mundt1a442fe2007-09-21 19:16:05 +090095
Paul Mundt94eab0b2009-10-16 17:19:08 +090096 while (!(__raw_readl(STBCR_REG(cpu)) & STBCR_MSTP))
Paul Mundt71f0bdc2008-08-06 18:39:32 +090097 cpu_relax();
Paul Mundt1a442fe2007-09-21 19:16:05 +090098
99 /* Start up secondary processor by sending a reset */
Paul Mundt94eab0b2009-10-16 17:19:08 +0900100 __raw_writel(STBCR_RESET | STBCR_LTSLP, STBCR_REG(cpu));
Paul Mundt1a442fe2007-09-21 19:16:05 +0900101}
102
Paul Mundt3366e352010-03-30 12:38:01 +0900103static unsigned int shx3_smp_processor_id(void)
Paul Mundt1a442fe2007-09-21 19:16:05 +0900104{
Paul Mundt94eab0b2009-10-16 17:19:08 +0900105 return __raw_readl(0xff000048); /* CPIDR */
Paul Mundt1a442fe2007-09-21 19:16:05 +0900106}
107
Paul Mundt3366e352010-03-30 12:38:01 +0900108static void shx3_send_ipi(unsigned int cpu, unsigned int message)
Paul Mundt1a442fe2007-09-21 19:16:05 +0900109{
110 unsigned long addr = 0xfe410070 + (cpu * 4);
111
112 BUG_ON(cpu >= 4);
Paul Mundt1a442fe2007-09-21 19:16:05 +0900113
Paul Mundt94eab0b2009-10-16 17:19:08 +0900114 __raw_writel(1 << (message << 2), addr); /* C0INTICI..CnINTICI */
Paul Mundt1a442fe2007-09-21 19:16:05 +0900115}
Paul Mundt3366e352010-03-30 12:38:01 +0900116
Paul Mundte7dc9512010-04-26 19:09:57 +0900117static void shx3_update_boot_vector(unsigned int cpu)
118{
119 __raw_writel(STBCR_MSTP, STBCR_REG(cpu));
120 while (!(__raw_readl(STBCR_REG(cpu)) & STBCR_MSTP))
121 cpu_relax();
122 __raw_writel(STBCR_RESET, STBCR_REG(cpu));
123}
124
Sebastian Andrzej Siewior51533232016-09-06 19:04:41 +0200125static int shx3_cpu_prepare(unsigned int cpu)
Paul Mundte7dc9512010-04-26 19:09:57 +0900126{
Sebastian Andrzej Siewior51533232016-09-06 19:04:41 +0200127 shx3_update_boot_vector(cpu);
128 return 0;
Paul Mundte7dc9512010-04-26 19:09:57 +0900129}
130
Paul Gortmaker4603f532013-06-18 17:10:12 -0400131static int register_shx3_cpu_notifier(void)
Paul Mundte7dc9512010-04-26 19:09:57 +0900132{
Sebastian Andrzej Siewior51533232016-09-06 19:04:41 +0200133 cpuhp_setup_state_nocalls(CPUHP_SH_SH3X_PREPARE, "sh/shx3:prepare",
134 shx3_cpu_prepare, NULL);
Paul Mundte7dc9512010-04-26 19:09:57 +0900135 return 0;
136}
137late_initcall(register_shx3_cpu_notifier);
138
Paul Mundt3366e352010-03-30 12:38:01 +0900139struct plat_smp_ops shx3_smp_ops = {
140 .smp_setup = shx3_smp_setup,
141 .prepare_cpus = shx3_prepare_cpus,
142 .start_cpu = shx3_start_cpu,
143 .smp_processor_id = shx3_smp_processor_id,
144 .send_ipi = shx3_send_ipi,
Paul Mundte7dc9512010-04-26 19:09:57 +0900145 .cpu_die = native_cpu_die,
146 .cpu_disable = native_cpu_disable,
147 .play_dead = native_play_dead,
Paul Mundt3366e352010-03-30 12:38:01 +0900148};