source: rtems/cpukit/score/cpu/unix/rtems/score/cpu.h @ c03e2bc

4.104.115
Last change on this file since c03e2bc was c03e2bc, checked in by Joel Sherrill <joel.sherrill@…>, on 02/11/09 at 21:45:05

2009-02-11 Joel Sherrill <joel.sherrill@…>

  • cpu.c, rtems/score/cpu.h: Eliminate _CPU_Thread_dispatch_pointer and passing address of _Thread_Dispatch to _CPU_Initialize. Clean up comments.
  • Property mode set to 100644
File size: 30.9 KB
Line 
1/**
2 * @file rtems/score/cpu.h
3 */
4
5/*
6 *  This include file contains information pertaining to the
7 *  UNIX port of RTEMS.
8 *
9 *  COPYRIGHT (c) 1994 by Division Incorporated
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.rtems.com/license/LICENSE.
14 *
15 *  COPYRIGHT (c) 1989-2006.
16 *  On-Line Applications Research Corporation (OAR).
17 *
18 *  The license and distribution terms for this file may in
19 *  the file LICENSE in this distribution or at
20 *  http://www.rtems.com/license/LICENSE.
21 *
22 *  $Id$
23 */
24
25#ifndef _RTEMS_SCORE_CPU_H
26#define _RTEMS_SCORE_CPU_H
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32#include <rtems/score/unix.h>              /* pick up machine definitions */
33#ifndef ASM
34#include <rtems/score/types.h>
35#endif
36
37#if defined(linux)
38#define MALLOC_0_RETURNS_NULL
39#endif
40
41/* conditional compilation parameters */
42
43/*
44 *  Should the calls to _Thread_Enable_dispatch be inlined?
45 *
46 *  If TRUE, then they are inlined.
47 *  If FALSE, then a subroutine call is made.
48 *
49 *  Basically this is an example of the classic trade-off of size
50 *  versus speed.  Inlining the call (TRUE) typically increases the
51 *  size of RTEMS while speeding up the enabling of dispatching.
52 *  [NOTE: In general, the _Thread_Dispatch_disable_level will
53 *  only be 0 or 1 unless you are in an interrupt handler and that
54 *  interrupt handler invokes the executive.]  When not inlined
55 *  something calls _Thread_Enable_dispatch which in turns calls
56 *  _Thread_Dispatch.  If the enable dispatch is inlined, then
57 *  one subroutine call is avoided entirely.]
58 */
59
60#define CPU_INLINE_ENABLE_DISPATCH       FALSE
61
62/*
63 *  Should the body of the search loops in _Thread_queue_Enqueue_priority
64 *  be unrolled one time?  In unrolled each iteration of the loop examines
65 *  two "nodes" on the chain being searched.  Otherwise, only one node
66 *  is examined per iteration.
67 *
68 *  If TRUE, then the loops are unrolled.
69 *  If FALSE, then the loops are not unrolled.
70 *
71 *  The primary factor in making this decision is the cost of disabling
72 *  and enabling interrupts (_ISR_Flash) versus the cost of rest of the
73 *  body of the loop.  On some CPUs, the flash is more expensive than
74 *  one iteration of the loop body.  In this case, it might be desirable
75 *  to unroll the loop.  It is important to note that on some CPUs, this
76 *  code is the longest interrupt disable period in RTEMS.  So it is
77 *  necessary to strike a balance when setting this parameter.
78 */
79
80#define CPU_UNROLL_ENQUEUE_PRIORITY      TRUE
81
82/*
83 *  Does RTEMS manage a dedicated interrupt stack in software?
84 *
85 *  If TRUE, then a stack is allocated in _ISR_Handler_initialization.
86 *  If FALSE, nothing is done.
87 *
88 *  If the CPU supports a dedicated interrupt stack in hardware,
89 *  then it is generally the responsibility of the BSP to allocate it
90 *  and set it up.
91 *
92 *  If the CPU does not support a dedicated interrupt stack, then
93 *  the porter has two options: (1) execute interrupts on the
94 *  stack of the interrupted task, and (2) have RTEMS manage a dedicated
95 *  interrupt stack.
96 *
97 *  If this is TRUE, CPU_ALLOCATE_INTERRUPT_STACK should also be TRUE.
98 *
99 *  Only one of CPU_HAS_SOFTWARE_INTERRUPT_STACK and
100 *  CPU_HAS_HARDWARE_INTERRUPT_STACK should be set to TRUE.  It is
101 *  possible that both are FALSE for a particular CPU.  Although it
102 *  is unclear what that would imply about the interrupt processing
103 *  procedure on that CPU.
104 */
105
106#define CPU_HAS_SOFTWARE_INTERRUPT_STACK FALSE
107
108/*
109 *  Does the CPU follow the simple vectored interrupt model?
110 *
111 *  If TRUE, then RTEMS allocates the vector table it internally manages.
112 *  If FALSE, then the BSP is assumed to allocate and manage the vector
113 *  table
114 */
115#define CPU_SIMPLE_VECTORED_INTERRUPTS TRUE
116
117/*
118 *  Does this CPU have hardware support for a dedicated interrupt stack?
119 *
120 *  If TRUE, then it must be installed during initialization.
121 *  If FALSE, then no installation is performed.
122 *
123 *  If this is TRUE, CPU_ALLOCATE_INTERRUPT_STACK should also be TRUE.
124 *
125 *  Only one of CPU_HAS_SOFTWARE_INTERRUPT_STACK and
126 *  CPU_HAS_HARDWARE_INTERRUPT_STACK should be set to TRUE.  It is
127 *  possible that both are FALSE for a particular CPU.  Although it
128 *  is unclear what that would imply about the interrupt processing
129 *  procedure on that CPU.
130 */
131
132#define CPU_HAS_HARDWARE_INTERRUPT_STACK TRUE
133
134/*
135 *  Does RTEMS allocate a dedicated interrupt stack in the Interrupt Manager?
136 *
137 *  If TRUE, then the memory is allocated during initialization.
138 *  If FALSE, then the memory is allocated during initialization.
139 *
140 *  This should be TRUE is CPU_HAS_SOFTWARE_INTERRUPT_STACK is TRUE.
141 */
142
143#define CPU_ALLOCATE_INTERRUPT_STACK FALSE
144
145/*
146 *  Does the RTEMS invoke the user's ISR with the vector number and
147 *  a pointer to the saved interrupt frame (1) or just the vector
148 *  number (0)?
149 */
150
151#define CPU_ISR_PASSES_FRAME_POINTER 0
152
153/*
154 *  Does the CPU have hardware floating point?
155 *
156 *  If TRUE, then the RTEMS_FLOATING_POINT task attribute is supported.
157 *  If FALSE, then the RTEMS_FLOATING_POINT task attribute is ignored.
158 *
159 *  If there is a FP coprocessor such as the i387 or mc68881, then
160 *  the answer is TRUE.
161 *
162 *  The macro name "UNIX_HAS_FPU" should be made CPU specific.
163 *  It indicates whether or not this CPU model has FP support.  For
164 *  example, it would be possible to have an i386_nofp CPU model
165 *  which set this to false to indicate that you have an i386 without
166 *  an i387 and wish to leave floating point support out of RTEMS.
167 */
168
169#define CPU_HARDWARE_FP     TRUE
170#define CPU_SOFTWARE_FP     FALSE
171
172/*
173 *  Are all tasks RTEMS_FLOATING_POINT tasks implicitly?
174 *
175 *  If TRUE, then the RTEMS_FLOATING_POINT task attribute is assumed.
176 *  If FALSE, then the RTEMS_FLOATING_POINT task attribute is followed.
177 *
178 *  If CPU_HARDWARE_FP is FALSE, then this should be FALSE as well.
179 */
180
181#define CPU_ALL_TASKS_ARE_FP     FALSE
182
183/*
184 *  Should the IDLE task have a floating point context?
185 *
186 *  If TRUE, then the IDLE task is created as a RTEMS_FLOATING_POINT task
187 *  and it has a floating point context which is switched in and out.
188 *  If FALSE, then the IDLE task does not have a floating point context.
189 *
190 *  Setting this to TRUE negatively impacts the time required to preempt
191 *  the IDLE task from an interrupt because the floating point context
192 *  must be saved as part of the preemption.
193 */
194
195#define CPU_IDLE_TASK_IS_FP      FALSE
196
197/*
198 *  Should the saving of the floating point registers be deferred
199 *  until a context switch is made to another different floating point
200 *  task?
201 *
202 *  If TRUE, then the floating point context will not be stored until
203 *  necessary.  It will remain in the floating point registers and not
204 *  disturned until another floating point task is switched to.
205 *
206 *  If FALSE, then the floating point context is saved when a floating
207 *  point task is switched out and restored when the next floating point
208 *  task is restored.  The state of the floating point registers between
209 *  those two operations is not specified.
210 *
211 *  If the floating point context does NOT have to be saved as part of
212 *  interrupt dispatching, then it should be safe to set this to TRUE.
213 *
214 *  Setting this flag to TRUE results in using a different algorithm
215 *  for deciding when to save and restore the floating point context.
216 *  The deferred FP switch algorithm minimizes the number of times
217 *  the FP context is saved and restored.  The FP context is not saved
218 *  until a context switch is made to another, different FP task.
219 *  Thus in a system with only one FP task, the FP context will never
220 *  be saved or restored.
221 */
222
223#define CPU_USE_DEFERRED_FP_SWITCH       TRUE
224
225/*
226 *  Does this port provide a CPU dependent IDLE task implementation?
227 *
228 *  If TRUE, then the routine _CPU_Thread_Idle_body
229 *  must be provided and is the default IDLE thread body instead of
230 *  _CPU_Thread_Idle_body.
231 *
232 *  If FALSE, then use the generic IDLE thread body if the BSP does
233 *  not provide one.
234 *
235 *  This is intended to allow for supporting processors which have
236 *  a low power or idle mode.  When the IDLE thread is executed, then
237 *  the CPU can be powered down.
238 *
239 *  The order of precedence for selecting the IDLE thread body is:
240 *
241 *    1.  BSP provided
242 *    2.  CPU dependent (if provided)
243 *    3.  generic (if no BSP and no CPU dependent)
244 */
245
246#define CPU_PROVIDES_IDLE_THREAD_BODY    TRUE
247
248/*
249 *  Does the stack grow up (toward higher addresses) or down
250 *  (toward lower addresses)?
251 *
252 *  If TRUE, then the grows upward.
253 *  If FALSE, then the grows toward smaller addresses.
254 */
255
256#if defined(__hppa__)
257#define CPU_STACK_GROWS_UP               TRUE
258#elif defined(__sparc__) || defined(__i386__)
259#define CPU_STACK_GROWS_UP               FALSE
260#else
261#error "unknown CPU!!"
262#endif
263
264
265/*
266 *  The following is the variable attribute used to force alignment
267 *  of critical RTEMS structures.  On some processors it may make
268 *  sense to have these aligned on tighter boundaries than
269 *  the minimum requirements of the compiler in order to have as
270 *  much of the critical data area as possible in a cache line.
271 *
272 *  The placement of this macro in the declaration of the variables
273 *  is based on the syntactically requirements of the GNU C
274 *  "__attribute__" extension.  For example with GNU C, use
275 *  the following to force a structures to a 32 byte boundary.
276 *
277 *      __attribute__ ((aligned (32)))
278 *
279 *  NOTE:  Currently only the Priority Bit Map table uses this feature.
280 *         To benefit from using this, the data must be heavily
281 *         used so it will stay in the cache and used frequently enough
282 *         in the executive to justify turning this on.
283 *
284 *  This is really not critical on the POSIX simulator ports as
285 *  performance is not the goal here.
286 */
287
288#define CPU_STRUCTURE_ALIGNMENT
289
290/*
291 *  Define what is required to specify how the network to host conversion
292 *  routines are handled.
293 */
294
295#if defined(__hppa__) || defined(__sparc__)
296#define CPU_BIG_ENDIAN                           TRUE
297#define CPU_LITTLE_ENDIAN                        FALSE
298#elif defined(__i386__)
299#define CPU_BIG_ENDIAN                           FALSE
300#define CPU_LITTLE_ENDIAN                        TRUE
301#else
302#error "Unknown CPU!!!"
303#endif
304
305/*
306 *  The following defines the number of bits actually used in the
307 *  interrupt field of the task mode.  How those bits map to the
308 *  CPU interrupt levels is defined by the routine _CPU_ISR_Set_level().
309 */
310
311#define CPU_MODES_INTERRUPT_MASK   0x00000001
312
313#define CPU_NAME "UNIX"
314
315/*
316 *  Processor defined structures required for cpukit/score.
317 */
318
319/* may need to put some structures here.  */
320
321#if defined(__hppa__)
322/*
323 * Word indices within a jmp_buf structure
324 */
325
326#ifdef RTEMS_NEWLIB_SETJMP
327#define RP_OFF       6
328#define SP_OFF       2
329#define R3_OFF      10
330#define R4_OFF      11
331#define R5_OFF      12
332#define R6_OFF      13
333#define R7_OFF      14
334#define R8_OFF      15
335#define R9_OFF      16
336#define R10_OFF     17
337#define R11_OFF     18
338#define R12_OFF     19
339#define R13_OFF     20
340#define R14_OFF     21
341#define R15_OFF     22
342#define R16_OFF     23
343#define R17_OFF     24
344#define R18_OFF     25
345#define DP_OFF      26
346#endif
347
348#ifdef RTEMS_UNIXLIB_SETJMP
349#define RP_OFF       0
350#define SP_OFF       1
351#define R3_OFF       4
352#define R4_OFF       5
353#define R5_OFF       6
354#define R6_OFF       7
355#define R7_OFF       8
356#define R8_OFF       9
357#define R9_OFF      10
358#define R10_OFF     11
359#define R11_OFF     12
360#define R12_OFF     13
361#define R13_OFF     14
362#define R14_OFF     15
363#define R15_OFF     16
364#define R16_OFF     17
365#define R17_OFF     18
366#define R18_OFF     19
367#define DP_OFF      20
368#endif
369#endif
370
371#if defined(__i386__)
372 
373#ifdef RTEMS_NEWLIB
374#error "Newlib not installed"
375#endif
376 
377/*
378 *  For i386 targets
379 */
380 
381#ifdef RTEMS_UNIXLIB
382#if defined(__FreeBSD__)
383#define RET_OFF    0
384#define EBX_OFF    1
385#define EBP_OFF    2
386#define ESP_OFF    3
387#define ESI_OFF    4
388#define EDI_OFF    5
389#elif defined(__CYGWIN__)
390#define EAX_OFF    0
391#define EBX_OFF    1
392#define ECX_OFF    2
393#define EDX_OFF    3
394#define ESI_OFF    4
395#define EDI_OFF    5
396#define EBP_OFF    6
397#define ESP_OFF    7
398#define RET_OFF    8
399#else
400/* Linux */
401#define EBX_OFF    0
402#define ESI_OFF    1
403#define EDI_OFF    2
404#define EBP_OFF    3
405#define ESP_OFF    4
406#define RET_OFF    5
407#endif
408#endif
409 
410#endif
411 
412#if defined(__sparc__)
413
414/*
415 *  Word indices within a jmp_buf structure
416 */
417 
418#ifdef RTEMS_NEWLIB
419#define ADDR_ADJ_OFFSET -8
420#define SP_OFF    0
421#define RP_OFF    1
422#define FP_OFF    2
423#endif
424
425#ifdef RTEMS_UNIXLIB
426#define ADDR_ADJ_OFFSET 0
427#define G0_OFF    0
428#define SP_OFF    1
429#define RP_OFF    2   
430#define FP_OFF    3
431#define I7_OFF    4
432#endif
433
434#endif
435
436/*
437 * Contexts
438 *
439 *  Generally there are 2 types of context to save.
440 *     1. Interrupt registers to save
441 *     2. Task level registers to save
442 *
443 *  This means we have the following 3 context items:
444 *     1. task level context stuff::  Context_Control
445 *     2. floating point task stuff:: Context_Control_fp
446 *     3. special interrupt level context :: Context_Control_interrupt
447 *
448 *  On some processors, it is cost-effective to save only the callee
449 *  preserved registers during a task context switch.  This means
450 *  that the ISR code needs to save those registers which do not
451 *  persist across function calls.  It is not mandatory to make this
452 *  distinctions between the caller/callee saves registers for the
453 *  purpose of minimizing context saved during task switch and on interrupts.
454 *  If the cost of saving extra registers is minimal, simplicity is the
455 *  choice.  Save the same context on interrupt entry as for tasks in
456 *  this case.
457 *
458 *  Additionally, if gdb is to be made aware of RTEMS tasks for this CPU, then
459 *  care should be used in designing the context area.
460 *
461 *  On some CPUs with hardware floating point support, the Context_Control_fp
462 *  structure will not be used or it simply consist of an array of a
463 *  fixed number of bytes.   This is done when the floating point context
464 *  is dumped by a "FP save context" type instruction and the format
465 *  is not really defined by the CPU.  In this case, there is no need
466 *  to figure out the exact format -- only the size.  Of course, although
467 *  this is enough information for RTEMS, it is probably not enough for
468 *  a debugger such as gdb.  But that is another problem.
469 */
470
471/*
472 *  This is really just the area for the following fields.
473 *
474 *    jmp_buf    regs;
475 *    uint32_t   isr_level;
476 *
477 *  Doing it this way avoids conflicts between the native stuff and the
478 *  RTEMS stuff.
479 *
480 *  NOTE:
481 *      hpux9 setjmp is optimized for the case where the setjmp buffer
482 *      is 8 byte aligned.  In a RISC world, this seems likely to enable
483 *      8 byte copies, especially for the float registers.
484 *      So we always align them on 8 byte boundaries.
485 */
486
487#ifdef __GNUC__
488#define CONTEXT_STRUCTURE_ALIGNMENT          __attribute__ ((aligned (8)))
489#else
490#define CONTEXT_STRUCTURE_ALIGNMENT
491#endif
492
493typedef struct {
494  char      Area[ SIZEOF_CPU_CONTEXT ] CONTEXT_STRUCTURE_ALIGNMENT;
495} Context_Control;
496
497#define _CPU_Context_Get_SP( _context ) \
498  NULL
499
500typedef struct {
501} Context_Control_fp;
502
503typedef struct {
504} CPU_Interrupt_frame;
505
506/*
507 *  This variable is optional.  It is used on CPUs on which it is difficult
508 *  to generate an "uninitialized" FP context.  It is filled in by
509 *  _CPU_Initialize and copied into the task's FP context area during
510 *  _CPU_Context_Initialize.
511 */
512
513SCORE_EXTERN Context_Control_fp  _CPU_Null_fp_context;
514
515/*
516 *  On some CPUs, RTEMS supports a software managed interrupt stack.
517 *  This stack is allocated by the Interrupt Manager and the switch
518 *  is performed in _ISR_Handler.  These variables contain pointers
519 *  to the lowest and highest addresses in the chunk of memory allocated
520 *  for the interrupt stack.  Since it is unknown whether the stack
521 *  grows up or down (in general), this give the CPU dependent
522 *  code the option of picking the version it wants to use.
523 *
524 *  NOTE: These two variables are required if the macro
525 *        CPU_HAS_SOFTWARE_INTERRUPT_STACK is defined as TRUE.
526 */
527
528SCORE_EXTERN void               *_CPU_Interrupt_stack_low;
529SCORE_EXTERN void               *_CPU_Interrupt_stack_high;
530
531/*
532 *  Nothing prevents the porter from declaring more CPU specific variables.
533 */
534
535/* XXX: if needed, put more variables here */
536
537/*
538 *  The size of the floating point context area.  On some CPUs this
539 *  will not be a "sizeof" because the format of the floating point
540 *  area is not defined -- only the size is.  This is usually on
541 *  CPUs with a "floating point save context" instruction.
542 */
543
544#define CPU_CONTEXT_FP_SIZE sizeof( Context_Control_fp )
545
546/*
547 * The size of a frame on the stack
548 */
549
550#if defined(__hppa__)
551#define CPU_FRAME_SIZE  (32 * 4)
552#elif defined(__sparc__)
553#define CPU_FRAME_SIZE  (112)   /* based on disassembled test code */
554#elif defined(__i386__)
555#define CPU_FRAME_SIZE  (24)  /* return address, sp, and bp pushed plus fudge */
556#else
557#error "Unknown CPU!!!"
558#endif
559
560/*
561 *  Amount of extra stack (above minimum stack size) required by
562 *  MPCI receive server thread.  Remember that in a multiprocessor
563 *  system this thread must exist and be able to process all directives.
564 */
565
566#define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 0
567
568/*
569 *  This defines the number of entries in the ISR_Vector_table managed
570 *  by RTEMS.
571 */
572
573#define CPU_INTERRUPT_NUMBER_OF_VECTORS      64
574#define CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER  (CPU_INTERRUPT_NUMBER_OF_VECTORS - 1)
575
576/*
577 *  This is defined if the port has a special way to report the ISR nesting
578 *  level.  Most ports maintain the variable _ISR_Nest_level.
579 */
580
581#define CPU_PROVIDES_ISR_IS_IN_PROGRESS FALSE
582
583/*
584 *  Should be large enough to run all RTEMS tests.  This ensures
585 *  that a "reasonable" small application should not have any problems.
586 */
587
588#define CPU_STACK_MINIMUM_SIZE          (16 * 1024)
589
590/*
591 *  CPU's worst alignment requirement for data types on a byte boundary.  This
592 *  alignment does not take into account the requirements for the stack.
593 */
594
595#define CPU_ALIGNMENT              8
596
597/*
598 *  This number corresponds to the byte alignment requirement for the
599 *  heap handler.  This alignment requirement may be stricter than that
600 *  for the data types alignment specified by CPU_ALIGNMENT.  It is
601 *  common for the heap to follow the same alignment requirement as
602 *  CPU_ALIGNMENT.  If the CPU_ALIGNMENT is strict enough for the heap,
603 *  then this should be set to CPU_ALIGNMENT.
604 *
605 *  NOTE:  This does not have to be a power of 2.  It does have to
606 *         be greater or equal to than CPU_ALIGNMENT.
607 */
608
609#define CPU_HEAP_ALIGNMENT         CPU_ALIGNMENT
610
611/*
612 *  This number corresponds to the byte alignment requirement for memory
613 *  buffers allocated by the partition manager.  This alignment requirement
614 *  may be stricter than that for the data types alignment specified by
615 *  CPU_ALIGNMENT.  It is common for the partition to follow the same
616 *  alignment requirement as CPU_ALIGNMENT.  If the CPU_ALIGNMENT is strict
617 *  enough for the partition, then this should be set to CPU_ALIGNMENT.
618 *
619 *  NOTE:  This does not have to be a power of 2.  It does have to
620 *         be greater or equal to than CPU_ALIGNMENT.
621 */
622
623#define CPU_PARTITION_ALIGNMENT    CPU_ALIGNMENT
624
625/*
626 *  This number corresponds to the byte alignment requirement for the
627 *  stack.  This alignment requirement may be stricter than that for the
628 *  data types alignment specified by CPU_ALIGNMENT.  If the CPU_ALIGNMENT
629 *  is strict enough for the stack, then this should be set to 0.
630 *
631 *  NOTE:  This must be a power of 2 either 0 or greater than CPU_ALIGNMENT.
632 */
633
634#define CPU_STACK_ALIGNMENT        64
635
636/*
637 *  ISR handler macros
638 */
639
640/*
641 *  Support routine to initialize the RTEMS vector table after it is allocated.
642 */
643
644void _CPU_Initialize_vectors(void);
645
646/*
647 *  Disable all interrupts for an RTEMS critical section.  The previous
648 *  level is returned in _level.
649 */
650
651extern uint32_t   _CPU_ISR_Disable_support(void);
652
653#define _CPU_ISR_Disable( _level ) \
654    do { \
655      (_level) = _CPU_ISR_Disable_support(); \
656    } while ( 0 )
657
658/*
659 *  Enable interrupts to the previous level (returned by _CPU_ISR_Disable).
660 *  This indicates the end of an RTEMS critical section.  The parameter
661 *  _level is not modified.
662 */
663
664void _CPU_ISR_Enable(uint32_t   level);
665
666/*
667 *  This temporarily restores the interrupt to _level before immediately
668 *  disabling them again.  This is used to divide long RTEMS critical
669 *  sections into two or more parts.  The parameter _level is not
670 * modified.
671 */
672
673#define _CPU_ISR_Flash( _level ) \
674  do { \
675      register uint32_t   _ignored = 0; \
676      _CPU_ISR_Enable( (_level) ); \
677      _CPU_ISR_Disable( _ignored ); \
678  } while ( 0 )
679
680/*
681 *  Map interrupt level in task mode onto the hardware that the CPU
682 *  actually provides.  Currently, interrupt levels which do not
683 *  map onto the CPU in a generic fashion are undefined.  Someday,
684 *  it would be nice if these were "mapped" by the application
685 *  via a callout.  For example, m68k has 8 levels 0 - 7, levels
686 *  8 - 255 would be available for bsp/application specific meaning.
687 *  This could be used to manage a programmable interrupt controller
688 *  via the rtems_task_mode directive.
689 */
690
691#define _CPU_ISR_Set_level( new_level ) \
692  { \
693    if ( new_level == 0 ) _CPU_ISR_Enable( 0 ); \
694    else                  _CPU_ISR_Enable( 1 ); \
695  }
696
697uint32_t   _CPU_ISR_Get_level( void );
698
699/* end of ISR handler macros */
700
701/* Context handler macros */
702
703/*
704 *  This routine is responsible for somehow restarting the currently
705 *  executing task.  If you are lucky, then all that is necessary
706 *  is restoring the context.  Otherwise, there will need to be
707 *  a special assembly routine which does something special in this
708 *  case.  Context_Restore should work most of the time.  It will
709 *  not work if restarting self conflicts with the stack frame
710 *  assumptions of restoring a context.
711 */
712
713#define _CPU_Context_Restart_self( _the_context ) \
714   _CPU_Context_restore( (_the_context) );
715
716/*
717 *  The purpose of this macro is to allow the initial pointer into
718 *  a floating point context area (used to save the floating point
719 *  context) to be at an arbitrary place in the floating point
720 *  context area.
721 *
722 *  This is necessary because some FP units are designed to have
723 *  their context saved as a stack which grows into lower addresses.
724 *  Other FP units can be saved by simply moving registers into offsets
725 *  from the base of the context area.  Finally some FP units provide
726 *  a "dump context" instruction which could fill in from high to low
727 *  or low to high based on the whim of the CPU designers.
728 */
729
730#define _CPU_Context_Fp_start( _base, _offset ) \
731   ( (void *) _Addresses_Add_offset( (_base), (_offset) ) )
732
733/*
734 *  This routine initializes the FP context area passed to it to.
735 *  There are a few standard ways in which to initialize the
736 *  floating point context.  The code included for this macro assumes
737 *  that this is a CPU in which a "initial" FP context was saved into
738 *  _CPU_Null_fp_context and it simply copies it to the destination
739 *  context passed to it.
740 *
741 *  Other models include (1) not doing anything, and (2) putting
742 *  a "null FP status word" in the correct place in the FP context.
743 */
744
745#define _CPU_Context_Initialize_fp( _destination ) \
746  { \
747   *(*(_destination)) = _CPU_Null_fp_context; \
748  }
749
750#define _CPU_Context_save_fp( _fp_context ) \
751    _CPU_Save_float_context(*(_fp_context))
752
753#define _CPU_Context_restore_fp( _fp_context ) \
754    _CPU_Restore_float_context(*(_fp_context))
755
756extern void _CPU_Context_Initialize(
757  Context_Control  *_the_context,
758  uint32_t         *_stack_base,
759  uint32_t          _size,
760  uint32_t          _new_level,
761  void             *_entry_point,
762  bool              _is_fp
763);
764
765/* end of Context handler macros */
766
767/* Fatal Error manager macros */
768
769/*
770 *  This routine copies _error into a known place -- typically a stack
771 *  location or a register, optionally disables interrupts, and
772 *  halts/stops the CPU.
773 */
774
775#define _CPU_Fatal_halt( _error ) \
776    _CPU_Fatal_error( _error )
777
778/* end of Fatal Error manager macros */
779
780/* Bitfield handler macros */
781
782/*
783 *  This routine sets _output to the bit number of the first bit
784 *  set in _value.  _value is of CPU dependent type Priority_Bit_map_control.
785 *  This type may be either 16 or 32 bits wide although only the 16
786 *  least significant bits will be used.
787 *
788 *  There are a number of variables in using a "find first bit" type
789 *  instruction.
790 *
791 *    (1) What happens when run on a value of zero?
792 *    (2) Bits may be numbered from MSB to LSB or vice-versa.
793 *    (3) The numbering may be zero or one based.
794 *    (4) The "find first bit" instruction may search from MSB or LSB.
795 *
796 *  RTEMS guarantees that (1) will never happen so it is not a concern.
797 *  (2),(3), (4) are handled by the macros _CPU_Priority_mask() and
798 *  _CPU_Priority_bits_index().  These three form a set of routines
799 *  which must logically operate together.  Bits in the _value are
800 *  set and cleared based on masks built by _CPU_Priority_mask().
801 *  The basic major and minor values calculated by _Priority_Major()
802 *  and _Priority_Minor() are "massaged" by _CPU_Priority_bits_index()
803 *  to properly range between the values returned by the "find first bit"
804 *  instruction.  This makes it possible for _Priority_Get_highest() to
805 *  calculate the major and directly index into the minor table.
806 *  This mapping is necessary to ensure that 0 (a high priority major/minor)
807 *  is the first bit found.
808 *
809 *  This entire "find first bit" and mapping process depends heavily
810 *  on the manner in which a priority is broken into a major and minor
811 *  components with the major being the 4 MSB of a priority and minor
812 *  the 4 LSB.  Thus (0 << 4) + 0 corresponds to priority 0 -- the highest
813 *  priority.  And (15 << 4) + 14 corresponds to priority 254 -- the next
814 *  to the lowest priority.
815 *
816 *  If your CPU does not have a "find first bit" instruction, then
817 *  there are ways to make do without it.  Here are a handful of ways
818 *  to implement this in software:
819 *
820 *    - a series of 16 bit test instructions
821 *    - a "binary search using if's"
822 *    - _number = 0
823 *      if _value > 0x00ff
824 *        _value >>=8
825 *        _number = 8;
826 *
827 *      if _value > 0x0000f
828 *        _value >=8
829 *        _number += 4
830 *
831 *      _number += bit_set_table[ _value ]
832 *
833 *    where bit_set_table[ 16 ] has values which indicate the first
834 *      bit set
835 */
836
837/*
838 *  The UNIX port uses the generic C algorithm for bitfield scan to avoid
839 *  dependencies on either a native bitscan instruction or an ffs() in the
840 *  C library.
841 */
842 
843#define CPU_USE_GENERIC_BITFIELD_CODE TRUE
844#define CPU_USE_GENERIC_BITFIELD_DATA TRUE
845 
846/* end of Bitfield handler macros */
847 
848/* Priority handler handler macros */
849 
850/*
851 *  The UNIX port uses the generic C algorithm for bitfield scan to avoid
852 *  dependencies on either a native bitscan instruction or an ffs() in the
853 *  C library.
854 */
855 
856/* end of Priority handler macros */
857
858/* functions */
859
860/*
861 *  _CPU_Initialize
862 *
863 *  This routine performs CPU dependent initialization.
864 */
865
866void _CPU_Initialize(void);
867
868/*
869 *  _CPU_ISR_install_raw_handler
870 *
871 *  This routine installs a "raw" interrupt handler directly into the
872 *  processor's vector table.
873 */
874 
875void _CPU_ISR_install_raw_handler(
876  uint32_t    vector,
877  proc_ptr    new_handler,
878  proc_ptr   *old_handler
879);
880
881/*
882 *  _CPU_ISR_install_vector
883 *
884 *  This routine installs an interrupt vector.
885 */
886
887void _CPU_ISR_install_vector(
888  uint32_t    vector,
889  proc_ptr    new_handler,
890  proc_ptr   *old_handler
891);
892
893/*
894 *  _CPU_Install_interrupt_stack
895 *
896 *  This routine installs the hardware interrupt stack pointer.
897 *
898 *  NOTE:  It need only be provided if CPU_HAS_HARDWARE_INTERRUPT_STACK
899 *         is TRUE.
900 */
901
902void _CPU_Install_interrupt_stack( void );
903
904/*
905 *  _CPU_Thread_Idle_body
906 *
907 *  This routine is the CPU dependent IDLE thread body.
908 *
909 *  NOTE:  It need only be provided if CPU_PROVIDES_IDLE_THREAD_BODY
910 *         is TRUE.
911 */
912
913void *_CPU_Thread_Idle_body( uint32_t );
914
915/*
916 *  _CPU_Context_switch
917 *
918 *  This routine switches from the run context to the heir context.
919 */
920
921void _CPU_Context_switch(
922  Context_Control  *run,
923  Context_Control  *heir
924);
925
926/*
927 *  _CPU_Context_restore
928 *
929 *  This routine is generally used only to restart self in an
930 *  efficient manner.  It may simply be a label in _CPU_Context_switch.
931 *
932 *  NOTE: May be unnecessary to reload some registers.
933 */
934
935void _CPU_Context_restore(
936  Context_Control *new_context
937);
938
939/*
940 *  _CPU_Save_float_context
941 *
942 *  This routine saves the floating point context passed to it.
943 */
944
945void _CPU_Save_float_context(
946  Context_Control_fp *fp_context_ptr
947);
948
949/*
950 *  _CPU_Restore_float_context
951 *
952 *  This routine restores the floating point context passed to it.
953 */
954
955void _CPU_Restore_float_context(
956  Context_Control_fp *fp_context_ptr
957);
958
959
960void _CPU_ISR_Set_signal_level(
961  uint32_t   level
962);
963
964void _CPU_Fatal_error(
965  uint32_t   _error
966);
967
968/*  The following routine swaps the endian format of an unsigned int.
969 *  It must be static because it is referenced indirectly.
970 *
971 *  This version will work on any processor, but if there is a better
972 *  way for your CPU PLEASE use it.  The most common way to do this is to:
973 *
974 *     swap least significant two bytes with 16-bit rotate
975 *     swap upper and lower 16-bits
976 *     swap most significant two bytes with 16-bit rotate
977 *
978 *  Some CPUs have special instructions which swap a 32-bit quantity in
979 *  a single instruction (e.g. i486).  It is probably best to avoid
980 *  an "endian swapping control bit" in the CPU.  One good reason is
981 *  that interrupts would probably have to be disabled to ensure that
982 *  an interrupt does not try to access the same "chunk" with the wrong
983 *  endian.  Another good reason is that on some CPUs, the endian bit
984 *  endianness for ALL fetches -- both code and data -- so the code
985 *  will be fetched incorrectly.
986 */
987 
988static inline uint32_t CPU_swap_u32(
989  uint32_t value
990)
991{
992  uint32_t   byte1, byte2, byte3, byte4, swapped;
993 
994  byte4 = (value >> 24) & 0xff;
995  byte3 = (value >> 16) & 0xff;
996  byte2 = (value >> 8)  & 0xff;
997  byte1 =  value        & 0xff;
998 
999  swapped = (byte1 << 24) | (byte2 << 16) | (byte3 << 8) | byte4;
1000  return( swapped );
1001}
1002
1003#define CPU_swap_u16( value ) \
1004  (((value&0xff) << 8) | ((value >> 8)&0xff))
1005
1006/*
1007 *  Special Purpose Routines to hide the use of UNIX system calls.
1008 */
1009
1010
1011/*
1012 *  Pointer to a sync io  Handler
1013 */
1014
1015typedef void ( *rtems_sync_io_handler )(
1016  int fd,
1017  bool    read,
1018  bool    wrtie,
1019  bool    except
1020);
1021
1022/* returns -1 if fd to large, 0 is successful */
1023int _CPU_Set_sync_io_handler(
1024  int fd,
1025  bool    read,
1026  bool    write,
1027  bool    except,
1028  rtems_sync_io_handler handler
1029);
1030
1031/* returns -1 if fd to large, o if successful */
1032int _CPU_Clear_sync_io_handler(
1033  int fd
1034);
1035
1036int _CPU_Get_clock_vector( void );
1037
1038void _CPU_Start_clock(
1039  int microseconds
1040);
1041
1042void _CPU_Stop_clock( void );
1043
1044#if defined(RTEMS_MULTIPROCESSING)
1045
1046void _CPU_SHM_Init(
1047  uint32_t     maximum_nodes,
1048  bool         is_master_node,
1049  void       **shm_address,
1050  uint32_t    *shm_length
1051);
1052
1053int _CPU_Get_pid( void );
1054 
1055int _CPU_SHM_Get_vector( void );
1056 
1057void _CPU_SHM_Send_interrupt(
1058  int pid,
1059  int vector
1060);
1061 
1062void _CPU_SHM_Lock(
1063  int semaphore
1064);
1065
1066void _CPU_SHM_Unlock(
1067  int semaphore
1068);
1069#endif
1070
1071#ifdef __cplusplus
1072}
1073#endif
1074
1075#endif
Note: See TracBrowser for help on using the repository browser.