source: rtems/c/src/lib/libcpu/powerpc/old-exceptions/cpu.c @ d3d9ef37

4.104.114.84.95
Last change on this file since d3d9ef37 was cc043dc, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/17/05 at 04:23:18

2005-02-17 Ralf Corsepius <ralf.corsepius@…>

  • new-exceptions/cpu.c, rtems/powerpc/powerpc.h: Remove CPU_MINIMUM_STACK_FRAME_SIZE. Use PPC_MINIMUM_STACK_FRAME_SIZE instead.
  • rtems/powerpc/powerpc.h: Add PPC_MINIMUM_STACK_FRAME_SIZE.
  • Property mode set to 100644
File size: 19.9 KB
Line 
1/*
2 *  PowerPC CPU Dependent Source
3 *
4 *  Author:     Andrew Bray <andy@i-cubed.co.uk>
5 *
6 *  COPYRIGHT (c) 1995 by i-cubed ltd.
7 *
8 *  To anyone who acknowledges that this file is provided "AS IS"
9 *  without any express or implied warranty:
10 *      permission to use, copy, modify, and distribute this file
11 *      for any purpose is hereby granted without fee, provided that
12 *      the above copyright notice and this notice appears in all
13 *      copies, and that the name of i-cubed limited not be used in
14 *      advertising or publicity pertaining to distribution of the
15 *      software without specific, written prior permission.
16 *      i-cubed limited makes no representations about the suitability
17 *      of this software for any purpose.
18 *
19 *  Derived from c/src/exec/cpu/no_cpu/cpu.c:
20 *
21 *  COPYRIGHT (c) 1989-1997.
22 *  On-Line Applications Research Corporation (OAR).
23 *
24 *  The license and distribution terms for this file may be found in
25 *  the file LICENSE in this distribution or at
26 *  http://www.rtems.com/license/LICENSE.
27 *
28 *  $Id$
29 */
30
31#include <bsp.h>
32#include <rtems/system.h>
33#include <rtems/score/isr.h>
34#include <rtems/score/context.h>
35#include <rtems/score/thread.h>
36#include <rtems/score/interr.h>
37
38#include <rtems/powerpc/cache.h>
39#include <rtems/powerpc/powerpc.h>
40
41/*
42 *  These are for testing purposes.
43 */
44
45/*  _CPU_Initialize
46 *
47 *  This routine performs processor dependent initialization.
48 *
49 *  INPUT PARAMETERS:
50 *    cpu_table       - CPU table to initialize
51 *    thread_dispatch - address of disptaching routine
52 */
53
54static void ppc_spurious(int, CPU_Interrupt_frame *);
55
56int _CPU_spurious_count = 0;
57int _CPU_last_spurious = 0;
58
59void _CPU_Initialize(
60  rtems_cpu_table  *cpu_table,
61  void      (*thread_dispatch)      /* ignored on this CPU */
62)
63{
64#if (PPC_USE_SPRG)
65  int i;
66#endif
67  register uint32_t   r2 = 0;
68  register uint32_t   r13 = 0;
69
70  asm ("mr %0,13" : "=r" ((r13)) : "0" ((r13)));
71  _CPU_IRQ_info.Default_r13 = r13;
72
73  asm ("mr %0,2" : "=r" ((r2)) : "0" ((r2)));
74  _CPU_IRQ_info.Default_r2 = r2;
75
76  _CPU_IRQ_info.Nest_level = &_ISR_Nest_level;
77  _CPU_IRQ_info.Disable_level = &_Thread_Dispatch_disable_level;
78  /* fill in _CPU_IRQ_info.Vector_table later */
79  _CPU_IRQ_info.Switch_necessary = &_Context_Switch_necessary;
80  _CPU_IRQ_info.Signal = &_ISR_Signals_to_thread_executing;
81
82#if (PPC_USE_SPRG)
83  i = (int)&_CPU_IRQ_info;
84  asm volatile("mtspr 0x113, %0" : "=r" (i) : "0" (i)); /* SPRG 3 */
85#endif
86
87  /*
88   * Store Msr Value in the IRQ info structure.
89   */
90   _CPU_MSR_GET(_CPU_IRQ_info.msr_initial);
91
92#if (PPC_USE_SPRG)
93  i = _CPU_IRQ_info.msr_initial;
94  asm volatile("mtspr 0x112, %0" : "=r" (i) : "0" (i)); /* SPRG 2 */
95#endif
96
97  _CPU_Table = *cpu_table;
98}
99
100/*
101 *  _CPU_Initialize_vectors()
102 *
103 *  Support routine to initialize the RTEMS vector table after it is allocated.
104 *
105 *  PowerPC Specific Information:
106 *
107 *  Complete initialization since the table is now allocated.
108 */
109
110void _CPU_Initialize_vectors(void)
111{
112  int i;
113  proc_ptr handler = (proc_ptr)ppc_spurious;
114
115  _CPU_IRQ_info.Vector_table = _ISR_Vector_table;
116
117  if ( _CPU_Table.spurious_handler )
118    handler = (proc_ptr)_CPU_Table.spurious_handler;
119
120  for (i = 0; i < PPC_INTERRUPT_MAX;  i++)
121    _ISR_Vector_table[i] = handler;
122
123}
124
125/*PAGE
126 *
127 *  _CPU_ISR_Calculate_level
128 *
129 *  The PowerPC puts its interrupt enable status in the MSR register
130 *  which also contains things like endianness control.  To be more
131 *  awkward, the layout varies from processor to processor.  This
132 *  is why it was necessary to adopt a scheme which allowed the user
133 *  to specify specifically which interrupt sources were enabled.
134 */
135
136uint32_t   _CPU_ISR_Calculate_level(
137  uint32_t   new_level
138)
139{
140  register uint32_t   new_msr = 0;
141
142  /*
143   *  Set the critical interrupt enable bit
144   */
145
146#if (PPC_HAS_RFCI)
147  if ( !(new_level & PPC_INTERRUPT_LEVEL_CE) )
148    new_msr |= PPC_MSR_CE;
149#endif
150
151  if ( !(new_level & PPC_INTERRUPT_LEVEL_ME) )
152    new_msr |= PPC_MSR_ME;
153
154  if ( !(new_level & PPC_INTERRUPT_LEVEL_EE) )
155    new_msr |= PPC_MSR_EE;
156
157  return new_msr;
158}
159
160/*PAGE
161 *
162 *  _CPU_ISR_Set_level
163 *
164 *  This routine sets the requested level in the MSR.
165 */
166
167void _CPU_ISR_Set_level(
168  uint32_t   new_level
169)
170{
171  register uint32_t   tmp = 0;
172  register uint32_t   new_msr;
173
174  new_msr = _CPU_ISR_Calculate_level( new_level );
175
176  asm volatile (
177    "mfmsr %0; andc %0,%0,%1; and %2, %2, %1; or %0, %0, %2; mtmsr %0" :
178    "=&r" ((tmp)) :
179    "r" ((PPC_MSR_DISABLE_MASK)), "r" ((new_msr)), "0" ((tmp))
180  );
181}
182
183/*PAGE
184 *
185 *  _CPU_ISR_Get_level
186 *
187 *  This routine gets the current interrupt level from the MSR and
188 *  converts it to an RTEMS interrupt level.
189 */
190
191uint32_t   _CPU_ISR_Get_level( void )
192{
193  uint32_t   level = 0;
194  uint32_t   msr;
195
196  asm volatile("mfmsr %0" : "=r" ((msr)));
197
198  msr &= PPC_MSR_DISABLE_MASK;
199
200  /*
201   *  Set the critical interrupt enable bit
202   */
203
204#if (PPC_HAS_RFCI)
205  if ( !(msr & PPC_MSR_CE) )
206    level |= PPC_INTERRUPT_LEVEL_CE;
207#endif
208
209  if ( !(msr & PPC_MSR_ME) )
210    level |= PPC_INTERRUPT_LEVEL_ME;
211
212  if ( !(msr & PPC_MSR_EE) )
213    level |= PPC_INTERRUPT_LEVEL_EE;
214
215  return level;
216}
217
218/*PAGE
219 *
220 *  _CPU_Context_Initialize
221 */
222
223void _CPU_Context_Initialize(
224  Context_Control  *the_context,
225  uint32_t         *stack_base,
226  uint32_t          size,
227  uint32_t          new_level,
228  void             *entry_point,
229  boolean           is_fp
230)
231{
232  uint32_t   msr_value;
233  uint32_t   sp;
234
235  sp = (uint32_t)stack_base + size - PPC_MINIMUM_STACK_FRAME_SIZE;
236  *((uint32_t*)sp) = 0;
237  the_context->gpr1 = sp;
238
239  the_context->msr = _CPU_ISR_Calculate_level( new_level );
240
241  /*
242   *  The FP bit of the MSR should only be enabled if this is a floating
243   *  point task.  Unfortunately, the vfprintf_r routine in newlib
244   *  ends up pushing a floating point register regardless of whether or
245   *  not a floating point number is being printed.  Serious restructuring
246   *  of vfprintf.c will be required to avoid this behavior.  At this
247   *  time (7 July 1997), this restructuring is not being done.
248   */
249
250  /*if ( is_fp ) */
251    the_context->msr |= PPC_MSR_FP;
252
253  /*
254   *  Calculate the task's MSR value:
255   *
256   *     + Set the exception prefix bit to point to the exception table
257   *     + Force the RI bit
258   *     + Use the DR and IR bits
259   */
260  _CPU_MSR_GET( msr_value );
261  the_context->msr |= (msr_value & PPC_MSR_EP);
262  the_context->msr |= PPC_MSR_RI;
263  the_context->msr |= msr_value & (PPC_MSR_DR|PPC_MSR_IR);
264
265#if (PPC_ABI == PPC_ABI_SVR4)
266  { unsigned    r13 = 0;
267    asm volatile ("mr %0, 13" : "=r" ((r13)));
268
269    the_context->pc = (uint32_t)entry_point;
270    the_context->gpr13 = r13;
271  }
272#endif
273
274#if (PPC_ABI == PPC_ABI_EABI)
275  { uint32_t    r2 = 0;
276    unsigned    r13 = 0;
277    asm volatile ("mr %0,2; mr %1,13" : "=r" ((r2)), "=r" ((r13)));
278
279    the_context->pc = (uint32_t)entry_point;
280    the_context->gpr2 = r2;
281    the_context->gpr13 = r13;
282  }
283#endif
284}
285
286/*  _CPU_ISR_install_vector
287 *
288 *  This kernel routine installs the RTEMS handler for the
289 *  specified vector.
290 *
291 *  Input parameters:
292 *    vector      - interrupt vector number
293 *    old_handler - former ISR for this vector number
294 *    new_handler - replacement ISR for this vector number
295 *
296 *  Output parameters:  NONE
297 *
298 */
299
300void _CPU_ISR_install_vector(
301  uint32_t    vector,
302  proc_ptr    new_handler,
303  proc_ptr   *old_handler
304)
305{
306   proc_ptr   ignored;
307   *old_handler = _ISR_Vector_table[ vector ];
308
309   /*
310    *  If the interrupt vector table is a table of pointer to isr entry
311    *  points, then we need to install the appropriate RTEMS interrupt
312    *  handler for this vector number.
313    */
314
315   /*
316    * Install the wrapper so this ISR can be invoked properly.
317    */
318   if (_CPU_Table.exceptions_in_RAM)
319      _CPU_ISR_install_raw_handler( vector, _ISR_Handler, &ignored );
320
321   /*
322    *  We put the actual user ISR address in '_ISR_vector_table'.  This will
323    *  be used by the _ISR_Handler so the user gets control.
324    */
325
326    _ISR_Vector_table[ vector ] = new_handler ? (ISR_Handler_entry)new_handler :
327       _CPU_Table.spurious_handler ?
328          (ISR_Handler_entry)_CPU_Table.spurious_handler :
329          (ISR_Handler_entry)ppc_spurious;
330}
331
332/*PAGE
333 *
334 *  _CPU_Install_interrupt_stack
335 */
336
337void _CPU_Install_interrupt_stack( void )
338{
339/* PPC_ABI_EABI */
340  _CPU_IRQ_info.Stack = _CPU_Interrupt_stack_high - 8;
341}
342
343/* Handle a spurious interrupt */
344static void ppc_spurious(int v, CPU_Interrupt_frame *i)
345{
346#if 0
347    printf("Spurious interrupt on vector %d from %08.8x\n",
348           v, i->pc);
349#endif
350#if defined(ppc403) || defined(ppc405)
351    if (v == PPC_IRQ_EXTERNAL)
352        {
353            register int r = 0;
354
355            asm volatile("mtdcr 0x42, %0" :
356                "=&r" ((r)) : "0" ((r))); /* EXIER */
357        }
358    else if (v == PPC_IRQ_PIT)
359        {
360            register int r = 0x08000000;
361
362            asm volatile("mtspr 0x3d8, %0" :
363                "=&r" ((r)) : "0" ((r))); /* TSR */
364        }
365    else if (v == PPC_IRQ_FIT)
366        {
367            register int r = 0x04000000;
368
369            asm volatile("mtspr 0x3d8, %0" :
370                "=&r" ((r)) : "0" ((r))); /* TSR */
371        }
372#endif
373    ++_CPU_spurious_count;
374    _CPU_last_spurious = v;
375}
376
377void _CPU_Fatal_error(uint32_t   _error)
378{
379  asm volatile ("mr 3, %0" : : "r" ((_error)));
380  asm volatile ("tweq 5,5");
381  asm volatile ("li 0,0; mtmsr 0");
382  while (1) ;
383}
384
385#define PPC_SYNCHRONOUS_TRAP_BIT_MASK    0x100
386#define PPC_ASYNCHRONOUS_TRAP( _trap ) (_trap)
387#define PPC_SYNCHRONOUS_TRAP ( _trap ) ((_trap)+PPC_SYNCHRONOUS_TRAP_BIT_MASK)
388#define PPC_REAL_TRAP_NUMBER ( _trap ) ((_trap)%PPC_SYNCHRONOUS_TRAP_BIT_MASK)
389
390const CPU_Trap_table_entry _CPU_Trap_slot_template = {
391
392  0x9421ff90,           /* stwu    r1, -(IP_END)(r1)            */
393
394  0x90010008,           /* stw   %r0, IP_0(%r1)                 */
395  0x38000000,           /* li    %r0, PPC_IRQ                   */
396  0x48000002            /* ba    PROC (_ISR_Handler)            */
397};
398
399#if defined(mpc860) || defined(mpc821)
400const CPU_Trap_table_entry _CPU_Trap_slot_template_m860 = {
401  0x7c0803ac,           /* mtlr  %r0                            */
402  0x81210028,           /* lwz   %r9, IP_9(%r1)                 */
403  0x38000000,           /* li    %r0, PPC_IRQ                   */
404  0x48000002            /* b     PROC (_ISR_Handler)            */
405};
406#endif /* mpc860 */
407
408uint32_t    ppc_exception_vector_addr(
409  uint32_t   vector
410);
411
412/*PAGE
413 *
414 *  _CPU_ISR_install_raw_handler
415 *
416 *  This routine installs the specified handler as a "raw" non-executive
417 *  supported trap handler (a.k.a. interrupt service routine).
418 *
419 *  Input Parameters:
420 *    vector      - trap table entry number plus synchronous
421 *                    vs. asynchronous information
422 *    new_handler - address of the handler to be installed
423 *    old_handler - pointer to an address of the handler previously installed
424 *
425 *  Output Parameters: NONE
426 *    *new_handler - address of the handler previously installed
427 *
428 *  NOTE:
429 *
430 *  This routine is based on the SPARC routine _CPU_ISR_install_raw_handler.
431 *  Install a software trap handler as an executive interrupt handler
432 *  (which is desirable since RTEMS takes care of window and register issues),
433 *  then the executive needs to know that the return address is to the trap
434 *  rather than the instruction following the trap.
435 *
436 */
437
438void _CPU_ISR_install_raw_handler(
439  uint32_t    vector,
440  proc_ptr    new_handler,
441  proc_ptr   *old_handler
442)
443{
444  uint32_t               real_vector;
445  CPU_Trap_table_entry  *slot;
446  uint32_t               u32_handler=0;
447
448  /*
449   *  Get the "real" trap number for this vector ignoring the synchronous
450   *  versus asynchronous indicator included with our vector numbers.
451   */
452
453  real_vector = vector;
454
455  /*
456   *  Get the current base address of the trap table and calculate a pointer
457   *  to the slot we are interested in.
458   */
459  slot = (CPU_Trap_table_entry  *)ppc_exception_vector_addr( real_vector );
460
461  /*
462   *  Get the address of the old_handler from the trap table.
463   *
464   *  NOTE: The old_handler returned will be bogus if it does not follow
465   *        the RTEMS model.
466   */
467
468#define HIGH_BITS_MASK   0xFFFFFC00
469#define HIGH_BITS_SHIFT  10
470#define LOW_BITS_MASK    0x000003FF
471
472  if (slot->stwu_r1 == _CPU_Trap_slot_template.stwu_r1) {
473    /*
474     * Set u32_handler = to target address
475     */
476    u32_handler = slot->b_Handler & 0x03fffffc;
477
478    /* IMD FIX: sign extend address fragment... */
479    if (u32_handler & 0x02000000) {
480      u32_handler  |= 0xfc000000;
481    }
482
483    *old_handler =  (proc_ptr) u32_handler;
484  } else
485/* There are two kinds of handlers for the MPC860. One is the 'standard'
486 *  one like above. The other is for the cascaded interrupts from the SIU
487 *  and CPM. Therefore we must check for the alternate one if the standard
488 *  one is not present
489 */
490#if defined(mpc860) || defined(mpc821)
491  if (slot->stwu_r1 == _CPU_Trap_slot_template_m860.stwu_r1) {
492    /*
493     * Set u32_handler = to target address
494     */
495    u32_handler = slot->b_Handler & 0x03fffffc;
496    *old_handler =  (proc_ptr) u32_handler;
497  } else
498#endif /* mpc860 */
499
500    *old_handler = 0;
501
502  /*
503   *  Copy the template to the slot and then fix it.
504   */
505#if defined(mpc860) || defined(mpc821)
506  if (vector >= PPC_IRQ_IRQ0)
507    *slot = _CPU_Trap_slot_template_m860;
508  else
509#endif /* mpc860 */
510  *slot = _CPU_Trap_slot_template;
511
512  u32_handler = (uint32_t) new_handler;
513
514  /*
515   * IMD FIX: insert address fragment only (bits 6..29)
516   *          therefore check for proper address range
517   *          and remove unwanted bits
518   */
519  if ((u32_handler & 0xfc000000) == 0xfc000000) {
520    u32_handler  &= ~0xfc000000;
521  }
522  else if ((u32_handler & 0xfc000000) != 0x00000000) {
523    _Internal_error_Occurred(INTERNAL_ERROR_CORE,
524                             TRUE,
525                             u32_handler);
526  }
527
528  slot->b_Handler |= u32_handler;
529
530  slot->li_r0_IRQ  |= vector;
531
532  _CPU_Data_Cache_Block_Flush( slot );
533}
534
535uint32_t    ppc_exception_vector_addr(
536  uint32_t   vector
537)
538{
539#if (!PPC_HAS_EVPR)
540  uint32_t   Msr;
541#endif
542  uint32_t   Top = 0;
543  uint32_t   Offset = 0x000;
544
545#if (PPC_HAS_EXCEPTION_PREFIX)
546  _CPU_MSR_GET ( Msr );
547  if ( ( Msr & PPC_MSR_EP) != 0 ) /* Vectors at FFFx_xxxx */
548    Top = 0xfff00000;
549#elif (PPC_HAS_EVPR)
550  asm volatile( "mfspr %0,0x3d6" : "=r" (Top)); /* EVPR */
551  Top = Top & 0xffff0000;
552#endif
553
554  switch ( vector ) {
555    case PPC_IRQ_SYSTEM_RESET:   /* on 40x aka PPC_IRQ_CRIT */
556      Offset = 0x00100;
557      break;
558    case PPC_IRQ_MCHECK:
559      Offset = 0x00200;
560      break;
561    case PPC_IRQ_PROTECT:
562      Offset = 0x00300;
563      break;
564    case PPC_IRQ_ISI:
565      Offset = 0x00400;
566      break;
567    case PPC_IRQ_EXTERNAL:
568      Offset = 0x00500;
569      break;
570    case PPC_IRQ_ALIGNMENT:
571      Offset = 0x00600;
572      break;
573    case PPC_IRQ_PROGRAM:
574      Offset = 0x00700;
575      break;
576    case PPC_IRQ_NOFP:
577      Offset = 0x00800;
578      break;
579    case PPC_IRQ_DECREMENTER:
580      Offset = 0x00900;
581      break;
582    case PPC_IRQ_RESERVED_A:
583      Offset = 0x00a00;
584      break;
585    case PPC_IRQ_RESERVED_B:
586      Offset = 0x00b00;
587      break;
588    case PPC_IRQ_SCALL:
589      Offset = 0x00c00;
590      break;
591    case PPC_IRQ_TRACE:
592      Offset = 0x00d00;
593      break;
594    case PPC_IRQ_FP_ASST:
595      Offset = 0x00e00;
596      break;
597
598#if defined(ppc403) || defined(ppc405)
599
600/*  PPC_IRQ_CRIT is the same vector as PPC_IRQ_RESET
601    case PPC_IRQ_CRIT:
602      Offset = 0x00100;
603      break;
604*/
605    case PPC_IRQ_PIT:
606      Offset = 0x01000;
607      break;
608    case PPC_IRQ_FIT:
609      Offset = 0x01010;
610      break;
611    case PPC_IRQ_WATCHDOG:
612      Offset = 0x01020;
613      break;
614    case PPC_IRQ_DEBUG:
615      Offset = 0x02000;
616      break;
617
618#elif defined(ppc601)
619    case PPC_IRQ_TRACE:
620      Offset = 0x02000;
621      break;
622
623#elif defined(ppc603) || defined(ppc603e)
624    case PPC_IRQ_TRANS_MISS:
625      Offset = 0x1000;
626      break;
627    case PPC_IRQ_DATA_LOAD:
628      Offset = 0x1100;
629      break;
630    case PPC_IRQ_DATA_STORE:
631      Offset = 0x1200;
632      break;
633    case PPC_IRQ_ADDR_BRK:
634      Offset = 0x1300;
635      break;
636    case PPC_IRQ_SYS_MGT:
637      Offset = 0x1400;
638      break;
639
640#elif defined(mpc604)
641    case PPC_IRQ_ADDR_BRK:
642      Offset = 0x1300;
643      break;
644    case PPC_IRQ_SYS_MGT:
645      Offset = 0x1400;
646      break;
647
648#elif defined(mpc860) || defined(mpc821)
649    case PPC_IRQ_EMULATE:
650      Offset = 0x1000;
651      break;
652    case PPC_IRQ_INST_MISS:
653      Offset = 0x1100;
654      break;
655    case PPC_IRQ_DATA_MISS:
656      Offset = 0x1200;
657      break;
658    case PPC_IRQ_INST_ERR:
659      Offset = 0x1300;
660      break;
661    case PPC_IRQ_DATA_ERR:
662      Offset = 0x1400;
663      break;
664    case PPC_IRQ_DATA_BPNT:
665      Offset = 0x1c00;
666      break;
667    case PPC_IRQ_INST_BPNT:
668      Offset = 0x1d00;
669      break;
670    case PPC_IRQ_IO_BPNT:
671      Offset = 0x1e00;
672      break;
673    case PPC_IRQ_DEV_PORT:
674      Offset = 0x1f00;
675      break;
676    case PPC_IRQ_IRQ0:
677      Offset = 0x2000;
678      break;
679    case PPC_IRQ_LVL0:
680      Offset = 0x2040;
681      break;
682    case PPC_IRQ_IRQ1:
683      Offset = 0x2080;
684      break;
685    case PPC_IRQ_LVL1:
686      Offset = 0x20c0;
687      break;
688    case PPC_IRQ_IRQ2:
689      Offset = 0x2100;
690      break;
691    case PPC_IRQ_LVL2:
692      Offset = 0x2140;
693      break;
694    case PPC_IRQ_IRQ3:
695      Offset = 0x2180;
696      break;
697    case PPC_IRQ_LVL3:
698      Offset = 0x21c0;
699      break;
700    case PPC_IRQ_IRQ4:
701      Offset = 0x2200;
702      break;
703    case PPC_IRQ_LVL4:
704      Offset = 0x2240;
705      break;
706    case PPC_IRQ_IRQ5:
707      Offset = 0x2280;
708      break;
709    case PPC_IRQ_LVL5:
710      Offset = 0x22c0;
711      break;
712    case PPC_IRQ_IRQ6:
713      Offset = 0x2300;
714      break;
715    case PPC_IRQ_LVL6:
716      Offset = 0x2340;
717      break;
718    case PPC_IRQ_IRQ7:
719      Offset = 0x2380;
720      break;
721    case PPC_IRQ_LVL7:
722      Offset = 0x23c0;
723      break;
724    case PPC_IRQ_CPM_ERROR:
725      Offset = 0x2400;
726      break;
727    case PPC_IRQ_CPM_PC4:
728      Offset = 0x2410;
729      break;
730    case PPC_IRQ_CPM_PC5:
731      Offset = 0x2420;
732      break;
733    case PPC_IRQ_CPM_SMC2:
734      Offset = 0x2430;
735      break;
736    case PPC_IRQ_CPM_SMC1:
737      Offset = 0x2440;
738      break;
739    case PPC_IRQ_CPM_SPI:
740      Offset = 0x2450;
741      break;
742    case PPC_IRQ_CPM_PC6:
743      Offset = 0x2460;
744      break;
745    case PPC_IRQ_CPM_TIMER4:
746      Offset = 0x2470;
747      break;
748    case PPC_IRQ_CPM_RESERVED_8:
749      Offset = 0x2480;
750      break;
751    case PPC_IRQ_CPM_PC7:
752      Offset = 0x2490;
753      break;
754    case PPC_IRQ_CPM_PC8:
755      Offset = 0x24a0;
756      break;
757    case PPC_IRQ_CPM_PC9:
758      Offset = 0x24b0;
759      break;
760    case PPC_IRQ_CPM_TIMER3:
761      Offset = 0x24c0;
762      break;
763    case PPC_IRQ_CPM_RESERVED_D:
764      Offset = 0x24d0;
765      break;
766    case PPC_IRQ_CPM_PC10:
767      Offset = 0x24e0;
768      break;
769    case PPC_IRQ_CPM_PC11:
770      Offset = 0x24f0;
771      break;
772    case PPC_IRQ_CPM_I2C:
773      Offset = 0x2500;
774      break;
775    case PPC_IRQ_CPM_RISC_TIMER:
776      Offset = 0x2510;
777      break;
778    case PPC_IRQ_CPM_TIMER2:
779      Offset = 0x2520;
780      break;
781    case PPC_IRQ_CPM_RESERVED_13:
782      Offset = 0x2530;
783      break;
784    case PPC_IRQ_CPM_IDMA2:
785      Offset = 0x2540;
786      break;
787    case PPC_IRQ_CPM_IDMA1:
788      Offset = 0x2550;
789      break;
790    case PPC_IRQ_CPM_SDMA_ERROR:
791      Offset = 0x2560;
792      break;
793    case PPC_IRQ_CPM_PC12:
794      Offset = 0x2570;
795      break;
796    case PPC_IRQ_CPM_PC13:
797      Offset = 0x2580;
798      break;
799    case PPC_IRQ_CPM_TIMER1:
800      Offset = 0x2590;
801      break;
802    case PPC_IRQ_CPM_PC14:
803      Offset = 0x25a0;
804      break;
805    case PPC_IRQ_CPM_SCC4:
806      Offset = 0x25b0;
807      break;
808    case PPC_IRQ_CPM_SCC3:
809      Offset = 0x25c0;
810      break;
811    case PPC_IRQ_CPM_SCC2:
812      Offset = 0x25d0;
813      break;
814    case PPC_IRQ_CPM_SCC1:
815      Offset = 0x25e0;
816      break;
817    case PPC_IRQ_CPM_PC15:
818      Offset = 0x25f0;
819      break;
820#endif
821
822  }
823  Top += Offset;
824  return Top;
825}
826
827/*PAGE
828 *
829 *  This is the PowerPC specific implementation of the routine which
830 *  returns TRUE if an interrupt is in progress.
831 *
832 *  NOTE: This is the same as the generic version. But since the
833 *        PowerPC is still supporting old and new exception processing
834 *        models and the new exception processing model has a hardware
835 *        way of doing this, we have to provide this capability here
836 *        for symmetry.
837 */
838
839boolean _ISR_Is_in_progress( void )
840{
841  return (_ISR_Nest_level != 0);
842}
843
844const unsigned int _PPC_MSR_DISABLE_MASK = PPC_MSR_DISABLE_MASK;
Note: See TracBrowser for help on using the repository browser.