Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 1 | /* |
| 2 | * SMP support for BPA machines. |
| 3 | * |
| 4 | * Dave Engebretsen, Peter Bergner, and |
| 5 | * Mike Corrigan {engebret|bergner|mikec}@us.ibm.com |
| 6 | * |
| 7 | * Plus various changes from other IBM teams... |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or |
| 10 | * modify it under the terms of the GNU General Public License |
| 11 | * as published by the Free Software Foundation; either version |
| 12 | * 2 of the License, or (at your option) any later version. |
| 13 | */ |
| 14 | |
| 15 | #undef DEBUG |
| 16 | |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 17 | #include <linux/kernel.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/sched.h> |
| 20 | #include <linux/smp.h> |
| 21 | #include <linux/interrupt.h> |
| 22 | #include <linux/delay.h> |
| 23 | #include <linux/init.h> |
| 24 | #include <linux/spinlock.h> |
| 25 | #include <linux/cache.h> |
| 26 | #include <linux/err.h> |
| 27 | #include <linux/sysdev.h> |
| 28 | #include <linux/cpu.h> |
| 29 | |
| 30 | #include <asm/ptrace.h> |
| 31 | #include <asm/atomic.h> |
| 32 | #include <asm/irq.h> |
| 33 | #include <asm/page.h> |
| 34 | #include <asm/pgtable.h> |
| 35 | #include <asm/io.h> |
| 36 | #include <asm/prom.h> |
| 37 | #include <asm/smp.h> |
| 38 | #include <asm/paca.h> |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 39 | #include <asm/machdep.h> |
| 40 | #include <asm/cputable.h> |
| 41 | #include <asm/firmware.h> |
| 42 | #include <asm/system.h> |
| 43 | #include <asm/rtas.h> |
Benjamin Herrenschmidt | 8d08908 | 2007-10-25 15:27:44 +1000 | [diff] [blame] | 44 | #include <asm/cputhreads.h> |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 45 | |
| 46 | #include "interrupt.h" |
will schmidt | aa39be0 | 2007-10-30 06:24:19 +1100 | [diff] [blame] | 47 | #include <asm/udbg.h> |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 48 | |
| 49 | #ifdef DEBUG |
| 50 | #define DBG(fmt...) udbg_printf(fmt) |
| 51 | #else |
| 52 | #define DBG(fmt...) |
| 53 | #endif |
| 54 | |
| 55 | /* |
Milton Miller | 6a75a6b | 2008-10-20 15:37:03 +0000 | [diff] [blame] | 56 | * The Primary thread of each non-boot processor was started from the OF client |
| 57 | * interface by prom_hold_cpus and is spinning on secondary_hold_spinloop. |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 58 | */ |
| 59 | static cpumask_t of_spin_map; |
| 60 | |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 61 | /** |
| 62 | * smp_startup_cpu() - start the given cpu |
| 63 | * |
| 64 | * At boot time, there is nothing to do for primary threads which were |
| 65 | * started from Open Firmware. For anything else, call RTAS with the |
| 66 | * appropriate start location. |
| 67 | * |
| 68 | * Returns: |
| 69 | * 0 - failure |
| 70 | * 1 - success |
| 71 | */ |
| 72 | static inline int __devinit smp_startup_cpu(unsigned int lcpu) |
| 73 | { |
| 74 | int status; |
| 75 | unsigned long start_here = __pa((u32)*((unsigned long *) |
Olof Johansson | f39b7a5 | 2006-08-11 00:07:08 -0500 | [diff] [blame] | 76 | generic_secondary_smp_init)); |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 77 | unsigned int pcpu; |
| 78 | int start_cpu; |
| 79 | |
KOSAKI Motohiro | 104699c | 2011-04-28 05:07:23 +0000 | [diff] [blame] | 80 | if (cpumask_test_cpu(lcpu, &of_spin_map)) |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 81 | /* Already started by OF and sitting in spin loop */ |
| 82 | return 1; |
| 83 | |
| 84 | pcpu = get_hard_smp_processor_id(lcpu); |
| 85 | |
| 86 | /* Fixup atomic count: it exited inside IRQ handler. */ |
Al Viro | b5e2fc1 | 2006-01-12 01:06:01 -0800 | [diff] [blame] | 87 | task_thread_info(paca[lcpu].__current)->preempt_count = 0; |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 88 | |
| 89 | /* |
| 90 | * If the RTAS start-cpu token does not exist then presume the |
| 91 | * cpu is already spinning. |
| 92 | */ |
| 93 | start_cpu = rtas_token("start-cpu"); |
| 94 | if (start_cpu == RTAS_UNKNOWN_SERVICE) |
| 95 | return 1; |
| 96 | |
| 97 | status = rtas_call(start_cpu, 3, 1, NULL, pcpu, start_here, lcpu); |
| 98 | if (status != 0) { |
| 99 | printk(KERN_ERR "start-cpu failed: %i\n", status); |
| 100 | return 0; |
| 101 | } |
| 102 | |
| 103 | return 1; |
| 104 | } |
| 105 | |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 106 | static int __init smp_iic_probe(void) |
| 107 | { |
| 108 | iic_request_IPIs(); |
| 109 | |
KOSAKI Motohiro | 104699c | 2011-04-28 05:07:23 +0000 | [diff] [blame] | 110 | return cpumask_weight(cpu_possible_mask); |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 111 | } |
| 112 | |
Arnd Bergmann | 960cedb | 2008-11-28 09:51:24 +0000 | [diff] [blame] | 113 | static void __devinit smp_cell_setup_cpu(int cpu) |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 114 | { |
| 115 | if (cpu != boot_cpuid) |
| 116 | iic_setup_cpu(); |
Arnd Bergmann | 960cedb | 2008-11-28 09:51:24 +0000 | [diff] [blame] | 117 | |
| 118 | /* |
| 119 | * change default DABRX to allow user watchpoints |
| 120 | */ |
| 121 | mtspr(SPRN_DABRX, DABRX_KERNEL | DABRX_USER); |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 122 | } |
| 123 | |
Michael Ellerman | de30097 | 2011-04-11 21:46:19 +0000 | [diff] [blame] | 124 | static int __devinit smp_cell_kick_cpu(int nr) |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 125 | { |
| 126 | BUG_ON(nr < 0 || nr >= NR_CPUS); |
| 127 | |
| 128 | if (!smp_startup_cpu(nr)) |
Michael Ellerman | de30097 | 2011-04-11 21:46:19 +0000 | [diff] [blame] | 129 | return -ENOENT; |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 130 | |
| 131 | /* |
| 132 | * The processor is currently spinning, waiting for the |
| 133 | * cpu_start field to become non-zero After we set cpu_start, |
| 134 | * the processor will continue on to secondary_start |
| 135 | */ |
| 136 | paca[nr].cpu_start = 1; |
Michael Ellerman | de30097 | 2011-04-11 21:46:19 +0000 | [diff] [blame] | 137 | |
| 138 | return 0; |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | static int smp_cell_cpu_bootable(unsigned int nr) |
| 142 | { |
| 143 | /* Special case - we inhibit secondary thread startup |
| 144 | * during boot if the user requests it. Odd-numbered |
| 145 | * cpus are assumed to be secondary threads. |
| 146 | */ |
| 147 | if (system_state < SYSTEM_RUNNING && |
| 148 | cpu_has_feature(CPU_FTR_SMT) && |
Benjamin Herrenschmidt | 8d08908 | 2007-10-25 15:27:44 +1000 | [diff] [blame] | 149 | !smt_enabled_at_boot && cpu_thread_in_core(nr) != 0) |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 150 | return 0; |
| 151 | |
| 152 | return 1; |
| 153 | } |
| 154 | static struct smp_ops_t bpa_iic_smp_ops = { |
Milton Miller | d5a1c19 | 2011-05-24 20:34:18 +0000 | [diff] [blame^] | 155 | .message_pass = iic_message_pass, |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 156 | .probe = smp_iic_probe, |
| 157 | .kick_cpu = smp_cell_kick_cpu, |
Arnd Bergmann | 960cedb | 2008-11-28 09:51:24 +0000 | [diff] [blame] | 158 | .setup_cpu = smp_cell_setup_cpu, |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 159 | .cpu_bootable = smp_cell_cpu_bootable, |
| 160 | }; |
| 161 | |
| 162 | /* This is called very early */ |
| 163 | void __init smp_init_cell(void) |
| 164 | { |
| 165 | int i; |
| 166 | |
| 167 | DBG(" -> smp_init_cell()\n"); |
| 168 | |
| 169 | smp_ops = &bpa_iic_smp_ops; |
| 170 | |
| 171 | /* Mark threads which are still spinning in hold loops. */ |
| 172 | if (cpu_has_feature(CPU_FTR_SMT)) { |
| 173 | for_each_present_cpu(i) { |
Milton Miller | 6a75a6b | 2008-10-20 15:37:03 +0000 | [diff] [blame] | 174 | if (cpu_thread_in_core(i) == 0) |
KOSAKI Motohiro | 104699c | 2011-04-28 05:07:23 +0000 | [diff] [blame] | 175 | cpumask_set_cpu(i, &of_spin_map); |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 176 | } |
KOSAKI Motohiro | 104699c | 2011-04-28 05:07:23 +0000 | [diff] [blame] | 177 | } else |
| 178 | cpumask_copy(&of_spin_map, cpu_present_mask); |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 179 | |
KOSAKI Motohiro | 104699c | 2011-04-28 05:07:23 +0000 | [diff] [blame] | 180 | cpumask_clear_cpu(boot_cpuid, &of_spin_map); |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 181 | |
| 182 | /* Non-lpar has additional take/give timebase */ |
| 183 | if (rtas_token("freeze-time-base") != RTAS_UNKNOWN_SERVICE) { |
Benjamin Herrenschmidt | c4007a2 | 2009-06-16 16:42:50 +0000 | [diff] [blame] | 184 | smp_ops->give_timebase = rtas_give_timebase; |
| 185 | smp_ops->take_timebase = rtas_take_timebase; |
Arnd Bergmann | 19fe047 | 2005-10-31 20:08:38 -0500 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | DBG(" <- smp_init_cell()\n"); |
| 189 | } |