blob: 32a56c6dfa72b03c1e5c51b3b5680e92f1315c6d [file] [log] [blame]
Stephen Rothwellfc68e862007-08-22 13:44:58 +10001/*
2 * Low level routines for legacy iSeries support.
3 *
4 * Extracted from head_64.S
5 *
6 * PowerPC version
7 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
8 *
9 * Rewritten by Cort Dougan (cort@cs.nmt.edu) for PReP
10 * Copyright (C) 1996 Cort Dougan <cort@cs.nmt.edu>
11 * Adapted for Power Macintosh by Paul Mackerras.
12 * Low-level exception handlers and MMU support
13 * rewritten by Paul Mackerras.
14 * Copyright (C) 1996 Paul Mackerras.
15 *
16 * Adapted for 64bit PowerPC by Dave Engebretsen, Peter Bergner, and
17 * Mike Corrigan {engebret|bergner|mikejc}@us.ibm.com
18 *
19 * This file contains the low-level support and setup for the
20 * PowerPC-64 platform, including trap and interrupt dispatch.
21 *
22 * This program is free software; you can redistribute it and/or
23 * modify it under the terms of the GNU General Public License
24 * as published by the Free Software Foundation; either version
25 * 2 of the License, or (at your option) any later version.
26 */
27
28#include <asm/reg.h>
29#include <asm/ppc_asm.h>
30#include <asm/asm-offsets.h>
31#include <asm/thread_info.h>
32#include <asm/ptrace.h>
Stephen Rothwelldc8f5712007-08-22 13:47:24 +100033#include <asm/cputable.h>
Stephen Rothwellfc68e862007-08-22 13:44:58 +100034
Stephen Rothwell7180e3e2007-08-22 13:48:37 +100035#include "exception.h"
36
Stephen Rothwellfc68e862007-08-22 13:44:58 +100037 .text
38
39 .globl system_reset_iSeries
40system_reset_iSeries:
Paul Mackerrase31aa452008-08-30 11:41:12 +100041 bl .relative_toc
Stephen Rothwell3eb9cf02008-04-10 16:39:18 +100042 mfspr r13,SPRN_SPRG3 /* Get alpaca address */
Paul Mackerrase31aa452008-08-30 11:41:12 +100043 LOAD_REG_ADDR(r23, alpaca)
Stephen Rothwell3eb9cf02008-04-10 16:39:18 +100044 li r0,ALPACA_SIZE
45 sub r23,r13,r23
Michael Ellerman1426d5a2010-01-28 13:23:22 +000046 divdu r24,r23,r0 /* r24 has cpu number */
Stephen Rothwellfc68e862007-08-22 13:44:58 +100047 cmpwi 0,r24,0 /* Are we processor 0? */
48 bne 1f
Michael Ellerman1426d5a2010-01-28 13:23:22 +000049 LOAD_REG_ADDR(r13, boot_paca)
50 mtspr SPRN_SPRG_PACA,r13 /* Save it away for the future */
51 mfmsr r23
52 ori r23,r23,MSR_RI
53 mtmsrd r23 /* RI on */
Stephen Rothwellfc68e862007-08-22 13:44:58 +100054 b .__start_initialization_iSeries /* Start up the first processor */
551: mfspr r4,SPRN_CTRLF
56 li r5,CTRL_RUNLATCH /* Turn off the run light */
57 andc r4,r4,r5
58 mtspr SPRN_CTRLT,r4
59
Tony Breeds9cb82f22008-04-24 13:43:49 +100060/* Spin on __secondary_hold_spinloop until it is updated by the boot cpu. */
Paul Mackerrase31aa452008-08-30 11:41:12 +100061/* In the UP case we'll yield() later, and we will not access the paca anyway */
Tony Breeds9cb82f22008-04-24 13:43:49 +100062#ifdef CONFIG_SMP
Stephen Rothwellfc68e862007-08-22 13:44:58 +1000631:
64 HMT_LOW
Paul Mackerrase31aa452008-08-30 11:41:12 +100065 LOAD_REG_ADDR(r23, __secondary_hold_spinloop)
Tony Breeds9cb82f22008-04-24 13:43:49 +100066 ld r23,0(r23)
67 sync
Paul Mackerrase31aa452008-08-30 11:41:12 +100068 LOAD_REG_ADDR(r3,current_set)
Tony Breeds9cb82f22008-04-24 13:43:49 +100069 sldi r28,r24,3 /* get current_set[cpu#] */
70 ldx r3,r3,r28
71 addi r1,r3,THREAD_SIZE
72 subi r1,r1,STACK_FRAME_OVERHEAD
73
74 cmpwi 0,r23,0 /* Keep poking the Hypervisor until */
75 bne 2f /* we're released */
76 /* Let the Hypervisor know we are alive */
77 /* 8002 is a call to HvCallCfg::getLps, a harmless Hypervisor function */
78 lis r3,0x8002
79 rldicr r3,r3,32,15 /* r0 = (r3 << 32) & 0xffff000000000000 */
80 li r0,-1 /* r0=-1 indicates a Hypervisor call */
81 sc /* Invoke the hypervisor via a system call */
82 b 1b
83#endif
84
852:
Michael Ellerman1426d5a2010-01-28 13:23:22 +000086 /* Load our paca now that it's been allocated */
87 LOAD_REG_ADDR(r13, paca)
88 ld r13,0(r13)
89 mulli r0,r24,PACA_SIZE
90 add r13,r13,r0
91 mtspr SPRN_SPRG_PACA,r13 /* Save it away for the future */
92 mfmsr r23
93 ori r23,r23,MSR_RI
94 mtmsrd r23 /* RI on */
95
Tony Breeds9cb82f22008-04-24 13:43:49 +100096 HMT_LOW
Stephen Rothwellfc68e862007-08-22 13:44:58 +100097#ifdef CONFIG_SMP
98 lbz r23,PACAPROCSTART(r13) /* Test if this processor
99 * should start */
100 sync
Paul Mackerrase31aa452008-08-30 11:41:12 +1000101 LOAD_REG_ADDR(r3,current_set)
Stephen Rothwellfc68e862007-08-22 13:44:58 +1000102 sldi r28,r24,3 /* get current_set[cpu#] */
103 ldx r3,r3,r28
104 addi r1,r3,THREAD_SIZE
105 subi r1,r1,STACK_FRAME_OVERHEAD
106
107 cmpwi 0,r23,0
108 beq iSeries_secondary_smp_loop /* Loop until told to go */
109 b __secondary_start /* Loop until told to go */
110iSeries_secondary_smp_loop:
111 /* Let the Hypervisor know we are alive */
112 /* 8002 is a call to HvCallCfg::getLps, a harmless Hypervisor function */
113 lis r3,0x8002
114 rldicr r3,r3,32,15 /* r0 = (r3 << 32) & 0xffff000000000000 */
115#else /* CONFIG_SMP */
116 /* Yield the processor. This is required for non-SMP kernels
117 which are running on multi-threaded machines. */
118 lis r3,0x8000
119 rldicr r3,r3,32,15 /* r3 = (r3 << 32) & 0xffff000000000000 */
120 addi r3,r3,18 /* r3 = 0x8000000000000012 which is "yield" */
121 li r4,0 /* "yield timed" */
122 li r5,-1 /* "yield forever" */
123#endif /* CONFIG_SMP */
124 li r0,-1 /* r0=-1 indicates a Hypervisor call */
125 sc /* Invoke the hypervisor via a system call */
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000126 mfspr r13,SPRN_SPRG_PACA /* Put r13 back ???? */
Tony Breeds9cb82f22008-04-24 13:43:49 +1000127 b 2b /* If SMP not configured, secondaries
Stephen Rothwellfc68e862007-08-22 13:44:58 +1000128 * loop forever */
129
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000130/*** ISeries-LPAR interrupt handlers ***/
131
Stephen Rothwell5b072ba2007-08-22 13:49:41 +1000132 STD_EXCEPTION_ISERIES(machine_check, PACA_EXMC)
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000133
134 .globl data_access_iSeries
135data_access_iSeries:
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000136 mtspr SPRN_SPRG_SCRATCH0,r13
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000137BEGIN_FTR_SECTION
Benjamin Herrenschmidtc5a8c0c2009-07-16 19:36:57 +0000138 mfspr r13,SPRN_SPRG_PACA
139 std r9,PACA_EXSLB+EX_R9(r13)
140 std r10,PACA_EXSLB+EX_R10(r13)
141 mfspr r10,SPRN_DAR
142 mfspr r9,SPRN_DSISR
143 srdi r10,r10,60
144 rlwimi r10,r9,16,0x20
145 mfcr r9
146 cmpwi r10,0x2c
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000147 beq .do_stab_bolted_iSeries
Benjamin Herrenschmidtc5a8c0c2009-07-16 19:36:57 +0000148 ld r10,PACA_EXSLB+EX_R10(r13)
149 std r11,PACA_EXGEN+EX_R11(r13)
150 ld r11,PACA_EXSLB+EX_R9(r13)
151 std r12,PACA_EXGEN+EX_R12(r13)
152 mfspr r12,SPRN_SPRG_SCRATCH0
153 std r10,PACA_EXGEN+EX_R10(r13)
154 std r11,PACA_EXGEN+EX_R9(r13)
155 std r12,PACA_EXGEN+EX_R13(r13)
156 EXCEPTION_PROLOG_ISERIES_1
157FTR_SECTION_ELSE
Stephen Rothwell7180e3e2007-08-22 13:48:37 +1000158 EXCEPTION_PROLOG_1(PACA_EXGEN)
159 EXCEPTION_PROLOG_ISERIES_1
Benjamin Herrenschmidtc5a8c0c2009-07-16 19:36:57 +0000160ALT_FTR_SECTION_END_IFCLR(CPU_FTR_SLB)
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000161 b data_access_common
162
163.do_stab_bolted_iSeries:
Benjamin Herrenschmidtc5a8c0c2009-07-16 19:36:57 +0000164 std r11,PACA_EXSLB+EX_R11(r13)
165 std r12,PACA_EXSLB+EX_R12(r13)
166 mfspr r10,SPRN_SPRG_SCRATCH0
167 std r10,PACA_EXSLB+EX_R13(r13)
Stephen Rothwell7180e3e2007-08-22 13:48:37 +1000168 EXCEPTION_PROLOG_ISERIES_1
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000169 b .do_stab_bolted
170
171 .globl data_access_slb_iSeries
172data_access_slb_iSeries:
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000173 mtspr SPRN_SPRG_SCRATCH0,r13 /* save r13 */
174 mfspr r13,SPRN_SPRG_PACA /* get paca address into r13 */
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000175 std r3,PACA_EXSLB+EX_R3(r13)
176 mfspr r3,SPRN_DAR
177 std r9,PACA_EXSLB+EX_R9(r13)
178 mfcr r9
179#ifdef __DISABLED__
180 cmpdi r3,0
181 bge slb_miss_user_iseries
182#endif
183 std r10,PACA_EXSLB+EX_R10(r13)
184 std r11,PACA_EXSLB+EX_R11(r13)
185 std r12,PACA_EXSLB+EX_R12(r13)
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000186 mfspr r10,SPRN_SPRG_SCRATCH0
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000187 std r10,PACA_EXSLB+EX_R13(r13)
188 ld r12,PACALPPACAPTR(r13)
189 ld r12,LPPACASRR1(r12)
190 b .slb_miss_realmode
191
Stephen Rothwell5b072ba2007-08-22 13:49:41 +1000192 STD_EXCEPTION_ISERIES(instruction_access, PACA_EXGEN)
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000193
194 .globl instruction_access_slb_iSeries
195instruction_access_slb_iSeries:
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000196 mtspr SPRN_SPRG_SCRATCH0,r13 /* save r13 */
197 mfspr r13,SPRN_SPRG_PACA /* get paca address into r13 */
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000198 std r3,PACA_EXSLB+EX_R3(r13)
199 ld r3,PACALPPACAPTR(r13)
200 ld r3,LPPACASRR0(r3) /* get SRR0 value */
201 std r9,PACA_EXSLB+EX_R9(r13)
202 mfcr r9
203#ifdef __DISABLED__
204 cmpdi r3,0
205 bge slb_miss_user_iseries
206#endif
207 std r10,PACA_EXSLB+EX_R10(r13)
208 std r11,PACA_EXSLB+EX_R11(r13)
209 std r12,PACA_EXSLB+EX_R12(r13)
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000210 mfspr r10,SPRN_SPRG_SCRATCH0
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000211 std r10,PACA_EXSLB+EX_R13(r13)
212 ld r12,PACALPPACAPTR(r13)
213 ld r12,LPPACASRR1(r12)
214 b .slb_miss_realmode
215
216#ifdef __DISABLED__
217slb_miss_user_iseries:
218 std r10,PACA_EXGEN+EX_R10(r13)
219 std r11,PACA_EXGEN+EX_R11(r13)
220 std r12,PACA_EXGEN+EX_R12(r13)
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000221 mfspr r10,SPRG_SCRATCH0
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000222 ld r11,PACA_EXSLB+EX_R9(r13)
223 ld r12,PACA_EXSLB+EX_R3(r13)
224 std r10,PACA_EXGEN+EX_R13(r13)
225 std r11,PACA_EXGEN+EX_R9(r13)
226 std r12,PACA_EXGEN+EX_R3(r13)
Stephen Rothwell7180e3e2007-08-22 13:48:37 +1000227 EXCEPTION_PROLOG_ISERIES_1
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000228 b slb_miss_user_common
229#endif
230
Stephen Rothwell5b072ba2007-08-22 13:49:41 +1000231 MASKABLE_EXCEPTION_ISERIES(hardware_interrupt)
232 STD_EXCEPTION_ISERIES(alignment, PACA_EXGEN)
233 STD_EXCEPTION_ISERIES(program_check, PACA_EXGEN)
234 STD_EXCEPTION_ISERIES(fp_unavailable, PACA_EXGEN)
235 MASKABLE_EXCEPTION_ISERIES(decrementer)
236 STD_EXCEPTION_ISERIES(trap_0a, PACA_EXGEN)
237 STD_EXCEPTION_ISERIES(trap_0b, PACA_EXGEN)
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000238
239 .globl system_call_iSeries
240system_call_iSeries:
241 mr r9,r13
Benjamin Herrenschmidtee43eb72009-07-14 20:52:54 +0000242 mfspr r13,SPRN_SPRG_PACA
Stephen Rothwell7180e3e2007-08-22 13:48:37 +1000243 EXCEPTION_PROLOG_ISERIES_1
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000244 b system_call_common
245
Stephen Rothwell5b072ba2007-08-22 13:49:41 +1000246 STD_EXCEPTION_ISERIES(single_step, PACA_EXGEN)
247 STD_EXCEPTION_ISERIES(trap_0e, PACA_EXGEN)
248 STD_EXCEPTION_ISERIES(performance_monitor, PACA_EXGEN)
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000249
250decrementer_iSeries_masked:
251 /* We may not have a valid TOC pointer in here. */
252 li r11,1
253 ld r12,PACALPPACAPTR(r13)
254 stb r11,LPPACADECRINT(r12)
Paul Mackerrase62cee42010-05-06 19:46:50 +0000255 li r12,-1
256 clrldi r12,r12,33 /* set DEC to 0x7fffffff */
Stephen Rothwelldc8f5712007-08-22 13:47:24 +1000257 mtspr SPRN_DEC,r12
258 /* fall through */
259
260hardware_interrupt_iSeries_masked:
261 mtcrf 0x80,r9 /* Restore regs */
262 ld r12,PACALPPACAPTR(r13)
263 ld r11,LPPACASRR0(r12)
264 ld r12,LPPACASRR1(r12)
265 mtspr SPRN_SRR0,r11
266 mtspr SPRN_SRR1,r12
267 ld r9,PACA_EXGEN+EX_R9(r13)
268 ld r10,PACA_EXGEN+EX_R10(r13)
269 ld r11,PACA_EXGEN+EX_R11(r13)
270 ld r12,PACA_EXGEN+EX_R12(r13)
271 ld r13,PACA_EXGEN+EX_R13(r13)
272 rfid
273 b . /* prevent speculative execution */
274
Stephen Rothwellfc68e862007-08-22 13:44:58 +1000275_INIT_STATIC(__start_initialization_iSeries)
276 /* Clear out the BSS */
Paul Mackerrase31aa452008-08-30 11:41:12 +1000277 LOAD_REG_ADDR(r11,__bss_stop)
278 LOAD_REG_ADDR(r8,__bss_start)
Stephen Rothwellfc68e862007-08-22 13:44:58 +1000279 sub r11,r11,r8 /* bss size */
280 addi r11,r11,7 /* round up to an even double word */
281 rldicl. r11,r11,61,3 /* shift right by 3 */
282 beq 4f
283 addi r8,r8,-8
284 li r0,0
285 mtctr r11 /* zero this many doublewords */
2863: stdu r0,8(r8)
287 bdnz 3b
2884:
Paul Mackerrase31aa452008-08-30 11:41:12 +1000289 LOAD_REG_ADDR(r1,init_thread_union)
Stephen Rothwellfc68e862007-08-22 13:44:58 +1000290 addi r1,r1,THREAD_SIZE
291 li r0,0
292 stdu r0,-STACK_FRAME_OVERHEAD(r1)
293
Stephen Rothwellfc68e862007-08-22 13:44:58 +1000294 bl .iSeries_early_setup
295 bl .early_setup
296
297 /* relocation is on at this point */
298
299 b .start_here_common