2 * Author: Andy Fleming <afleming@freescale.com>
3 * Kumar Gala <galak@kernel.crashing.org>
5 * Copyright 2006-2008, 2011-2012 Freescale Semiconductor Inc.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version.
13 #include <linux/stddef.h>
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/delay.h>
18 #include <linux/kexec.h>
19 #include <linux/highmem.h>
20 #include <linux/cpu.h>
22 #include <asm/machdep.h>
23 #include <asm/pgtable.h>
26 #include <asm/cacheflush.h>
27 #include <asm/dbell.h>
28 #include <asm/fsl_guts.h>
30 #include <sysdev/fsl_soc.h>
31 #include <sysdev/mpic.h>
34 struct epapr_spin_table
{
43 static struct ccsr_guts __iomem
*guts
;
48 static void mpc85xx_timebase_freeze(int freeze
)
52 mask
= CCSR_GUTS_DEVDISR_TB0
| CCSR_GUTS_DEVDISR_TB1
;
54 setbits32(&guts
->devdisr
, mask
);
56 clrbits32(&guts
->devdisr
, mask
);
58 in_be32(&guts
->devdisr
);
61 static void mpc85xx_give_timebase(void)
65 local_irq_save(flags
);
71 mpc85xx_timebase_freeze(1);
74 * e5500/e6500 have a workaround for erratum A-006958 in place
75 * that will reread the timebase until TBL is non-zero.
76 * That would be a bad thing when the timebase is frozen.
78 * Thus, we read it manually, and instead of checking that
79 * TBL is non-zero, we ensure that TB does not change. We don't
80 * do that for the main mftb implementation, because it requires
86 asm volatile("mfspr %0, %1" : "=r" (timebase
) :
91 asm volatile("mfspr %0, %1" : "=r" (timebase
) :
93 } while (prev
!= timebase
);
104 mpc85xx_timebase_freeze(0);
106 local_irq_restore(flags
);
109 static void mpc85xx_take_timebase(void)
113 local_irq_save(flags
);
119 set_tb(timebase
>> 32, timebase
& 0xffffffff);
123 local_irq_restore(flags
);
126 #ifdef CONFIG_HOTPLUG_CPU
127 static void smp_85xx_mach_cpu_die(void)
129 unsigned int cpu
= smp_processor_id();
134 generic_set_cpu_dead(cpu
);
139 __flush_disable_L1();
140 tmp
= (mfspr(SPRN_HID0
) & ~(HID0_DOZE
|HID0_SLEEP
)) | HID0_NAP
;
141 mtspr(SPRN_HID0
, tmp
);
144 /* Enter NAP mode. */
156 static inline void flush_spin_table(void *spin_table
)
158 flush_dcache_range((ulong
)spin_table
,
159 (ulong
)spin_table
+ sizeof(struct epapr_spin_table
));
162 static inline u32
read_spin_table_addr_l(void *spin_table
)
164 flush_dcache_range((ulong
)spin_table
,
165 (ulong
)spin_table
+ sizeof(struct epapr_spin_table
));
166 return in_be32(&((struct epapr_spin_table
*)spin_table
)->addr_l
);
169 static int smp_85xx_kick_cpu(int nr
)
172 const u64
*cpu_rel_addr
;
173 __iomem
struct epapr_spin_table
*spin_table
;
174 struct device_node
*np
;
175 int hw_cpu
= get_hard_smp_processor_id(nr
);
179 WARN_ON(nr
< 0 || nr
>= NR_CPUS
);
180 WARN_ON(hw_cpu
< 0 || hw_cpu
>= NR_CPUS
);
182 pr_debug("smp_85xx_kick_cpu: kick CPU #%d\n", nr
);
184 np
= of_get_cpu_node(nr
, NULL
);
185 cpu_rel_addr
= of_get_property(np
, "cpu-release-addr", NULL
);
187 if (cpu_rel_addr
== NULL
) {
188 printk(KERN_ERR
"No cpu-release-addr for cpu %d\n", nr
);
193 * A secondary core could be in a spinloop in the bootpage
194 * (0xfffff000), somewhere in highmem, or somewhere in lowmem.
195 * The bootpage and highmem can be accessed via ioremap(), but
196 * we need to directly access the spinloop if its in lowmem.
198 ioremappable
= *cpu_rel_addr
> virt_to_phys(high_memory
);
200 /* Map the spin table */
202 spin_table
= ioremap_prot(*cpu_rel_addr
,
203 sizeof(struct epapr_spin_table
), _PAGE_COHERENT
);
205 spin_table
= phys_to_virt(*cpu_rel_addr
);
207 local_irq_save(flags
);
209 #ifdef CONFIG_HOTPLUG_CPU
210 /* Corresponding to generic_set_cpu_dead() */
211 generic_set_cpu_up(nr
);
213 if (system_state
== SYSTEM_RUNNING
) {
215 * To keep it compatible with old boot program which uses
216 * cache-inhibit spin table, we need to flush the cache
217 * before accessing spin table to invalidate any staled data.
218 * We also need to flush the cache after writing to spin
219 * table to push data out.
221 flush_spin_table(spin_table
);
222 out_be32(&spin_table
->addr_l
, 0);
223 flush_spin_table(spin_table
);
226 * We don't set the BPTR register here since it already points
227 * to the boot page properly.
232 * wait until core is ready...
233 * We need to invalidate the stale data, in case the boot
234 * loader uses a cache-inhibited spin table.
236 if (!spin_event_timeout(
237 read_spin_table_addr_l(spin_table
) == 1,
239 pr_err("%s: timeout waiting for core %d to reset\n",
245 /* clear the acknowledge status */
246 __secondary_hold_acknowledge
= -1;
249 flush_spin_table(spin_table
);
250 out_be32(&spin_table
->pir
, hw_cpu
);
251 out_be32(&spin_table
->addr_l
, __pa(__early_start
));
252 flush_spin_table(spin_table
);
254 /* Wait a bit for the CPU to ack. */
255 if (!spin_event_timeout(__secondary_hold_acknowledge
== hw_cpu
,
257 pr_err("%s: timeout waiting for core %d to ack\n",
264 smp_generic_kick_cpu(nr
);
266 flush_spin_table(spin_table
);
267 out_be32(&spin_table
->pir
, hw_cpu
);
268 out_be64((u64
*)(&spin_table
->addr_h
),
269 __pa((u64
)*((unsigned long long *)generic_secondary_smp_init
)));
270 flush_spin_table(spin_table
);
273 local_irq_restore(flags
);
281 struct smp_ops_t smp_85xx_ops
= {
282 .kick_cpu
= smp_85xx_kick_cpu
,
283 .cpu_bootable
= smp_generic_cpu_bootable
,
284 #ifdef CONFIG_HOTPLUG_CPU
285 .cpu_disable
= generic_cpu_disable
,
286 .cpu_die
= generic_cpu_die
,
289 .give_timebase
= smp_generic_give_timebase
,
290 .take_timebase
= smp_generic_take_timebase
,
295 atomic_t kexec_down_cpus
= ATOMIC_INIT(0);
297 void mpc85xx_smp_kexec_cpu_down(int crash_shutdown
, int secondary
)
302 atomic_inc(&kexec_down_cpus
);
308 static void mpc85xx_smp_kexec_down(void *arg
)
310 if (ppc_md
.kexec_cpu_down
)
311 ppc_md
.kexec_cpu_down(0,1);
314 static void map_and_flush(unsigned long paddr
)
316 struct page
*page
= pfn_to_page(paddr
>> PAGE_SHIFT
);
317 unsigned long kaddr
= (unsigned long)kmap(page
);
319 flush_dcache_range(kaddr
, kaddr
+ PAGE_SIZE
);
324 * Before we reset the other cores, we need to flush relevant cache
325 * out to memory so we don't get anything corrupted, some of these flushes
326 * are performed out of an overabundance of caution as interrupts are not
327 * disabled yet and we can switch cores
329 static void mpc85xx_smp_flush_dcache_kexec(struct kimage
*image
)
331 kimage_entry_t
*ptr
, entry
;
335 if (image
->type
== KEXEC_TYPE_DEFAULT
) {
336 /* normal kexec images are stored in temporary pages */
337 for (ptr
= &image
->head
; (entry
= *ptr
) && !(entry
& IND_DONE
);
338 ptr
= (entry
& IND_INDIRECTION
) ?
339 phys_to_virt(entry
& PAGE_MASK
) : ptr
+ 1) {
340 if (!(entry
& IND_DESTINATION
)) {
341 map_and_flush(entry
);
344 /* flush out last IND_DONE page */
345 map_and_flush(entry
);
347 /* crash type kexec images are copied to the crash region */
348 for (i
= 0; i
< image
->nr_segments
; i
++) {
349 struct kexec_segment
*seg
= &image
->segment
[i
];
350 for (paddr
= seg
->mem
; paddr
< seg
->mem
+ seg
->memsz
;
351 paddr
+= PAGE_SIZE
) {
352 map_and_flush(paddr
);
357 /* also flush the kimage struct to be passed in as well */
358 flush_dcache_range((unsigned long)image
,
359 (unsigned long)image
+ sizeof(*image
));
362 static void mpc85xx_smp_machine_kexec(struct kimage
*image
)
364 int timeout
= INT_MAX
;
365 int i
, num_cpus
= num_present_cpus();
367 mpc85xx_smp_flush_dcache_kexec(image
);
369 if (image
->type
== KEXEC_TYPE_DEFAULT
)
370 smp_call_function(mpc85xx_smp_kexec_down
, NULL
, 0);
372 while ( (atomic_read(&kexec_down_cpus
) != (num_cpus
- 1)) &&
379 printk(KERN_ERR
"Unable to bring down secondary cpu(s)");
381 for_each_online_cpu(i
)
383 if ( i
== smp_processor_id() ) continue;
387 default_machine_kexec(image
);
389 #endif /* CONFIG_KEXEC */
391 static void smp_85xx_setup_cpu(int cpu_nr
)
393 if (smp_85xx_ops
.probe
== smp_mpic_probe
)
394 mpic_setup_this_cpu();
396 if (cpu_has_feature(CPU_FTR_DBELL
))
397 doorbell_setup_this_cpu();
400 static const struct of_device_id mpc85xx_smp_guts_ids
[] = {
401 { .compatible
= "fsl,mpc8572-guts", },
402 { .compatible
= "fsl,p1020-guts", },
403 { .compatible
= "fsl,p1021-guts", },
404 { .compatible
= "fsl,p1022-guts", },
405 { .compatible
= "fsl,p1023-guts", },
406 { .compatible
= "fsl,p2020-guts", },
410 void __init
mpc85xx_smp_init(void)
412 struct device_node
*np
;
414 smp_85xx_ops
.setup_cpu
= smp_85xx_setup_cpu
;
416 np
= of_find_node_by_type(NULL
, "open-pic");
418 smp_85xx_ops
.probe
= smp_mpic_probe
;
419 smp_85xx_ops
.message_pass
= smp_mpic_message_pass
;
422 if (cpu_has_feature(CPU_FTR_DBELL
)) {
424 * If left NULL, .message_pass defaults to
425 * smp_muxed_ipi_message_pass
427 smp_85xx_ops
.message_pass
= NULL
;
428 smp_85xx_ops
.cause_ipi
= doorbell_cause_ipi
;
431 np
= of_find_matching_node(NULL
, mpc85xx_smp_guts_ids
);
433 guts
= of_iomap(np
, 0);
436 pr_err("%s: Could not map guts node address\n",
440 smp_85xx_ops
.give_timebase
= mpc85xx_give_timebase
;
441 smp_85xx_ops
.take_timebase
= mpc85xx_take_timebase
;
442 #ifdef CONFIG_HOTPLUG_CPU
443 ppc_md
.cpu_die
= smp_85xx_mach_cpu_die
;
447 smp_ops
= &smp_85xx_ops
;
450 ppc_md
.kexec_cpu_down
= mpc85xx_smp_kexec_cpu_down
;
451 ppc_md
.machine_kexec
= mpc85xx_smp_machine_kexec
;