source: rtems/cpukit/score/cpu/sh/rtems/score/cpu.h @ 43e0599

4.115
Last change on this file since 43e0599 was 43e0599, checked in by Mathew Kallada <matkallada@…>, on 12/02/12 at 21:23:57

score misc: Clean up Doxygen #13 (GCI 2012)

This patch is a task from GCI 2012 which improves the Doxygen
comments in the RTEMS source.

http://www.google-melange.com/gci/task/view/google/gci2012/8013205

  • Property mode set to 100644
File size: 27.2 KB
Line 
1/**
2 * @file rtems/score/cpu.h
3 */
4
5/*
6 *  This include file contains information pertaining to the Hitachi SH
7 *  processor.
8 *
9 *  Authors: Ralf Corsepius (corsepiu@faw.uni-ulm.de) and
10 *           Bernd Becker (becker@faw.uni-ulm.de)
11 *
12 *  COPYRIGHT (c) 1997-1998, FAW Ulm, Germany
13 *
14 *  This program is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
17 *
18 *
19 *  COPYRIGHT (c) 1998-2006.
20 *  On-Line Applications Research Corporation (OAR).
21 *
22 *  The license and distribution terms for this file may be
23 *  found in the file LICENSE in this distribution or at
24 *  http://www.rtems.com/license/LICENSE.
25 */
26
27#ifndef _RTEMS_SCORE_CPU_H
28#define _RTEMS_SCORE_CPU_H
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34#include <rtems/score/types.h>
35#include <rtems/score/sh.h>
36
37/* conditional compilation parameters */
38
39/*
40 *  Should the calls to _Thread_Enable_dispatch be inlined?
41 *
42 *  If TRUE, then they are inlined.
43 *  If FALSE, then a subroutine call is made.
44 *
45 *  Basically this is an example of the classic trade-off of size
46 *  versus speed.  Inlining the call (TRUE) typically increases the
47 *  size of RTEMS while speeding up the enabling of dispatching.
48 *  [NOTE: In general, the _Thread_Dispatch_disable_level will
49 *  only be 0 or 1 unless you are in an interrupt handler and that
50 *  interrupt handler invokes the executive.]  When not inlined
51 *  something calls _Thread_Enable_dispatch which in turns calls
52 *  _Thread_Dispatch.  If the enable dispatch is inlined, then
53 *  one subroutine call is avoided entirely.]
54 */
55
56#define CPU_INLINE_ENABLE_DISPATCH       FALSE
57
58/*
59 *  Should the body of the search loops in _Thread_queue_Enqueue_priority
60 *  be unrolled one time?  In unrolled each iteration of the loop examines
61 *  two "nodes" on the chain being searched.  Otherwise, only one node
62 *  is examined per iteration.
63 *
64 *  If TRUE, then the loops are unrolled.
65 *  If FALSE, then the loops are not unrolled.
66 *
67 *  The primary factor in making this decision is the cost of disabling
68 *  and enabling interrupts (_ISR_Flash) versus the cost of rest of the
69 *  body of the loop.  On some CPUs, the flash is more expensive than
70 *  one iteration of the loop body.  In this case, it might be desirable
71 *  to unroll the loop.  It is important to note that on some CPUs, this
72 *  code is the longest interrupt disable period in RTEMS.  So it is
73 *  necessary to strike a balance when setting this parameter.
74 */
75
76#define CPU_UNROLL_ENQUEUE_PRIORITY      TRUE
77
78/*
79 *  Does the CPU follow the simple vectored interrupt model?
80 *
81 *  If TRUE, then RTEMS allocates the vector table it internally manages.
82 *  If FALSE, then the BSP is assumed to allocate and manage the vector
83 *  table
84 *
85 *  SH Specific Information:
86 *
87 *  XXX document implementation including references if appropriate
88 */
89#define CPU_SIMPLE_VECTORED_INTERRUPTS TRUE
90
91/*
92 *  Does RTEMS manage a dedicated interrupt stack in software?
93 *
94 *  If TRUE, then a stack is allocated in _ISR_Handler_initialization.
95 *  If FALSE, nothing is done.
96 *
97 *  If the CPU supports a dedicated interrupt stack in hardware,
98 *  then it is generally the responsibility of the BSP to allocate it
99 *  and set it up.
100 *
101 *  If the CPU does not support a dedicated interrupt stack, then
102 *  the porter has two options: (1) execute interrupts on the
103 *  stack of the interrupted task, and (2) have RTEMS manage a dedicated
104 *  interrupt stack.
105 *
106 *  If this is TRUE, CPU_ALLOCATE_INTERRUPT_STACK should also be TRUE.
107 *
108 *  Only one of CPU_HAS_SOFTWARE_INTERRUPT_STACK and
109 *  CPU_HAS_HARDWARE_INTERRUPT_STACK should be set to TRUE.  It is
110 *  possible that both are FALSE for a particular CPU.  Although it
111 *  is unclear what that would imply about the interrupt processing
112 *  procedure on that CPU.
113 */
114
115#define CPU_HAS_SOFTWARE_INTERRUPT_STACK TRUE
116#define CPU_HAS_HARDWARE_INTERRUPT_STACK FALSE
117
118/*
119 * We define the interrupt stack in the linker script
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 *  We currently support sh1 only, which has no FPU, other SHes have an FPU
138 *
139 *  The macro name "SH_HAS_FPU" should be made CPU specific.
140 *  It indicates whether or not this CPU model has FP support.  For
141 *  example, it would be possible to have an i386_nofp CPU model
142 *  which set this to false to indicate that you have an i386 without
143 *  an i387 and wish to leave floating point support out of RTEMS.
144 */
145
146#if SH_HAS_FPU
147#define CPU_HARDWARE_FP TRUE
148#define CPU_SOFTWARE_FP FALSE
149#else
150#define CPU_SOFTWARE_FP FALSE
151#define CPU_HARDWARE_FP FALSE
152#endif
153
154/*
155 *  Are all tasks RTEMS_FLOATING_POINT tasks implicitly?
156 *
157 *  If TRUE, then the RTEMS_FLOATING_POINT task attribute is assumed.
158 *  If FALSE, then the RTEMS_FLOATING_POINT task attribute is followed.
159 *
160 *  If CPU_HARDWARE_FP is FALSE, then this should be FALSE as well.
161 */
162
163#if SH_HAS_FPU
164#define CPU_ALL_TASKS_ARE_FP     TRUE
165#else
166#define CPU_ALL_TASKS_ARE_FP     FALSE
167#endif
168
169/*
170 *  Should the IDLE task have a floating point context?
171 *
172 *  If TRUE, then the IDLE task is created as a RTEMS_FLOATING_POINT task
173 *  and it has a floating point context which is switched in and out.
174 *  If FALSE, then the IDLE task does not have a floating point context.
175 *
176 *  Setting this to TRUE negatively impacts the time required to preempt
177 *  the IDLE task from an interrupt because the floating point context
178 *  must be saved as part of the preemption.
179 */
180
181#if SH_HAS_FPU
182#define CPU_IDLE_TASK_IS_FP     TRUE
183#else
184#define CPU_IDLE_TASK_IS_FP      FALSE
185#endif
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#if SH_HAS_FPU
214#define CPU_USE_DEFERRED_FP_SWITCH      FALSE
215#else
216#define CPU_USE_DEFERRED_FP_SWITCH      TRUE
217#endif
218
219/*
220 *  Does this port provide a CPU dependent IDLE task implementation?
221 *
222 *  If TRUE, then the routine _CPU_Thread_Idle_body
223 *  must be provided and is the default IDLE thread body instead of
224 *  _CPU_Thread_Idle_body.
225 *
226 *  If FALSE, then use the generic IDLE thread body if the BSP does
227 *  not provide one.
228 *
229 *  This is intended to allow for supporting processors which have
230 *  a low power or idle mode.  When the IDLE thread is executed, then
231 *  the CPU can be powered down.
232 *
233 *  The order of precedence for selecting the IDLE thread body is:
234 *
235 *    1.  BSP provided
236 *    2.  CPU dependent (if provided)
237 *    3.  generic (if no BSP and no CPU dependent)
238 */
239
240#define CPU_PROVIDES_IDLE_THREAD_BODY    TRUE
241
242/*
243 *  Does the stack grow up (toward higher addresses) or down
244 *  (toward lower addresses)?
245 *
246 *  If TRUE, then the grows upward.
247 *  If FALSE, then the grows toward smaller addresses.
248 */
249
250#define CPU_STACK_GROWS_UP               FALSE
251
252/*
253 *  The following is the variable attribute used to force alignment
254 *  of critical RTEMS structures.  On some processors it may make
255 *  sense to have these aligned on tighter boundaries than
256 *  the minimum requirements of the compiler in order to have as
257 *  much of the critical data area as possible in a cache line.
258 *
259 *  The placement of this macro in the declaration of the variables
260 *  is based on the syntactically requirements of the GNU C
261 *  "__attribute__" extension.  For example with GNU C, use
262 *  the following to force a structures to a 32 byte boundary.
263 *
264 *      __attribute__ ((aligned (32)))
265 *
266 *  NOTE:  Currently only the Priority Bit Map table uses this feature.
267 *         To benefit from using this, the data must be heavily
268 *         used so it will stay in the cache and used frequently enough
269 *         in the executive to justify turning this on.
270 */
271
272#define CPU_STRUCTURE_ALIGNMENT __attribute__ ((aligned(16)))
273
274#define CPU_TIMESTAMP_USE_INT64_INLINE TRUE
275
276/*
277 *  Define what is required to specify how the network to host conversion
278 *  routines are handled.
279 *
280 *  NOTE: SHes can be big or little endian, the default is big endian
281 */
282
283/* __LITTLE_ENDIAN__ is defined if -ml is given to gcc */
284#if defined(__LITTLE_ENDIAN__)
285#define CPU_BIG_ENDIAN                           FALSE
286#define CPU_LITTLE_ENDIAN                        TRUE
287#else
288#define CPU_BIG_ENDIAN                           TRUE
289#define CPU_LITTLE_ENDIAN                        FALSE
290#endif
291
292/*
293 *  The following defines the number of bits actually used in the
294 *  interrupt field of the task mode.  How those bits map to the
295 *  CPU interrupt levels is defined by the routine _CPU_ISR_Set_level().
296 */
297
298#define CPU_MODES_INTERRUPT_MASK   0x0000000f
299
300/*
301 *  Processor defined structures required for cpukit/score.
302 */
303
304/* may need to put some structures here.  */
305
306/*
307 * Contexts
308 *
309 *  Generally there are 2 types of context to save.
310 *     1. Interrupt registers to save
311 *     2. Task level registers to save
312 *
313 *  This means we have the following 3 context items:
314 *     1. task level context stuff::  Context_Control
315 *     2. floating point task stuff:: Context_Control_fp
316 *     3. special interrupt level context :: Context_Control_interrupt
317 *
318 *  On some processors, it is cost-effective to save only the callee
319 *  preserved registers during a task context switch.  This means
320 *  that the ISR code needs to save those registers which do not
321 *  persist across function calls.  It is not mandatory to make this
322 *  distinctions between the caller/callee saves registers for the
323 *  purpose of minimizing context saved during task switch and on interrupts.
324 *  If the cost of saving extra registers is minimal, simplicity is the
325 *  choice.  Save the same context on interrupt entry as for tasks in
326 *  this case.
327 *
328 *  Additionally, if gdb is to be made aware of RTEMS tasks for this CPU, then
329 *  care should be used in designing the context area.
330 *
331 *  On some CPUs with hardware floating point support, the Context_Control_fp
332 *  structure will not be used or it simply consist of an array of a
333 *  fixed number of bytes.   This is done when the floating point context
334 *  is dumped by a "FP save context" type instruction and the format
335 *  is not really defined by the CPU.  In this case, there is no need
336 *  to figure out the exact format -- only the size.  Of course, although
337 *  this is enough information for RTEMS, it is probably not enough for
338 *  a debugger such as gdb.  But that is another problem.
339 */
340
341typedef struct {
342  uint32_t   *r15;      /* stack pointer */
343
344  uint32_t   macl;
345  uint32_t   mach;
346  uint32_t   *pr;
347
348  uint32_t   *r14;      /* frame pointer/call saved */
349
350  uint32_t   r13;       /* call saved */
351  uint32_t   r12;       /* call saved */
352  uint32_t   r11;       /* call saved */
353  uint32_t   r10;       /* call saved */
354  uint32_t   r9;        /* call saved */
355  uint32_t   r8;        /* call saved */
356
357  uint32_t   *r7;       /* arg in */
358  uint32_t   *r6;       /* arg in */
359
360#if 0
361  uint32_t   *r5;       /* arg in */
362  uint32_t   *r4;       /* arg in */
363#endif
364
365  uint32_t   *r3;       /* scratch */
366  uint32_t   *r2;       /* scratch */
367  uint32_t   *r1;       /* scratch */
368
369  uint32_t   *r0;       /* arg return */
370
371  uint32_t   gbr;
372  uint32_t   sr;
373
374} Context_Control;
375
376#define _CPU_Context_Get_SP( _context ) \
377  (_context)->r15
378
379typedef struct {
380#if SH_HAS_FPU
381#ifdef SH4_USE_X_REGISTERS
382  union {
383    float f[16];
384    double d[8];
385  } x;
386#endif
387  union {
388    float f[16];
389    double d[8];
390  } r;
391  float fpul;       /* fp communication register */
392  uint32_t   fpscr; /* fp control register */
393#endif /* SH_HAS_FPU */
394} Context_Control_fp;
395
396typedef struct {
397} CPU_Interrupt_frame;
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
406#if SH_HAS_FPU
407SCORE_EXTERN Context_Control_fp  _CPU_Null_fp_context;
408#endif
409
410/*
411 *  Nothing prevents the porter from declaring more CPU specific variables.
412 */
413
414/* XXX: if needed, put more variables here */
415SCORE_EXTERN void CPU_delay( uint32_t   microseconds );
416
417/*
418 *  The size of the floating point context area.  On some CPUs this
419 *  will not be a "sizeof" because the format of the floating point
420 *  area is not defined -- only the size is.  This is usually on
421 *  CPUs with a "floating point save context" instruction.
422 */
423
424#define CPU_CONTEXT_FP_SIZE sizeof( Context_Control_fp )
425
426/*
427 *  Amount of extra stack (above minimum stack size) required by
428 *  MPCI receive server thread.  Remember that in a multiprocessor
429 *  system this thread must exist and be able to process all directives.
430 */
431
432#define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 0
433
434/*
435 *  This defines the number of entries in the ISR_Vector_table managed
436 *  by RTEMS.
437 */
438
439#define CPU_INTERRUPT_NUMBER_OF_VECTORS      256
440#define CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER  (CPU_INTERRUPT_NUMBER_OF_VECTORS - 1)
441
442/*
443 *  This is defined if the port has a special way to report the ISR nesting
444 *  level.  Most ports maintain the variable _ISR_Nest_level.
445 */
446
447#define CPU_PROVIDES_ISR_IS_IN_PROGRESS FALSE
448
449/*
450 *  Should be large enough to run all RTEMS tests.  This ensures
451 *  that a "reasonable" small application should not have any problems.
452 *
453 *  We have been able to run the sptests with this value, but have not
454 *  been able to run the tmtest suite.
455 */
456
457#define CPU_STACK_MINIMUM_SIZE          4096
458
459#define CPU_SIZEOF_POINTER 4
460
461/*
462 *  CPU's worst alignment requirement for data types on a byte boundary.  This
463 *  alignment does not take into account the requirements for the stack.
464 */
465#if defined(__SH4__)
466/* FIXME: sh3 and SH3E? */
467#define CPU_ALIGNMENT              8
468#else
469#define CPU_ALIGNMENT              4
470#endif
471
472/*
473 *  This number corresponds to the byte alignment requirement for the
474 *  heap handler.  This alignment requirement may be stricter than that
475 *  for the data types alignment specified by CPU_ALIGNMENT.  It is
476 *  common for the heap to follow the same alignment requirement as
477 *  CPU_ALIGNMENT.  If the CPU_ALIGNMENT is strict enough for the heap,
478 *  then this should be set to CPU_ALIGNMENT.
479 *
480 *  NOTE:  This does not have to be a power of 2.  It does have to
481 *         be greater or equal to than CPU_ALIGNMENT.
482 */
483
484#define CPU_HEAP_ALIGNMENT         CPU_ALIGNMENT
485
486/*
487 *  This number corresponds to the byte alignment requirement for memory
488 *  buffers allocated by the partition manager.  This alignment requirement
489 *  may be stricter than that for the data types alignment specified by
490 *  CPU_ALIGNMENT.  It is common for the partition to follow the same
491 *  alignment requirement as CPU_ALIGNMENT.  If the CPU_ALIGNMENT is strict
492 *  enough for the partition, then this should be set to CPU_ALIGNMENT.
493 *
494 *  NOTE:  This does not have to be a power of 2.  It does have to
495 *         be greater or equal to than CPU_ALIGNMENT.
496 */
497
498#define CPU_PARTITION_ALIGNMENT    CPU_ALIGNMENT
499
500/*
501 *  This number corresponds to the byte alignment requirement for the
502 *  stack.  This alignment requirement may be stricter than that for the
503 *  data types alignment specified by CPU_ALIGNMENT.  If the CPU_ALIGNMENT
504 *  is strict enough for the stack, then this should be set to 0.
505 *
506 *  NOTE:  This must be a power of 2 either 0 or greater than CPU_ALIGNMENT.
507 */
508
509#define CPU_STACK_ALIGNMENT        CPU_ALIGNMENT
510
511/*
512 *  ISR handler macros
513 */
514
515/*
516 *  Support routine to initialize the RTEMS vector table after it is allocated.
517 *
518 *  SH Specific Information: NONE
519 */
520
521#define _CPU_Initialize_vectors()
522
523/*
524 *  Disable all interrupts for an RTEMS critical section.  The previous
525 *  level is returned in _level.
526 */
527
528#define _CPU_ISR_Disable( _level) \
529  sh_disable_interrupts( _level )
530
531/*
532 *  Enable interrupts to the previous level (returned by _CPU_ISR_Disable).
533 *  This indicates the end of an RTEMS critical section.  The parameter
534 *  _level is not modified.
535 */
536
537#define _CPU_ISR_Enable( _level) \
538   sh_enable_interrupts( _level)
539
540/*
541 *  This temporarily restores the interrupt to _level before immediately
542 *  disabling them again.  This is used to divide long RTEMS critical
543 *  sections into two or more parts.  The parameter _level is not
544 * modified.
545 */
546
547#define _CPU_ISR_Flash( _level) \
548  sh_flash_interrupts( _level)
549
550/*
551 *  Map interrupt level in task mode onto the hardware that the CPU
552 *  actually provides.  Currently, interrupt levels which do not
553 *  map onto the CPU in a generic fashion are undefined.  Someday,
554 *  it would be nice if these were "mapped" by the application
555 *  via a callout.  For example, m68k has 8 levels 0 - 7, levels
556 *  8 - 255 would be available for bsp/application specific meaning.
557 *  This could be used to manage a programmable interrupt controller
558 *  via the rtems_task_mode directive.
559 */
560
561#define _CPU_ISR_Set_level( _newlevel) \
562  sh_set_interrupt_level(_newlevel)
563
564uint32_t   _CPU_ISR_Get_level( void );
565
566/* end of ISR handler macros */
567
568/* Context handler macros */
569
570/*
571 *  Initialize the context to a state suitable for starting a
572 *  task after a context restore operation.  Generally, this
573 *  involves:
574 *
575 *     - setting a starting address
576 *     - preparing the stack
577 *     - preparing the stack and frame pointers
578 *     - setting the proper interrupt level in the context
579 *     - initializing the floating point context
580 *
581 *  This routine generally does not set any unnecessary register
582 *  in the context.  The state of the "general data" registers is
583 *  undefined at task start time.
584 *
585 *  NOTE: This is_fp parameter is TRUE if the thread is to be a floating
586 *        point thread.  This is typically only used on CPUs where the
587 *        FPU may be easily disabled by software such as on the SPARC
588 *        where the PSR contains an enable FPU bit.
589 */
590
591/*
592 * FIXME: defined as a function for debugging - should be a macro
593 */
594SCORE_EXTERN void _CPU_Context_Initialize(
595  Context_Control       *_the_context,
596  void                  *_stack_base,
597  uint32_t              _size,
598  uint32_t              _isr,
599  void    (*_entry_point)(void),
600  int                   _is_fp );
601
602/*
603 *  This routine is responsible for somehow restarting the currently
604 *  executing task.  If you are lucky, then all that is necessary
605 *  is restoring the context.  Otherwise, there will need to be
606 *  a special assembly routine which does something special in this
607 *  case.  Context_Restore should work most of the time.  It will
608 *  not work if restarting self conflicts with the stack frame
609 *  assumptions of restoring a context.
610 */
611
612#define _CPU_Context_Restart_self( _the_context ) \
613   _CPU_Context_restore( (_the_context) );
614
615/*
616 *  The purpose of this macro is to allow the initial pointer into
617 *  a floating point context area (used to save the floating point
618 *  context) to be at an arbitrary place in the floating point
619 *  context area.
620 *
621 *  This is necessary because some FP units are designed to have
622 *  their context saved as a stack which grows into lower addresses.
623 *  Other FP units can be saved by simply moving registers into offsets
624 *  from the base of the context area.  Finally some FP units provide
625 *  a "dump context" instruction which could fill in from high to low
626 *  or low to high based on the whim of the CPU designers.
627 */
628
629#define _CPU_Context_Fp_start( _base, _offset ) \
630   ( (void *) _Addresses_Add_offset( (_base), (_offset) ) )
631
632/*
633 *  This routine initializes the FP context area passed to it to.
634 *  There are a few standard ways in which to initialize the
635 *  floating point context.  The code included for this macro assumes
636 *  that this is a CPU in which a "initial" FP context was saved into
637 *  _CPU_Null_fp_context and it simply copies it to the destination
638 *  context passed to it.
639 *
640 *  Other models include (1) not doing anything, and (2) putting
641 *  a "null FP status word" in the correct place in the FP context.
642 *  SH1, SH2, SH3 have no FPU, but the SH3e and SH4 have.
643 */
644
645#if SH_HAS_FPU
646#define _CPU_Context_Initialize_fp( _destination ) \
647  do { \
648     *(*(_destination)) = _CPU_Null_fp_context;\
649  } while(0)
650#else
651#define _CPU_Context_Initialize_fp( _destination ) \
652  {  }
653#endif
654
655/* end of Context handler macros */
656
657/* Fatal Error manager macros */
658
659/*
660 * FIXME: Trap32 ???
661 *
662 *  This routine copies _error into a known place -- typically a stack
663 *  location or a register, optionally disables interrupts, and
664 *  invokes a Trap32 Instruction which returns to the breakpoint
665 *  routine of cmon.
666 */
667
668#ifdef BSP_FATAL_HALT
669  /* we manage the fatal error in the board support package */
670  void bsp_fatal_halt( uint32_t   _error);
671#define _CPU_Fatal_halt( _error ) bsp_fatal_halt( _error)
672#else
673#define _CPU_Fatal_halt( _error)\
674{ \
675  __asm__ volatile("mov.l %0,r0"::"m" (_error)); \
676  __asm__ volatile("mov #1, r4"); \
677  __asm__ volatile("trapa #34"); \
678}
679#endif
680
681/* end of Fatal Error manager macros */
682
683/* Bitfield handler macros */
684
685/*
686 *  This routine sets _output to the bit number of the first bit
687 *  set in _value.  _value is of CPU dependent type Priority_bit_map_Control.
688 *  This type may be either 16 or 32 bits wide although only the 16
689 *  least significant bits will be used.
690 *
691 *  There are a number of variables in using a "find first bit" type
692 *  instruction.
693 *
694 *    (1) What happens when run on a value of zero?
695 *    (2) Bits may be numbered from MSB to LSB or vice-versa.
696 *    (3) The numbering may be zero or one based.
697 *    (4) The "find first bit" instruction may search from MSB or LSB.
698 *
699 *  RTEMS guarantees that (1) will never happen so it is not a concern.
700 *  (2),(3), (4) are handled by the macros _CPU_Priority_mask() and
701 *  _CPU_Priority_bits_index().  These three form a set of routines
702 *  which must logically operate together.  Bits in the _value are
703 *  set and cleared based on masks built by _CPU_Priority_mask().
704 *  The basic major and minor values calculated by _Priority_Major()
705 *  and _Priority_Minor() are "massaged" by _CPU_Priority_bits_index()
706 *  to properly range between the values returned by the "find first bit"
707 *  instruction.  This makes it possible for _Priority_Get_highest() to
708 *  calculate the major and directly index into the minor table.
709 *  This mapping is necessary to ensure that 0 (a high priority major/minor)
710 *  is the first bit found.
711 *
712 *  This entire "find first bit" and mapping process depends heavily
713 *  on the manner in which a priority is broken into a major and minor
714 *  components with the major being the 4 MSB of a priority and minor
715 *  the 4 LSB.  Thus (0 << 4) + 0 corresponds to priority 0 -- the highest
716 *  priority.  And (15 << 4) + 14 corresponds to priority 254 -- the next
717 *  to the lowest priority.
718 *
719 *  If your CPU does not have a "find first bit" instruction, then
720 *  there are ways to make do without it.  Here are a handful of ways
721 *  to implement this in software:
722 *
723 *    - a series of 16 bit test instructions
724 *    - a "binary search using if's"
725 *    - _number = 0
726 *      if _value > 0x00ff
727 *        _value >>=8
728 *        _number = 8;
729 *
730 *      if _value > 0x0000f
731 *        _value >=8
732 *        _number += 4
733 *
734 *      _number += bit_set_table[ _value ]
735 *
736 *    where bit_set_table[ 16 ] has values which indicate the first
737 *      bit set
738 */
739
740#define CPU_USE_GENERIC_BITFIELD_CODE TRUE
741#define CPU_USE_GENERIC_BITFIELD_DATA TRUE
742
743#if (CPU_USE_GENERIC_BITFIELD_CODE == FALSE)
744
745extern uint8_t   _bit_set_table[];
746
747#define _CPU_Bitfield_Find_first_bit( _value, _output ) \
748  { \
749      _output = 0;\
750      if(_value > 0x00ff) \
751      { _value >>= 8; _output = 8; } \
752      if(_value > 0x000f) \
753        { _output += 4; _value >>= 4; } \
754      _output += _bit_set_table[ _value]; }
755
756#endif
757
758/* end of Bitfield handler macros */
759
760/*
761 *  This routine builds the mask which corresponds to the bit fields
762 *  as searched by _CPU_Bitfield_Find_first_bit().  See the discussion
763 *  for that routine.
764 */
765
766#if (CPU_USE_GENERIC_BITFIELD_CODE == FALSE)
767
768#define _CPU_Priority_Mask( _bit_number ) \
769  ( 1 << (_bit_number) )
770
771#endif
772
773/*
774 *  This routine translates the bit numbers returned by
775 *  _CPU_Bitfield_Find_first_bit() into something suitable for use as
776 *  a major or minor component of a priority.  See the discussion
777 *  for that routine.
778 */
779
780#if (CPU_USE_GENERIC_BITFIELD_CODE == FALSE)
781
782#define _CPU_Priority_bits_index( _priority ) \
783  (_priority)
784
785#endif
786
787/* end of Priority handler macros */
788
789/* functions */
790
791/*
792 *  @brief CPU Initialize
793 *
794 *  _CPU_Initialize
795 *
796 *  This routine performs CPU dependent initialization.
797 */
798void _CPU_Initialize(void);
799
800/*
801 *  _CPU_ISR_install_raw_handler
802 *
803 *  This routine installs a "raw" interrupt handler directly into the
804 *  processor's vector table.
805 */
806
807void _CPU_ISR_install_raw_handler(
808  uint32_t    vector,
809  proc_ptr    new_handler,
810  proc_ptr   *old_handler
811);
812
813/*
814 *  _CPU_ISR_install_vector
815 *
816 *  This routine installs an interrupt vector.
817 */
818
819void _CPU_ISR_install_vector(
820  uint32_t    vector,
821  proc_ptr    new_handler,
822  proc_ptr   *old_handler
823);
824
825/*
826 *  _CPU_Install_interrupt_stack
827 *
828 *  This routine installs the hardware interrupt stack pointer.
829 *
830 *  NOTE:  It needs only be provided if CPU_HAS_HARDWARE_INTERRUPT_STACK
831 *         is TRUE.
832 */
833
834void _CPU_Install_interrupt_stack( void );
835
836/*
837 *  _CPU_Thread_Idle_body
838 *
839 *  This routine is the CPU dependent IDLE thread body.
840 *
841 *  NOTE:  It need only be provided if CPU_PROVIDES_IDLE_THREAD_BODY
842 *         is TRUE.
843 */
844
845void *_CPU_Thread_Idle_body( uintptr_t ignored );
846
847/*
848 *  _CPU_Context_switch
849 *
850 *  This routine switches from the run context to the heir context.
851 */
852
853void _CPU_Context_switch(
854  Context_Control  *run,
855  Context_Control  *heir
856);
857
858/*
859 *  _CPU_Context_restore
860 *
861 *  This routine is generally used only to restart self in an
862 *  efficient manner.  It may simply be a label in _CPU_Context_switch.
863 */
864
865void _CPU_Context_restore(
866  Context_Control *new_context
867) RTEMS_COMPILER_NO_RETURN_ATTRIBUTE;
868
869/*
870 *  @brief This routine saves the floating point context passed to it.
871 *
872 *  _CPU_Context_save_fp
873 *
874 */
875void _CPU_Context_save_fp(
876  Context_Control_fp **fp_context_ptr
877);
878
879/*
880 *  @brief This routine restores the floating point context passed to it.
881 *
882 *  _CPU_Context_restore_fp
883 *
884 */
885void _CPU_Context_restore_fp(
886  Context_Control_fp **fp_context_ptr
887);
888
889/* FIXME */
890typedef CPU_Interrupt_frame CPU_Exception_frame;
891
892void _CPU_Exception_frame_print( const CPU_Exception_frame *frame );
893
894#ifdef __cplusplus
895}
896#endif
897
898#endif
Note: See TracBrowser for help on using the repository browser.