blob: 6a1e682371b32c400041fb2aa0db1698a19a63d3 [file] [log] [blame]
Krzysztof Kozlowski347863d2017-12-25 20:54:31 +01001// SPDX-License-Identifier: GPL-2.0
2// Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
3// http://www.samsung.com
4//
5// Cloned from linux/arch/arm/mach-vexpress/platsmp.c
6//
7// Copyright (C) 2002 ARM Ltd.
8// All Rights Reserved
Changhwan Youn2b12b5c2010-07-26 21:08:52 +09009
10#include <linux/init.h>
11#include <linux/errno.h>
12#include <linux/delay.h>
Changhwan Youn2b12b5c2010-07-26 21:08:52 +090013#include <linux/jiffies.h>
14#include <linux/smp.h>
15#include <linux/io.h>
Sachin Kamatb3205de2014-05-13 07:13:44 +090016#include <linux/of_address.h>
Pankaj Dubey2262d6e2015-12-18 09:02:11 +053017#include <linux/soc/samsung/exynos-regs-pmu.h>
Changhwan Youn2b12b5c2010-07-26 21:08:52 +090018
19#include <asm/cacheflush.h>
Krzysztof Kozlowski6f0b7c02014-09-14 02:49:31 +090020#include <asm/cp15.h>
Will Deaconeb504392012-01-20 12:01:12 +010021#include <asm/smp_plat.h>
Changhwan Youn2b12b5c2010-07-26 21:08:52 +090022#include <asm/smp_scu.h>
Tomasz Figabeddf632012-12-11 13:58:43 +090023#include <asm/firmware.h>
Changhwan Youn2b12b5c2010-07-26 21:08:52 +090024
Pankaj Dubey2e94ac42014-07-19 03:43:22 +090025#include <mach/map.h>
26
Marc Zyngier06853ae2011-09-08 13:15:22 +010027#include "common.h"
28
Kukjin Kim7d30e8b2011-02-14 16:33:10 +090029extern void exynos4_secondary_startup(void);
Changhwan Youn2b12b5c2010-07-26 21:08:52 +090030
Krzysztof Kozlowski6f0b7c02014-09-14 02:49:31 +090031#ifdef CONFIG_HOTPLUG_CPU
Krzysztof Kozlowski13cfa6c2014-09-14 02:49:32 +090032static inline void cpu_leave_lowpower(u32 core_id)
Krzysztof Kozlowski6f0b7c02014-09-14 02:49:31 +090033{
34 unsigned int v;
35
36 asm volatile(
37 "mrc p15, 0, %0, c1, c0, 0\n"
38 " orr %0, %0, %1\n"
39 " mcr p15, 0, %0, c1, c0, 0\n"
40 " mrc p15, 0, %0, c1, c0, 1\n"
41 " orr %0, %0, %2\n"
42 " mcr p15, 0, %0, c1, c0, 1\n"
43 : "=&r" (v)
44 : "Ir" (CR_C), "Ir" (0x40)
45 : "cc");
46}
47
48static inline void platform_do_lowpower(unsigned int cpu, int *spurious)
49{
50 u32 mpidr = cpu_logical_map(cpu);
51 u32 core_id = MPIDR_AFFINITY_LEVEL(mpidr, 0);
52
53 for (;;) {
54
55 /* Turn the CPU off on next WFI instruction. */
56 exynos_cpu_power_down(core_id);
57
58 wfi();
59
60 if (pen_release == core_id) {
61 /*
62 * OK, proper wakeup, we're done
63 */
64 break;
65 }
66
67 /*
68 * Getting here, means that we have come out of WFI without
69 * having been woken up - this shouldn't happen
70 *
71 * Just note it happening - when we're woken, we can report
72 * its occurrence.
73 */
74 (*spurious)++;
75 }
76}
77#endif /* CONFIG_HOTPLUG_CPU */
78
Krzysztof Kozlowski7310d992014-07-19 04:45:02 +090079/**
80 * exynos_core_power_down : power down the specified cpu
81 * @cpu : the cpu to power down
82 *
83 * Power down the specified cpu. The sequence must be finished by a
84 * call to cpu_do_idle()
85 *
86 */
87void exynos_cpu_power_down(int cpu)
88{
Bartlomiej Zolnierkiewicz497ab3b2015-03-27 02:32:56 +090089 u32 core_conf;
90
Krzysztof Kozlowskica489c52015-02-27 05:50:41 +090091 if (cpu == 0 && (soc_is_exynos5420() || soc_is_exynos5800())) {
Abhilash Kesavanadc548d2014-11-07 09:20:16 +090092 /*
93 * Bypass power down for CPU0 during suspend. Check for
94 * the SYS_PWR_REG value to decide if we are suspending
95 * the system.
96 */
97 int val = pmu_raw_readl(EXYNOS5_ARM_CORE0_SYS_PWR_REG);
98
99 if (!(val & S5P_CORE_LOCAL_PWR_EN))
100 return;
101 }
Bartlomiej Zolnierkiewicz497ab3b2015-03-27 02:32:56 +0900102
103 core_conf = pmu_raw_readl(EXYNOS_ARM_CORE_CONFIGURATION(cpu));
104 core_conf &= ~S5P_CORE_LOCAL_PWR_EN;
105 pmu_raw_writel(core_conf, EXYNOS_ARM_CORE_CONFIGURATION(cpu));
Krzysztof Kozlowski7310d992014-07-19 04:45:02 +0900106}
107
108/**
109 * exynos_cpu_power_up : power up the specified cpu
110 * @cpu : the cpu to power up
111 *
112 * Power up the specified cpu
113 */
114void exynos_cpu_power_up(int cpu)
115{
Bartlomiej Zolnierkiewicz497ab3b2015-03-27 02:32:56 +0900116 u32 core_conf = S5P_CORE_LOCAL_PWR_EN;
117
118 if (soc_is_exynos3250())
119 core_conf |= S5P_CORE_AUTOWAKEUP_EN;
120
121 pmu_raw_writel(core_conf,
Arnd Bergmann944483d2014-07-26 17:54:21 +0200122 EXYNOS_ARM_CORE_CONFIGURATION(cpu));
Krzysztof Kozlowski7310d992014-07-19 04:45:02 +0900123}
124
125/**
126 * exynos_cpu_power_state : returns the power state of the cpu
127 * @cpu : the cpu to retrieve the power state from
128 *
129 */
130int exynos_cpu_power_state(int cpu)
131{
Arnd Bergmann944483d2014-07-26 17:54:21 +0200132 return (pmu_raw_readl(EXYNOS_ARM_CORE_STATUS(cpu)) &
Krzysztof Kozlowski7310d992014-07-19 04:45:02 +0900133 S5P_CORE_LOCAL_PWR_EN);
134}
135
136/**
137 * exynos_cluster_power_down : power down the specified cluster
138 * @cluster : the cluster to power down
139 */
140void exynos_cluster_power_down(int cluster)
141{
Arnd Bergmann944483d2014-07-26 17:54:21 +0200142 pmu_raw_writel(0, EXYNOS_COMMON_CONFIGURATION(cluster));
Krzysztof Kozlowski7310d992014-07-19 04:45:02 +0900143}
144
145/**
146 * exynos_cluster_power_up : power up the specified cluster
147 * @cluster : the cluster to power up
148 */
149void exynos_cluster_power_up(int cluster)
150{
Arnd Bergmann944483d2014-07-26 17:54:21 +0200151 pmu_raw_writel(S5P_CORE_LOCAL_PWR_EN,
152 EXYNOS_COMMON_CONFIGURATION(cluster));
Krzysztof Kozlowski7310d992014-07-19 04:45:02 +0900153}
154
155/**
156 * exynos_cluster_power_state : returns the power state of the cluster
157 * @cluster : the cluster to retrieve the power state from
158 *
159 */
160int exynos_cluster_power_state(int cluster)
161{
Arnd Bergmann944483d2014-07-26 17:54:21 +0200162 return (pmu_raw_readl(EXYNOS_COMMON_STATUS(cluster)) &
163 S5P_CORE_LOCAL_PWR_EN);
Krzysztof Kozlowski7310d992014-07-19 04:45:02 +0900164}
165
Pankaj Dubey3c337102018-05-10 13:02:54 +0200166/**
167 * exynos_scu_enable : enables SCU for Cortex-A9 based system
168 */
169void exynos_scu_enable(void)
170{
171 struct device_node *np;
172 static void __iomem *scu_base;
173
174 if (!scu_base) {
175 np = of_find_compatible_node(NULL, NULL, "arm,cortex-a9-scu");
176 if (np) {
177 scu_base = of_iomap(np, 0);
178 of_node_put(np);
179 } else {
180 scu_base = ioremap(scu_a9_get_base(), SZ_4K);
181 }
182 }
183 scu_enable(scu_base);
184}
185
Bartlomiej Zolnierkiewiczaf997112015-03-18 14:09:57 +0100186static void __iomem *cpu_boot_reg_base(void)
Tomasz Figa1f054f52012-11-24 11:13:48 +0900187{
188 if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_1_1)
Pankaj Dubey2e94ac42014-07-19 03:43:22 +0900189 return pmu_base_addr + S5P_INFORM5;
Sachin Kamatb3205de2014-05-13 07:13:44 +0900190 return sysram_base_addr;
Tomasz Figa1f054f52012-11-24 11:13:48 +0900191}
192
193static inline void __iomem *cpu_boot_reg(int cpu)
194{
195 void __iomem *boot_reg;
196
197 boot_reg = cpu_boot_reg_base();
Sachin Kamatb3205de2014-05-13 07:13:44 +0900198 if (!boot_reg)
Krzysztof Kozlowski2cc6b812015-07-10 19:20:58 +0900199 return IOMEM_ERR_PTR(-ENODEV);
Tomasz Figa1f054f52012-11-24 11:13:48 +0900200 if (soc_is_exynos4412())
201 boot_reg += 4*cpu;
Arun Kumar K86c6f142014-05-26 04:16:11 +0900202 else if (soc_is_exynos5420() || soc_is_exynos5800())
Chander Kashyap1580be32013-06-19 00:29:35 +0900203 boot_reg += 4;
Tomasz Figa1f054f52012-11-24 11:13:48 +0900204 return boot_reg;
205}
JungHi Min911c29b2011-07-16 13:39:09 +0900206
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900207/*
Krzysztof Kozlowskib588aae2014-09-25 18:15:13 +0900208 * Set wake up by local power mode and execute software reset for given core.
209 *
210 * Currently this is needed only when booting secondary CPU on Exynos3250.
211 */
Bartlomiej Zolnierkiewiczaf997112015-03-18 14:09:57 +0100212void exynos_core_restart(u32 core_id)
Krzysztof Kozlowskib588aae2014-09-25 18:15:13 +0900213{
214 u32 val;
215
216 if (!of_machine_is_compatible("samsung,exynos3250"))
217 return;
218
Bartlomiej Zolnierkiewicz497ab3b2015-03-27 02:32:56 +0900219 while (!pmu_raw_readl(S5P_PMU_SPARE2))
220 udelay(10);
221 udelay(10);
222
Krzysztof Kozlowskib588aae2014-09-25 18:15:13 +0900223 val = pmu_raw_readl(EXYNOS_ARM_CORE_STATUS(core_id));
224 val |= S5P_CORE_WAKEUP_FROM_LOCAL_CFG;
225 pmu_raw_writel(val, EXYNOS_ARM_CORE_STATUS(core_id));
226
Krzysztof Kozlowskib588aae2014-09-25 18:15:13 +0900227 pmu_raw_writel(EXYNOS_CORE_PO_RESET(core_id), EXYNOS_SWRESET);
228}
229
230/*
Russell King3705ff62010-12-18 10:53:12 +0000231 * Write pen_release in a way that is guaranteed to be visible to all
232 * observers, irrespective of whether they're taking part in coherency
233 * or not. This is necessary for the hotplug code to work reliably.
234 */
235static void write_pen_release(int val)
236{
237 pen_release = val;
238 smp_wmb();
Nicolas Pitref45913f2013-12-05 14:26:16 -0500239 sync_cache_w(&pen_release);
Russell King3705ff62010-12-18 10:53:12 +0000240}
241
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900242static DEFINE_SPINLOCK(boot_lock);
243
Paul Gortmaker8bd26e32013-06-17 15:43:14 -0400244static void exynos_secondary_init(unsigned int cpu)
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900245{
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900246 /*
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900247 * let the primary processor know we're out of the
248 * pen, then head off into the C entry point
249 */
Russell King3705ff62010-12-18 10:53:12 +0000250 write_pen_release(-1);
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900251
252 /*
253 * Synchronise with the boot thread.
254 */
255 spin_lock(&boot_lock);
256 spin_unlock(&boot_lock);
257}
258
Bartlomiej Zolnierkiewiczaf997112015-03-18 14:09:57 +0100259int exynos_set_boot_addr(u32 core_id, unsigned long boot_addr)
Bartlomiej Zolnierkiewicz955d4cf2015-03-18 14:09:55 +0100260{
261 int ret;
262
263 /*
264 * Try to set boot address using firmware first
265 * and fall back to boot register if it fails.
266 */
267 ret = call_firmware_op(set_cpu_boot_addr, core_id, boot_addr);
268 if (ret && ret != -ENOSYS)
269 goto fail;
270 if (ret == -ENOSYS) {
271 void __iomem *boot_reg = cpu_boot_reg(core_id);
272
273 if (IS_ERR(boot_reg)) {
274 ret = PTR_ERR(boot_reg);
275 goto fail;
276 }
Ben Dooks458ad212016-06-21 11:20:24 +0100277 writel_relaxed(boot_addr, boot_reg);
Bartlomiej Zolnierkiewicz955d4cf2015-03-18 14:09:55 +0100278 ret = 0;
279 }
280fail:
281 return ret;
282}
283
Bartlomiej Zolnierkiewiczaf997112015-03-18 14:09:57 +0100284int exynos_get_boot_addr(u32 core_id, unsigned long *boot_addr)
Bartlomiej Zolnierkiewicz1225ad72015-03-18 14:09:56 +0100285{
286 int ret;
287
288 /*
289 * Try to get boot address using firmware first
290 * and fall back to boot register if it fails.
291 */
292 ret = call_firmware_op(get_cpu_boot_addr, core_id, boot_addr);
293 if (ret && ret != -ENOSYS)
294 goto fail;
295 if (ret == -ENOSYS) {
296 void __iomem *boot_reg = cpu_boot_reg(core_id);
297
298 if (IS_ERR(boot_reg)) {
299 ret = PTR_ERR(boot_reg);
300 goto fail;
301 }
Ben Dooks458ad212016-06-21 11:20:24 +0100302 *boot_addr = readl_relaxed(boot_reg);
Bartlomiej Zolnierkiewicz1225ad72015-03-18 14:09:56 +0100303 ret = 0;
304 }
305fail:
306 return ret;
307}
308
Paul Gortmaker8bd26e32013-06-17 15:43:14 -0400309static int exynos_boot_secondary(unsigned int cpu, struct task_struct *idle)
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900310{
311 unsigned long timeout;
Tomasz Figa9637f302014-07-16 02:59:18 +0900312 u32 mpidr = cpu_logical_map(cpu);
313 u32 core_id = MPIDR_AFFINITY_LEVEL(mpidr, 0);
Sachin Kamatb3205de2014-05-13 07:13:44 +0900314 int ret = -ENOSYS;
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900315
316 /*
317 * Set synchronisation state between this boot processor
318 * and the secondary one
319 */
320 spin_lock(&boot_lock);
321
322 /*
323 * The secondary processor is waiting to be released from
324 * the holding pen - release it, then wait for it to flag
325 * that it has been released by resetting pen_release.
326 *
Tomasz Figa9637f302014-07-16 02:59:18 +0900327 * Note that "pen_release" is the hardware CPU core ID, whereas
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900328 * "cpu" is Linux's internal ID.
329 */
Tomasz Figa9637f302014-07-16 02:59:18 +0900330 write_pen_release(core_id);
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900331
Tomasz Figa9637f302014-07-16 02:59:18 +0900332 if (!exynos_cpu_power_state(core_id)) {
333 exynos_cpu_power_up(core_id);
JungHi Min911c29b2011-07-16 13:39:09 +0900334 timeout = 10;
335
336 /* wait max 10 ms until cpu1 is on */
Tomasz Figa9637f302014-07-16 02:59:18 +0900337 while (exynos_cpu_power_state(core_id)
338 != S5P_CORE_LOCAL_PWR_EN) {
JungHi Min911c29b2011-07-16 13:39:09 +0900339 if (timeout-- == 0)
340 break;
341
342 mdelay(1);
343 }
344
345 if (timeout == 0) {
346 printk(KERN_ERR "cpu1 power enable failed");
347 spin_unlock(&boot_lock);
348 return -ETIMEDOUT;
349 }
350 }
Krzysztof Kozlowskib588aae2014-09-25 18:15:13 +0900351
352 exynos_core_restart(core_id);
353
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900354 /*
355 * Send the secondary CPU a soft interrupt, thereby causing
356 * the boot monitor to read the system wide flags register,
357 * and branch to the address found there.
358 */
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900359
360 timeout = jiffies + (1 * HZ);
361 while (time_before(jiffies, timeout)) {
Tomasz Figabeddf632012-12-11 13:58:43 +0900362 unsigned long boot_addr;
363
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900364 smp_rmb();
JungHi Min911c29b2011-07-16 13:39:09 +0900365
Florian Fainelli64fc2a92017-01-15 03:59:29 +0100366 boot_addr = __pa_symbol(exynos4_secondary_startup);
Tomasz Figabeddf632012-12-11 13:58:43 +0900367
Bartlomiej Zolnierkiewicz955d4cf2015-03-18 14:09:55 +0100368 ret = exynos_set_boot_addr(core_id, boot_addr);
369 if (ret)
Sachin Kamatb3205de2014-05-13 07:13:44 +0900370 goto fail;
Tomasz Figabeddf632012-12-11 13:58:43 +0900371
Tomasz Figa9637f302014-07-16 02:59:18 +0900372 call_firmware_op(cpu_boot, core_id);
Tomasz Figabeddf632012-12-11 13:58:43 +0900373
Bartlomiej Zolnierkiewicz497ab3b2015-03-27 02:32:56 +0900374 if (soc_is_exynos3250())
375 dsb_sev();
376 else
377 arch_send_wakeup_ipi_mask(cpumask_of(cpu));
JungHi Min911c29b2011-07-16 13:39:09 +0900378
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900379 if (pen_release == -1)
380 break;
381
382 udelay(10);
383 }
384
Bartlomiej Zolnierkiewicz9f294c12015-03-18 14:09:53 +0100385 if (pen_release != -1)
386 ret = -ETIMEDOUT;
387
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900388 /*
389 * now the secondary core is starting up let it run its
390 * calibrations, then wait for it to finish
391 */
Sachin Kamatb3205de2014-05-13 07:13:44 +0900392fail:
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900393 spin_unlock(&boot_lock);
394
Sachin Kamatb3205de2014-05-13 07:13:44 +0900395 return pen_release != -1 ? ret : 0;
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900396}
397
Marc Zyngier06853ae2011-09-08 13:15:22 +0100398static void __init exynos_smp_prepare_cpus(unsigned int max_cpus)
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900399{
Tomasz Figa1f054f52012-11-24 11:13:48 +0900400 int i;
401
Olof Johansson1754c422014-06-02 21:47:46 -0700402 exynos_sysram_init();
403
Krzysztof Kozlowski6f024972015-03-11 11:13:57 +0100404 exynos_set_delayed_reset_assertion(true);
405
Russell Kingaf040ff2014-06-24 19:43:15 +0100406 if (read_cpuid_part() == ARM_CPU_PART_CORTEX_A9)
Pankaj Dubey3c337102018-05-10 13:02:54 +0200407 exynos_scu_enable();
Russell King05c74a62010-12-03 11:09:48 +0000408
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900409 /*
Russell King05c74a62010-12-03 11:09:48 +0000410 * Write the address of secondary startup into the
411 * system-wide flags register. The boot monitor waits
412 * until it receives a soft interrupt, and then the
413 * secondary CPU branches to this address.
Tomasz Figabeddf632012-12-11 13:58:43 +0900414 *
415 * Try using firmware operation first and fall back to
416 * boot register if it fails.
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900417 */
Tomasz Figabeddf632012-12-11 13:58:43 +0900418 for (i = 1; i < max_cpus; ++i) {
Tomasz Figabeddf632012-12-11 13:58:43 +0900419 unsigned long boot_addr;
Tomasz Figa9637f302014-07-16 02:59:18 +0900420 u32 mpidr;
421 u32 core_id;
Sachin Kamatb3205de2014-05-13 07:13:44 +0900422 int ret;
Tomasz Figabeddf632012-12-11 13:58:43 +0900423
Tomasz Figa9637f302014-07-16 02:59:18 +0900424 mpidr = cpu_logical_map(i);
425 core_id = MPIDR_AFFINITY_LEVEL(mpidr, 0);
Florian Fainelli64fc2a92017-01-15 03:59:29 +0100426 boot_addr = __pa_symbol(exynos4_secondary_startup);
Tomasz Figabeddf632012-12-11 13:58:43 +0900427
Bartlomiej Zolnierkiewicz955d4cf2015-03-18 14:09:55 +0100428 ret = exynos_set_boot_addr(core_id, boot_addr);
429 if (ret)
Sachin Kamatb3205de2014-05-13 07:13:44 +0900430 break;
Tomasz Figabeddf632012-12-11 13:58:43 +0900431 }
Changhwan Youn2b12b5c2010-07-26 21:08:52 +0900432}
Marc Zyngier06853ae2011-09-08 13:15:22 +0100433
Krzysztof Kozlowski6f0b7c02014-09-14 02:49:31 +0900434#ifdef CONFIG_HOTPLUG_CPU
435/*
436 * platform-specific code to shutdown a CPU
437 *
438 * Called with IRQs disabled
439 */
Krzysztof Kozlowski27b9ee82014-09-14 02:49:32 +0900440static void exynos_cpu_die(unsigned int cpu)
Krzysztof Kozlowski6f0b7c02014-09-14 02:49:31 +0900441{
442 int spurious = 0;
Krzysztof Kozlowski13cfa6c2014-09-14 02:49:32 +0900443 u32 mpidr = cpu_logical_map(cpu);
444 u32 core_id = MPIDR_AFFINITY_LEVEL(mpidr, 0);
Krzysztof Kozlowski6f0b7c02014-09-14 02:49:31 +0900445
446 v7_exit_coherency_flush(louis);
447
448 platform_do_lowpower(cpu, &spurious);
449
450 /*
451 * bring this CPU back into the world of cache
452 * coherency, and then restore interrupts
453 */
Krzysztof Kozlowski13cfa6c2014-09-14 02:49:32 +0900454 cpu_leave_lowpower(core_id);
Krzysztof Kozlowski6f0b7c02014-09-14 02:49:31 +0900455
456 if (spurious)
457 pr_warn("CPU%u: %u spurious wakeup calls\n", cpu, spurious);
458}
459#endif /* CONFIG_HOTPLUG_CPU */
460
Masahiro Yamada75305272015-11-15 10:39:53 +0900461const struct smp_operations exynos_smp_ops __initconst = {
Marc Zyngier06853ae2011-09-08 13:15:22 +0100462 .smp_prepare_cpus = exynos_smp_prepare_cpus,
463 .smp_secondary_init = exynos_secondary_init,
464 .smp_boot_secondary = exynos_boot_secondary,
465#ifdef CONFIG_HOTPLUG_CPU
466 .cpu_die = exynos_cpu_die,
467#endif
468};