Jisheng Zhang | eb14767 | 2018-05-16 16:07:52 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Antoine Ténart | 7b7dfdd | 2014-06-04 18:03:42 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2014 Marvell Technology Group Ltd. |
| 4 | * |
| 5 | * Antoine Ténart <antoine.tenart@free-electrons.com> |
Antoine Ténart | 7b7dfdd | 2014-06-04 18:03:42 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/io.h> |
| 9 | #include <linux/delay.h> |
| 10 | #include <linux/of.h> |
| 11 | #include <linux/of_address.h> |
| 12 | |
| 13 | #include <asm/cacheflush.h> |
Jisheng Zhang | a7b3d5a | 2015-09-14 14:47:45 +0800 | [diff] [blame] | 14 | #include <asm/cp15.h> |
Afzal Mohammed | d2ca5f2 | 2017-01-29 17:31:32 +0100 | [diff] [blame] | 15 | #include <asm/memory.h> |
Antoine Ténart | 7b7dfdd | 2014-06-04 18:03:42 +0200 | [diff] [blame] | 16 | #include <asm/smp_plat.h> |
| 17 | #include <asm/smp_scu.h> |
| 18 | |
Jisheng Zhang | ac7fc23 | 2015-09-14 14:47:44 +0800 | [diff] [blame] | 19 | /* |
| 20 | * There are two reset registers, one with self-clearing (SC) |
| 21 | * reset and one with non-self-clearing reset (NON_SC). |
| 22 | */ |
| 23 | #define CPU_RESET_SC 0x00 |
| 24 | #define CPU_RESET_NON_SC 0x20 |
Antoine Ténart | 7b7dfdd | 2014-06-04 18:03:42 +0200 | [diff] [blame] | 25 | |
| 26 | #define RESET_VECT 0x00 |
| 27 | #define SW_RESET_ADDR 0x94 |
| 28 | |
Antoine Ténart | 7b7dfdd | 2014-06-04 18:03:42 +0200 | [diff] [blame] | 29 | extern u32 boot_inst; |
| 30 | |
| 31 | static void __iomem *cpu_ctrl; |
| 32 | |
| 33 | static inline void berlin_perform_reset_cpu(unsigned int cpu) |
| 34 | { |
| 35 | u32 val; |
| 36 | |
Jisheng Zhang | ac7fc23 | 2015-09-14 14:47:44 +0800 | [diff] [blame] | 37 | val = readl(cpu_ctrl + CPU_RESET_NON_SC); |
| 38 | val &= ~BIT(cpu_logical_map(cpu)); |
| 39 | writel(val, cpu_ctrl + CPU_RESET_NON_SC); |
Antoine Ténart | 7b7dfdd | 2014-06-04 18:03:42 +0200 | [diff] [blame] | 40 | val |= BIT(cpu_logical_map(cpu)); |
Jisheng Zhang | ac7fc23 | 2015-09-14 14:47:44 +0800 | [diff] [blame] | 41 | writel(val, cpu_ctrl + CPU_RESET_NON_SC); |
Antoine Ténart | 7b7dfdd | 2014-06-04 18:03:42 +0200 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | static int berlin_boot_secondary(unsigned int cpu, struct task_struct *idle) |
| 45 | { |
| 46 | if (!cpu_ctrl) |
| 47 | return -EFAULT; |
| 48 | |
| 49 | /* |
| 50 | * Reset the CPU, making it to execute the instruction in the reset |
| 51 | * exception vector. |
| 52 | */ |
| 53 | berlin_perform_reset_cpu(cpu); |
| 54 | |
| 55 | return 0; |
| 56 | } |
| 57 | |
| 58 | static void __init berlin_smp_prepare_cpus(unsigned int max_cpus) |
| 59 | { |
| 60 | struct device_node *np; |
| 61 | void __iomem *scu_base; |
| 62 | void __iomem *vectors_base; |
| 63 | |
| 64 | np = of_find_compatible_node(NULL, NULL, "arm,cortex-a9-scu"); |
| 65 | scu_base = of_iomap(np, 0); |
| 66 | of_node_put(np); |
| 67 | if (!scu_base) |
| 68 | return; |
| 69 | |
| 70 | np = of_find_compatible_node(NULL, NULL, "marvell,berlin-cpu-ctrl"); |
| 71 | cpu_ctrl = of_iomap(np, 0); |
| 72 | of_node_put(np); |
| 73 | if (!cpu_ctrl) |
| 74 | goto unmap_scu; |
| 75 | |
Afzal Mohammed | d2ca5f2 | 2017-01-29 17:31:32 +0100 | [diff] [blame] | 76 | vectors_base = ioremap(VECTORS_BASE, SZ_32K); |
Antoine Ténart | 7b7dfdd | 2014-06-04 18:03:42 +0200 | [diff] [blame] | 77 | if (!vectors_base) |
| 78 | goto unmap_scu; |
| 79 | |
| 80 | scu_enable(scu_base); |
Antoine Ténart | 7b7dfdd | 2014-06-04 18:03:42 +0200 | [diff] [blame] | 81 | |
| 82 | /* |
| 83 | * Write the first instruction the CPU will execute after being reset |
| 84 | * in the reset exception vector. |
| 85 | */ |
| 86 | writel(boot_inst, vectors_base + RESET_VECT); |
| 87 | |
| 88 | /* |
| 89 | * Write the secondary startup address into the SW reset address |
| 90 | * vector. This is used by boot_inst. |
| 91 | */ |
Florian Fainelli | 64fc2a9 | 2017-01-15 03:59:29 +0100 | [diff] [blame] | 92 | writel(__pa_symbol(secondary_startup), vectors_base + SW_RESET_ADDR); |
Antoine Ténart | 7b7dfdd | 2014-06-04 18:03:42 +0200 | [diff] [blame] | 93 | |
| 94 | iounmap(vectors_base); |
| 95 | unmap_scu: |
| 96 | iounmap(scu_base); |
| 97 | } |
| 98 | |
Jisheng Zhang | a7b3d5a | 2015-09-14 14:47:45 +0800 | [diff] [blame] | 99 | #ifdef CONFIG_HOTPLUG_CPU |
| 100 | static void berlin_cpu_die(unsigned int cpu) |
| 101 | { |
| 102 | v7_exit_coherency_flush(louis); |
| 103 | while (1) |
| 104 | cpu_do_idle(); |
| 105 | } |
| 106 | |
| 107 | static int berlin_cpu_kill(unsigned int cpu) |
| 108 | { |
| 109 | u32 val; |
| 110 | |
| 111 | val = readl(cpu_ctrl + CPU_RESET_NON_SC); |
| 112 | val &= ~BIT(cpu_logical_map(cpu)); |
| 113 | writel(val, cpu_ctrl + CPU_RESET_NON_SC); |
| 114 | |
| 115 | return 1; |
| 116 | } |
| 117 | #endif |
| 118 | |
Masahiro Yamada | 7530527 | 2015-11-15 10:39:53 +0900 | [diff] [blame] | 119 | static const struct smp_operations berlin_smp_ops __initconst = { |
Antoine Ténart | 7b7dfdd | 2014-06-04 18:03:42 +0200 | [diff] [blame] | 120 | .smp_prepare_cpus = berlin_smp_prepare_cpus, |
| 121 | .smp_boot_secondary = berlin_boot_secondary, |
Jisheng Zhang | a7b3d5a | 2015-09-14 14:47:45 +0800 | [diff] [blame] | 122 | #ifdef CONFIG_HOTPLUG_CPU |
| 123 | .cpu_die = berlin_cpu_die, |
| 124 | .cpu_kill = berlin_cpu_kill, |
| 125 | #endif |
Antoine Ténart | 7b7dfdd | 2014-06-04 18:03:42 +0200 | [diff] [blame] | 126 | }; |
| 127 | CPU_METHOD_OF_DECLARE(berlin_smp, "marvell,berlin-smp", &berlin_smp_ops); |