powerpc/ppc64e: Fix link problem when building ppc64e_defconfig
[pandora-kernel.git] / arch / powerpc / platforms / 85xx / smp.c
1 /*
2  * Author: Andy Fleming <afleming@freescale.com>
3  *         Kumar Gala <galak@kernel.crashing.org>
4  *
5  * Copyright 2006-2008 Freescale Semiconductor Inc.
6  *
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.
11  */
12
13 #include <linux/stddef.h>
14 #include <linux/kernel.h>
15 #include <linux/init.h>
16 #include <linux/delay.h>
17 #include <linux/of.h>
18 #include <linux/kexec.h>
19
20 #include <asm/machdep.h>
21 #include <asm/pgtable.h>
22 #include <asm/page.h>
23 #include <asm/mpic.h>
24 #include <asm/cacheflush.h>
25 #include <asm/dbell.h>
26
27 #include <sysdev/fsl_soc.h>
28 #include <sysdev/mpic.h>
29
30 extern void __early_start(void);
31
32 #define BOOT_ENTRY_ADDR_UPPER   0
33 #define BOOT_ENTRY_ADDR_LOWER   1
34 #define BOOT_ENTRY_R3_UPPER     2
35 #define BOOT_ENTRY_R3_LOWER     3
36 #define BOOT_ENTRY_RESV         4
37 #define BOOT_ENTRY_PIR          5
38 #define BOOT_ENTRY_R6_UPPER     6
39 #define BOOT_ENTRY_R6_LOWER     7
40 #define NUM_BOOT_ENTRY          8
41 #define SIZE_BOOT_ENTRY         (NUM_BOOT_ENTRY * sizeof(u32))
42
43 static void __init
44 smp_85xx_kick_cpu(int nr)
45 {
46         unsigned long flags;
47         const u64 *cpu_rel_addr;
48         __iomem u32 *bptr_vaddr;
49         struct device_node *np;
50         int n = 0;
51         int ioremappable;
52
53         WARN_ON (nr < 0 || nr >= NR_CPUS);
54
55         pr_debug("smp_85xx_kick_cpu: kick CPU #%d\n", nr);
56
57         np = of_get_cpu_node(nr, NULL);
58         cpu_rel_addr = of_get_property(np, "cpu-release-addr", NULL);
59
60         if (cpu_rel_addr == NULL) {
61                 printk(KERN_ERR "No cpu-release-addr for cpu %d\n", nr);
62                 return;
63         }
64
65         /*
66          * A secondary core could be in a spinloop in the bootpage
67          * (0xfffff000), somewhere in highmem, or somewhere in lowmem.
68          * The bootpage and highmem can be accessed via ioremap(), but
69          * we need to directly access the spinloop if its in lowmem.
70          */
71         ioremappable = *cpu_rel_addr > virt_to_phys(high_memory);
72
73         /* Map the spin table */
74         if (ioremappable)
75                 bptr_vaddr = ioremap(*cpu_rel_addr, SIZE_BOOT_ENTRY);
76         else
77                 bptr_vaddr = phys_to_virt(*cpu_rel_addr);
78
79         local_irq_save(flags);
80
81         out_be32(bptr_vaddr + BOOT_ENTRY_PIR, nr);
82 #ifdef CONFIG_PPC32
83         out_be32(bptr_vaddr + BOOT_ENTRY_ADDR_LOWER, __pa(__early_start));
84
85         if (!ioremappable)
86                 flush_dcache_range((ulong)bptr_vaddr,
87                                 (ulong)(bptr_vaddr + SIZE_BOOT_ENTRY));
88
89         /* Wait a bit for the CPU to ack. */
90         while ((__secondary_hold_acknowledge != nr) && (++n < 1000))
91                 mdelay(1);
92 #else
93         out_be64((u64 *)(bptr_vaddr + BOOT_ENTRY_ADDR_UPPER),
94                 __pa((u64)*((unsigned long long *) generic_secondary_smp_init)));
95
96         smp_generic_kick_cpu(nr);
97 #endif
98
99         local_irq_restore(flags);
100
101         if (ioremappable)
102                 iounmap(bptr_vaddr);
103
104         pr_debug("waited %d msecs for CPU #%d.\n", n, nr);
105 }
106
107 static void __init
108 smp_85xx_setup_cpu(int cpu_nr)
109 {
110         mpic_setup_this_cpu();
111         if (cpu_has_feature(CPU_FTR_DBELL))
112                 doorbell_setup_this_cpu();
113 }
114
115 struct smp_ops_t smp_85xx_ops = {
116         .kick_cpu = smp_85xx_kick_cpu,
117 #ifdef CONFIG_KEXEC
118         .give_timebase  = smp_generic_give_timebase,
119         .take_timebase  = smp_generic_take_timebase,
120 #endif
121 };
122
123 #ifdef CONFIG_KEXEC
124 static int kexec_down_cpus = 0;
125
126 void mpc85xx_smp_kexec_cpu_down(int crash_shutdown, int secondary)
127 {
128         mpic_teardown_this_cpu(1);
129
130         /* When crashing, this gets called on all CPU's we only
131          * take down the non-boot cpus */
132         if (smp_processor_id() != boot_cpuid)
133         {
134                 local_irq_disable();
135                 kexec_down_cpus++;
136
137                 while (1);
138         }
139 }
140
141 static void mpc85xx_smp_kexec_down(void *arg)
142 {
143         if (ppc_md.kexec_cpu_down)
144                 ppc_md.kexec_cpu_down(0,1);
145 }
146
147 static void mpc85xx_smp_machine_kexec(struct kimage *image)
148 {
149         int timeout = 2000;
150         int i;
151
152         set_cpus_allowed(current, cpumask_of_cpu(boot_cpuid));
153
154         smp_call_function(mpc85xx_smp_kexec_down, NULL, 0);
155
156         while ( (kexec_down_cpus != (num_online_cpus() - 1)) &&
157                 ( timeout > 0 ) )
158         {
159                 timeout--;
160         }
161
162         if ( !timeout )
163                 printk(KERN_ERR "Unable to bring down secondary cpu(s)");
164
165         for (i = 0; i < num_present_cpus(); i++)
166         {
167                 if ( i == smp_processor_id() ) continue;
168                 mpic_reset_core(i);
169         }
170
171         default_machine_kexec(image);
172 }
173 #endif /* CONFIG_KEXEC */
174
175 void __init mpc85xx_smp_init(void)
176 {
177         struct device_node *np;
178
179         np = of_find_node_by_type(NULL, "open-pic");
180         if (np) {
181                 smp_85xx_ops.probe = smp_mpic_probe;
182                 smp_85xx_ops.setup_cpu = smp_85xx_setup_cpu;
183                 smp_85xx_ops.message_pass = smp_mpic_message_pass;
184         }
185
186         if (cpu_has_feature(CPU_FTR_DBELL))
187                 smp_85xx_ops.message_pass = doorbell_message_pass;
188
189         BUG_ON(!smp_85xx_ops.message_pass);
190
191         smp_ops = &smp_85xx_ops;
192
193 #ifdef CONFIG_KEXEC
194         ppc_md.kexec_cpu_down = mpc85xx_smp_kexec_cpu_down;
195         ppc_md.machine_kexec = mpc85xx_smp_machine_kexec;
196 #endif
197 }