1 | /* |
---|
2 | * HP PA-RISC Dependent Source |
---|
3 | * |
---|
4 | * COPYRIGHT (c) 1994 by Division Incorporated |
---|
5 | * |
---|
6 | * To anyone who acknowledges that this file is provided "AS IS" |
---|
7 | * without any express or implied warranty: |
---|
8 | * permission to use, copy, modify, and distribute this file |
---|
9 | * for any purpose is hereby granted without fee, provided that |
---|
10 | * the above copyright notice and this notice appears in all |
---|
11 | * copies, and that the name of Division Incorporated not be |
---|
12 | * used in advertising or publicity pertaining to distribution |
---|
13 | * of the software without specific, written prior permission. |
---|
14 | * Division Incorporated makes no representations about the |
---|
15 | * suitability of this software for any purpose. |
---|
16 | * |
---|
17 | * $Id$ |
---|
18 | */ |
---|
19 | |
---|
20 | #include <rtems/system.h> |
---|
21 | #include <rtems/fatal.h> |
---|
22 | #include <rtems/core/isr.h> |
---|
23 | #include <rtems/core/wkspace.h> |
---|
24 | |
---|
25 | void hppa_external_interrupt_initialize(void); |
---|
26 | void hppa_external_interrupt_enable(unsigned32); |
---|
27 | void hppa_external_interrupt_disable(unsigned32); |
---|
28 | void hppa_external_interrupt(unsigned32, CPU_Interrupt_frame *); |
---|
29 | |
---|
30 | /* |
---|
31 | * Our interrupt handlers take a 2nd argument: |
---|
32 | * a pointer to a CPU_Interrupt_frame |
---|
33 | * So we use our own prototype instead of rtems_isr_entry |
---|
34 | */ |
---|
35 | |
---|
36 | typedef void ( *hppa_rtems_isr_entry )( |
---|
37 | ISR_Vector_number, |
---|
38 | CPU_Interrupt_frame * |
---|
39 | ); |
---|
40 | |
---|
41 | |
---|
42 | /* |
---|
43 | * who are we? cpu number |
---|
44 | * Not used by executive proper, just kept (or not) as a convenience |
---|
45 | * for libcpu and libbsp stuff that wants it. |
---|
46 | * |
---|
47 | * Defaults to 0. If the BSP doesn't like it, it can change it. |
---|
48 | */ |
---|
49 | |
---|
50 | int cpu_number; /* from 0; cpu number in a multi cpu system */ |
---|
51 | |
---|
52 | |
---|
53 | /* _CPU_Initialize |
---|
54 | * |
---|
55 | * This routine performs processor dependent initialization. |
---|
56 | * |
---|
57 | * INPUT PARAMETERS: |
---|
58 | * cpu_table - CPU table to initialize |
---|
59 | * thread_dispatch - address of disptaching routine |
---|
60 | * |
---|
61 | */ |
---|
62 | |
---|
63 | void _CPU_Initialize( |
---|
64 | rtems_cpu_table *cpu_table, |
---|
65 | void (*thread_dispatch) /* ignored on this CPU */ |
---|
66 | ) |
---|
67 | { |
---|
68 | register unsigned8 *fp_context; |
---|
69 | unsigned32 iva; |
---|
70 | unsigned32 iva_table; |
---|
71 | int i; |
---|
72 | |
---|
73 | extern void IVA_Table(void); |
---|
74 | |
---|
75 | /* |
---|
76 | * XXX; need to setup fpsr smarter perhaps |
---|
77 | */ |
---|
78 | |
---|
79 | fp_context = (unsigned8*) &_CPU_Null_fp_context; |
---|
80 | for (i=0 ; i<sizeof(Context_Control_fp); i++) |
---|
81 | *fp_context++ = 0; |
---|
82 | |
---|
83 | /* |
---|
84 | * Set _CPU_Default_gr27 here so it will hopefully be the correct |
---|
85 | * global data pointer for the entire system. |
---|
86 | */ |
---|
87 | |
---|
88 | asm volatile( "stw %%r27,%0" : "=m" (_CPU_Default_gr27): ); |
---|
89 | |
---|
90 | /* |
---|
91 | * Stabilize the interrupt stuff |
---|
92 | */ |
---|
93 | |
---|
94 | (void) hppa_external_interrupt_initialize(); |
---|
95 | |
---|
96 | /* |
---|
97 | * Set the IVA to point to physical address of the IVA_Table |
---|
98 | */ |
---|
99 | |
---|
100 | iva_table = (unsigned32) IVA_Table; |
---|
101 | HPPA_ASM_LPA(0, iva_table, iva); |
---|
102 | set_iva(iva); |
---|
103 | |
---|
104 | _CPU_Table = *cpu_table; |
---|
105 | } |
---|
106 | |
---|
107 | /*PAGE |
---|
108 | * |
---|
109 | * _CPU_ISR_install_raw_handler |
---|
110 | */ |
---|
111 | |
---|
112 | void _CPU_ISR_install_raw_handler( |
---|
113 | unsigned32 vector, |
---|
114 | proc_ptr new_handler, |
---|
115 | proc_ptr *old_handler |
---|
116 | ) |
---|
117 | { |
---|
118 | /* |
---|
119 | * This is unsupported. |
---|
120 | */ |
---|
121 | |
---|
122 | _CPU_Fatal_halt( 0xdeaddead ); |
---|
123 | } |
---|
124 | |
---|
125 | /*PAGE |
---|
126 | * |
---|
127 | * _CPU_ISR_install_vector |
---|
128 | * |
---|
129 | * This kernel routine installs the RTEMS handler for the |
---|
130 | * specified vector. |
---|
131 | * |
---|
132 | * Input parameters: |
---|
133 | * vector - interrupt vector number |
---|
134 | * old_handler - former ISR for this vector number |
---|
135 | * new_handler - replacement ISR for this vector number |
---|
136 | * |
---|
137 | * Output parameters: NONE |
---|
138 | * |
---|
139 | */ |
---|
140 | |
---|
141 | /* |
---|
142 | * HPPA has 8w for each vector instead of an address to jump to. |
---|
143 | * We put the actual ISR address in '_ISR_vector_table'. This will |
---|
144 | * be pulled by the code in the vector. |
---|
145 | */ |
---|
146 | |
---|
147 | void _CPU_ISR_install_vector( |
---|
148 | unsigned32 vector, |
---|
149 | proc_ptr new_handler, |
---|
150 | proc_ptr *old_handler |
---|
151 | ) |
---|
152 | { |
---|
153 | *old_handler = _ISR_Vector_table[vector]; |
---|
154 | |
---|
155 | _ISR_Vector_table[vector] = new_handler; |
---|
156 | |
---|
157 | if (vector >= HPPA_INTERRUPT_EXTERNAL_BASE) |
---|
158 | { |
---|
159 | unsigned32 external_vector; |
---|
160 | |
---|
161 | external_vector = vector - HPPA_INTERRUPT_EXTERNAL_BASE; |
---|
162 | if (new_handler) |
---|
163 | hppa_external_interrupt_enable(external_vector); |
---|
164 | else |
---|
165 | /* XXX this can never happen due to _ISR_Is_valid_user_handler */ |
---|
166 | hppa_external_interrupt_disable(external_vector); |
---|
167 | } |
---|
168 | } |
---|
169 | |
---|
170 | |
---|
171 | /* |
---|
172 | * Support for external and spurious interrupts on HPPA |
---|
173 | * |
---|
174 | * TODO: |
---|
175 | * delete interrupt.c etc. |
---|
176 | * Count interrupts |
---|
177 | * make sure interrupts disabled properly |
---|
178 | * should handler check again for more interrupts before exit? |
---|
179 | * How to enable interrupts from an interrupt handler? |
---|
180 | * Make sure there is an entry for everything in ISR_Vector_Table |
---|
181 | */ |
---|
182 | |
---|
183 | #define DISMISS(mask) set_eirr(mask) |
---|
184 | #define DISABLE(mask) set_eiem(get_eiem() & ~(mask)) |
---|
185 | #define ENABLE(mask) set_eiem(get_eiem() | (mask)) |
---|
186 | #define VECTOR_TO_MASK(v) (1 << (31 - (v))) |
---|
187 | |
---|
188 | /* |
---|
189 | * Init the external interrupt scheme |
---|
190 | * called by bsp_start() |
---|
191 | */ |
---|
192 | |
---|
193 | void |
---|
194 | hppa_external_interrupt_initialize(void) |
---|
195 | { |
---|
196 | hppa_rtems_isr_entry ignore; |
---|
197 | |
---|
198 | /* mark them all unused */ |
---|
199 | |
---|
200 | DISABLE(~0); |
---|
201 | DISMISS(~0); |
---|
202 | |
---|
203 | /* install the external interrupt handler */ |
---|
204 | rtems_interrupt_catch((rtems_isr_entry) hppa_external_interrupt, |
---|
205 | HPPA_INTERRUPT_EXTERNAL_INTERRUPT, &ignore) ; |
---|
206 | } |
---|
207 | |
---|
208 | /* |
---|
209 | * Enable a specific external interrupt |
---|
210 | */ |
---|
211 | |
---|
212 | void |
---|
213 | hppa_external_interrupt_enable(unsigned32 v) |
---|
214 | { |
---|
215 | unsigned32 isrlevel; |
---|
216 | |
---|
217 | _CPU_ISR_Disable(isrlevel); |
---|
218 | ENABLE(VECTOR_TO_MASK(v)); |
---|
219 | _CPU_ISR_Enable(isrlevel); |
---|
220 | } |
---|
221 | |
---|
222 | /* |
---|
223 | * Does not clear or otherwise affect any pending requests |
---|
224 | */ |
---|
225 | |
---|
226 | void |
---|
227 | hppa_external_interrupt_disable(unsigned32 v) |
---|
228 | { |
---|
229 | unsigned32 isrlevel; |
---|
230 | |
---|
231 | _CPU_ISR_Disable(isrlevel); |
---|
232 | DISABLE(VECTOR_TO_MASK(v)); |
---|
233 | _CPU_ISR_Enable(isrlevel); |
---|
234 | } |
---|
235 | |
---|
236 | void |
---|
237 | hppa_external_interrupt_spurious_handler(unsigned32 vector, |
---|
238 | CPU_Interrupt_frame *iframe) |
---|
239 | { |
---|
240 | /* XXX should not be printing :) |
---|
241 | printf("spurious external interrupt: %d at pc 0x%x; disabling\n", |
---|
242 | vector, iframe->Interrupt.pcoqfront); |
---|
243 | */ |
---|
244 | DISMISS(VECTOR_TO_MASK(vector)); |
---|
245 | DISABLE(VECTOR_TO_MASK(vector)); |
---|
246 | } |
---|
247 | |
---|
248 | void |
---|
249 | hppa_external_interrupt_report_spurious(unsigned32 spurious, |
---|
250 | CPU_Interrupt_frame *iframe) |
---|
251 | { |
---|
252 | int v; |
---|
253 | for (v=0; v < HPPA_EXTERNAL_INTERRUPTS; v++) |
---|
254 | if (VECTOR_TO_MASK(v) & spurious) |
---|
255 | hppa_external_interrupt_spurious_handler(v, iframe); |
---|
256 | DISMISS(spurious); |
---|
257 | } |
---|
258 | |
---|
259 | |
---|
260 | /* |
---|
261 | * External interrupt handler. |
---|
262 | * This is installed as cpu interrupt handler for |
---|
263 | * HPPA_INTERRUPT_EXTERNAL_INTERRUPT. It vectors out to |
---|
264 | * specific external interrupt handlers. |
---|
265 | */ |
---|
266 | |
---|
267 | void |
---|
268 | hppa_external_interrupt(unsigned32 vector, |
---|
269 | CPU_Interrupt_frame *iframe) |
---|
270 | { |
---|
271 | unsigned32 mask; |
---|
272 | unsigned32 *vp, *max_vp; |
---|
273 | unsigned32 external_vector; |
---|
274 | unsigned32 global_vector; |
---|
275 | hppa_rtems_isr_entry handler; |
---|
276 | |
---|
277 | max_vp = &_CPU_Table.external_interrupt[_CPU_Table.external_interrupts]; |
---|
278 | while ( (mask = (get_eirr() & get_eiem())) ) |
---|
279 | { |
---|
280 | for (vp = _CPU_Table.external_interrupt; (vp < max_vp) && mask; vp++) |
---|
281 | { |
---|
282 | unsigned32 m; |
---|
283 | |
---|
284 | external_vector = *vp; |
---|
285 | global_vector = external_vector + HPPA_INTERRUPT_EXTERNAL_BASE; |
---|
286 | m = VECTOR_TO_MASK(external_vector); |
---|
287 | handler = (hppa_rtems_isr_entry) _ISR_Vector_table[global_vector]; |
---|
288 | if ((m & mask) && handler) |
---|
289 | { |
---|
290 | DISMISS(m); |
---|
291 | mask &= ~m; |
---|
292 | (*handler)(global_vector, iframe); |
---|
293 | } |
---|
294 | } |
---|
295 | |
---|
296 | if (mask != 0) { |
---|
297 | if ( _CPU_Table.spurious_handler ) |
---|
298 | (*((hppa_rtems_isr_entry) _CPU_Table.spurious_handler))( |
---|
299 | mask, |
---|
300 | iframe |
---|
301 | ); |
---|
302 | else |
---|
303 | hppa_external_interrupt_report_spurious(mask, iframe); |
---|
304 | } |
---|
305 | } |
---|
306 | } |
---|
307 | |
---|
308 | /* |
---|
309 | * Halt the system. |
---|
310 | * Called by the _CPU_Fatal_halt macro |
---|
311 | * |
---|
312 | * XXX |
---|
313 | * Later on, this will allow us to return to the prom. |
---|
314 | * For now, we just ignore 'type_of_halt' |
---|
315 | */ |
---|
316 | |
---|
317 | void |
---|
318 | hppa_cpu_halt(unsigned32 type_of_halt, |
---|
319 | unsigned32 the_error) |
---|
320 | { |
---|
321 | unsigned32 isrlevel; |
---|
322 | |
---|
323 | _CPU_ISR_Disable(isrlevel); |
---|
324 | |
---|
325 | asm volatile( "copy %0,%%r1" : : "r" (the_error) ); |
---|
326 | HPPA_ASM_BREAK(1, 0); |
---|
327 | } |
---|