source: rtems/c/src/lib/libcpu/powerpc/rtems/powerpc/powerpc.h @ 06aab39

4.104.114.95
Last change on this file since 06aab39 was a52ab9e1, checked in by Till Straumann <strauman@…>, on 12/06/07 at 00:07:21

2007-12-05 Till Straumann <strauman@…>

  • rtems/powerpc/powerpc.h: added a #ifdef ppc_generic branch. The goal is eventually to make this the starting point for cleanup (remove as many branches as possible; replace by run-time tests if necessary).
  • Property mode set to 100644
File size: 21.9 KB
Line 
1/**
2 * @file rtems/score/powerpc.h
3 */
4
5/*
6 *  This file contains definitions for the IBM/Motorola PowerPC
7 *  family members.
8 *
9 *  Author:     Andrew Bray <andy@i-cubed.co.uk>
10 *
11 *  COPYRIGHT (c) 1995 by i-cubed ltd.
12 *
13 *  MPC860 support code was added by Jay Monkman <jmonkman@frasca.com>
14 *  MPC8260 support added by Andy Dachs <a.dachs@sstl.co.uk>
15 *  Surrey Satellite Technology Limited
16 *
17 *  To anyone who acknowledges that this file is provided "AS IS"
18 *  without any express or implied warranty:
19 *      permission to use, copy, modify, and distribute this file
20 *      for any purpose is hereby granted without fee, provided that
21 *      the above copyright notice and this notice appears in all
22 *      copies, and that the name of i-cubed limited not be used in
23 *      advertising or publicity pertaining to distribution of the
24 *      software without specific, written prior permission.
25 *      i-cubed limited makes no representations about the suitability
26 *      of this software for any purpose.
27 *
28 *  Derived from c/src/exec/cpu/no_cpu/no_cpu.h:
29 *
30 *  COPYRIGHT (c) 1989-1997.
31 *  On-Line Applications Research Corporation (OAR).
32 *
33 *  The license and distribution terms for this file may in
34 *  the file LICENSE in this distribution or at
35 *  http://www.rtems.com/license/LICENSE.
36 *
37 *
38 * Note:
39 *      This file is included by both C and assembler code ( -DASM )
40 *
41 *  $Id$
42 */
43
44
45#ifndef _RTEMS_POWERPC_POWERPC_H
46#define _RTEMS_POWERPC_POWERPC_H
47
48#ifdef __cplusplus
49extern "C" {
50#endif
51
52#include <rtems/score/powerpc.h>
53
54/*
55 *  Define the name of the CPU family.
56 */
57
58#define CPU_NAME "PowerPC"
59
60/*
61 *  This file contains the information required to build
62 *  RTEMS for a particular member of the PowerPC family.  It does
63 *  this by setting variables to indicate which implementation
64 *  dependent features are present in a particular member
65 *  of the family.
66 *
67 *  The following architectural feature definitions are defaulted
68 *  unless specifically set by the model definition:
69 *
70 *    + PPC_INTERRUPT_MAX        - 16
71 *    + PPC_CACHE_ALIGNMENT      - 32
72 *    + PPC_LOW_POWER_MODE       - PPC_LOW_POWER_MODE_NONE
73 *    + PPC_HAS_EXCEPTION_PREFIX - 1
74 *    + PPC_HAS_FPU              - 1
75 *    + PPC_HAS_DOUBLE           - 1 if PPC_HAS_FPU,
76 *                               - 0 otherwise
77 *    + PPC_USE_MULTIPLE         - 0
78 */
79 
80/*
81 *  Define the low power mode models
82 *
83 *  Standard:   as defined for 603e
84 *  Nap Mode:   nap mode only (604)
85 *  XXX 403GB, 603, 603e, 604, 821
86 */
87
88#define PPC_LOW_POWER_MODE_NONE      0
89#define PPC_LOW_POWER_MODE_STANDARD  1
90
91/*
92 *  Figure out all CPU Model Feature Flags based upon compiler
93 *  predefines.
94 */
95
96#if defined(ppc403) || defined(ppc405)
97/*
98 *  IBM 403
99 *
100 *  Developed for 403GA.  Book checked for 403GB.
101 *
102 *  Does not have user mode.
103 */
104 
105#if defined(ppc403)
106#define CPU_MODEL_NAME "PowerPC 403"
107#elif defined (ppc405)
108#define CPU_MODEL_NAME "PowerPC 405"
109#endif
110#define PPC_CACHE_ALIGNMENT     16
111#define PPC_HAS_RI              0
112#define PPC_HAS_RFCI            1
113#define PPC_USE_MULTIPLE        1
114#define PPC_I_CACHE             2048
115#define PPC_D_CACHE             1024
116
117#define PPC_HAS_EXCEPTION_PREFIX 0
118#define PPC_HAS_EVPR             1
119
120#elif defined(mpc555)
121
122#define CPU_MODEL_NAME  "PowerPC 555"
123
124/* Copied from mpc505 */
125#define PPC_CACHE_ALIGNMENT     16
126
127/* Added by querbach@realtime.bc.ca */
128#define PPC_LOW_POWER_MODE      PPC_LOW_POWER_MODE_STANDARD
129
130/* Based on comments by Sergei Organov <osv@Javad.RU> */
131#define PPC_I_CACHE             0
132#define PPC_D_CACHE             0
133
134#elif defined(mpc505) || defined(mpc509)
135/*
136 *  Submitted by Sergei Organov <osv@Javad.RU> as a patch against
137 *  3.6.0 long after 4.0 was released.   This is just an attempt
138 *  to get the setting correct.
139 */
140
141#define CPU_MODEL_NAME  "PowerPC 505/509"
142
143#define PPC_CACHE_ALIGNMENT     16
144#define PPC_I_CACHE             4096
145#define PPC_D_CACHE             0
146
147
148#elif defined(ppc601)
149
150/*
151 *  Submitted with original port -- book checked only.
152 */
153 
154#define CPU_MODEL_NAME  "PowerPC 601"
155
156#define PPC_USE_MULTIPLE        1
157#define PPC_I_CACHE             0
158#define PPC_D_CACHE             32768
159
160#elif defined(ppc602)
161/*
162 *  Submitted with original port -- book checked only.
163 */
164 
165#define CPU_MODEL_NAME  "PowerPC 602"
166
167#define PPC_HAS_DOUBLE          0
168#define PPC_I_CACHE             4096
169#define PPC_D_CACHE             4096
170
171#elif defined(ppc603)
172/*
173 *  Submitted with original port -- book checked only.
174 */
175 
176#define CPU_MODEL_NAME  "PowerPC 603"
177
178#define PPC_I_CACHE             8192
179#define PPC_D_CACHE             8192
180
181#elif defined(ppc603e)
182 
183#define CPU_MODEL_NAME  "PowerPC 603e"
184/*
185 *  Submitted with original port.
186 *
187 *  Known to work on real hardware.
188 */
189
190#define PPC_I_CACHE             16384
191#define PPC_D_CACHE             16384
192
193#define PPC_LOW_POWER_MODE PPC_LOW_POWER_MODE_STANDARD
194
195#elif defined(mpc604)
196/*
197 *  Submitted with original port -- book checked only.
198 */
199 
200#define CPU_MODEL_NAME  "PowerPC 604"
201
202#define PPC_I_CACHE             16384
203#define PPC_D_CACHE             16384
204 
205#elif defined(mpc860)
206/*
207 *  Added by Jay Monkman (jmonkman@frasca.com) 6/28/98
208 *  with some changes by Darlene Stewart (Darlene.Stewart@iit.nrc.ca)
209 */
210#define CPU_MODEL_NAME  "PowerPC MPC860"
211
212#define PPC_I_CACHE             4096
213#define PPC_D_CACHE             4096
214#define PPC_CACHE_ALIGNMENT     16
215#define PPC_INTERRUPT_MAX       71
216#define PPC_USE_MULTIPLE        1
217
218#define PPC_MSR_0               0x00009000
219#define PPC_MSR_1               0x00001000
220#define PPC_MSR_2               0x00001000
221#define PPC_MSR_3               0x00000000
222
223#elif defined(mpc821)
224/*
225 *  Added by Andrew Bray <andy@chaos.org.uk> 6/April/1999
226 */
227#define CPU_MODEL_NAME  "PowerPC MPC821"
228
229#define PPC_I_CACHE             4096
230#define PPC_D_CACHE             4096
231#define PPC_CACHE_ALIGNMENT     16
232#define PPC_INTERRUPT_MAX       71
233
234#define PPC_MSR_0               0x00009000
235#define PPC_MSR_1               0x00001000
236#define PPC_MSR_2               0x00001000
237#define PPC_MSR_3               0x00000000
238
239#elif defined(mpc750)
240
241#define CPU_MODEL_NAME  "PowerPC 750"
242
243#define PPC_I_CACHE             16384
244#define PPC_D_CACHE             16384
245
246#elif defined(mpc7400)
247
248#define CPU_MODEL_NAME  "PowerPC 7400"
249
250#define PPC_I_CACHE             32768
251#define PPC_D_CACHE             32768
252
253#elif defined(mpc7455)
254/*
255 *  Added by S.K. Feng <feng1@bnl.gov> 10/03
256 */
257
258#define CPU_MODEL_NAME  "PowerPC 7455"
259
260#define PPC_CACHE_ALIGNMENT     32
261#define PPC_I_CACHE             32768
262#define PPC_D_CACHE             32768
263
264#elif defined(mpc8260)
265/*
266 *  Added by Andy Dachs <a.dachs@sstl.co.uk> 23/11/2000
267 */
268#define CPU_MODEL_NAME  "PowerPC MPC8260"
269
270#define PPC_I_CACHE             16384
271#define PPC_D_CACHE             16384
272#define PPC_CACHE_ALIGNMENT     32
273#define PPC_INTERRUPT_MAX       125
274#define PPC_USE_MULTIPLE        1
275
276#elif defined(__ppc_generic)
277/* PPC_INTERRUPT_MAX and PPC_CACHE_ALIGNMENT already defined by score/powerc.h */
278#ifndef PPC_ABI
279#define PPC_ABI PPC_ABI_SVR4
280#endif
281#else
282 
283#error "Unsupported CPU Model"
284 
285#endif
286
287/*
288 *  Application binary interfaces.
289 *
290 *  PPC_ABI MUST be defined as one of these.
291 *  Only big endian is currently supported.
292 */
293/*
294 *  SVR4 ABI
295 */
296#define PPC_ABI_SVR4            2
297/*
298 *  Embedded ABI
299 */
300#define PPC_ABI_EABI            3
301
302/*
303 *  Default to the EABI used by current GNU tools
304 */
305
306#ifndef PPC_ABI
307#define PPC_ABI PPC_ABI_EABI
308#endif
309
310#if (PPC_ABI == PPC_ABI_SVR4)
311#define PPC_STACK_ALIGNMENT     16
312#elif (PPC_ABI == PPC_ABI_EABI)
313#define PPC_STACK_ALIGNMENT     8
314#else
315#error  "PPC_ABI is not properly defined"
316#endif
317
318/*
319 *  Assemblers.
320 *  PPC_ASM MUST be defined as one of these.
321 *
322 *  PPC_ASM_ELF:   ELF assembler. Currently used for all ABIs.
323 *
324 *  NOTE: Only PPC_ABI_ELF is currently fully supported.
325 */
326
327#define PPC_ASM_ELF   0
328
329/*
330 *  Default to the assembler format used by the current GNU tools.
331 */
332
333#ifndef PPC_ASM
334#define PPC_ASM PPC_ASM_ELF
335#endif
336
337/*
338 *  If the maximum number of exception sources has not been defined,
339 *  then default it to 16.
340 */
341
342#ifndef PPC_INTERRUPT_MAX
343#define PPC_INTERRUPT_MAX       16
344#endif
345
346/*
347 *  Unless specified otherwise, the cache line size is defaulted to 32.
348 *
349 *  The derive the power of 2 the cache line is.
350 */
351
352#ifndef PPC_CACHE_ALIGNMENT
353#define PPC_CACHE_ALIGNMENT 32
354#endif
355
356#if (PPC_CACHE_ALIGNMENT == 16)
357#define PPC_CACHE_ALIGN_POWER 4
358#elif (PPC_CACHE_ALIGNMENT == 32)
359#define PPC_CACHE_ALIGN_POWER 5
360#else
361#error "Undefined power of 2 for PPC_CACHE_ALIGNMENT"
362#endif
363
364/*
365 *  Unless otherwise specified, assume the model has an IP/EP bit to
366 *  set the exception address prefix.
367 */
368
369#ifndef PPC_HAS_EXCEPTION_PREFIX
370#define PPC_HAS_EXCEPTION_PREFIX 1
371#endif
372/*
373 *  Unless otherwise specified, assume the model has an RI bit to
374 *  identify non-recoverable interrupts
375 */
376
377#ifndef PPC_HAS_RI
378#define PPC_HAS_RI 1
379#endif
380
381/*
382 *  Unless otherwise specified, assume the model does NOT have
383 *  403 style EVPR register to set the exception address prefix.
384 */
385
386#ifndef PPC_HAS_EVPR
387#define PPC_HAS_EVPR 0
388#endif
389
390/*
391 *  If no low power mode model was specified, then assume there is none.
392 */
393
394#ifndef PPC_LOW_POWER_MODE
395#define PPC_LOW_POWER_MODE PPC_LOW_POWER_MODE_NONE
396#endif
397
398/*
399 *  Unless specified above, assume PPC_HAS_FPU to be a synonym for _SOFT_FLOAT.
400 *  FIXME: Should we tie PPC_HAS_FPU to _SOFT_FLOAT, directly
401 *     and disallow explicitly setting PPC_HAS_FPU?
402 */
403
404#ifndef PPC_HAS_FPU
405#ifdef _SOFT_FLOAT
406#define PPC_HAS_FPU 0
407#else
408#define PPC_HAS_FPU 1
409#endif
410#endif
411
412/*
413 *  Unless specified above, If the model has FP support, it is assumed to
414 *  support doubles (8-byte floating point numbers).
415 *
416 *  If the model does NOT have FP support, then the model does
417 *  NOT have double length FP registers.
418 */
419
420#ifndef PPC_HAS_DOUBLE
421#if (PPC_HAS_FPU)
422#define PPC_HAS_DOUBLE 1
423#else
424#define PPC_HAS_DOUBLE 0
425#endif
426#endif
427
428/*
429 *  Unless specified above, then assume the model does NOT have critical
430 *  interrupt support.
431 */
432
433#ifndef PPC_HAS_RFCI
434#define PPC_HAS_RFCI 0
435#endif
436
437/*
438 *  Unless specified above, do not use the load/store multiple instructions
439 *  in a context switch.
440 */
441
442#ifndef PPC_USE_MULTIPLE
443#define PPC_USE_MULTIPLE 0
444#endif
445
446/*
447 *  The following exceptions are not maskable, and are not
448 *  necessarily predictable, so cannot be offered to RTEMS:
449 *    Alignment exception - handled by the CPU module
450 *    Data exceptions.
451 *    Instruction exceptions.
452 */
453
454/*
455 *  Base Interrupt vectors supported on all models.
456 */
457#define PPC_IRQ_SYSTEM_RESET     0 /* 0x00100 - System reset.              */
458#define PPC_IRQ_MCHECK           1 /* 0x00200 - Machine check              */
459#define PPC_IRQ_PROTECT          2 /* 0x00300 - Protection violation       */
460#define PPC_IRQ_ISI              3 /* 0x00400 - Instruction Fetch error    */
461#define PPC_IRQ_EXTERNAL         4 /* 0x00500 - External interrupt         */
462#define PPC_IRQ_ALIGNMENT        5 /* 0X00600 - Alignment exception        */
463#define PPC_IRQ_PROGRAM          6 /* 0x00700 - Program exception          */
464#define PPC_IRQ_NOFP             7 /* 0x00800 - Floating point unavailable */
465#define PPC_IRQ_DECREMENTER      8 /* 0x00900 - Decrementer interrupt      */
466#define PPC_IRQ_RESERVED_A       9 /* 0x00a00 - Implementation Reserved    */
467#define PPC_IRQ_RESERVED_B      10 /* 0x00b00 - Implementation Reserved    */
468#define PPC_IRQ_SCALL           11 /* 0x00c00 - System call                */
469#define PPC_IRQ_TRACE           12 /* 0x00d00 - Trace Exception            */
470#define PPC_IRQ_FP_ASST         13 /* ox00e00 - Floating point assist      */
471#define PPC_STD_IRQ_LAST        PPC_IRQ_FP_ASST
472
473#define PPC_IRQ_FIRST           PPC_IRQ_SYSTEM_RESET
474
475#if defined(ppc403) || defined(ppc405)
476                                 
477#define PPC_IRQ_CRIT     PPC_IRQ_SYSTEM_RESET /*0x00100- Critical int. pin */
478#define PPC_IRQ_PIT      (PPC_STD_IRQ_LAST+1) /*0x01000- Pgm interval timer*/
479#define PPC_IRQ_FIT      (PPC_STD_IRQ_LAST+2) /*0x01010- Fixed int. timer  */
480#define PPC_IRQ_WATCHDOG (PPC_STD_IRQ_LAST+3) /*0x01020- Watchdog timer    */
481#define PPC_IRQ_DEBUG    (PPC_STD_IRQ_LAST+4) /*0x02000- Debug exceptions  */
482#define PPC_IRQ_LAST     PPC_IRQ_DEBUG
483
484#elif defined(mpc505) || defined(mpc509)
485#define PPC_IRQ_SOFTEMU   (PPC_STD_IRQ_LAST+1)    /* Software emulation. */
486#define PPC_IRQ_DATA_BP   (PPC_STD_IRQ_LAST+ 2)
487#define PPC_IRQ_INST_BP   (PPC_STD_IRQ_LAST+ 3)
488#define PPC_IRQ_MEXT_BP   (PPC_STD_IRQ_LAST+ 4)
489#define PPC_IRQ_NMEXT_BP  (PPC_STD_IRQ_LAST+ 5)
490
491#elif defined(mpc555)
492#define PPC_IRQ_SOFTEMU   (PPC_STD_IRQ_LAST+1)  /* Software emulation. */
493#define PPC_IRQ_INST_PE   (PPC_STD_IRQ_LAST+2)  /* Insn protection error */
494#define PPC_IRQ_DATA_PE   (PPC_STD_IRQ_LAST+3)  /* Data protection error */
495#define PPC_IRQ_DATA_BP   (PPC_STD_IRQ_LAST+4)  /* Data breakpoint */
496#define PPC_IRQ_INST_BP   (PPC_STD_IRQ_LAST+5)  /* Insn breakpoint */
497#define PPC_IRQ_MEXT_BP   (PPC_STD_IRQ_LAST+6)  /* Maskable ext bkpt */
498#define PPC_IRQ_NMEXT_BP  (PPC_STD_IRQ_LAST+7)  /* Non-maskable ext bkpt */
499#define PPC_IRQ_LAST      PPC_IRQ_NMEXT_BP
500
501#elif defined(ppc601)
502#define PPC_IRQ_TRACE    (PPC_STD_IRQ_LAST+1) /*0x02000-Run/Trace Exception*/
503#define PPC_IRQ_LAST     PPC_IRQ_TRACE       
504
505#elif defined(ppc602)
506#define PPC_IRQ_LAST     (PPC_STD_IRQ_LAST)
507
508#elif defined(ppc603) || defined(ppc603e)
509#define PPC_IRQ_TRANS_MISS (PPC_STD_IRQ_LAST+1) /*0x1000-Ins Translation Miss*/
510#define PPC_IRQ_DATA_LOAD  (PPC_STD_IRQ_LAST+2) /*0x1100-Data Load Trans Miss*/
511#define PPC_IRQ_DATA_STORE (PPC_STD_IRQ_LAST+3) /*0x1200-Data Store Miss     */
512#define PPC_IRQ_ADDR_BRK   (PPC_STD_IRQ_LAST+4) /*0x1300-Instruction Bkpoint */
513#define PPC_IRQ_SYS_MGT    (PPC_STD_IRQ_LAST+5) /*0x1400-System Management   */
514#define PPC_IRQ_LAST       PPC_IRQ_SYS_MGT   
515
516#elif defined(mpc604)
517#define PPC_IRQ_ADDR_BRK (PPC_STD_IRQ_LAST+1) /*0x1300- Inst. addr break  */
518#define PPC_IRQ_SYS_MGT  (PPC_STD_IRQ_LAST+2) /*0x1400- System Management */
519#define PPC_IRQ_LAST     PPC_IRQ_SYS_MGT 
520
521#elif defined(mpc860) || defined(mpc821)
522#define PPC_IRQ_EMULATE         (PPC_STD_IRQ_LAST+1) /*0x1000-Software emulation  */
523#define PPC_IRQ_INST_MISS       (PPC_STD_IRQ_LAST+2) /*0x1100-Instruction TLB miss*/
524#define PPC_IRQ_DATA_MISS       (PPC_STD_IRQ_LAST+3) /*0x1200-Data TLB miss */
525#define PPC_IRQ_INST_ERR        (PPC_STD_IRQ_LAST+4) /*0x1300-Instruction TLB err */
526#define PPC_IRQ_DATA_ERR        (PPC_STD_IRQ_LAST+5) /*0x1400-Data TLB error */
527#define PPC_IRQ_DATA_BPNT       (PPC_STD_IRQ_LAST+6) /*0x1C00-Data breakpoint */
528#define PPC_IRQ_INST_BPNT       (PPC_STD_IRQ_LAST+7) /*0x1D00-Inst breakpoint */
529#define PPC_IRQ_IO_BPNT         (PPC_STD_IRQ_LAST+8) /*0x1E00-Peripheral breakpnt */
530#define PPC_IRQ_DEV_PORT        (PPC_STD_IRQ_LAST+9) /*0x1F00-Development port */
531#define PPC_IRQ_IRQ0            (PPC_STD_IRQ_LAST + 10)
532#define PPC_IRQ_LVL0            (PPC_STD_IRQ_LAST + 11)
533#define PPC_IRQ_IRQ1            (PPC_STD_IRQ_LAST + 12)
534#define PPC_IRQ_LVL1            (PPC_STD_IRQ_LAST + 13)
535#define PPC_IRQ_IRQ2            (PPC_STD_IRQ_LAST + 14)
536#define PPC_IRQ_LVL2            (PPC_STD_IRQ_LAST + 15)
537#define PPC_IRQ_IRQ3            (PPC_STD_IRQ_LAST + 16)
538#define PPC_IRQ_LVL3            (PPC_STD_IRQ_LAST + 17)
539#define PPC_IRQ_IRQ4            (PPC_STD_IRQ_LAST + 18)
540#define PPC_IRQ_LVL4            (PPC_STD_IRQ_LAST + 19)
541#define PPC_IRQ_IRQ5            (PPC_STD_IRQ_LAST + 20)
542#define PPC_IRQ_LVL5            (PPC_STD_IRQ_LAST + 21)
543#define PPC_IRQ_IRQ6            (PPC_STD_IRQ_LAST + 22)
544#define PPC_IRQ_LVL6            (PPC_STD_IRQ_LAST + 23)
545#define PPC_IRQ_IRQ7            (PPC_STD_IRQ_LAST + 24)
546#define PPC_IRQ_LVL7            (PPC_STD_IRQ_LAST + 25)
547#define PPC_IRQ_CPM_ERROR       (PPC_STD_IRQ_LAST + 26)
548#define PPC_IRQ_CPM_PC4         (PPC_STD_IRQ_LAST + 27)
549#define PPC_IRQ_CPM_PC5         (PPC_STD_IRQ_LAST + 28)
550#define PPC_IRQ_CPM_SMC2        (PPC_STD_IRQ_LAST + 29)
551#define PPC_IRQ_CPM_SMC1        (PPC_STD_IRQ_LAST + 30)
552#define PPC_IRQ_CPM_SPI         (PPC_STD_IRQ_LAST + 31)
553#define PPC_IRQ_CPM_PC6         (PPC_STD_IRQ_LAST + 32)
554#define PPC_IRQ_CPM_TIMER4      (PPC_STD_IRQ_LAST + 33)
555#define PPC_IRQ_CPM_RESERVED_8  (PPC_STD_IRQ_LAST + 34)
556#define PPC_IRQ_CPM_PC7         (PPC_STD_IRQ_LAST + 35)
557#define PPC_IRQ_CPM_PC8         (PPC_STD_IRQ_LAST + 36)
558#define PPC_IRQ_CPM_PC9         (PPC_STD_IRQ_LAST + 37)
559#define PPC_IRQ_CPM_TIMER3      (PPC_STD_IRQ_LAST + 38)
560#define PPC_IRQ_CPM_RESERVED_D  (PPC_STD_IRQ_LAST + 39)
561#define PPC_IRQ_CPM_PC10        (PPC_STD_IRQ_LAST + 40)
562#define PPC_IRQ_CPM_PC11        (PPC_STD_IRQ_LAST + 41)
563#define PPC_IRQ_CPM_I2C         (PPC_STD_IRQ_LAST + 42)
564#define PPC_IRQ_CPM_RISC_TIMER  (PPC_STD_IRQ_LAST + 43)
565#define PPC_IRQ_CPM_TIMER2      (PPC_STD_IRQ_LAST + 44)
566#define PPC_IRQ_CPM_RESERVED_13 (PPC_STD_IRQ_LAST + 45)
567#define PPC_IRQ_CPM_IDMA2       (PPC_STD_IRQ_LAST + 46)
568#define PPC_IRQ_CPM_IDMA1       (PPC_STD_IRQ_LAST + 47)
569#define PPC_IRQ_CPM_SDMA_ERROR  (PPC_STD_IRQ_LAST + 48)
570#define PPC_IRQ_CPM_PC12        (PPC_STD_IRQ_LAST + 49)
571#define PPC_IRQ_CPM_PC13        (PPC_STD_IRQ_LAST + 50)
572#define PPC_IRQ_CPM_TIMER1      (PPC_STD_IRQ_LAST + 51)
573#define PPC_IRQ_CPM_PC14        (PPC_STD_IRQ_LAST + 52)
574#define PPC_IRQ_CPM_SCC4        (PPC_STD_IRQ_LAST + 53)
575#define PPC_IRQ_CPM_SCC3        (PPC_STD_IRQ_LAST + 54)
576#define PPC_IRQ_CPM_SCC2        (PPC_STD_IRQ_LAST + 55)
577#define PPC_IRQ_CPM_SCC1        (PPC_STD_IRQ_LAST + 56)
578#define PPC_IRQ_CPM_PC15        (PPC_STD_IRQ_LAST + 57)
579
580#define PPC_IRQ_LAST             PPC_IRQ_CPM_PC15
581
582#elif defined(mpc8260)
583
584#define PPC_IRQ_INST_MISS       (PPC_STD_IRQ_LAST+1) /*0x1000-Instruction TLB miss*/
585#define PPC_IRQ_DATA_MISS       (PPC_STD_IRQ_LAST+2) /*0x1100-Data TLB miss */
586#define PPC_IRQ_DATA_L_MISS     (PPC_STD_IRQ_LAST+3) /*0x1200-Data TLB load miss */
587#define PPC_IRQ_DATA_S_MISS     (PPC_STD_IRQ_LAST+4) /*0x1300-Data TLB store miss */
588#define PPC_IRQ_INST_BPNT       (PPC_STD_IRQ_LAST+5) /*0x1400-Inst address breakpoint */
589#define PPC_IRQ_SYS_MGT         (PPC_STD_IRQ_LAST+6) /*0x1500-System Management */
590/* 0x1600 - 0x2F00 reserved */
591#define PPC_IRQ_CPM_NONE        (PPC_STD_IRQ_LAST + 50)
592#define PPC_IRQ_CPM_I2C         (PPC_STD_IRQ_LAST + 51)
593#define PPC_IRQ_CPM_SPI         (PPC_STD_IRQ_LAST + 52)
594#define PPC_IRQ_CPM_RISC_TIMER  (PPC_STD_IRQ_LAST + 53)
595#define PPC_IRQ_CPM_SMC1        (PPC_STD_IRQ_LAST + 54)
596#define PPC_IRQ_CPM_SMC2        (PPC_STD_IRQ_LAST + 55)
597#define PPC_IRQ_CPM_IDMA1       (PPC_STD_IRQ_LAST + 56)
598#define PPC_IRQ_CPM_IDMA2       (PPC_STD_IRQ_LAST + 57)
599#define PPC_IRQ_CPM_IDMA3       (PPC_STD_IRQ_LAST + 58)
600#define PPC_IRQ_CPM_IDMA4       (PPC_STD_IRQ_LAST + 59)
601#define PPC_IRQ_CPM_SDMA        (PPC_STD_IRQ_LAST + 60)
602#define PPC_IRQ_CPM_RES_A       (PPC_STD_IRQ_LAST + 61)
603#define PPC_IRQ_CPM_TIMER1      (PPC_STD_IRQ_LAST + 62)
604#define PPC_IRQ_CPM_TIMER2      (PPC_STD_IRQ_LAST + 63)
605#define PPC_IRQ_CPM_TIMER3      (PPC_STD_IRQ_LAST + 64)
606#define PPC_IRQ_CPM_TIMER4      (PPC_STD_IRQ_LAST + 65)
607#define PPC_IRQ_CPM_TMCNT       (PPC_STD_IRQ_LAST + 66)
608#define PPC_IRQ_CPM_PIT         (PPC_STD_IRQ_LAST + 67)
609#define PPC_IRQ_CPM_RES_B       (PPC_STD_IRQ_LAST + 68)
610#define PPC_IRQ_CPM_IRQ1        (PPC_STD_IRQ_LAST + 69)
611#define PPC_IRQ_CPM_IRQ2        (PPC_STD_IRQ_LAST + 70)
612#define PPC_IRQ_CPM_IRQ3        (PPC_STD_IRQ_LAST + 71)
613#define PPC_IRQ_CPM_IRQ4        (PPC_STD_IRQ_LAST + 72)
614#define PPC_IRQ_CPM_IRQ5        (PPC_STD_IRQ_LAST + 73)
615#define PPC_IRQ_CPM_IRQ6        (PPC_STD_IRQ_LAST + 74)
616#define PPC_IRQ_CPM_IRQ7        (PPC_STD_IRQ_LAST + 75)
617#define PPC_IRQ_CPM_RES_C       (PPC_STD_IRQ_LAST + 76)
618#define PPC_IRQ_CPM_RES_D       (PPC_STD_IRQ_LAST + 77)
619#define PPC_IRQ_CPM_RES_E       (PPC_STD_IRQ_LAST + 78)
620#define PPC_IRQ_CPM_RES_F       (PPC_STD_IRQ_LAST + 79)
621#define PPC_IRQ_CPM_RES_G       (PPC_STD_IRQ_LAST + 80)
622#define PPC_IRQ_CPM_RES_H       (PPC_STD_IRQ_LAST + 81)
623#define PPC_IRQ_CPM_FCC1        (PPC_STD_IRQ_LAST + 82)
624#define PPC_IRQ_CPM_FCC2        (PPC_STD_IRQ_LAST + 83)
625#define PPC_IRQ_CPM_FCC3        (PPC_STD_IRQ_LAST + 84)
626#define PPC_IRQ_CPM_RES_I       (PPC_STD_IRQ_LAST + 85)
627#define PPC_IRQ_CPM_MCC1        (PPC_STD_IRQ_LAST + 86)
628#define PPC_IRQ_CPM_MCC2        (PPC_STD_IRQ_LAST + 87)
629#define PPC_IRQ_CPM_RES_J       (PPC_STD_IRQ_LAST + 88)
630#define PPC_IRQ_CPM_RES_K       (PPC_STD_IRQ_LAST + 89)
631#define PPC_IRQ_CPM_SCC1        (PPC_STD_IRQ_LAST + 90)
632#define PPC_IRQ_CPM_SCC2        (PPC_STD_IRQ_LAST + 91)
633#define PPC_IRQ_CPM_SCC3        (PPC_STD_IRQ_LAST + 92)
634#define PPC_IRQ_CPM_SCC4        (PPC_STD_IRQ_LAST + 93)
635#define PPC_IRQ_CPM_RES_L       (PPC_STD_IRQ_LAST + 94)
636#define PPC_IRQ_CPM_RES_M       (PPC_STD_IRQ_LAST + 95)
637#define PPC_IRQ_CPM_RES_N       (PPC_STD_IRQ_LAST + 96)
638#define PPC_IRQ_CPM_RES_O       (PPC_STD_IRQ_LAST + 97)
639#define PPC_IRQ_CPM_PC15        (PPC_STD_IRQ_LAST + 98)
640#define PPC_IRQ_CPM_PC14        (PPC_STD_IRQ_LAST + 99)
641#define PPC_IRQ_CPM_PC13        (PPC_STD_IRQ_LAST + 100)
642#define PPC_IRQ_CPM_PC12        (PPC_STD_IRQ_LAST + 101)
643#define PPC_IRQ_CPM_PC11        (PPC_STD_IRQ_LAST + 102)
644#define PPC_IRQ_CPM_PC10        (PPC_STD_IRQ_LAST + 103)
645#define PPC_IRQ_CPM_PC9         (PPC_STD_IRQ_LAST + 104)
646#define PPC_IRQ_CPM_PC8         (PPC_STD_IRQ_LAST + 105)
647#define PPC_IRQ_CPM_PC7         (PPC_STD_IRQ_LAST + 106)
648#define PPC_IRQ_CPM_PC6         (PPC_STD_IRQ_LAST + 107)
649#define PPC_IRQ_CPM_PC5         (PPC_STD_IRQ_LAST + 108)
650#define PPC_IRQ_CPM_PC4         (PPC_STD_IRQ_LAST + 109)
651#define PPC_IRQ_CPM_PC3         (PPC_STD_IRQ_LAST + 110)
652#define PPC_IRQ_CPM_PC2         (PPC_STD_IRQ_LAST + 111)
653#define PPC_IRQ_CPM_PC1         (PPC_STD_IRQ_LAST + 112)
654#define PPC_IRQ_CPM_PC0         (PPC_STD_IRQ_LAST + 113)
655
656#define PPC_IRQ_LAST             PPC_IRQ_CPM_PC0
657
658#endif
659
660
661/*
662 *  If the maximum number of exception sources is too low,
663 *  then fix it
664 */
665
666#if PPC_INTERRUPT_MAX <= PPC_IRQ_LAST
667#undef PPC_INTERRUPT_MAX
668#define PPC_INTERRUPT_MAX ((PPC_IRQ_LAST) + 1)
669#endif
670
671/*
672 *  Machine Status Register (MSR) Constants Used by RTEMS
673 */
674
675#if PPC_HAS_RI
676#define PPC_MSR_RI       0x000000002 /* bit 30 - recoverable exception */
677#endif
678
679#define PPC_MSR_DR       0x000000010 /* bit 27 - data address translation */
680#define PPC_MSR_IR       0x000000020 /* bit 26 - instruction addr translation*/
681
682/*
683 *  Some PPC model manuals refer to the Exception Prefix (EP) bit as
684 *  IP for no apparent reason.
685 */
686#if (PPC_HAS_EXCEPTION_PREFIX)
687#define PPC_MSR_EP       0x000000040 /* bit 25 - exception prefix */
688#else
689#define PPC_MSR_EP       0x000000000 /* bit 25 - exception prefix */
690#endif
691
692#if (PPC_HAS_FPU)
693#define PPC_MSR_FP       0x000002000 /* bit 18 - floating point enable */
694#else
695#define PPC_MSR_FP       0x000000000 /* bit 18 - floating point enable */
696#endif
697
698#if (PPC_LOW_POWER_MODE == PPC_LOW_POWER_MODE_NONE)
699#define PPC_MSR_POW      0x000000000 /* bit 13 - power management enable */
700#else
701#define PPC_MSR_POW      0x000040000 /* bit 13 - power management enable */
702#endif
703
704#define PPC_MSR_ME       0x000001000 /* bit 19 - machine check enable */
705#define PPC_MSR_EE       0x000008000 /* bit 16 - external interrupt enable */
706
707#if (PPC_HAS_RFCI)
708#define PPC_MSR_CE       0x000020000 /* bit 14 - critical interrupt enable */
709#else
710#define PPC_MSR_CE       0x000000000 /* bit 14 - critical interrupt enable */
711#endif
712
713#define PPC_MSR_DISABLE_MASK (PPC_MSR_ME|PPC_MSR_EE|PPC_MSR_CE)
714
715/*
716 *  Initial value for the FPSCR register
717 */
718
719#define PPC_INIT_FPSCR          0x000000f8
720
721
722#define PPC_MINIMUM_STACK_FRAME_SIZE PPC_STACK_ALIGNMENT
723
724#ifdef __cplusplus
725}
726#endif
727
728#endif /* _RTEMS_POWERPC_POWERPC_H */
Note: See TracBrowser for help on using the repository browser.