source: rtems/cpukit/score/cpu/powerpc/rtems/old-exceptions/cpu.h @ d3fcd2b0

4.104.114.84.95
Last change on this file since d3fcd2b0 was d3fcd2b0, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/13/05 at 07:33:35

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

  • rtems/old-exceptions/cpu.h: Add _PPC_MSR_DISABLE_MASK. Use _PPC_MSR_DISABLE_MASK instead of PPC_MSR_DISABLE_MASK to set up _disable_mask.
  • Property mode set to 100644
File size: 36.3 KB
Line 
1/*  cpu.h
2 *
3 *  This include file contains information pertaining to the PowerPC
4 *  processor.
5 *
6 *  Author:     Andrew Bray <andy@i-cubed.co.uk>
7 *
8 *  COPYRIGHT (c) 1995 by i-cubed ltd.
9 *
10 *  To anyone who acknowledges that this file is provided "AS IS"
11 *  without any express or implied warranty:
12 *      permission to use, copy, modify, and distribute this file
13 *      for any purpose is hereby granted without fee, provided that
14 *      the above copyright notice and this notice appears in all
15 *      copies, and that the name of i-cubed limited not be used in
16 *      advertising or publicity pertaining to distribution of the
17 *      software without specific, written prior permission.
18 *      i-cubed limited makes no representations about the suitability
19 *      of this software for any purpose.
20 *
21 *  Derived from c/src/exec/cpu/no_cpu/cpu.h:
22 *
23 *  COPYRIGHT (c) 1989-1997.
24 *  On-Line Applications Research Corporation (OAR).
25 *
26 *  The license and distribution terms for this file may in
27 *  the file LICENSE in this distribution or at
28 *  http://www.rtems.com/license/LICENSE.
29 *
30 *  $Id$
31 */
32
33#ifndef _RTEMS_OLD_EXCEPTIONS_CPU_H
34#define _RTEMS_OLD_EXCEPTIONS_CPU_H
35
36#ifndef _RTEMS_SCORE_CPU_H
37#error "You should include <rtems/score/cpu.h>"
38#endif
39
40#ifdef __cplusplus
41extern "C" {
42#endif
43
44#ifndef ASM
45struct CPU_Interrupt_frame;
46typedef void ( *ppc_isr_entry )( int, struct CPU_Interrupt_frame * );
47#endif
48
49/* conditional compilation parameters */
50
51/*
52 *  Does RTEMS manage a dedicated interrupt stack in software?
53 *
54 *  If TRUE, then a stack is allocated in _ISR_Handler_initialization.
55 *  If FALSE, nothing is done.
56 *
57 *  If the CPU supports a dedicated interrupt stack in hardware,
58 *  then it is generally the responsibility of the BSP to allocate it
59 *  and set it up.
60 *
61 *  If the CPU does not support a dedicated interrupt stack, then
62 *  the porter has two options: (1) execute interrupts on the
63 *  stack of the interrupted task, and (2) have RTEMS manage a dedicated
64 *  interrupt stack.
65 *
66 *  If this is TRUE, CPU_ALLOCATE_INTERRUPT_STACK should also be TRUE.
67 *
68 *  Only one of CPU_HAS_SOFTWARE_INTERRUPT_STACK and
69 *  CPU_HAS_HARDWARE_INTERRUPT_STACK should be set to TRUE.  It is
70 *  possible that both are FALSE for a particular CPU.  Although it
71 *  is unclear what that would imply about the interrupt processing
72 *  procedure on that CPU.
73 */
74
75#define CPU_HAS_SOFTWARE_INTERRUPT_STACK FALSE
76
77/*
78 *  Does this CPU have hardware support for a dedicated interrupt stack?
79 *
80 *  If TRUE, then it must be installed during initialization.
81 *  If FALSE, then no installation is performed.
82 *
83 *  If this is TRUE, CPU_ALLOCATE_INTERRUPT_STACK should also be TRUE.
84 *
85 *  Only one of CPU_HAS_SOFTWARE_INTERRUPT_STACK and
86 *  CPU_HAS_HARDWARE_INTERRUPT_STACK should be set to TRUE.  It is
87 *  possible that both are FALSE for a particular CPU.  Although it
88 *  is unclear what that would imply about the interrupt processing
89 *  procedure on that CPU.
90 */
91
92/*
93 *  ACB: This is a lie, but it gets us a handle on a call to set up
94 *  a variable derived from the top of the interrupt stack.
95 */
96
97#define CPU_HAS_HARDWARE_INTERRUPT_STACK TRUE
98
99/*
100 *  Does RTEMS allocate a dedicated interrupt stack in the Interrupt Manager?
101 *
102 *  If TRUE, then the memory is allocated during initialization.
103 *  If FALSE, then the memory is allocated during initialization.
104 *
105 *  This should be TRUE is CPU_HAS_SOFTWARE_INTERRUPT_STACK is TRUE
106 *  or CPU_INSTALL_HARDWARE_INTERRUPT_STACK is TRUE.
107 */
108
109#define CPU_ALLOCATE_INTERRUPT_STACK TRUE
110
111/*
112 *  Does the RTEMS invoke the user's ISR with the vector number and
113 *  a pointer to the saved interrupt frame (1) or just the vector
114 *  number (0)?
115 */
116
117#define CPU_ISR_PASSES_FRAME_POINTER 1
118
119/*
120 *  Does the CPU have hardware floating point?
121 *
122 *  If TRUE, then the RTEMS_FLOATING_POINT task attribute is supported.
123 *  If FALSE, then the RTEMS_FLOATING_POINT task attribute is ignored.
124 *
125 *  If there is a FP coprocessor such as the i387 or mc68881, then
126 *  the answer is TRUE.
127 *
128 *  The macro name "PPC_HAS_FPU" should be made CPU specific.
129 *  It indicates whether or not this CPU model has FP support.  For
130 *  example, it would be possible to have an i386_nofp CPU model
131 *  which set this to false to indicate that you have an i386 without
132 *  an i387 and wish to leave floating point support out of RTEMS.
133 */
134
135#if ( PPC_HAS_FPU == 1 )
136#define CPU_HARDWARE_FP     TRUE
137#else
138#define CPU_HARDWARE_FP     FALSE
139#endif
140
141/*
142 *  Are all tasks RTEMS_FLOATING_POINT tasks implicitly?
143 *
144 *  If TRUE, then the RTEMS_FLOATING_POINT task attribute is assumed.
145 *  If FALSE, then the RTEMS_FLOATING_POINT task attribute is followed.
146 *
147 *  If CPU_HARDWARE_FP is FALSE, then this should be FALSE as well.
148 */
149
150#define CPU_ALL_TASKS_ARE_FP     FALSE
151
152/*
153 *  Should the IDLE task have a floating point context?
154 *
155 *  If TRUE, then the IDLE task is created as a RTEMS_FLOATING_POINT task
156 *  and it has a floating point context which is switched in and out.
157 *  If FALSE, then the IDLE task does not have a floating point context.
158 *
159 *  Setting this to TRUE negatively impacts the time required to preempt
160 *  the IDLE task from an interrupt because the floating point context
161 *  must be saved as part of the preemption.
162 */
163
164#define CPU_IDLE_TASK_IS_FP      FALSE
165
166/*
167 *  Should the saving of the floating point registers be deferred
168 *  until a context switch is made to another different floating point
169 *  task?
170 *
171 *  If TRUE, then the floating point context will not be stored until
172 *  necessary.  It will remain in the floating point registers and not
173 *  disturned until another floating point task is switched to.
174 *
175 *  If FALSE, then the floating point context is saved when a floating
176 *  point task is switched out and restored when the next floating point
177 *  task is restored.  The state of the floating point registers between
178 *  those two operations is not specified.
179 *
180 *  If the floating point context does NOT have to be saved as part of
181 *  interrupt dispatching, then it should be safe to set this to TRUE.
182 *
183 *  Setting this flag to TRUE results in using a different algorithm
184 *  for deciding when to save and restore the floating point context.
185 *  The deferred FP switch algorithm minimizes the number of times
186 *  the FP context is saved and restored.  The FP context is not saved
187 *  until a context switch is made to another, different FP task.
188 *  Thus in a system with only one FP task, the FP context will never
189 *  be saved or restored.
190 */
191/*
192 *  ACB Note:  This could make debugging tricky..
193 */
194
195#define CPU_USE_DEFERRED_FP_SWITCH       TRUE
196
197/*
198 *  Does this port provide a CPU dependent IDLE task implementation?
199 *
200 *  If TRUE, then the routine _CPU_Thread_Idle_body
201 *  must be provided and is the default IDLE thread body instead of
202 *  _CPU_Thread_Idle_body.
203 *
204 *  If FALSE, then use the generic IDLE thread body if the BSP does
205 *  not provide one.
206 *
207 *  This is intended to allow for supporting processors which have
208 *  a low power or idle mode.  When the IDLE thread is executed, then
209 *  the CPU can be powered down.
210 *
211 *  The order of precedence for selecting the IDLE thread body is:
212 *
213 *    1.  BSP provided
214 *    2.  CPU dependent (if provided)
215 *    3.  generic (if no BSP and no CPU dependent)
216 */
217
218#define CPU_PROVIDES_IDLE_THREAD_BODY    FALSE
219
220/*
221 *  Does the stack grow up (toward higher addresses) or down
222 *  (toward lower addresses)?
223 *
224 *  If TRUE, then the grows upward.
225 *  If FALSE, then the grows toward smaller addresses.
226 */
227
228#define CPU_STACK_GROWS_UP               FALSE
229
230/*
231 *  The following is the variable attribute used to force alignment
232 *  of critical RTEMS structures.  On some processors it may make
233 *  sense to have these aligned on tighter boundaries than
234 *  the minimum requirements of the compiler in order to have as
235 *  much of the critical data area as possible in a cache line.
236 *
237 *  The placement of this macro in the declaration of the variables
238 *  is based on the syntactically requirements of the GNU C
239 *  "__attribute__" extension.  For example with GNU C, use
240 *  the following to force a structures to a 32 byte boundary.
241 *
242 *      __attribute__ ((aligned (32)))
243 *
244 *  NOTE:  Currently only the Priority Bit Map table uses this feature.
245 *         To benefit from using this, the data must be heavily
246 *         used so it will stay in the cache and used frequently enough
247 *         in the executive to justify turning this on.
248 */
249
250#define CPU_STRUCTURE_ALIGNMENT \
251  __attribute__ ((aligned (PPC_CACHE_ALIGNMENT)))
252
253/*
254 *  Define what is required to specify how the network to host conversion
255 *  routines are handled.
256 */
257
258#define CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES     FALSE
259#define CPU_BIG_ENDIAN                           TRUE
260#define CPU_LITTLE_ENDIAN                        FALSE
261
262/*
263 *  The following defines the number of bits actually used in the
264 *  interrupt field of the task mode.  How those bits map to the
265 *  CPU interrupt levels is defined by the routine _CPU_ISR_Set_level().
266 *
267 *  The interrupt level is bit mapped for the PowerPC family. The
268 *  bits are set to 0 to indicate that a particular exception source
269 *  enabled and 1 if it is disabled.  This keeps with RTEMS convention
270 *  that interrupt level 0 means all sources are enabled.
271 *
272 *  The bits are assigned to correspond to enable bits in the MSR.
273 */
274
275#define PPC_INTERRUPT_LEVEL_ME   0x01
276#define PPC_INTERRUPT_LEVEL_EE   0x02
277#define PPC_INTERRUPT_LEVEL_CE   0x04
278
279/* XXX should these be maskable? */
280#if 0
281#define PPC_INTERRUPT_LEVEL_DE   0x08
282#define PPC_INTERRUPT_LEVEL_BE   0x10
283#define PPC_INTERRUPT_LEVEL_SE   0x20
284#endif
285
286#define CPU_MODES_INTERRUPT_MASK   0x00000007
287
288/*
289 *  Processor defined structures required for cpukit/score.
290 */
291
292/* may need to put some structures here.  */
293
294/*
295 * Contexts
296 *
297 *  Generally there are 2 types of context to save.
298 *     1. Interrupt registers to save
299 *     2. Task level registers to save
300 *
301 *  This means we have the following 3 context items:
302 *     1. task level context stuff::  Context_Control
303 *     2. floating point task stuff:: Context_Control_fp
304 *     3. special interrupt level context :: Context_Control_interrupt
305 *
306 *  On some processors, it is cost-effective to save only the callee
307 *  preserved registers during a task context switch.  This means
308 *  that the ISR code needs to save those registers which do not
309 *  persist across function calls.  It is not mandatory to make this
310 *  distinctions between the caller/callee saves registers for the
311 *  purpose of minimizing context saved during task switch and on interrupts.
312 *  If the cost of saving extra registers is minimal, simplicity is the
313 *  choice.  Save the same context on interrupt entry as for tasks in
314 *  this case.
315 *
316 *  Additionally, if gdb is to be made aware of RTEMS tasks for this CPU, then
317 *  care should be used in designing the context area.
318 *
319 *  On some CPUs with hardware floating point support, the Context_Control_fp
320 *  structure will not be used or it simply consist of an array of a
321 *  fixed number of bytes.   This is done when the floating point context
322 *  is dumped by a "FP save context" type instruction and the format
323 *  is not really defined by the CPU.  In this case, there is no need
324 *  to figure out the exact format -- only the size.  Of course, although
325 *  this is enough information for RTEMS, it is probably not enough for
326 *  a debugger such as gdb.  But that is another problem.
327 */
328
329#ifndef ASM
330typedef struct {
331    uint32_t   gpr1;    /* Stack pointer for all */
332    uint32_t   gpr2;    /* TOC in PowerOpen, reserved SVR4, section ptr EABI + */
333    uint32_t   gpr13;   /* First non volatile PowerOpen, section ptr SVR4/EABI */
334    uint32_t   gpr14;   /* Non volatile for all */
335    uint32_t   gpr15;   /* Non volatile for all */
336    uint32_t   gpr16;   /* Non volatile for all */
337    uint32_t   gpr17;   /* Non volatile for all */
338    uint32_t   gpr18;   /* Non volatile for all */
339    uint32_t   gpr19;   /* Non volatile for all */
340    uint32_t   gpr20;   /* Non volatile for all */
341    uint32_t   gpr21;   /* Non volatile for all */
342    uint32_t   gpr22;   /* Non volatile for all */
343    uint32_t   gpr23;   /* Non volatile for all */
344    uint32_t   gpr24;   /* Non volatile for all */
345    uint32_t   gpr25;   /* Non volatile for all */
346    uint32_t   gpr26;   /* Non volatile for all */
347    uint32_t   gpr27;   /* Non volatile for all */
348    uint32_t   gpr28;   /* Non volatile for all */
349    uint32_t   gpr29;   /* Non volatile for all */
350    uint32_t   gpr30;   /* Non volatile for all */
351    uint32_t   gpr31;   /* Non volatile for all */
352    uint32_t   cr;      /* PART of the CR is non volatile for all */
353    uint32_t   pc;      /* Program counter/Link register */
354    uint32_t   msr;     /* Initial interrupt level */
355} Context_Control;
356
357typedef struct {
358    /* The ABIs (PowerOpen/SVR4/EABI) only require saving f14-f31 over
359     * procedure calls.  However, this would mean that the interrupt
360     * frame had to hold f0-f13, and the fpscr.  And as the majority
361     * of tasks will not have an FP context, we will save the whole
362     * context here.
363     */
364#if (PPC_HAS_DOUBLE == 1)
365    double      f[32];
366    double      fpscr;
367#else
368    float       f[32];
369    float       fpscr;
370#endif
371} Context_Control_fp;
372
373typedef struct CPU_Interrupt_frame {
374    uint32_t   stacklink;       /* Ensure this is a real frame (also reg1 save) */
375    uint32_t   dummy[1];        /* Used by callees: SVR4/EABI */
376
377    /* This is what is left out of the primary contexts */
378    uint32_t   gpr0;
379    uint32_t   gpr2;            /* play safe */
380    uint32_t   gpr3;
381    uint32_t   gpr4;
382    uint32_t   gpr5;
383    uint32_t   gpr6;
384    uint32_t   gpr7;
385    uint32_t   gpr8;
386    uint32_t   gpr9;
387    uint32_t   gpr10;
388    uint32_t   gpr11;
389    uint32_t   gpr12;
390    uint32_t   gpr13;   /* Play safe */
391    uint32_t   gpr28;   /* For internal use by the IRQ handler */
392    uint32_t   gpr29;   /* For internal use by the IRQ handler */
393    uint32_t   gpr30;   /* For internal use by the IRQ handler */
394    uint32_t   gpr31;   /* For internal use by the IRQ handler */
395    uint32_t   cr;      /* Bits of this are volatile, so no-one may save */
396    uint32_t   ctr;
397    uint32_t   xer;
398    uint32_t   lr;
399    uint32_t   pc;
400    uint32_t   msr;
401    uint32_t   pad[3];
402} CPU_Interrupt_frame;
403
404
405/*
406 *  The following table contains the information required to configure
407 *  the PowerPC processor specific parameters.
408 */
409
410typedef struct {
411  void       (*pretasking_hook)( void );
412  void       (*predriver_hook)( void );
413  void       (*postdriver_hook)( void );
414  void       (*idle_task)( void );
415  boolean      do_zero_of_workspace;
416  uint32_t     idle_task_stack_size;
417  uint32_t     interrupt_stack_size;
418  uint32_t     extra_mpci_receive_server_stack;
419  void *     (*stack_allocate_hook)( uint32_t   );
420  void       (*stack_free_hook)( void* );
421  /* end of fields required on all CPUs */
422
423  uint32_t     clicks_per_usec;        /* Timer clicks per microsecond */
424  void       (*spurious_handler)(uint32_t   vector, CPU_Interrupt_frame *);
425  boolean      exceptions_in_RAM;     /* TRUE if in RAM */
426
427#if (defined(ppc403) || defined(ppc405) || defined(mpc860) || defined(mpc821))
428  uint32_t     serial_per_sec;         /* Serial clocks per second */
429  boolean      serial_external_clock;
430  boolean      serial_xon_xoff;
431  boolean      serial_cts_rts;
432  uint32_t     serial_rate;
433  uint32_t     timer_average_overhead; /* Average overhead of timer in ticks */
434  uint32_t     timer_least_valid;      /* Least valid number from timer      */
435  boolean      timer_internal_clock;   /* TRUE, when timer runs with CPU clk */
436#endif
437
438#if (defined(mpc860) || defined(mpc821))
439  uint32_t     clock_speed;            /* Speed of CPU in Hz */
440#endif
441}   rtems_cpu_table;
442#endif
443
444/*
445 *  Macros to access required entires in the CPU Table are in
446 *  the file rtems/system.h.
447 */
448
449/*
450 *  Macros to access PowerPC specific additions to the CPU Table
451 */
452
453#ifndef ASM
454#define rtems_cpu_configuration_get_clicks_per_usec() \
455   (_CPU_Table.clicks_per_usec)
456
457#define rtems_cpu_configuration_get_spurious_handler() \
458   (_CPU_Table.spurious_handler)
459
460#define rtems_cpu_configuration_get_exceptions_in_ram() \
461   (_CPU_Table.exceptions_in_RAM)
462
463#if (defined(ppc403) || defined(ppc405) || defined(mpc860) || defined(mpc821))
464
465#define rtems_cpu_configuration_get_serial_per_sec() \
466   (_CPU_Table.serial_per_sec)
467
468#define rtems_cpu_configuration_get_serial_external_clock() \
469   (_CPU_Table.serial_external_clock)
470
471#define rtems_cpu_configuration_get_serial_xon_xoff() \
472   (_CPU_Table.serial_xon_xoff)
473
474#define rtems_cpu_configuration_get_serial_cts_rts() \
475   (_CPU_Table.serial_cts_rts)
476
477#define rtems_cpu_configuration_get_serial_rate() \
478   (_CPU_Table.serial_rate)
479
480#define rtems_cpu_configuration_get_timer_average_overhead() \
481   (_CPU_Table.timer_average_overhead)
482
483#define rtems_cpu_configuration_get_timer_least_valid() \
484   (_CPU_Table.timer_least_valid)
485
486#define rtems_cpu_configuration_get_timer_internal_clock() \
487   (_CPU_Table.timer_internal_clock)
488
489#endif
490
491#if (defined(mpc860) || defined(mpc821))
492#define rtems_cpu_configuration_get_clock_speed() \
493   (_CPU_Table.clock_speed)
494#endif
495
496#endif
497
498/*
499 *  The following type defines an entry in the PPC's trap table.
500 *
501 *  NOTE: The instructions chosen are RTEMS dependent although one is
502 *        obligated to use two of the four instructions to perform a
503 *        long jump.  The other instructions load one register with the
504 *        trap type (a.k.a. vector) and another with the psr.
505 */
506 
507#ifndef ASM
508typedef struct {
509  uint32_t     stwu_r1;                       /* stwu  %r1, -(??+IP_END)(%1)*/
510  uint32_t     stw_r0;                        /* stw   %r0, IP_0(%r1)       */
511  uint32_t     li_r0_IRQ;                     /* li    %r0, _IRQ            */
512  uint32_t     b_Handler;                     /* b     PROC (_ISR_Handler)  */
513} CPU_Trap_table_entry;
514#endif
515
516/*
517 *  This variable is optional.  It is used on CPUs on which it is difficult
518 *  to generate an "uninitialized" FP context.  It is filled in by
519 *  _CPU_Initialize and copied into the task's FP context area during
520 *  _CPU_Context_Initialize.
521 */
522
523#ifndef ASM
524/* EXTERN Context_Control_fp  _CPU_Null_fp_context; */
525#endif
526
527/*
528 *  On some CPUs, RTEMS supports a software managed interrupt stack.
529 *  This stack is allocated by the Interrupt Manager and the switch
530 *  is performed in _ISR_Handler.  These variables contain pointers
531 *  to the lowest and highest addresses in the chunk of memory allocated
532 *  for the interrupt stack.  Since it is unknown whether the stack
533 *  grows up or down (in general), this give the CPU dependent
534 *  code the option of picking the version it wants to use.
535 *
536 *  NOTE: These two variables are required if the macro
537 *        CPU_HAS_SOFTWARE_INTERRUPT_STACK is defined as TRUE.
538 */
539
540#ifndef ASM
541SCORE_EXTERN void               *_CPU_Interrupt_stack_low;
542SCORE_EXTERN void               *_CPU_Interrupt_stack_high;
543#endif
544
545/*
546 *  With some compilation systems, it is difficult if not impossible to
547 *  call a high-level language routine from assembly language.  This
548 *  is especially true of commercial Ada compilers and name mangling
549 *  C++ ones.  This variable can be optionally defined by the CPU porter
550 *  and contains the address of the routine _Thread_Dispatch.  This
551 *  can make it easier to invoke that routine at the end of the interrupt
552 *  sequence (if a dispatch is necessary).
553 */
554
555#ifndef ASM
556/* EXTERN void           (*_CPU_Thread_dispatch_pointer)(); */
557#endif
558
559/*
560 *  Nothing prevents the porter from declaring more CPU specific variables.
561 */
562
563
564#ifndef ASM
565SCORE_EXTERN struct {
566  uint32_t   volatile* Nest_level;
567  uint32_t   volatile* Disable_level;
568  void *Vector_table;
569  void *Stack;
570  uint32_t   Default_r2;
571  uint32_t   Default_r13;
572  volatile boolean *Switch_necessary;
573  boolean *Signal;
574
575  uint32_t   msr_initial;
576} _CPU_IRQ_info CPU_STRUCTURE_ALIGNMENT;
577#endif
578
579/*
580 *  The size of the floating point context area.  On some CPUs this
581 *  will not be a "sizeof" because the format of the floating point
582 *  area is not defined -- only the size is.  This is usually on
583 *  CPUs with a "floating point save context" instruction.
584 */
585
586#define CPU_CONTEXT_FP_SIZE sizeof( Context_Control_fp )
587
588/*
589 * (Optional) # of bytes for libmisc/stackchk to check
590 * If not specifed, then it defaults to something reasonable
591 * for most architectures.
592 */
593
594#define CPU_STACK_CHECK_SIZE    (128)
595
596/*
597 *  Amount of extra stack (above minimum stack size) required by
598 *  MPCI receive server thread.  Remember that in a multiprocessor
599 *  system this thread must exist and be able to process all directives.
600 */
601
602#define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 0
603
604/*
605 *  This defines the number of entries in the ISR_Vector_table managed
606 *  by RTEMS.
607 */
608
609#define CPU_INTERRUPT_NUMBER_OF_VECTORS     (PPC_INTERRUPT_MAX)
610#define CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER (PPC_INTERRUPT_MAX - 1)
611
612/*
613 *  This is defined if the port has a special way to report the ISR nesting
614 *  level.  Most ports maintain the variable _ISR_Nest_level.
615 */
616
617#define CPU_PROVIDES_ISR_IS_IN_PROGRESS TRUE
618
619/*
620 *  Should be large enough to run all RTEMS tests.  This insures
621 *  that a "reasonable" small application should not have any problems.
622 */
623
624#define CPU_STACK_MINIMUM_SIZE          (1024*8)
625
626/*
627 *  CPU's worst alignment requirement for data types on a byte boundary.  This
628 *  alignment does not take into account the requirements for the stack.
629 */
630
631#define CPU_ALIGNMENT              (PPC_ALIGNMENT)
632
633/*
634 *  This number corresponds to the byte alignment requirement for the
635 *  heap handler.  This alignment requirement may be stricter than that
636 *  for the data types alignment specified by CPU_ALIGNMENT.  It is
637 *  common for the heap to follow the same alignment requirement as
638 *  CPU_ALIGNMENT.  If the CPU_ALIGNMENT is strict enough for the heap,
639 *  then this should be set to CPU_ALIGNMENT.
640 *
641 *  NOTE:  This does not have to be a power of 2.  It does have to
642 *         be greater or equal to than CPU_ALIGNMENT.
643 */
644
645#define CPU_HEAP_ALIGNMENT         (PPC_ALIGNMENT)
646
647/*
648 *  This number corresponds to the byte alignment requirement for memory
649 *  buffers allocated by the partition manager.  This alignment requirement
650 *  may be stricter than that for the data types alignment specified by
651 *  CPU_ALIGNMENT.  It is common for the partition to follow the same
652 *  alignment requirement as CPU_ALIGNMENT.  If the CPU_ALIGNMENT is strict
653 *  enough for the partition, then this should be set to CPU_ALIGNMENT.
654 *
655 *  NOTE:  This does not have to be a power of 2.  It does have to
656 *         be greater or equal to than CPU_ALIGNMENT.
657 */
658
659#define CPU_PARTITION_ALIGNMENT    (PPC_ALIGNMENT)
660
661/*
662 *  This number corresponds to the byte alignment requirement for the
663 *  stack.  This alignment requirement may be stricter than that for the
664 *  data types alignment specified by CPU_ALIGNMENT.  If the CPU_ALIGNMENT
665 *  is strict enough for the stack, then this should be set to 0.
666 *
667 *  NOTE:  This must be a power of 2 either 0 or greater than CPU_ALIGNMENT.
668 */
669
670#define CPU_STACK_ALIGNMENT        (PPC_STACK_ALIGNMENT)
671
672/*
673 *  ISR handler macros
674 */
675
676#ifndef ASM
677void _CPU_Initialize_vectors(void);
678#endif
679
680/*
681 *  Disable all interrupts for an RTEMS critical section.  The previous
682 *  level is returned in _isr_cookie.
683 */
684
685#ifndef ASM
686extern const unsigned int _PPC_MSR_DISABLE_MASK;
687
688#define _CPU_MSR_Value( _msr_value ) \
689  do { \
690    _msr_value = 0; \
691    asm volatile ("mfmsr %0" : "=&r" ((_msr_value)) : "0" ((_msr_value))); \
692  } while (0)
693
694#define _CPU_MSR_SET( _msr_value ) \
695{ asm volatile ("mtmsr %0" : "=&r" ((_msr_value)) : "0" ((_msr_value))); }
696
697#if 0
698#define _CPU_ISR_Disable( _isr_cookie ) \
699  { register unsigned int _disable_mask = _PPC_MSR_DISABLE_MASK; \
700    _isr_cookie = 0; \
701    asm volatile (
702        "mfmsr %0" : \
703        "=r" ((_isr_cookie)) : \
704        "0" ((_isr_cookie)) \
705    ); \
706    asm volatile (
707        "andc %1,%0,%1" : \
708        "=r" ((_isr_cookie)), "=&r" ((_disable_mask)) : \
709        "0" ((_isr_cookie)), "1" ((_disable_mask)) \
710    ); \
711    asm volatile (
712        "mtmsr %1" : \
713        "=r" ((_disable_mask)) : \
714        "0" ((_disable_mask)) \
715    ); \
716  }
717#endif
718
719#define _CPU_ISR_Disable( _isr_cookie ) \
720  { register unsigned int _disable_mask = _PPC_MSR_DISABLE_MASK; \
721    _isr_cookie = 0; \
722    asm volatile ( \
723        "mfmsr %0; andc %1,%0,%1; mtmsr %1" : \
724        "=&r" ((_isr_cookie)), "=&r" ((_disable_mask)) : \
725        "0" ((_isr_cookie)), "1" ((_disable_mask)) \
726        ); \
727  }
728#endif
729
730/*
731 *  Enable interrupts to the previous level (returned by _CPU_ISR_Disable).
732 *  This indicates the end of an RTEMS critical section.  The parameter
733 *  _isr_cookie is not modified.
734 */
735
736#ifndef ASM
737#define _CPU_ISR_Enable( _isr_cookie )  \
738  { \
739     asm volatile ( "mtmsr %0" : \
740                   "=r" ((_isr_cookie)) : \
741                   "0" ((_isr_cookie))); \
742  }
743#endif
744
745/*
746 *  This temporarily restores the interrupt to _isr_cookie before immediately
747 *  disabling them again.  This is used to divide long RTEMS critical
748 *  sections into two or more parts.  The parameter _isr_cookie is not
749 *  modified.
750 *
751 *  NOTE:  The version being used is not very optimized but it does
752 *         not trip a problem in gcc where the disable mask does not
753 *         get loaded.  Check this for future (post 10/97 gcc versions.
754 */
755
756#ifndef ASM
757#define _CPU_ISR_Flash( _isr_cookie ) \
758  { register unsigned int _disable_mask = _PPC_MSR_DISABLE_MASK; \
759    asm volatile ( \
760      "mtmsr %0; andc %1,%0,%1; mtmsr %1" : \
761      "=r" ((_isr_cookie)), "=r" ((_disable_mask)) : \
762      "0" ((_isr_cookie)), "1" ((_disable_mask)) \
763    ); \
764  }
765#endif
766
767/*
768 *  Map interrupt level in task mode onto the hardware that the CPU
769 *  actually provides.  Currently, interrupt levels which do not
770 *  map onto the CPU in a generic fashion are undefined.  Someday,
771 *  it would be nice if these were "mapped" by the application
772 *  via a callout.  For example, m68k has 8 levels 0 - 7, levels
773 *  8 - 255 would be available for bsp/application specific meaning.
774 *  This could be used to manage a programmable interrupt controller
775 *  via the rtems_task_mode directive.
776 */
777
778#ifndef ASM
779uint32_t   _CPU_ISR_Calculate_level(
780  uint32_t   new_level
781);
782
783void _CPU_ISR_Set_level(
784  uint32_t   new_level
785);
786 
787uint32_t   _CPU_ISR_Get_level( void );
788
789void _CPU_ISR_install_raw_handler(
790  uint32_t    vector,
791  proc_ptr    new_handler,
792  proc_ptr   *old_handler
793);
794#endif
795
796/* end of ISR handler macros */
797
798/*
799 *  Simple spin delay in microsecond units for device drivers.
800 *  This is very dependent on the clock speed of the target.
801 */
802
803#ifndef ASM
804
805#define CPU_Get_timebase_low( _value ) \
806    asm volatile( "mftb  %0" : "=r" (_value) )
807
808#define rtems_bsp_delay( _microseconds ) \
809  do { \
810    uint32_t   start, ticks, now; \
811    CPU_Get_timebase_low( start ) ; \
812    ticks = (_microseconds) * _CPU_Table.clicks_per_usec; \
813    do \
814      CPU_Get_timebase_low( now ) ; \
815    while (now - start < ticks); \
816  } while (0)
817
818#define rtems_bsp_delay_in_bus_cycles( _cycles ) \
819  do { \
820    uint32_t   start, now; \
821    CPU_Get_timebase_low( start ); \
822    do \
823      CPU_Get_timebase_low( now ); \
824    while (now - start < (_cycles)); \
825  } while (0)
826
827#endif
828
829
830/* Context handler macros */
831
832/*
833 *  Initialize the context to a state suitable for starting a
834 *  task after a context restore operation.  Generally, this
835 *  involves:
836 *
837 *     - setting a starting address
838 *     - preparing the stack
839 *     - preparing the stack and frame pointers
840 *     - setting the proper interrupt level in the context
841 *     - initializing the floating point context
842 *
843 *  This routine generally does not set any unnecessary register
844 *  in the context.  The state of the "general data" registers is
845 *  undefined at task start time.
846 *
847 *  NOTE:  Implemented as a subroutine for the SPARC port.
848 */
849
850#ifndef ASM
851void _CPU_Context_Initialize(
852  Context_Control  *the_context,
853  uint32_t         *stack_base,
854  uint32_t          size,
855  uint32_t          new_level,
856  void             *entry_point,
857  boolean           is_fp
858);
859#endif
860
861/*
862 *  This routine is responsible for somehow restarting the currently
863 *  executing task.  If you are lucky, then all that is necessary
864 *  is restoring the context.  Otherwise, there will need to be
865 *  a special assembly routine which does something special in this
866 *  case.  Context_Restore should work most of the time.  It will
867 *  not work if restarting self conflicts with the stack frame
868 *  assumptions of restoring a context.
869 */
870
871#define _CPU_Context_Restart_self( _the_context ) \
872   _CPU_Context_restore( (_the_context) );
873
874/*
875 *  The purpose of this macro is to allow the initial pointer into
876 *  a floating point context area (used to save the floating point
877 *  context) to be at an arbitrary place in the floating point
878 *  context area.
879 *
880 *  This is necessary because some FP units are designed to have
881 *  their context saved as a stack which grows into lower addresses.
882 *  Other FP units can be saved by simply moving registers into offsets
883 *  from the base of the context area.  Finally some FP units provide
884 *  a "dump context" instruction which could fill in from high to low
885 *  or low to high based on the whim of the CPU designers.
886 */
887
888#define _CPU_Context_Fp_start( _base, _offset ) \
889   ( (void *) _Addresses_Add_offset( (_base), (_offset) ) )
890
891/*
892 *  This routine initializes the FP context area passed to it to.
893 *  There are a few standard ways in which to initialize the
894 *  floating point context.  The code included for this macro assumes
895 *  that this is a CPU in which a "initial" FP context was saved into
896 *  _CPU_Null_fp_context and it simply copies it to the destination
897 *  context passed to it.
898 *
899 *  Other models include (1) not doing anything, and (2) putting
900 *  a "null FP status word" in the correct place in the FP context.
901 */
902
903#define _CPU_Context_Initialize_fp( _destination ) \
904  { \
905   ((Context_Control_fp *) *((void **) _destination))->fpscr = PPC_INIT_FPSCR; \
906  }
907
908/* end of Context handler macros */
909
910/* Fatal Error manager macros */
911
912/*
913 *  This routine copies _error into a known place -- typically a stack
914 *  location or a register, optionally disables interrupts, and
915 *  halts/stops the CPU.
916 */
917
918#define _CPU_Fatal_halt( _error ) \
919  _CPU_Fatal_error(_error)
920
921/* end of Fatal Error manager macros */
922
923/* Bitfield handler macros */
924
925/*
926 *  This routine sets _output to the bit number of the first bit
927 *  set in _value.  _value is of CPU dependent type Priority_Bit_map_control.
928 *  This type may be either 16 or 32 bits wide although only the 16
929 *  least significant bits will be used.
930 *
931 *  There are a number of variables in using a "find first bit" type
932 *  instruction.
933 *
934 *    (1) What happens when run on a value of zero?
935 *    (2) Bits may be numbered from MSB to LSB or vice-versa.
936 *    (3) The numbering may be zero or one based.
937 *    (4) The "find first bit" instruction may search from MSB or LSB.
938 *
939 *  RTEMS guarantees that (1) will never happen so it is not a concern.
940 *  (2),(3), (4) are handled by the macros _CPU_Priority_mask() and
941 *  _CPU_Priority_Bits_index().  These three form a set of routines
942 *  which must logically operate together.  Bits in the _value are
943 *  set and cleared based on masks built by _CPU_Priority_mask().
944 *  The basic major and minor values calculated by _Priority_Major()
945 *  and _Priority_Minor() are "massaged" by _CPU_Priority_Bits_index()
946 *  to properly range between the values returned by the "find first bit"
947 *  instruction.  This makes it possible for _Priority_Get_highest() to
948 *  calculate the major and directly index into the minor table.
949 *  This mapping is necessary to ensure that 0 (a high priority major/minor)
950 *  is the first bit found.
951 *
952 *  This entire "find first bit" and mapping process depends heavily
953 *  on the manner in which a priority is broken into a major and minor
954 *  components with the major being the 4 MSB of a priority and minor
955 *  the 4 LSB.  Thus (0 << 4) + 0 corresponds to priority 0 -- the highest
956 *  priority.  And (15 << 4) + 14 corresponds to priority 254 -- the next
957 *  to the lowest priority.
958 *
959 *  If your CPU does not have a "find first bit" instruction, then
960 *  there are ways to make do without it.  Here are a handful of ways
961 *  to implement this in software:
962 *
963 *    - a series of 16 bit test instructions
964 *    - a "binary search using if's"
965 *    - _number = 0
966 *      if _value > 0x00ff
967 *        _value >>=8
968 *        _number = 8;
969 *
970 *      if _value > 0x0000f
971 *        _value >=8
972 *        _number += 4
973 *
974 *      _number += bit_set_table[ _value ]
975 *
976 *    where bit_set_table[ 16 ] has values which indicate the first
977 *      bit set
978 */
979
980#define _CPU_Bitfield_Find_first_bit( _value, _output ) \
981  { \
982    asm volatile ("cntlzw %0, %1" : "=r" ((_output)), "=r" ((_value)) : \
983                  "1" ((_value))); \
984  }
985
986/* end of Bitfield handler macros */
987
988/*
989 *  This routine builds the mask which corresponds to the bit fields
990 *  as searched by _CPU_Bitfield_Find_first_bit().  See the discussion
991 *  for that routine.
992 */
993
994#define _CPU_Priority_Mask( _bit_number ) \
995  ( 0x80000000 >> (_bit_number) )
996
997/*
998 *  This routine translates the bit numbers returned by
999 *  _CPU_Bitfield_Find_first_bit() into something suitable for use as
1000 *  a major or minor component of a priority.  See the discussion
1001 *  for that routine.
1002 */
1003
1004#define _CPU_Priority_bits_index( _priority ) \
1005  (_priority)
1006
1007/* end of Priority handler macros */
1008
1009/* variables */
1010
1011#ifndef ASM
1012extern const uint32_t   _CPU_msrs[4];
1013#endif
1014
1015/* functions */
1016
1017#ifndef ASM
1018
1019/*
1020 *  _CPU_Initialize
1021 *
1022 *  This routine performs CPU dependent initialization.
1023 */
1024
1025void _CPU_Initialize(
1026  rtems_cpu_table  *cpu_table,
1027  void            (*thread_dispatch)
1028);
1029
1030/*
1031 *  _CPU_ISR_install_vector
1032 *
1033 *  This routine installs an interrupt vector.
1034 */
1035
1036void _CPU_ISR_install_vector(
1037  uint32_t    vector,
1038  proc_ptr    new_handler,
1039  proc_ptr   *old_handler
1040);
1041
1042/*
1043 *  _CPU_Install_interrupt_stack
1044 *
1045 *  This routine installs the hardware interrupt stack pointer.
1046 *
1047 *  NOTE:  It need only be provided if CPU_HAS_HARDWARE_INTERRUPT_STACK
1048 *         is TRUE.
1049 */
1050
1051void _CPU_Install_interrupt_stack( void );
1052
1053/*
1054 *  _CPU_Context_switch
1055 *
1056 *  This routine switches from the run context to the heir context.
1057 */
1058
1059void _CPU_Context_switch(
1060  Context_Control  *run,
1061  Context_Control  *heir
1062);
1063
1064/*
1065 *  _CPU_Context_restore
1066 *
1067 *  This routine is generallu used only to restart self in an
1068 *  efficient manner.  It may simply be a label in _CPU_Context_switch.
1069 *
1070 *  NOTE: May be unnecessary to reload some registers.
1071 */
1072
1073void _CPU_Context_restore(
1074  Context_Control *new_context
1075);
1076
1077/*
1078 *  _CPU_Context_save_fp
1079 *
1080 *  This routine saves the floating point context passed to it.
1081 */
1082
1083void _CPU_Context_save_fp(
1084  void **fp_context_ptr
1085);
1086
1087/*
1088 *  _CPU_Context_restore_fp
1089 *
1090 *  This routine restores the floating point context passed to it.
1091 */
1092
1093void _CPU_Context_restore_fp(
1094  void **fp_context_ptr
1095);
1096
1097void _CPU_Fatal_error(
1098  uint32_t   _error
1099);
1100
1101/*  The following routine swaps the endian format of an unsigned int.
1102 *  It must be static because it is referenced indirectly.
1103 *
1104 *  This version will work on any processor, but if there is a better
1105 *  way for your CPU PLEASE use it.  The most common way to do this is to:
1106 *
1107 *     swap least significant two bytes with 16-bit rotate
1108 *     swap upper and lower 16-bits
1109 *     swap most significant two bytes with 16-bit rotate
1110 *
1111 *  Some CPUs have special instructions which swap a 32-bit quantity in
1112 *  a single instruction (e.g. i486).  It is probably best to avoid
1113 *  an "endian swapping control bit" in the CPU.  One good reason is
1114 *  that interrupts would probably have to be disabled to insure that
1115 *  an interrupt does not try to access the same "chunk" with the wrong
1116 *  endian.  Another good reason is that on some CPUs, the endian bit
1117 *  endianness for ALL fetches -- both code and data -- so the code
1118 *  will be fetched incorrectly.
1119 */
1120 
1121static inline uint32_t CPU_swap_u32(
1122  uint32_t value
1123)
1124{
1125  uint32_t   swapped;
1126 
1127  asm volatile("rlwimi %0,%1,8,24,31;"
1128               "rlwimi %0,%1,24,16,23;"
1129               "rlwimi %0,%1,8,8,15;"
1130               "rlwimi %0,%1,24,0,7;" :
1131               "=&r" ((swapped)) : "r" ((value)));
1132
1133  return( swapped );
1134}
1135
1136#define CPU_swap_u16( value ) \
1137  (((value&0xff) << 8) | ((value >> 8)&0xff))
1138
1139/*
1140 *  Routines to access the decrementer register
1141 */
1142
1143#define PPC_Set_decrementer( _clicks ) \
1144  do { \
1145    asm volatile( "mtdec %0" : "=r" ((_clicks)) : "r" ((_clicks)) ); \
1146  } while (0)
1147
1148/*
1149 *  Routines to access the time base register
1150 */
1151
1152static inline uint64_t   PPC_Get_timebase_register( void )
1153{
1154  uint32_t   tbr_low;
1155  uint32_t   tbr_high;
1156  uint32_t   tbr_high_old;
1157  uint64_t   tbr;
1158
1159  do {
1160    asm volatile( "mftbu %0" : "=r" (tbr_high_old));
1161    asm volatile( "mftb  %0" : "=r" (tbr_low));
1162    asm volatile( "mftbu %0" : "=r" (tbr_high));
1163  } while ( tbr_high_old != tbr_high );
1164
1165  tbr = tbr_high;
1166  tbr <<= 32;
1167  tbr |= tbr_low;
1168  return tbr;
1169}
1170
1171/* ASM */
1172#endif
1173
1174#ifdef __cplusplus
1175}
1176#endif
1177
1178#endif
Note: See TracBrowser for help on using the repository browser.