1 /* SPDX-License-Identifier: GPL-2.0 */
4 * Purpose: Machine check handling specific defines
6 * Copyright (C) 1999 Silicon Graphics, Inc.
7 * Copyright (C) Vijay Chander <vijay@engr.sgi.com>
8 * Copyright (C) Srinivasa Thirumalachar <sprasad@engr.sgi.com>
9 * Copyright (C) 2000 Hewlett-Packard Co.
10 * Copyright (C) 2000 David Mosberger-Tang <davidm@hpl.hp.com>
11 * Copyright (C) 2002 Intel Corp.
12 * Copyright (C) 2002 Jenna Hall <jenna.s.hall@intel.com>
13 * Copyright (C) 2005 Silicon Graphics, Inc
14 * Copyright (C) 2005 Keith Owens <kaos@sgi.com>
16 #ifndef _ASM_IA64_MCA_ASM_H
17 #define _ASM_IA64_MCA_ASM_H
19 #include <asm/percpu.h>
30 * This macro converts a instruction virtual address to a physical address
31 * Right now for simulation purposes the virtual addresses are
32 * direct mapped to physical addresses.
33 * 1. Lop off bits 61 thru 63 in the virtual address
35 #define INST_VA_TO_PA(addr) \
36 dep addr = 0, addr, 61, 3
38 * This macro converts a data virtual address to a physical address
39 * Right now for simulation purposes the virtual addresses are
40 * direct mapped to physical addresses.
41 * 1. Lop off bits 61 thru 63 in the virtual address
43 #define DATA_VA_TO_PA(addr) \
46 * This macro converts a data physical address to a virtual address
47 * Right now for simulation purposes the virtual addresses are
48 * direct mapped to physical addresses.
49 * 1. Put 0x7 in bits 61 thru 63.
51 #define DATA_PA_TO_VA(addr,temp) \
53 dep addr = temp, addr, 61, 3
55 #define GET_THIS_PADDR(reg, var) \
56 mov reg = IA64_KR(PER_CPU_DATA);; \
57 addl reg = THIS_CPU(var), reg
60 * This macro jumps to the instruction at the given virtual address
61 * and starts execution in physical mode with all the address
62 * translations turned off.
63 * 1. Save the current psr
64 * 2. Make sure that all the upper 32 bits are off
66 * 3. Clear the interrupt enable and interrupt state collection bits
67 * in the psr before updating the ipsr and iip.
69 * 4. Turn off the instruction, data and rse translation bits of the psr
70 * and store the new value into ipsr
71 * Also make sure that the interrupts are disabled.
72 * Ensure that we are in little endian mode.
73 * [psr.{rt, it, dt, i, be} = 0]
75 * 5. Get the physical address corresponding to the virtual address
76 * of the next instruction bundle and put it in iip.
77 * (Using magic numbers 24 and 40 in the deposint instruction since
78 * the IA64_SDK code directly maps to lower 24bits as physical address
79 * from a virtual address).
81 * 6. Do an rfi to move the values from ipsr to psr and iip to ip.
83 #define PHYSICAL_MODE_ENTER(temp1, temp2, start_addr, old_psr) \
86 dep old_psr = 0, old_psr, 32, 32; \
91 mov temp2 = ar.bspstore; \
93 DATA_VA_TO_PA(temp2); \
95 mov temp1 = ar.rnat; \
97 mov ar.bspstore = temp2; \
99 mov ar.rnat = temp1; \
104 dep temp2 = 0, temp2, PSR_IC, 2; \
109 dep temp1 = 0, temp1, 32, 32; \
111 dep temp1 = 0, temp1, PSR_IT, 1; \
113 dep temp1 = 0, temp1, PSR_DT, 1; \
115 dep temp1 = 0, temp1, PSR_RT, 1; \
117 dep temp1 = 0, temp1, PSR_I, 1; \
119 dep temp1 = 0, temp1, PSR_IC, 1; \
121 dep temp1 = -1, temp1, PSR_MC, 1; \
123 mov cr.ipsr = temp1; \
125 LOAD_PHYSICAL(p0, temp2, start_addr); \
127 mov cr.iip = temp2; \
142 * This macro jumps to the instruction at the given virtual address
143 * and starts execution in virtual mode with all the address
144 * translations turned on.
145 * 1. Get the old saved psr
147 * 2. Clear the interrupt state collection bit in the current psr.
149 * 3. Set the instruction translation bit back in the old psr
150 * Note we have to do this since we are right now saving only the
151 * lower 32-bits of old psr.(Also the old psr has the data and
152 * rse translation bits on)
154 * 4. Set ipsr to this old_psr with "it" bit set and "bn" = 1.
156 * 5. Reset the current thread pointer (r13).
158 * 6. Set iip to the virtual address of the next instruction bundle.
160 * 7. Do an rfi to move ipsr to psr and iip to ip.
163 #define VIRTUAL_MODE_ENTER(temp1, temp2, start_addr, old_psr) \
166 mov old_psr = temp2; \
168 dep temp2 = 0, temp2, PSR_IC, 2; \
175 mov temp2 = ar.bspstore; \
177 DATA_PA_TO_VA(temp2,temp1); \
179 mov temp1 = ar.rnat; \
181 mov ar.bspstore = temp2; \
183 mov ar.rnat = temp1; \
185 mov temp1 = old_psr; \
189 dep temp1 = temp2, temp1, PSR_IC, 1; \
191 dep temp1 = temp2, temp1, PSR_IT, 1; \
193 dep temp1 = temp2, temp1, PSR_DT, 1; \
195 dep temp1 = temp2, temp1, PSR_RT, 1; \
197 dep temp1 = temp2, temp1, PSR_BN, 1; \
200 mov cr.ipsr = temp1; \
201 movl temp2 = start_addr; \
203 mov cr.iip = temp2; \
206 DATA_PA_TO_VA(sp, temp1); \
216 * The MCA and INIT stacks in struct ia64_mca_cpu look like normal kernel
217 * stacks, except that the SAL/OS state and a switch_stack are stored near the
218 * top of the MCA/INIT stack. To support concurrent entry to MCA or INIT, as
219 * well as MCA over INIT, each event needs its own SAL/OS state. All entries
220 * are 16 byte aligned.
222 * +---------------------------+
224 * +---------------------------+
226 * +---------------------------+
228 * +---------------------------+
229 * | 16 byte scratch area |
230 * +---------------------------+ <-------- SP at start of C MCA handler
232 * +---------------------------+
233 * | RBS for MCA/INIT handler |
234 * +---------------------------+
235 * | struct task for MCA/INIT |
236 * +---------------------------+ <-------- Bottom of MCA/INIT stack
239 #define ALIGN16(x) ((x)&~15)
240 #define MCA_PT_REGS_OFFSET ALIGN16(KERNEL_STACK_SIZE-IA64_PT_REGS_SIZE)
241 #define MCA_SWITCH_STACK_OFFSET ALIGN16(MCA_PT_REGS_OFFSET-IA64_SWITCH_STACK_SIZE)
242 #define MCA_SOS_OFFSET ALIGN16(MCA_SWITCH_STACK_OFFSET-IA64_SAL_OS_STATE_SIZE)
243 #define MCA_SP_OFFSET ALIGN16(MCA_SOS_OFFSET-16)
245 #endif /* _ASM_IA64_MCA_ASM_H */