summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/hppa1.1/cpu.c
blob: 4cef97936712abfe37941666cae6d3cba6f61c31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
/*
 *  HP PA-RISC Dependent Source
 *
 *  COPYRIGHT (c) 1994 by Division Incorporated
 *
 *  To anyone who acknowledges that this file is provided "AS IS"
 *  without any express or implied warranty:
 *      permission to use, copy, modify, and distribute this file
 *      for any purpose is hereby granted without fee, provided that
 *      the above copyright notice and this notice appears in all
 *      copies, and that the name of Division Incorporated not be
 *      used in advertising or publicity pertaining to distribution
 *      of the software without specific, written prior permission.
 *      Division Incorporated makes no representations about the
 *      suitability of this software for any purpose.
 *
 *  $Id$
 */

#include <rtems/system.h>
#include <rtems/fatal.h>
#include <rtems/core/isr.h>
#include <rtems/core/wkspace.h>

void hppa_external_interrupt_initialize(void);
void hppa_external_interrupt_enable(unsigned32);
void hppa_external_interrupt_disable(unsigned32);
void hppa_external_interrupt(unsigned32, CPU_Interrupt_frame *);

/*
 * Our interrupt handlers take a 2nd argument:
 *   a pointer to a CPU_Interrupt_frame
 * So we use our own prototype instead of rtems_isr_entry
 */

typedef void ( *hppa_rtems_isr_entry )(
    ISR_Vector_number,
    CPU_Interrupt_frame *
 );


/*
 * who are we?  cpu number
 * Not used by executive proper, just kept (or not) as a convenience
 * for libcpu and libbsp stuff that wants it.
 *
 * Defaults to 0.  If the BSP doesn't like it, it can change it.
 */

int cpu_number;                 /* from 0; cpu number in a multi cpu system */


/*  _CPU_Initialize
 *
 *  This routine performs processor dependent initialization.
 *
 *  INPUT PARAMETERS:
 *    cpu_table       - CPU table to initialize
 *    thread_dispatch - address of disptaching routine
 *
 */

void _CPU_Initialize(
  rtems_cpu_table  *cpu_table,
  void      (*thread_dispatch)      /* ignored on this CPU */
)
{
    register unsigned8  *fp_context;
    unsigned32 iva;
    unsigned32 iva_table;
    int i;

    extern void IVA_Table(void);

    /*
     * XXX; need to setup fpsr smarter perhaps
     */

    fp_context = (unsigned8*) &_CPU_Null_fp_context;
    for (i=0 ; i<sizeof(Context_Control_fp); i++)
        *fp_context++ = 0;

    /*
     *  Set _CPU_Default_gr27 here so it will hopefully be the correct
     *  global data pointer for the entire system.
     */

    asm volatile( "stw   %%r27,%0" : "=m" (_CPU_Default_gr27): );

    /*
     * Stabilize the interrupt stuff
     */

    (void) hppa_external_interrupt_initialize();

    /*
     * Set the IVA to point to physical address of the IVA_Table
     */

    iva_table = (unsigned32) IVA_Table;
    HPPA_ASM_LPA(0, iva_table, iva);
    set_iva(iva);

    _CPU_Table = *cpu_table;
}

/*PAGE
 *
 *  _CPU_ISR_Get_level
 */
 
unsigned32 _CPU_ISR_Get_level(void)
{
    int level;
    HPPA_ASM_SSM(0, level);	/* change no bits; just get copy */
    if (level & HPPA_PSW_I)
        return 1;
    return 0;
}

/*PAGE
 *
 *  _CPU_ISR_install_raw_handler
 */
 
void _CPU_ISR_install_raw_handler(
  unsigned32  vector,
  proc_ptr    new_handler,
  proc_ptr   *old_handler
)
{
  /*
   *  This is unsupported.
   */

  _CPU_Fatal_halt( 0xdeaddead );
}

/*PAGE
 *
 *  _CPU_ISR_install_vector
 *
 *  This kernel routine installs the RTEMS handler for the
 *  specified vector.
 *
 *  Input parameters:
 *    vector      - interrupt vector number
 *    old_handler - former ISR for this vector number
 *    new_handler - replacement ISR for this vector number
 *
 *  Output parameters:  NONE
 *
 */

/*
 * HPPA has 8w for each vector instead of an address to jump to.
 * We put the actual ISR address in '_ISR_vector_table'.  This will
 * be pulled by the code in the vector.
 */

void _CPU_ISR_install_vector(
  unsigned32  vector,
  proc_ptr    new_handler,
  proc_ptr   *old_handler
)
{
    *old_handler = _ISR_Vector_table[vector];

    _ISR_Vector_table[vector] = new_handler;

    if (vector >= HPPA_INTERRUPT_EXTERNAL_BASE)
    {
        unsigned32 external_vector;

        external_vector = vector - HPPA_INTERRUPT_EXTERNAL_BASE;
        if (new_handler)
            hppa_external_interrupt_enable(external_vector);
        else
            /* XXX this can never happen due to _ISR_Is_valid_user_handler */
            hppa_external_interrupt_disable(external_vector);
    }
}


/*
 * Support for external and spurious interrupts on HPPA
 *
 *  TODO:
 *    delete interrupt.c etc.
 *    Count interrupts
 *    make sure interrupts disabled properly
 *    should handler check again for more interrupts before exit?
 *    How to enable interrupts from an interrupt handler?
 *    Make sure there is an entry for everything in ISR_Vector_Table
 */

#define DISMISS(mask)           set_eirr(mask)
#define DISABLE(mask)           set_eiem(get_eiem() & ~(mask))
#define ENABLE(mask)            set_eiem(get_eiem() | (mask))
#define VECTOR_TO_MASK(v)       (1 << (31 - (v)))

/*
 * Init the external interrupt scheme
 * called by bsp_start()
 */

void
hppa_external_interrupt_initialize(void)
{
    hppa_rtems_isr_entry ignore = 0;

    /* mark them all unused */

    DISABLE(~0);
    DISMISS(~0);

    /* install the external interrupt handler */
  _CPU_ISR_install_vector(
    HPPA_INTERRUPT_EXTERNAL_INTERRUPT,
    (proc_ptr)hppa_external_interrupt,
    (proc_ptr *)ignore
  );
}

/*
 * Enable a specific external interrupt
 */

void
hppa_external_interrupt_enable(unsigned32 v)
{
    unsigned32 isrlevel;

    _CPU_ISR_Disable(isrlevel);
    ENABLE(VECTOR_TO_MASK(v));
    _CPU_ISR_Enable(isrlevel);
}

/*
 * Does not clear or otherwise affect any pending requests
 */

void
hppa_external_interrupt_disable(unsigned32 v)
{
    unsigned32 isrlevel;

    _CPU_ISR_Disable(isrlevel);
    DISABLE(VECTOR_TO_MASK(v));
    _CPU_ISR_Enable(isrlevel);
}

void
hppa_external_interrupt_spurious_handler(unsigned32           vector,
                                         CPU_Interrupt_frame *iframe)
{
/* XXX should not be printing :)
    printf("spurious external interrupt: %d at pc 0x%x; disabling\n",
       vector, iframe->Interrupt.pcoqfront);
*/
    DISMISS(VECTOR_TO_MASK(vector));
    DISABLE(VECTOR_TO_MASK(vector));
}

void
hppa_external_interrupt_report_spurious(unsigned32           spurious,
                                        CPU_Interrupt_frame *iframe)
{
    int v;
    for (v=0; v < HPPA_EXTERNAL_INTERRUPTS; v++)
        if (VECTOR_TO_MASK(v) & spurious)
            hppa_external_interrupt_spurious_handler(v, iframe);
    DISMISS(spurious);
}


/*
 * External interrupt handler.
 * This is installed as cpu interrupt handler for
 * HPPA_INTERRUPT_EXTERNAL_INTERRUPT. It vectors out to
 * specific external interrupt handlers.
 */

void
hppa_external_interrupt(unsigned32           vector,
                        CPU_Interrupt_frame *iframe)
{
    unsigned32   mask;
    unsigned32  *vp, *max_vp;
    unsigned32   external_vector;
    unsigned32   global_vector;
    hppa_rtems_isr_entry handler;

    max_vp = &_CPU_Table.external_interrupt[_CPU_Table.external_interrupts];
    while ( (mask = (get_eirr() & get_eiem())) )
    {
        for (vp = _CPU_Table.external_interrupt; (vp < max_vp) && mask; vp++)
        {
            unsigned32 m;

            external_vector = *vp;
            global_vector = external_vector + HPPA_INTERRUPT_EXTERNAL_BASE;
            m = VECTOR_TO_MASK(external_vector);
            handler = (hppa_rtems_isr_entry) _ISR_Vector_table[global_vector];
            if ((m & mask) && handler)
            {
                DISMISS(m);
                mask &= ~m;
                (*handler)(global_vector, iframe);
            }
        }

        if (mask != 0) {
            if ( _CPU_Table.spurious_handler )
              (*((hppa_rtems_isr_entry) _CPU_Table.spurious_handler))(
                  mask,
                  iframe
                );
            else
              hppa_external_interrupt_report_spurious(mask, iframe);
        }
    }
}

/*
 * Halt the system.
 * Called by the _CPU_Fatal_halt macro
 *
 * XXX
 * Later on, this will allow us to return to the prom.
 * For now, we just ignore 'type_of_halt'
 */

void
hppa_cpu_halt(unsigned32 type_of_halt,
              unsigned32 the_error)
{
    unsigned32 isrlevel;

    _CPU_ISR_Disable(isrlevel);

    asm volatile( "copy %0,%%r1" : : "r" (the_error) );
    HPPA_ASM_BREAK(1, 0);
}