source: rtems/cpukit/score/cpu/arm/rtems/score/cpu.h @ 2d877aa

4.104.114.84.95
Last change on this file since 2d877aa was 2d877aa, checked in by Joel Sherrill <joel.sherrill@…>, on 01/03/01 at 16:29:04

2001-01-03 Joel Sherrill <joel@…>

  • rtems/score/cpu.h: Added _CPU_Initialize_vectors().
  • Property mode set to 100644
File size: 29.6 KB
Line 
1/*  cpu.h
2 *
3 *  This include file contains information pertaining to the arm
4 *  processor.
5 *
6 *  COPYRIGHT (c) 2000 Canon Research Centre France SA.
7 *  Emmanuel Raguet, mailto:raguet@crf.canon.fr
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 */
14
15#ifndef __CPU_h
16#define __CPU_h
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22#include <rtems/score/arm.h>            /* pick up machine definitions */
23#ifndef ASM
24#include <rtems/score/armtypes.h>
25#endif
26
27/* conditional compilation parameters */
28
29/*
30 *  Should the calls to _Thread_Enable_dispatch be inlined?
31 *
32 *  If TRUE, then they are inlined.
33 *  If FALSE, then a subroutine call is made.
34 *
35 *  Basically this is an example of the classic trade-off of size
36 *  versus speed.  Inlining the call (TRUE) typically increases the
37 *  size of RTEMS while speeding up the enabling of dispatching.
38 *  [NOTE: In general, the _Thread_Dispatch_disable_level will
39 *  only be 0 or 1 unless you are in an interrupt handler and that
40 *  interrupt handler invokes the executive.]  When not inlined
41 *  something calls _Thread_Enable_dispatch which in turns calls
42 *  _Thread_Dispatch.  If the enable dispatch is inlined, then
43 *  one subroutine call is avoided entirely.]
44 */
45
46#define CPU_INLINE_ENABLE_DISPATCH       FALSE
47
48/*
49 *  Should the body of the search loops in _Thread_queue_Enqueue_priority
50 *  be unrolled one time?  In unrolled each iteration of the loop examines
51 *  two "nodes" on the chain being searched.  Otherwise, only one node
52 *  is examined per iteration.
53 *
54 *  If TRUE, then the loops are unrolled.
55 *  If FALSE, then the loops are not unrolled.
56 *
57 *  The primary factor in making this decision is the cost of disabling
58 *  and enabling interrupts (_ISR_Flash) versus the cost of rest of the
59 *  body of the loop.  On some CPUs, the flash is more expensive than
60 *  one iteration of the loop body.  In this case, it might be desirable
61 *  to unroll the loop.  It is important to note that on some CPUs, this
62 *  code is the longest interrupt disable period in RTEMS.  So it is
63 *  necessary to strike a balance when setting this parameter.
64 */
65
66#define CPU_UNROLL_ENQUEUE_PRIORITY      FALSE
67
68/*
69 *  Does RTEMS manage a dedicated interrupt stack in software?
70 *
71 *  If TRUE, then a stack is allocated in _Interrupt_Manager_initialization.
72 *  If FALSE, nothing is done.
73 *
74 *  If the CPU supports a dedicated interrupt stack in hardware,
75 *  then it is generally the responsibility of the BSP to allocate it
76 *  and set it up.
77 *
78 *  If the CPU does not support a dedicated interrupt stack, then
79 *  the porter has two options: (1) execute interrupts on the
80 *  stack of the interrupted task, and (2) have RTEMS manage a dedicated
81 *  interrupt stack.
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#define CPU_HAS_SOFTWARE_INTERRUPT_STACK FALSE
93
94/*
95 *  Does this CPU have hardware support for a dedicated interrupt stack?
96 *
97 *  If TRUE, then it must be installed during initialization.
98 *  If FALSE, then no installation is performed.
99 *
100 *  If this is TRUE, CPU_ALLOCATE_INTERRUPT_STACK should also be TRUE.
101 *
102 *  Only one of CPU_HAS_SOFTWARE_INTERRUPT_STACK and
103 *  CPU_HAS_HARDWARE_INTERRUPT_STACK should be set to TRUE.  It is
104 *  possible that both are FALSE for a particular CPU.  Although it
105 *  is unclear what that would imply about the interrupt processing
106 *  procedure on that CPU.
107 */
108
109#define CPU_HAS_HARDWARE_INTERRUPT_STACK FALSE
110
111/*
112 *  Does RTEMS allocate a dedicated interrupt stack in the Interrupt Manager?
113 *
114 *  If TRUE, then the memory is allocated during initialization.
115 *  If FALSE, then the memory is allocated during initialization.
116 *
117 *  This should be TRUE is CPU_HAS_SOFTWARE_INTERRUPT_STACK is TRUE
118 *  or CPU_INSTALL_HARDWARE_INTERRUPT_STACK is TRUE.
119 */
120
121#define CPU_ALLOCATE_INTERRUPT_STACK FALSE
122
123/*
124 *  Does the RTEMS invoke the user's ISR with the vector number and
125 *  a pointer to the saved interrupt frame (1) or just the vector
126 *  number (0)?
127 */
128
129#define CPU_ISR_PASSES_FRAME_POINTER 0
130
131/*
132 *  Does the CPU have hardware floating point?
133 *
134 *  If TRUE, then the RTEMS_FLOATING_POINT task attribute is supported.
135 *  If FALSE, then the RTEMS_FLOATING_POINT task attribute is ignored.
136 *
137 *  If there is a FP coprocessor such as the i387 or mc68881, then
138 *  the answer is TRUE.
139 *
140 *  The macro name "NO_CPU_HAS_FPU" should be made CPU specific.
141 *  It indicates whether or not this CPU model has FP support.  For
142 *  example, it would be possible to have an i386_nofp CPU model
143 *  which set this to false to indicate that you have an i386 without
144 *  an i387 and wish to leave floating point support out of RTEMS.
145 */
146
147#if ( ARM_HAS_FPU == 1 )
148#define CPU_HARDWARE_FP     TRUE
149#else
150#define CPU_HARDWARE_FP     FALSE
151#endif
152
153#define CPU_SOFTWARE_FP     FALSE
154
155/*
156 *  Are all tasks RTEMS_FLOATING_POINT tasks implicitly?
157 *
158 *  If TRUE, then the RTEMS_FLOATING_POINT task attribute is assumed.
159 *  If FALSE, then the RTEMS_FLOATING_POINT task attribute is followed.
160 *
161 *  So far, the only CPU in which this option has been used is the
162 *  HP PA-RISC.  The HP C compiler and gcc both implicitly use the
163 *  floating point registers to perform integer multiplies.  If
164 *  a function which you would not think utilize the FP unit DOES,
165 *  then one can not easily predict which tasks will use the FP hardware.
166 *  In this case, this option should be TRUE.
167 *
168 *  If CPU_HARDWARE_FP is FALSE, then this should be FALSE as well.
169 */
170
171#define CPU_ALL_TASKS_ARE_FP     FALSE
172
173/*
174 *  Should the IDLE task have a floating point context?
175 *
176 *  If TRUE, then the IDLE task is created as a RTEMS_FLOATING_POINT task
177 *  and it has a floating point context which is switched in and out.
178 *  If FALSE, then the IDLE task does not have a floating point context.
179 *
180 *  Setting this to TRUE negatively impacts the time required to preempt
181 *  the IDLE task from an interrupt because the floating point context
182 *  must be saved as part of the preemption.
183 */
184
185#define CPU_IDLE_TASK_IS_FP      FALSE
186
187/*
188 *  Should the saving of the floating point registers be deferred
189 *  until a context switch is made to another different floating point
190 *  task?
191 *
192 *  If TRUE, then the floating point context will not be stored until
193 *  necessary.  It will remain in the floating point registers and not
194 *  disturned until another floating point task is switched to.
195 *
196 *  If FALSE, then the floating point context is saved when a floating
197 *  point task is switched out and restored when the next floating point
198 *  task is restored.  The state of the floating point registers between
199 *  those two operations is not specified.
200 *
201 *  If the floating point context does NOT have to be saved as part of
202 *  interrupt dispatching, then it should be safe to set this to TRUE.
203 *
204 *  Setting this flag to TRUE results in using a different algorithm
205 *  for deciding when to save and restore the floating point context.
206 *  The deferred FP switch algorithm minimizes the number of times
207 *  the FP context is saved and restored.  The FP context is not saved
208 *  until a context switch is made to another, different FP task.
209 *  Thus in a system with only one FP task, the FP context will never
210 *  be saved or restored.
211 */
212
213#define CPU_USE_DEFERRED_FP_SWITCH   FALSE
214
215/*
216 *  Does this port provide a CPU dependent IDLE task implementation?
217 *
218 *  If TRUE, then the routine _CPU_Thread_Idle_body
219 *  must be provided and is the default IDLE thread body instead of
220 *  _CPU_Thread_Idle_body.
221 *
222 *  If FALSE, then use the generic IDLE thread body if the BSP does
223 *  not provide one.
224 *
225 *  This is intended to allow for supporting processors which have
226 *  a low power or idle mode.  When the IDLE thread is executed, then
227 *  the CPU can be powered down.
228 *
229 *  The order of precedence for selecting the IDLE thread body is:
230 *
231 *    1.  BSP provided
232 *    2.  CPU dependent (if provided)
233 *    3.  generic (if no BSP and no CPU dependent)
234 */
235
236#define CPU_PROVIDES_IDLE_THREAD_BODY    FALSE
237
238/*
239 *  Does the stack grow up (toward higher addresses) or down
240 *  (toward lower addresses)?
241 *
242 *  If TRUE, then the grows upward.
243 *  If FALSE, then the grows toward smaller addresses.
244 */
245
246#define CPU_STACK_GROWS_UP               FALSE
247
248/*
249 *  The following is the variable attribute used to force alignment
250 *  of critical RTEMS structures.  On some processors it may make
251 *  sense to have these aligned on tighter boundaries than
252 *  the minimum requirements of the compiler in order to have as
253 *  much of the critical data area as possible in a cache line.
254 *
255 *  The placement of this macro in the declaration of the variables
256 *  is based on the syntactically requirements of the GNU C
257 *  "__attribute__" extension.  For example with GNU C, use
258 *  the following to force a structures to a 32 byte boundary.
259 *
260 *      __attribute__ ((aligned (32)))
261 *
262 *  NOTE:  Currently only the Priority Bit Map table uses this feature.
263 *         To benefit from using this, the data must be heavily
264 *         used so it will stay in the cache and used frequently enough
265 *         in the executive to justify turning this on.
266 */
267
268#define CPU_STRUCTURE_ALIGNMENT  __attribute__ ((aligned (32)))
269
270/*
271 *  Define what is required to specify how the network to host conversion
272 *  routines are handled.
273 */
274
275#define CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES     FALSE
276#define CPU_BIG_ENDIAN                           TRUE
277#define CPU_LITTLE_ENDIAN                        FALSE
278
279/*
280 *  The following defines the number of bits actually used in the
281 *  interrupt field of the task mode.  How those bits map to the
282 *  CPU interrupt levels is defined by the routine _CPU_ISR_Set_level().
283 */
284
285#define CPU_MODES_INTERRUPT_MASK   0x00000001
286
287/*
288 *  Processor defined structures
289 *
290 *  Examples structures include the descriptor tables from the i386
291 *  and the processor control structure on the i960ca.
292 */
293
294/* may need to put some structures here.  */
295
296/*
297 * Contexts
298 *
299 *  Generally there are 2 types of context to save.
300 *     1. Interrupt registers to save
301 *     2. Task level registers to save
302 *
303 *  This means we have the following 3 context items:
304 *     1. task level context stuff::  Context_Control
305 *     2. floating point task stuff:: Context_Control_fp
306 *     3. special interrupt level context :: Context_Control_interrupt
307 *
308 *  On some processors, it is cost-effective to save only the callee
309 *  preserved registers during a task context switch.  This means
310 *  that the ISR code needs to save those registers which do not
311 *  persist across function calls.  It is not mandatory to make this
312 *  distinctions between the caller/callee saves registers for the
313 *  purpose of minimizing context saved during task switch and on interrupts.
314 *  If the cost of saving extra registers is minimal, simplicity is the
315 *  choice.  Save the same context on interrupt entry as for tasks in
316 *  this case.
317 *
318 *  Additionally, if gdb is to be made aware of RTEMS tasks for this CPU, then
319 *  care should be used in designing the context area.
320 *
321 *  On some CPUs with hardware floating point support, the Context_Control_fp
322 *  structure will not be used or it simply consist of an array of a
323 *  fixed number of bytes.   This is done when the floating point context
324 *  is dumped by a "FP save context" type instruction and the format
325 *  is not really defined by the CPU.  In this case, there is no need
326 *  to figure out the exact format -- only the size.  Of course, although
327 *  this is enough information for RTEMS, it is probably not enough for
328 *  a debugger such as gdb.  But that is another problem.
329 */
330
331typedef struct {
332    unsigned32 register_r0;
333    unsigned32 register_r1;
334    unsigned32 register_r2;
335    unsigned32 register_r3;
336    unsigned32 register_r4;
337    unsigned32 register_r5;
338    unsigned32 register_r6;
339    unsigned32 register_r7;
340    unsigned32 register_r8;
341    unsigned32 register_r9;
342    unsigned32 register_r10;
343    unsigned32 register_fp;
344    unsigned32 register_ip;
345    unsigned32 register_sp;
346    unsigned32 register_lr;
347    unsigned32 register_pc;
348} Context_Control;
349
350typedef struct {
351    double      some_float_register;
352} Context_Control_fp;
353
354typedef Context_Control CPU_Exception_frame;
355
356typedef void (*cpuExcHandlerType) (CPU_Exception_frame*);
357extern cpuExcHandlerType _currentExcHandler;
358extern void rtems_exception_init_mngt();
359 
360/*
361 *  The following structure defines the set of information saved
362 *  on the current stack by RTEMS upon receipt of each interrupt
363 *  that will lead to re-enter the kernel to signal the thread.
364 */
365
366typedef CPU_Exception_frame CPU_Interrupt_frame;
367
368/*
369 *  The following table contains the information required to configure
370 *  the XXX processor specific parameters.
371 */
372
373typedef struct {
374  void       (*pretasking_hook)( void );
375  void       (*predriver_hook)( void );
376  void       (*postdriver_hook)( void );
377  void       (*idle_task)( void );
378  boolean      do_zero_of_workspace;
379  unsigned32   idle_task_stack_size;
380  unsigned32   interrupt_stack_size;
381  unsigned32   extra_mpci_receive_server_stack;
382  void *     (*stack_allocate_hook)( unsigned32 );
383  void       (*stack_free_hook)( void* );
384  /* end of fields required on all CPUs */
385
386}   rtems_cpu_table;
387
388/*
389 *  Macros to access required entires in the CPU Table are in
390 *  the file rtems/system.h.
391 */
392
393/*
394 *  Macros to access NO_CPU specific additions to the CPU Table
395 */
396
397/* There are no CPU specific additions to the CPU Table for this port. */
398
399/*
400 *  This variable is optional.  It is used on CPUs on which it is difficult
401 *  to generate an "uninitialized" FP context.  It is filled in by
402 *  _CPU_Initialize and copied into the task's FP context area during
403 *  _CPU_Context_Initialize.
404 */
405
406SCORE_EXTERN Context_Control_fp  _CPU_Null_fp_context;
407
408/*
409 *  On some CPUs, RTEMS supports a software managed interrupt stack.
410 *  This stack is allocated by the Interrupt Manager and the switch
411 *  is performed in _ISR_Handler.  These variables contain pointers
412 *  to the lowest and highest addresses in the chunk of memory allocated
413 *  for the interrupt stack.  Since it is unknown whether the stack
414 *  grows up or down (in general), this give the CPU dependent
415 *  code the option of picking the version it wants to use.
416 *
417 *  NOTE: These two variables are required if the macro
418 *        CPU_HAS_SOFTWARE_INTERRUPT_STACK is defined as TRUE.
419 */
420
421SCORE_EXTERN void               *_CPU_Interrupt_stack_low;
422SCORE_EXTERN void               *_CPU_Interrupt_stack_high;
423
424/*
425 *  With some compilation systems, it is difficult if not impossible to
426 *  call a high-level language routine from assembly language.  This
427 *  is especially true of commercial Ada compilers and name mangling
428 *  C++ ones.  This variable can be optionally defined by the CPU porter
429 *  and contains the address of the routine _Thread_Dispatch.  This
430 *  can make it easier to invoke that routine at the end of the interrupt
431 *  sequence (if a dispatch is necessary).
432 */
433
434SCORE_EXTERN void           (*_CPU_Thread_dispatch_pointer)();
435
436/*
437 *  Nothing prevents the porter from declaring more CPU specific variables.
438 */
439
440/* XXX: if needed, put more variables here */
441
442/*
443 *  The size of the floating point context area.  On some CPUs this
444 *  will not be a "sizeof" because the format of the floating point
445 *  area is not defined -- only the size is.  This is usually on
446 *  CPUs with a "floating point save context" instruction.
447 */
448
449#define CPU_CONTEXT_FP_SIZE sizeof( Context_Control_fp )
450
451/*
452 *  Amount of extra stack (above minimum stack size) required by
453 *  MPCI receive server thread.  Remember that in a multiprocessor
454 *  system this thread must exist and be able to process all directives.
455 */
456
457#define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 0
458
459/*
460 *  This defines the number of entries in the ISR_Vector_table managed
461 *  by RTEMS.
462 */
463
464#define CPU_INTERRUPT_NUMBER_OF_VECTORS      8
465#define CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER  (CPU_INTERRUPT_NUMBER_OF_VECTORS - 1)
466
467/*
468 *  Should be large enough to run all RTEMS tests.  This insures
469 *  that a "reasonable" small application should not have any problems.
470 */
471
472#define CPU_STACK_MINIMUM_SIZE          (1024*4)
473
474/*
475 *  CPU's worst alignment requirement for data types on a byte boundary.  This
476 *  alignment does not take into account the requirements for the stack.
477 */
478
479#define CPU_ALIGNMENT              8
480
481/*
482 *  This number corresponds to the byte alignment requirement for the
483 *  heap handler.  This alignment requirement may be stricter than that
484 *  for the data types alignment specified by CPU_ALIGNMENT.  It is
485 *  common for the heap to follow the same alignment requirement as
486 *  CPU_ALIGNMENT.  If the CPU_ALIGNMENT is strict enough for the heap,
487 *  then this should be set to CPU_ALIGNMENT.
488 *
489 *  NOTE:  This does not have to be a power of 2.  It does have to
490 *         be greater or equal to than CPU_ALIGNMENT.
491 */
492
493#define CPU_HEAP_ALIGNMENT         CPU_ALIGNMENT
494
495/*
496 *  This number corresponds to the byte alignment requirement for memory
497 *  buffers allocated by the partition manager.  This alignment requirement
498 *  may be stricter than that for the data types alignment specified by
499 *  CPU_ALIGNMENT.  It is common for the partition to follow the same
500 *  alignment requirement as CPU_ALIGNMENT.  If the CPU_ALIGNMENT is strict
501 *  enough for the partition, then this should be set to CPU_ALIGNMENT.
502 *
503 *  NOTE:  This does not have to be a power of 2.  It does have to
504 *         be greater or equal to than CPU_ALIGNMENT.
505 */
506
507#define CPU_PARTITION_ALIGNMENT    CPU_ALIGNMENT
508
509/*
510 *  This number corresponds to the byte alignment requirement for the
511 *  stack.  This alignment requirement may be stricter than that for the
512 *  data types alignment specified by CPU_ALIGNMENT.  If the CPU_ALIGNMENT
513 *  is strict enough for the stack, then this should be set to 0.
514 *
515 *  NOTE:  This must be a power of 2 either 0 or greater than CPU_ALIGNMENT.
516 */
517
518#define CPU_STACK_ALIGNMENT        32
519
520/* ISR handler macros */
521
522/*
523 *  Support routine to initialize the RTEMS vector table after it is allocated.
524 */
525
526#define _CPU_Initialize_vectors()
527
528/*
529 *  Disable all interrupts for an RTEMS critical section.  The previous
530 *  level is returned in _level.
531 */
532
533#define _CPU_ISR_Disable( _level ) \
534  { \
535    (_level) = 0; \
536    asm volatile ("MRS  r0, cpsr \n" ); \
537    asm volatile ("ORR  r0, r0, #0xc0 \n" ); \
538    asm volatile ("MSR  cpsr, r0 \n" ); \
539  }
540
541/*
542 *  Enable interrupts to the previous level (returned by _CPU_ISR_Disable).
543 *  This indicates the end of an RTEMS critical section.  The parameter
544 *  _level is not modified.
545 */
546
547#define _CPU_ISR_Enable( _level )  \
548  { \
549    asm volatile ("MRS  r0, cpsr \n" ); \
550    asm volatile ("AND  r0, r0, #0xFFFFFF3F \n" ); \
551    asm volatile ("MSR  cpsr, r0 \n" ); \
552  }
553 
554/*
555 *  This temporarily restores the interrupt to _level before immediately
556 *  disabling them again.  This is used to divide long RTEMS critical
557 *  sections into two or more parts.  The parameter _level is not
558 * modified.
559 */
560
561#define _CPU_ISR_Flash( _isr_cookie ) \
562  { \
563  }
564
565/*
566 *  Map interrupt level in task mode onto the hardware that the CPU
567 *  actually provides.  Currently, interrupt levels which do not
568 *  map onto the CPU in a generic fashion are undefined.  Someday,
569 *  it would be nice if these were "mapped" by the application
570 *  via a callout.  For example, m68k has 8 levels 0 - 7, levels
571 *  8 - 255 would be available for bsp/application specific meaning.
572 *  This could be used to manage a programmable interrupt controller
573 *  via the rtems_task_mode directive.
574 *
575 *  The get routine usually must be implemented as a subroutine.
576 */
577
578#define _CPU_ISR_Set_level( new_level ) \
579  { \
580  }
581
582unsigned32 _CPU_ISR_Get_level( void );
583
584/* end of ISR handler macros */
585
586/* Context handler macros */
587
588/*
589 *  Initialize the context to a state suitable for starting a
590 *  task after a context restore operation.  Generally, this
591 *  involves:
592 *
593 *     - setting a starting address
594 *     - preparing the stack
595 *     - preparing the stack and frame pointers
596 *     - setting the proper interrupt level in the context
597 *     - initializing the floating point context
598 *
599 *  This routine generally does not set any unnecessary register
600 *  in the context.  The state of the "general data" registers is
601 *  undefined at task start time.
602 *
603 *  NOTE: This is_fp parameter is TRUE if the thread is to be a floating
604 *        point thread.  This is typically only used on CPUs where the
605 *        FPU may be easily disabled by software such as on the SPARC
606 *        where the PSR contains an enable FPU bit.
607 */
608
609#define _CPU_Context_Initialize( _the_context, _stack_base, _size, \
610                                 _isr, _entry_point, _is_fp ) \
611  { \
612   (_the_context)->register_sp = ((unsigned32)(_stack_base)) + (_size) ; \
613   (_the_context)->register_pc = (_entry_point); \
614  }
615
616/*
617 *  This routine is responsible for somehow restarting the currently
618 *  executing task.  If you are lucky, then all that is necessary
619 *  is restoring the context.  Otherwise, there will need to be
620 *  a special assembly routine which does something special in this
621 *  case.  Context_Restore should work most of the time.  It will
622 *  not work if restarting self conflicts with the stack frame
623 *  assumptions of restoring a context.
624 */
625
626#define _CPU_Context_Restart_self( _the_context ) \
627   _CPU_Context_restore( (_the_context) );
628
629/*
630 *  The purpose of this macro is to allow the initial pointer into
631 *  a floating point context area (used to save the floating point
632 *  context) to be at an arbitrary place in the floating point
633 *  context area.
634 *
635 *  This is necessary because some FP units are designed to have
636 *  their context saved as a stack which grows into lower addresses.
637 *  Other FP units can be saved by simply moving registers into offsets
638 *  from the base of the context area.  Finally some FP units provide
639 *  a "dump context" instruction which could fill in from high to low
640 *  or low to high based on the whim of the CPU designers.
641 */
642
643#define _CPU_Context_Fp_start( _base, _offset ) \
644   ( (void *) _Addresses_Add_offset( (_base), (_offset) ) )
645
646/*
647 *  This routine initializes the FP context area passed to it to.
648 *  There are a few standard ways in which to initialize the
649 *  floating point context.  The code included for this macro assumes
650 *  that this is a CPU in which a "initial" FP context was saved into
651 *  _CPU_Null_fp_context and it simply copies it to the destination
652 *  context passed to it.
653 *
654 *  Other models include (1) not doing anything, and (2) putting
655 *  a "null FP status word" in the correct place in the FP context.
656 */
657
658#define _CPU_Context_Initialize_fp( _destination ) \
659  { \
660   *((Context_Control_fp *) *((void **) _destination)) = _CPU_Null_fp_context; \
661  }
662
663/* end of Context handler macros */
664
665/* Fatal Error manager macros */
666
667/*
668 *  This routine copies _error into a known place -- typically a stack
669 *  location or a register, optionally disables interrupts, and
670 *  halts/stops the CPU.
671 */
672
673#define _CPU_Fatal_halt( _error ) \
674  { \
675  }
676
677/* end of Fatal Error manager macros */
678
679/* Bitfield handler macros */
680
681/*
682 *  This routine sets _output to the bit number of the first bit
683 *  set in _value.  _value is of CPU dependent type Priority_Bit_map_control.
684 *  This type may be either 16 or 32 bits wide although only the 16
685 *  least significant bits will be used.
686 *
687 *  There are a number of variables in using a "find first bit" type
688 *  instruction.
689 *
690 *    (1) What happens when run on a value of zero?
691 *    (2) Bits may be numbered from MSB to LSB or vice-versa.
692 *    (3) The numbering may be zero or one based.
693 *    (4) The "find first bit" instruction may search from MSB or LSB.
694 *
695 *  RTEMS guarantees that (1) will never happen so it is not a concern.
696 *  (2),(3), (4) are handled by the macros _CPU_Priority_mask() and
697 *  _CPU_Priority_bits_index().  These three form a set of routines
698 *  which must logically operate together.  Bits in the _value are
699 *  set and cleared based on masks built by _CPU_Priority_mask().
700 *  The basic major and minor values calculated by _Priority_Major()
701 *  and _Priority_Minor() are "massaged" by _CPU_Priority_bits_index()
702 *  to properly range between the values returned by the "find first bit"
703 *  instruction.  This makes it possible for _Priority_Get_highest() to
704 *  calculate the major and directly index into the minor table.
705 *  This mapping is necessary to ensure that 0 (a high priority major/minor)
706 *  is the first bit found.
707 *
708 *  This entire "find first bit" and mapping process depends heavily
709 *  on the manner in which a priority is broken into a major and minor
710 *  components with the major being the 4 MSB of a priority and minor
711 *  the 4 LSB.  Thus (0 << 4) + 0 corresponds to priority 0 -- the highest
712 *  priority.  And (15 << 4) + 14 corresponds to priority 254 -- the next
713 *  to the lowest priority.
714 *
715 *  If your CPU does not have a "find first bit" instruction, then
716 *  there are ways to make do without it.  Here are a handful of ways
717 *  to implement this in software:
718 *
719 *    - a series of 16 bit test instructions
720 *    - a "binary search using if's"
721 *    - _number = 0
722 *      if _value > 0x00ff
723 *        _value >>=8
724 *        _number = 8;
725 *
726 *      if _value > 0x0000f
727 *        _value >=8
728 *        _number += 4
729 *
730 *      _number += bit_set_table[ _value ]
731 *
732 *    where bit_set_table[ 16 ] has values which indicate the first
733 *      bit set
734 */
735
736#define CPU_USE_GENERIC_BITFIELD_CODE TRUE
737#define CPU_USE_GENERIC_BITFIELD_DATA TRUE
738
739#if (CPU_USE_GENERIC_BITFIELD_CODE == FALSE)
740
741#define _CPU_Bitfield_Find_first_bit( _value, _output ) \
742  { \
743    (_output) = 0;   /* do something to prevent warnings */ \
744  }
745
746#endif
747
748/* end of Bitfield handler macros */
749
750/*
751 *  This routine builds the mask which corresponds to the bit fields
752 *  as searched by _CPU_Bitfield_Find_first_bit().  See the discussion
753 *  for that routine.
754 */
755
756#if (CPU_USE_GENERIC_BITFIELD_CODE == FALSE)
757
758#define _CPU_Priority_Mask( _bit_number ) \
759  ( 1 << (_bit_number) )
760
761#endif
762
763/*
764 *  This routine translates the bit numbers returned by
765 *  _CPU_Bitfield_Find_first_bit() into something suitable for use as
766 *  a major or minor component of a priority.  See the discussion
767 *  for that routine.
768 */
769
770#if (CPU_USE_GENERIC_BITFIELD_CODE == FALSE)
771
772#define _CPU_Priority_bits_index( _priority ) \
773  (_priority)
774
775#endif
776
777/* end of Priority handler macros */
778
779/* functions */
780
781/*
782 *  _CPU_Initialize
783 *
784 *  This routine performs CPU dependent initialization.
785 */
786
787void _CPU_Initialize(
788  rtems_cpu_table  *cpu_table,
789  void      (*thread_dispatch)
790);
791
792typedef enum {
793  ARM_EXCEPTION_RESET      = 0,
794  ARM_EXCEPTION_UNDEF      = 1,
795  ARM_EXCEPTION_SWI        = 2,
796  ARM_EXCEPTION_PREF_ABORT = 3,
797  ARM_EXCEPTION_DATA_ABORT = 4,
798  ARM_EXCEPTION_RESERVED   = 5,
799  ARM_EXCEPTION_IRQ        = 6,
800  ARM_EXCEPTION_FIQ        = 7,
801  MAX_EXCEPTIONS           = 8
802} Arm_symbolic_exception_name;
803
804/*
805 *  _CPU_ISR_install_vector
806 *
807 *  This routine installs an interrupt vector.
808 */
809
810void _CPU_ISR_install_vector(
811  unsigned32  vector,
812  proc_ptr    new_handler,
813  proc_ptr   *old_handler
814);
815
816/*
817 *  _CPU_Install_interrupt_stack
818 *
819 *  This routine installs the hardware interrupt stack pointer.
820 *
821 *  NOTE:  It need only be provided if CPU_HAS_HARDWARE_INTERRUPT_STACK
822 *         is TRUE.
823 */
824
825void _CPU_Install_interrupt_stack( void );
826
827/*
828 *  _CPU_Thread_Idle_body
829 *
830 *  This routine is the CPU dependent IDLE thread body.
831 *
832 *  NOTE:  It need only be provided if CPU_PROVIDES_IDLE_THREAD_BODY
833 *         is TRUE.
834 */
835
836void _CPU_Thread_Idle_body( void );
837
838/*
839 *  _CPU_Context_switch
840 *
841 *  This routine switches from the run context to the heir context.
842 */
843
844void _CPU_Context_switch(
845  Context_Control  *run,
846  Context_Control  *heir
847);
848
849/*
850 *  _CPU_Context_restore
851 *
852 *  This routine is generally used only to restart self in an
853 *  efficient manner.  It may simply be a label in _CPU_Context_switch.
854 *
855 *  NOTE: May be unnecessary to reload some registers.
856 */
857
858void _CPU_Context_restore(
859  Context_Control *new_context
860);
861
862/*
863 *  _CPU_Context_save_fp
864 *
865 *  This routine saves the floating point context passed to it.
866 */
867
868void _CPU_Context_save_fp(
869  void **fp_context_ptr
870);
871
872/*
873 *  _CPU_Context_restore_fp
874 *
875 *  This routine restores the floating point context passed to it.
876 */
877
878void _CPU_Context_restore_fp(
879  void **fp_context_ptr
880);
881
882/*  The following routine swaps the endian format of an unsigned int.
883 *  It must be static because it is referenced indirectly.
884 *
885 *  This version will work on any processor, but if there is a better
886 *  way for your CPU PLEASE use it.  The most common way to do this is to:
887 *
888 *     swap least significant two bytes with 16-bit rotate
889 *     swap upper and lower 16-bits
890 *     swap most significant two bytes with 16-bit rotate
891 *
892 *  Some CPUs have special instructions which swap a 32-bit quantity in
893 *  a single instruction (e.g. i486).  It is probably best to avoid
894 *  an "endian swapping control bit" in the CPU.  One good reason is
895 *  that interrupts would probably have to be disabled to insure that
896 *  an interrupt does not try to access the same "chunk" with the wrong
897 *  endian.  Another good reason is that on some CPUs, the endian bit
898 *  endianness for ALL fetches -- both code and data -- so the code
899 *  will be fetched incorrectly.
900 */
901 
902static inline unsigned int CPU_swap_u32(
903  unsigned int value
904)
905{
906  unsigned32 byte1, byte2, byte3, byte4, swapped;
907 
908  byte4 = (value >> 24) & 0xff;
909  byte3 = (value >> 16) & 0xff;
910  byte2 = (value >> 8)  & 0xff;
911  byte1 =  value        & 0xff;
912 
913  swapped = (byte1 << 24) | (byte2 << 16) | (byte3 << 8) | byte4;
914  return( swapped );
915}
916
917#define CPU_swap_u16( value ) \
918  (((value&0xff) << 8) | ((value >> 8)&0xff))
919
920#ifdef __cplusplus
921}
922#endif
923
924#endif
Note: See TracBrowser for help on using the repository browser.