USB: serial: option: reimplement interface masking
[linux/fpc-iii.git] / arch / arm / mach-berlin / platsmp.c
blob7586b7aec272c0c5b3786d166d026c4f96af4afd
1 /*
2 * Copyright (C) 2014 Marvell Technology Group Ltd.
4 * Antoine Ténart <antoine.tenart@free-electrons.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
11 #include <linux/io.h>
12 #include <linux/delay.h>
13 #include <linux/of.h>
14 #include <linux/of_address.h>
16 #include <asm/cacheflush.h>
17 #include <asm/cp15.h>
18 #include <asm/memory.h>
19 #include <asm/smp_plat.h>
20 #include <asm/smp_scu.h>
23 * There are two reset registers, one with self-clearing (SC)
24 * reset and one with non-self-clearing reset (NON_SC).
26 #define CPU_RESET_SC 0x00
27 #define CPU_RESET_NON_SC 0x20
29 #define RESET_VECT 0x00
30 #define SW_RESET_ADDR 0x94
32 extern u32 boot_inst;
34 static void __iomem *cpu_ctrl;
36 static inline void berlin_perform_reset_cpu(unsigned int cpu)
38 u32 val;
40 val = readl(cpu_ctrl + CPU_RESET_NON_SC);
41 val &= ~BIT(cpu_logical_map(cpu));
42 writel(val, cpu_ctrl + CPU_RESET_NON_SC);
43 val |= BIT(cpu_logical_map(cpu));
44 writel(val, cpu_ctrl + CPU_RESET_NON_SC);
47 static int berlin_boot_secondary(unsigned int cpu, struct task_struct *idle)
49 if (!cpu_ctrl)
50 return -EFAULT;
53 * Reset the CPU, making it to execute the instruction in the reset
54 * exception vector.
56 berlin_perform_reset_cpu(cpu);
58 return 0;
61 static void __init berlin_smp_prepare_cpus(unsigned int max_cpus)
63 struct device_node *np;
64 void __iomem *scu_base;
65 void __iomem *vectors_base;
67 np = of_find_compatible_node(NULL, NULL, "arm,cortex-a9-scu");
68 scu_base = of_iomap(np, 0);
69 of_node_put(np);
70 if (!scu_base)
71 return;
73 np = of_find_compatible_node(NULL, NULL, "marvell,berlin-cpu-ctrl");
74 cpu_ctrl = of_iomap(np, 0);
75 of_node_put(np);
76 if (!cpu_ctrl)
77 goto unmap_scu;
79 vectors_base = ioremap(VECTORS_BASE, SZ_32K);
80 if (!vectors_base)
81 goto unmap_scu;
83 scu_enable(scu_base);
84 flush_cache_all();
87 * Write the first instruction the CPU will execute after being reset
88 * in the reset exception vector.
90 writel(boot_inst, vectors_base + RESET_VECT);
93 * Write the secondary startup address into the SW reset address
94 * vector. This is used by boot_inst.
96 writel(__pa_symbol(secondary_startup), vectors_base + SW_RESET_ADDR);
98 iounmap(vectors_base);
99 unmap_scu:
100 iounmap(scu_base);
103 #ifdef CONFIG_HOTPLUG_CPU
104 static void berlin_cpu_die(unsigned int cpu)
106 v7_exit_coherency_flush(louis);
107 while (1)
108 cpu_do_idle();
111 static int berlin_cpu_kill(unsigned int cpu)
113 u32 val;
115 val = readl(cpu_ctrl + CPU_RESET_NON_SC);
116 val &= ~BIT(cpu_logical_map(cpu));
117 writel(val, cpu_ctrl + CPU_RESET_NON_SC);
119 return 1;
121 #endif
123 static const struct smp_operations berlin_smp_ops __initconst = {
124 .smp_prepare_cpus = berlin_smp_prepare_cpus,
125 .smp_boot_secondary = berlin_boot_secondary,
126 #ifdef CONFIG_HOTPLUG_CPU
127 .cpu_die = berlin_cpu_die,
128 .cpu_kill = berlin_cpu_kill,
129 #endif
131 CPU_METHOD_OF_DECLARE(berlin_smp, "marvell,berlin-smp", &berlin_smp_ops);