source: rtems-schedsim/schedsim/rtems/sched_cpu/rtems/score/cpu.h @ 8703c13

Last change on this file since 8703c13 was 726b27c, checked in by Joel Sherrill <joel.sherrill@…>, on 12/13/13 at 17:01:48

schedsim: Update to latest RTEMS. Works Uniprocessor

  • Property mode set to 100644
File size: 42.4 KB
Line 
1/**
2 * @file rtems/score/cpu.h
3 */
4
5/*
6 *  BASED UPON SOURCE IN RTEMS, MODIFIED FOR SIMULATOR
7 *
8 *  This include file contains information pertaining to the XXX
9 *  processor.
10 *
11 *  @note This file is part of a porting template that is intended
12 *  to be used as the starting point when porting RTEMS to a new
13 *  CPU family.  The following needs to be done when using this as
14 *  the starting point for a new port:
15 *
16 *  + Anywhere there is an XXX, it should be replaced
17 *    with information about the CPU family being ported to.
18 *
19 *  + At the end of each comment section, there is a heading which
20 *    says "Port Specific Information:".  When porting to RTEMS,
21 *    add CPU family specific information in this section
22 */
23
24/*
25 *  COPYRIGHT (c) 1989-2013.
26 *  On-Line Applications Research Corporation (OAR).
27 *
28 *  The license and distribution terms for this file may be
29 *  found in the file LICENSE in this distribution or at
30 *  http://www.rtems.com/license/LICENSE.
31 */
32
33#ifndef _RTEMS_SCORE_CPU_H
34#define _RTEMS_SCORE_CPU_H
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40#include <rtems/score/no_cpu.h>            /* pick up machine definitions */
41#ifndef ASM
42#include <rtems/score/types.h>
43#endif
44
45/* conditional compilation parameters */
46
47/**
48 *  Should the calls to @ref _Thread_Enable_dispatch be inlined?
49 *
50 *  If TRUE, then they are inlined.
51 *  If FALSE, then a subroutine call is made.
52 *
53 *  This conditional is an example of the classic trade-off of size
54 *  versus speed.  Inlining the call (TRUE) typically increases the
55 *  size of RTEMS while speeding up the enabling of dispatching.
56 *
57 *  @note In general, the @ref _Thread_Dispatch_disable_level will
58 *  only be 0 or 1 unless you are in an interrupt handler and that
59 *  interrupt handler invokes the executive.]  When not inlined
60 *  something calls @ref _Thread_Enable_dispatch which in turns calls
61 *  @ref _Thread_Dispatch.  If the enable dispatch is inlined, then
62 *  one subroutine call is avoided entirely.
63 *
64 *  Port Specific Information:
65 *
66 *  XXX document implementation including references if appropriate
67 */
68#define CPU_INLINE_ENABLE_DISPATCH       TRUE
69
70/**
71 *  Should the body of the search loops in _Thread_queue_Enqueue_priority
72 *  be unrolled one time?  In unrolled each iteration of the loop examines
73 *  two "nodes" on the chain being searched.  Otherwise, only one node
74 *  is examined per iteration.
75 *
76 *  If TRUE, then the loops are unrolled.
77 *  If FALSE, then the loops are not unrolled.
78 *
79 *  The primary factor in making this decision is the cost of disabling
80 *  and enabling interrupts (_ISR_Flash) versus the cost of rest of the
81 *  body of the loop.  On some CPUs, the flash is more expensive than
82 *  one iteration of the loop body.  In this case, it might be desirable
83 *  to unroll the loop.  It is important to note that on some CPUs, this
84 *  code is the longest interrupt disable period in RTEMS.  So it is
85 *  necessary to strike a balance when setting this parameter.
86 *
87 *  Port Specific Information:
88 *
89 *  XXX document implementation including references if appropriate
90 */
91#define CPU_UNROLL_ENQUEUE_PRIORITY      TRUE
92
93/**
94 *  Does RTEMS manage a dedicated interrupt stack in software?
95 *
96 *  If TRUE, then a stack is allocated in @ref _ISR_Handler_initialization.
97 *  If FALSE, nothing is done.
98 *
99 *  If the CPU supports a dedicated interrupt stack in hardware,
100 *  then it is generally the responsibility of the BSP to allocate it
101 *  and set it up.
102 *
103 *  If the CPU does not support a dedicated interrupt stack, then
104 *  the porter has two options: (1) execute interrupts on the
105 *  stack of the interrupted task, and (2) have RTEMS manage a dedicated
106 *  interrupt stack.
107 *
108 *  If this is TRUE, @ref CPU_ALLOCATE_INTERRUPT_STACK should also be TRUE.
109 *
110 *  Only one of @ref CPU_HAS_SOFTWARE_INTERRUPT_STACK and
111 *  @ref CPU_HAS_HARDWARE_INTERRUPT_STACK should be set to TRUE.  It is
112 *  possible that both are FALSE for a particular CPU.  Although it
113 *  is unclear what that would imply about the interrupt processing
114 *  procedure on that CPU.
115 *
116 *  Port Specific Information:
117 *
118 *  XXX document implementation including references if appropriate
119 */
120#define CPU_HAS_SOFTWARE_INTERRUPT_STACK FALSE
121
122/**
123 *  Does the CPU follow the simple vectored interrupt model?
124 *
125 *  If TRUE, then RTEMS allocates the vector table it internally manages.
126 *  If FALSE, then the BSP is assumed to allocate and manage the vector
127 *  table
128 *
129 *  Port Specific Information:
130 *
131 *  XXX document implementation including references if appropriate
132 */
133#define CPU_SIMPLE_VECTORED_INTERRUPTS TRUE
134
135/**
136 *  Does this CPU have hardware support for a dedicated interrupt stack?
137 *
138 *  If TRUE, then it must be installed during initialization.
139 *  If FALSE, then no installation is performed.
140 *
141 *  If this is TRUE, @ref CPU_ALLOCATE_INTERRUPT_STACK should also be TRUE.
142 *
143 *  Only one of @ref CPU_HAS_SOFTWARE_INTERRUPT_STACK and
144 *  @ref CPU_HAS_HARDWARE_INTERRUPT_STACK should be set to TRUE.  It is
145 *  possible that both are FALSE for a particular CPU.  Although it
146 *  is unclear what that would imply about the interrupt processing
147 *  procedure on that CPU.
148 *
149 *  Port Specific Information:
150 *
151 *  XXX document implementation including references if appropriate
152 */
153#define CPU_HAS_HARDWARE_INTERRUPT_STACK TRUE
154
155/**
156 *  Does RTEMS allocate a dedicated interrupt stack in the Interrupt Manager?
157 *
158 *  If TRUE, then the memory is allocated during initialization.
159 *  If FALSE, then the memory is allocated during initialization.
160 *
161 *  This should be TRUE is CPU_HAS_SOFTWARE_INTERRUPT_STACK is TRUE.
162 *
163 *  Port Specific Information:
164 *
165 *  XXX document implementation including references if appropriate
166 */
167#define CPU_ALLOCATE_INTERRUPT_STACK TRUE
168
169/**
170 *  Does the RTEMS invoke the user's ISR with the vector number and
171 *  a pointer to the saved interrupt frame (1) or just the vector
172 *  number (0)?
173 *
174 *  Port Specific Information:
175 *
176 *  XXX document implementation including references if appropriate
177 */
178#define CPU_ISR_PASSES_FRAME_POINTER 0
179
180/**
181 *  @def CPU_HARDWARE_FP
182 *
183 *  Does the CPU have hardware floating point?
184 *
185 *  If TRUE, then the RTEMS_FLOATING_POINT task attribute is supported.
186 *  If FALSE, then the RTEMS_FLOATING_POINT task attribute is ignored.
187 *
188 *  If there is a FP coprocessor such as the i387 or mc68881, then
189 *  the answer is TRUE.
190 *
191 *  The macro name "NO_CPU_HAS_FPU" should be made CPU specific.
192 *  It indicates whether or not this CPU model has FP support.  For
193 *  example, it would be possible to have an i386_nofp CPU model
194 *  which set this to false to indicate that you have an i386 without
195 *  an i387 and wish to leave floating point support out of RTEMS.
196 */
197
198/**
199 *  @def CPU_SOFTWARE_FP
200 *
201 *  Does the CPU have no hardware floating point and GCC provides a
202 *  software floating point implementation which must be context
203 *  switched?
204 *
205 *  This feature conditional is used to indicate whether or not there
206 *  is software implemented floating point that must be context
207 *  switched.  The determination of whether or not this applies
208 *  is very tool specific and the state saved/restored is also
209 *  compiler specific.
210 *
211 *  Port Specific Information:
212 *
213 *  XXX document implementation including references if appropriate
214 */
215#if ( NO_CPU_HAS_FPU == 1 )
216#define CPU_HARDWARE_FP     TRUE
217#else
218#define CPU_HARDWARE_FP     FALSE
219#endif
220#define CPU_SOFTWARE_FP     FALSE
221
222/**
223 *  Are all tasks RTEMS_FLOATING_POINT tasks implicitly?
224 *
225 *  If TRUE, then the RTEMS_FLOATING_POINT task attribute is assumed.
226 *  If FALSE, then the RTEMS_FLOATING_POINT task attribute is followed.
227 *
228 *  So far, the only CPUs in which this option has been used are the
229 *  HP PA-RISC and PowerPC.  On the PA-RISC, The HP C compiler and
230 *  gcc both implicitly used the floating point registers to perform
231 *  integer multiplies.  Similarly, the PowerPC port of gcc has been
232 *  seen to allocate floating point local variables and touch the FPU
233 *  even when the flow through a subroutine (like vfprintf()) might
234 *  not use floating point formats.
235 *
236 *  If a function which you would not think utilize the FP unit DOES,
237 *  then one can not easily predict which tasks will use the FP hardware.
238 *  In this case, this option should be TRUE.
239 *
240 *  If @ref CPU_HARDWARE_FP is FALSE, then this should be FALSE as well.
241 *
242 *  Port Specific Information:
243 *
244 *  XXX document implementation including references if appropriate
245 */
246#define CPU_ALL_TASKS_ARE_FP     TRUE
247
248/**
249 *  Should the IDLE task have a floating point context?
250 *
251 *  If TRUE, then the IDLE task is created as a RTEMS_FLOATING_POINT task
252 *  and it has a floating point context which is switched in and out.
253 *  If FALSE, then the IDLE task does not have a floating point context.
254 *
255 *  Setting this to TRUE negatively impacts the time required to preempt
256 *  the IDLE task from an interrupt because the floating point context
257 *  must be saved as part of the preemption.
258 *
259 *  Port Specific Information:
260 *
261 *  XXX document implementation including references if appropriate
262 */
263#define CPU_IDLE_TASK_IS_FP      FALSE
264
265/**
266 *  Should the saving of the floating point registers be deferred
267 *  until a context switch is made to another different floating point
268 *  task?
269 *
270 *  If TRUE, then the floating point context will not be stored until
271 *  necessary.  It will remain in the floating point registers and not
272 *  disturned until another floating point task is switched to.
273 *
274 *  If FALSE, then the floating point context is saved when a floating
275 *  point task is switched out and restored when the next floating point
276 *  task is restored.  The state of the floating point registers between
277 *  those two operations is not specified.
278 *
279 *  If the floating point context does NOT have to be saved as part of
280 *  interrupt dispatching, then it should be safe to set this to TRUE.
281 *
282 *  Setting this flag to TRUE results in using a different algorithm
283 *  for deciding when to save and restore the floating point context.
284 *  The deferred FP switch algorithm minimizes the number of times
285 *  the FP context is saved and restored.  The FP context is not saved
286 *  until a context switch is made to another, different FP task.
287 *  Thus in a system with only one FP task, the FP context will never
288 *  be saved or restored.
289 *
290 *  Port Specific Information:
291 *
292 *  XXX document implementation including references if appropriate
293 */
294#define CPU_USE_DEFERRED_FP_SWITCH       FALSE
295
296/**
297 *  Does this port provide a CPU dependent IDLE task implementation?
298 *
299 *  If TRUE, then the routine @ref _CPU_Thread_Idle_body
300 *  must be provided and is the default IDLE thread body instead of
301 *  @ref _CPU_Thread_Idle_body.
302 *
303 *  If FALSE, then use the generic IDLE thread body if the BSP does
304 *  not provide one.
305 *
306 *  This is intended to allow for supporting processors which have
307 *  a low power or idle mode.  When the IDLE thread is executed, then
308 *  the CPU can be powered down.
309 *
310 *  The order of precedence for selecting the IDLE thread body is:
311 *
312 *    -#  BSP provided
313 *    -#  CPU dependent (if provided)
314 *    -#  generic (if no BSP and no CPU dependent)
315 *
316 *  Port Specific Information:
317 *
318 *  XXX document implementation including references if appropriate
319 */
320#define CPU_PROVIDES_IDLE_THREAD_BODY    TRUE
321
322/**
323 *  Does the stack grow up (toward higher addresses) or down
324 *  (toward lower addresses)?
325 *
326 *  If TRUE, then the grows upward.
327 *  If FALSE, then the grows toward smaller addresses.
328 *
329 *  Port Specific Information:
330 *
331 *  XXX document implementation including references if appropriate
332 */
333#define CPU_STACK_GROWS_UP               TRUE
334
335/**
336 *  The following is the variable attribute used to force alignment
337 *  of critical RTEMS structures.  On some processors it may make
338 *  sense to have these aligned on tighter boundaries than
339 *  the minimum requirements of the compiler in order to have as
340 *  much of the critical data area as possible in a cache line.
341 *
342 *  The placement of this macro in the declaration of the variables
343 *  is based on the syntactically requirements of the GNU C
344 *  "__attribute__" extension.  For example with GNU C, use
345 *  the following to force a structures to a 32 byte boundary.
346 *
347 *      __attribute__ ((aligned (32)))
348 *
349 *  @note Currently only the Priority Bit Map table uses this feature.
350 *        To benefit from using this, the data must be heavily
351 *        used so it will stay in the cache and used frequently enough
352 *        in the executive to justify turning this on.
353 *
354 *  Port Specific Information:
355 *
356 *  XXX document implementation including references if appropriate
357 */
358#define CPU_STRUCTURE_ALIGNMENT
359
360#define CPU_TIMESTAMP_USE_INT64_INLINE TRUE
361
362/**
363 *  @defgroup CPUEndian Processor Dependent Endianness Support
364 *
365 *  This group assists in issues related to processor endianness.
366 */
367
368/**
369 *  @ingroup CPUEndian
370 *  Define what is required to specify how the network to host conversion
371 *  routines are handled.
372 *
373 *  @note @a CPU_BIG_ENDIAN and @a CPU_LITTLE_ENDIAN should NOT have the
374 *  same values.
375 *
376 *  @see CPU_LITTLE_ENDIAN
377 *
378 *  Port Specific Information:
379 *
380 *  XXX document implementation including references if appropriate
381 */
382#define CPU_BIG_ENDIAN                           TRUE
383
384/**
385 *  @ingroup CPUEndian
386 *  Define what is required to specify how the network to host conversion
387 *  routines are handled.
388 *
389 *  @note @ref CPU_BIG_ENDIAN and @ref CPU_LITTLE_ENDIAN should NOT have the
390 *  same values.
391 *
392 *  @see CPU_BIG_ENDIAN
393 *
394 *  Port Specific Information:
395 *
396 *  XXX document implementation including references if appropriate
397 */
398#define CPU_LITTLE_ENDIAN                        FALSE
399
400/**
401 *  @ingroup CPUInterrupt
402 *  The following defines the number of bits actually used in the
403 *  interrupt field of the task mode.  How those bits map to the
404 *  CPU interrupt levels is defined by the routine @ref _CPU_ISR_Set_level.
405 *
406 *  Port Specific Information:
407 *
408 *  XXX document implementation including references if appropriate
409 */
410#define CPU_MODES_INTERRUPT_MASK   0x00000001
411
412/*
413 *  Processor defined structures required for cpukit/score.
414 *
415 *  Port Specific Information:
416 *
417 *  XXX document implementation including references if appropriate
418 */
419
420/* may need to put some structures here.  */
421
422/**
423 * @defgroup CPUContext Processor Dependent Context Management
424 *
425 *  From the highest level viewpoint, there are 2 types of context to save.
426 *
427 *     -# Interrupt registers to save
428 *     -# Task level registers to save
429 *
430 *  Since RTEMS handles integer and floating point contexts separately, this
431 *  means we have the following 3 context items:
432 *
433 *     -# task level context stuff::  Context_Control
434 *     -# floating point task stuff:: Context_Control_fp
435 *     -# special interrupt level context :: CPU_Interrupt_frame
436 *
437 *  On some processors, it is cost-effective to save only the callee
438 *  preserved registers during a task context switch.  This means
439 *  that the ISR code needs to save those registers which do not
440 *  persist across function calls.  It is not mandatory to make this
441 *  distinctions between the caller/callee saves registers for the
442 *  purpose of minimizing context saved during task switch and on interrupts.
443 *  If the cost of saving extra registers is minimal, simplicity is the
444 *  choice.  Save the same context on interrupt entry as for tasks in
445 *  this case.
446 *
447 *  Additionally, if gdb is to be made aware of RTEMS tasks for this CPU, then
448 *  care should be used in designing the context area.
449 *
450 *  On some CPUs with hardware floating point support, the Context_Control_fp
451 *  structure will not be used or it simply consist of an array of a
452 *  fixed number of bytes.   This is done when the floating point context
453 *  is dumped by a "FP save context" type instruction and the format
454 *  is not really defined by the CPU.  In this case, there is no need
455 *  to figure out the exact format -- only the size.  Of course, although
456 *  this is enough information for RTEMS, it is probably not enough for
457 *  a debugger such as gdb.  But that is another problem.
458 *
459 *  Port Specific Information:
460 *
461 *  XXX document implementation including references if appropriate
462 */
463
464typedef struct {
465  /* There is no CPU specific per-CPU state */
466} CPU_Per_CPU_control;
467
468/**
469 *  @ingroup CPUContext Management
470 *  This defines the minimal set of integer and processor state registers
471 *  that must be saved during a voluntary context switch from one thread
472 *  to another.
473 */
474typedef struct {
475    /** This field is a hint that a port will have a number of integer
476     *  registers that need to be saved at a context switch.
477     */
478    uint32_t   some_integer_register;
479    /** This field is a hint that a port will have a number of system
480     *  registers that need to be saved at a context switch.
481     */
482    uint32_t   some_system_register;
483
484    /** This field is a hint that a port will have a register that
485     *  is the stack pointer.
486     */
487    uint32_t   stack_pointer;
488} Context_Control;
489
490/**
491 *  @ingroup CPUContext Management
492 *
493 *  This macro returns the stack pointer associated with @a _context.
494 *
495 *  @param[in] _context is the thread context area to access
496 *
497 *  @return This method returns the stack pointer.
498 */
499#define _CPU_Context_Get_SP( _context ) \
500  (_context)->stack_pointer
501
502/**
503 *  @ingroup CPUContext Management
504 *  This defines the complete set of floating point registers that must
505 *  be saved during any context switch from one thread to another.
506 */
507typedef struct {
508    /** FPU registers are listed here */
509    double      some_float_register;
510} Context_Control_fp;
511
512/**
513 *  @ingroup CPUContext Management
514 *  This defines the set of integer and processor state registers that must
515 *  be saved during an interrupt.  This set does not include any which are
516 *  in @ref Context_Control.
517 */
518typedef struct {
519    /** This field is a hint that a port will have a number of integer
520     *  registers that need to be saved when an interrupt occurs or
521     *  when a context switch occurs at the end of an ISR.
522     */
523    uint32_t   special_interrupt_register;
524} CPU_Interrupt_frame;
525
526/**
527 *  This variable is optional.  It is used on CPUs on which it is difficult
528 *  to generate an "uninitialized" FP context.  It is filled in by
529 *  @ref _CPU_Initialize and copied into the task's FP context area during
530 *  @ref _CPU_Context_Initialize.
531 *
532 *  Port Specific Information:
533 *
534 *  XXX document implementation including references if appropriate
535 */
536SCORE_EXTERN Context_Control_fp  _CPU_Null_fp_context;
537
538/**
539 *  @defgroup CPUInterrupt Processor Dependent Interrupt Management
540 *
541 *  On some CPUs, RTEMS supports a software managed interrupt stack.
542 *  This stack is allocated by the Interrupt Manager and the switch
543 *  is performed in @ref _ISR_Handler.  These variables contain pointers
544 *  to the lowest and highest addresses in the chunk of memory allocated
545 *  for the interrupt stack.  Since it is unknown whether the stack
546 *  grows up or down (in general), this give the CPU dependent
547 *  code the option of picking the version it wants to use.
548 *
549 *  @note These two variables are required if the macro
550 *        @ref CPU_HAS_SOFTWARE_INTERRUPT_STACK is defined as TRUE.
551 *
552 *  Port Specific Information:
553 *
554 *  XXX document implementation including references if appropriate
555 */
556
557/**
558 *  @ingroup CPUInterrupt
559 *  This variable points to the lowest physical address of the interrupt
560 *  stack.
561 */
562SCORE_EXTERN void               *_CPU_Interrupt_stack_low;
563
564/**
565 *  @ingroup CPUInterrupt
566 *  This variable points to the lowest physical address of the interrupt
567 *  stack.
568 */
569SCORE_EXTERN void               *_CPU_Interrupt_stack_high;
570
571/*
572 *  Nothing prevents the porter from declaring more CPU specific variables.
573 *
574 *  Port Specific Information:
575 *
576 *  XXX document implementation including references if appropriate
577 */
578
579/* XXX: if needed, put more variables here */
580
581/**
582 *  @ingroup CPUContext
583 *  The size of the floating point context area.  On some CPUs this
584 *  will not be a "sizeof" because the format of the floating point
585 *  area is not defined -- only the size is.  This is usually on
586 *  CPUs with a "floating point save context" instruction.
587 *
588 *  Port Specific Information:
589 *
590 *  XXX document implementation including references if appropriate
591 */
592#define CPU_CONTEXT_FP_SIZE sizeof( Context_Control_fp )
593
594/**
595 *  Amount of extra stack (above minimum stack size) required by
596 *  MPCI receive server thread.  Remember that in a multiprocessor
597 *  system this thread must exist and be able to process all directives.
598 *
599 *  Port Specific Information:
600 *
601 *  XXX document implementation including references if appropriate
602 */
603#define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 0
604
605/**
606 *  @ingroup CPUInterrupt
607 *  This defines the number of entries in the @ref _ISR_Vector_table managed
608 *  by RTEMS.
609 *
610 *  Port Specific Information:
611 *
612 *  XXX document implementation including references if appropriate
613 */
614#define CPU_INTERRUPT_NUMBER_OF_VECTORS      32
615
616/**
617 *  @ingroup CPUInterrupt
618 *  This defines the highest interrupt vector number for this port.
619 */
620#define CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER  (CPU_INTERRUPT_NUMBER_OF_VECTORS - 1)
621
622/**
623 *  @ingroup CPUInterrupt
624 *  This is defined if the port has a special way to report the ISR nesting
625 *  level.  Most ports maintain the variable @a _ISR_Nest_level.
626 */
627#define CPU_PROVIDES_ISR_IS_IN_PROGRESS FALSE
628
629/**
630 *  @ingroup CPUContext
631 *  Should be large enough to run all RTEMS tests.  This ensures
632 *  that a "reasonable" small application should not have any problems.
633 *
634 *  Port Specific Information:
635 *
636 *  XXX document implementation including references if appropriate
637 */
638#define CPU_STACK_MINIMUM_SIZE          (1024*4)
639
640/**
641 *  CPU's worst alignment requirement for data types on a byte boundary.  This
642 *  alignment does not take into account the requirements for the stack.
643 *
644 *  Port Specific Information:
645 *
646 *  XXX document implementation including references if appropriate
647 */
648#define CPU_ALIGNMENT              8
649
650/**
651 *  This number corresponds to the byte alignment requirement for the
652 *  heap handler.  This alignment requirement may be stricter than that
653 *  for the data types alignment specified by @ref CPU_ALIGNMENT.  It is
654 *  common for the heap to follow the same alignment requirement as
655 *  @ref CPU_ALIGNMENT.  If the @ref CPU_ALIGNMENT is strict enough for
656 *  the heap, then this should be set to @ref CPU_ALIGNMENT.
657 *
658 *  @note  This does not have to be a power of 2 although it should be
659 *         a multiple of 2 greater than or equal to 2.  The requirement
660 *         to be a multiple of 2 is because the heap uses the least
661 *         significant field of the front and back flags to indicate
662 *         that a block is in use or free.  So you do not want any odd
663 *         length blocks really putting length data in that bit.
664 *
665 *         On byte oriented architectures, @ref CPU_HEAP_ALIGNMENT normally will
666 *         have to be greater or equal to than @ref CPU_ALIGNMENT to ensure that
667 *         elements allocated from the heap meet all restrictions.
668 *
669 *  Port Specific Information:
670 *
671 *  XXX document implementation including references if appropriate
672 */
673#define CPU_HEAP_ALIGNMENT         CPU_ALIGNMENT
674
675/**
676 *  This number corresponds to the byte alignment requirement for memory
677 *  buffers allocated by the partition manager.  This alignment requirement
678 *  may be stricter than that for the data types alignment specified by
679 *  @ref CPU_ALIGNMENT.  It is common for the partition to follow the same
680 *  alignment requirement as @ref CPU_ALIGNMENT.  If the @ref CPU_ALIGNMENT is
681 *  strict enough for the partition, then this should be set to
682 *  @ref CPU_ALIGNMENT.
683 *
684 *  @note  This does not have to be a power of 2.  It does have to
685 *         be greater or equal to than @ref CPU_ALIGNMENT.
686 *
687 *  Port Specific Information:
688 *
689 *  XXX document implementation including references if appropriate
690 */
691#define CPU_PARTITION_ALIGNMENT    CPU_ALIGNMENT
692
693/**
694 *  This number corresponds to the byte alignment requirement for the
695 *  stack.  This alignment requirement may be stricter than that for the
696 *  data types alignment specified by @ref CPU_ALIGNMENT.  If the
697 *  @ref CPU_ALIGNMENT is strict enough for the stack, then this should be
698 *  set to 0.
699 *
700 *  @note This must be a power of 2 either 0 or greater than @ref CPU_ALIGNMENT.
701 *
702 *  Port Specific Information:
703 *
704 *  XXX document implementation including references if appropriate
705 */
706#define CPU_STACK_ALIGNMENT        0
707
708/*
709 *  ISR handler macros
710 */
711
712/**
713 *  @ingroup CPUInterrupt
714 *  Support routine to initialize the RTEMS vector table after it is allocated.
715 *
716 *  Port Specific Information:
717 *
718 *  XXX document implementation including references if appropriate
719 */
720#define _CPU_Initialize_vectors()
721
722/**
723 *  @ingroup CPUInterrupt
724 *  Disable all interrupts for an RTEMS critical section.  The previous
725 *  level is returned in @a _isr_cookie.
726 *
727 *  @param[out] _isr_cookie will contain the previous level cookie
728 *
729 *  Port Specific Information:
730 *
731 *  XXX document implementation including references if appropriate
732 */
733#define _CPU_ISR_Disable( _isr_cookie ) \
734  { \
735    (_isr_cookie) = 0;   /* do something to prevent warnings */ \
736  }
737
738/**
739 *  @ingroup CPUInterrupt
740 *  Enable interrupts to the previous level (returned by _CPU_ISR_Disable).
741 *  This indicates the end of an RTEMS critical section.  The parameter
742 *  @a _isr_cookie is not modified.
743 *
744 *  @param[in] _isr_cookie contain the previous level cookie
745 *
746 *  Port Specific Information:
747 *
748 *  XXX document implementation including references if appropriate
749 */
750#define _CPU_ISR_Enable( _isr_cookie )  \
751  { \
752  }
753
754/**
755 *  @ingroup CPUInterrupt
756 *  This temporarily restores the interrupt to @a _isr_cookie before immediately
757 *  disabling them again.  This is used to divide long RTEMS critical
758 *  sections into two or more parts.  The parameter @a _isr_cookie is not
759 *  modified.
760 *
761 *  @param[in] _isr_cookie contain the previous level cookie
762 *
763 *  Port Specific Information:
764 *
765 *  XXX document implementation including references if appropriate
766 */
767#define _CPU_ISR_Flash( _isr_cookie ) \
768  { \
769  }
770
771/**
772 *  @ingroup CPUInterrupt
773 *
774 *  This routine and @ref _CPU_ISR_Get_level
775 *  Map the interrupt level in task mode onto the hardware that the CPU
776 *  actually provides.  Currently, interrupt levels which do not
777 *  map onto the CPU in a generic fashion are undefined.  Someday,
778 *  it would be nice if these were "mapped" by the application
779 *  via a callout.  For example, m68k has 8 levels 0 - 7, levels
780 *  8 - 255 would be available for bsp/application specific meaning.
781 *  This could be used to manage a programmable interrupt controller
782 *  via the rtems_task_mode directive.
783 *
784 *  Port Specific Information:
785 *
786 *  XXX document implementation including references if appropriate
787 */
788#define _CPU_ISR_Set_level( new_level ) \
789  { \
790  }
791
792/**
793 *  @ingroup CPUInterrupt
794 *  Return the current interrupt disable level for this task in
795 *  the format used by the interrupt level portion of the task mode.
796 *
797 *  @note This routine usually must be implemented as a subroutine.
798 *
799 *  Port Specific Information:
800 *
801 *  XXX document implementation including references if appropriate
802 */
803uint32_t   _CPU_ISR_Get_level( void );
804
805/* end of ISR handler macros */
806
807/* Context handler macros */
808
809/**
810 *  @ingroup CPUContext
811 *  Initialize the context to a state suitable for starting a
812 *  task after a context restore operation.  Generally, this
813 *  involves:
814 *
815 *     - setting a starting address
816 *     - preparing the stack
817 *     - preparing the stack and frame pointers
818 *     - setting the proper interrupt level in the context
819 *     - initializing the floating point context
820 *
821 *  This routine generally does not set any unnecessary register
822 *  in the context.  The state of the "general data" registers is
823 *  undefined at task start time.
824 *
825 *  @param[in] _the_context is the context structure to be initialized
826 *  @param[in] _stack_base is the lowest physical address of this task's stack
827 *  @param[in] _size is the size of this task's stack
828 *  @param[in] _isr is the interrupt disable level
829 *  @param[in] _entry_point is the thread's entry point.  This is
830 *         always @a _Thread_Handler
831 *  @param[in] _is_fp is TRUE if the thread is to be a floating
832 *        point thread.  This is typically only used on CPUs where the
833 *        FPU may be easily disabled by software such as on the SPARC
834 *        where the PSR contains an enable FPU bit.
835 *
836 *  Port Specific Information:
837 *
838 *  XXX document implementation including references if appropriate
839 */
840#define _CPU_Context_Initialize( _the_context, _stack_base, _size, \
841                                 _isr, _entry_point, _is_fp, tls_area ) \
842  { \
843  }
844
845/**
846 *  This routine is responsible for somehow restarting the currently
847 *  executing task.  If you are lucky, then all that is necessary
848 *  is restoring the context.  Otherwise, there will need to be
849 *  a special assembly routine which does something special in this
850 *  case.  For many ports, simply adding a label to the restore path
851 *  of @ref _CPU_Context_switch will work.  On other ports, it may be
852 *  possibly to load a few arguments and jump to the restore path. It will
853 *  not work if restarting self conflicts with the stack frame
854 *  assumptions of restoring a context.
855 *
856 *  Port Specific Information:
857 *
858 *  XXX document implementation including references if appropriate
859 */
860#define _CPU_Context_Restart_self( _the_context ) \
861   _CPU_Context_restore( (_the_context) );
862
863/**
864 *  @ingroup CPUContext
865 *  The purpose of this macro is to allow the initial pointer into
866 *  a floating point context area (used to save the floating point
867 *  context) to be at an arbitrary place in the floating point
868 *  context area.
869 *
870 *  This is necessary because some FP units are designed to have
871 *  their context saved as a stack which grows into lower addresses.
872 *  Other FP units can be saved by simply moving registers into offsets
873 *  from the base of the context area.  Finally some FP units provide
874 *  a "dump context" instruction which could fill in from high to low
875 *  or low to high based on the whim of the CPU designers.
876 *
877 *  @param[in] _base is the lowest physical address of the floating point
878 *         context area
879 *  @param[in] _offset is the offset into the floating point area
880 *
881 *  Port Specific Information:
882 *
883 *  XXX document implementation including references if appropriate
884 */
885#define _CPU_Context_Fp_start( _base, _offset ) \
886   ( (void *) _Addresses_Add_offset( (_base), (_offset) ) )
887
888/**
889 *  This routine initializes the FP context area passed to it to.
890 *  There are a few standard ways in which to initialize the
891 *  floating point context.  The code included for this macro assumes
892 *  that this is a CPU in which a "initial" FP context was saved into
893 *  @a _CPU_Null_fp_context and it simply copies it to the destination
894 *  context passed to it.
895 *
896 *  Other floating point context save/restore models include:
897 *    -# not doing anything, and
898 *    -# putting a "null FP status word" in the correct place in the FP context.
899 *
900 *  @param[in] _destination is the floating point context area
901 *
902 *  Port Specific Information:
903 *
904 *  XXX document implementation including references if appropriate
905 */
906#define _CPU_Context_Initialize_fp( _destination ) \
907  { \
908   *(*(_destination)) = _CPU_Null_fp_context; \
909  }
910
911/* end of Context handler macros */
912
913/* Fatal Error manager macros */
914
915/**
916 *  This routine copies _error into a known place -- typically a stack
917 *  location or a register, optionally disables interrupts, and
918 *  halts/stops the CPU.
919 *
920 *  Port Specific Information:
921 *
922 *  XXX document implementation including references if appropriate
923 */
924#define _CPU_Fatal_halt( _error ) \
925  { \
926  }
927
928/* end of Fatal Error manager macros */
929
930/* Bitfield handler macros */
931
932/**
933 *  @defgroup CPUBitfield Processor Dependent Bitfield Manipulation
934 *
935 *  This set of routines are used to implement fast searches for
936 *  the most important ready task.
937 */
938
939/**
940 *  @ingroup CPUBitfield
941 *  This definition is set to TRUE if the port uses the generic bitfield
942 *  manipulation implementation.
943 */
944#define CPU_USE_GENERIC_BITFIELD_CODE TRUE
945
946/**
947 *  @ingroup CPUBitfield
948 *  This definition is set to TRUE if the port uses the data tables provided
949 *  by the generic bitfield manipulation implementation.
950 *  This can occur when actually using the generic bitfield manipulation
951 *  implementation or when implementing the same algorithm in assembly
952 *  language for improved performance.  It is unlikely that a port will use
953 *  the data if it has a bitfield scan instruction.
954 */
955#define CPU_USE_GENERIC_BITFIELD_DATA TRUE
956
957/**
958 *  @ingroup CPUBitfield
959 *  This routine sets @a _output to the bit number of the first bit
960 *  set in @a _value.  @a _value is of CPU dependent type
961 *  @a Priority_Bit_map_control.  This type may be either 16 or 32 bits
962 *  wide although only the 16 least significant bits will be used.
963 *
964 *  There are a number of variables in using a "find first bit" type
965 *  instruction.
966 *
967 *    -# What happens when run on a value of zero?
968 *    -# Bits may be numbered from MSB to LSB or vice-versa.
969 *    -# The numbering may be zero or one based.
970 *    -# The "find first bit" instruction may search from MSB or LSB.
971 *
972 *  RTEMS guarantees that (1) will never happen so it is not a concern.
973 *  (2),(3), (4) are handled by the macros @ref _CPU_Priority_Mask and
974 *  @ref _CPU_Priority_bits_index.  These three form a set of routines
975 *  which must logically operate together.  Bits in the _value are
976 *  set and cleared based on masks built by @ref _CPU_Priority_Mask.
977 *  The basic major and minor values calculated by @ref _Priority_Major
978 *  and @ref _Priority_Minor are "massaged" by @ref _CPU_Priority_bits_index
979 *  to properly range between the values returned by the "find first bit"
980 *  instruction.  This makes it possible for @ref _Priority_Get_highest to
981 *  calculate the major and directly index into the minor table.
982 *  This mapping is necessary to ensure that 0 (a high priority major/minor)
983 *  is the first bit found.
984 *
985 *  This entire "find first bit" and mapping process depends heavily
986 *  on the manner in which a priority is broken into a major and minor
987 *  components with the major being the 4 MSB of a priority and minor
988 *  the 4 LSB.  Thus (0 << 4) + 0 corresponds to priority 0 -- the highest
989 *  priority.  And (15 << 4) + 14 corresponds to priority 254 -- the next
990 *  to the lowest priority.
991 *
992 *  If your CPU does not have a "find first bit" instruction, then
993 *  there are ways to make do without it.  Here are a handful of ways
994 *  to implement this in software:
995 *
996@verbatim
997      - a series of 16 bit test instructions
998      - a "binary search using if's"
999      - _number = 0
1000        if _value > 0x00ff
1001          _value >>=8
1002          _number = 8;
1003
1004        if _value > 0x0000f
1005          _value >=8
1006          _number += 4
1007
1008        _number += bit_set_table[ _value ]
1009@endverbatim
1010
1011 *    where bit_set_table[ 16 ] has values which indicate the first
1012 *      bit set
1013 *
1014 *  @param[in] _value is the value to be scanned
1015 *  @param[in] _output is the first bit set
1016 *
1017 *  Port Specific Information:
1018 *
1019 *  XXX document implementation including references if appropriate
1020 */
1021
1022#if (CPU_USE_GENERIC_BITFIELD_CODE == FALSE)
1023#define _CPU_Bitfield_Find_first_bit( _value, _output ) \
1024  { \
1025    (_output) = 0;   /* do something to prevent warnings */ \
1026  }
1027#endif
1028
1029/* end of Bitfield handler macros */
1030
1031/**
1032 *  This routine builds the mask which corresponds to the bit fields
1033 *  as searched by @ref _CPU_Bitfield_Find_first_bit.  See the discussion
1034 *  for that routine.
1035 *
1036 *  Port Specific Information:
1037 *
1038 *  XXX document implementation including references if appropriate
1039 */
1040#if (CPU_USE_GENERIC_BITFIELD_CODE == FALSE)
1041
1042#define _CPU_Priority_Mask( _bit_number ) \
1043  ( 1 << (_bit_number) )
1044
1045#endif
1046
1047/**
1048 *  @ingroup CPUBitfield
1049 *  This routine translates the bit numbers returned by
1050 *  @ref _CPU_Bitfield_Find_first_bit into something suitable for use as
1051 *  a major or minor component of a priority.  See the discussion
1052 *  for that routine.
1053 *
1054 *  @param[in] _priority is the major or minor number to translate
1055 *
1056 *  Port Specific Information:
1057 *
1058 *  XXX document implementation including references if appropriate
1059 */
1060#if (CPU_USE_GENERIC_BITFIELD_CODE == FALSE)
1061
1062#define _CPU_Priority_bits_index( _priority ) \
1063  (_priority)
1064
1065#endif
1066
1067/* end of Priority handler macros */
1068
1069/* functions */
1070
1071/**
1072 *  This routine performs CPU dependent initialization.
1073 *
1074 *  Port Specific Information:
1075 *
1076 *  XXX document implementation including references if appropriate
1077 */
1078void _CPU_Initialize(void);
1079
1080/**
1081 *  @ingroup CPUInterrupt
1082 *  This routine installs a "raw" interrupt handler directly into the
1083 *  processor's vector table.
1084 *
1085 *  @param[in] vector is the vector number
1086 *  @param[in] new_handler is the raw ISR handler to install
1087 *  @param[in] old_handler is the previously installed ISR Handler
1088 *
1089 *  Port Specific Information:
1090 *
1091 *  XXX document implementation including references if appropriate
1092 */
1093void _CPU_ISR_install_raw_handler(
1094  uint32_t    vector,
1095  proc_ptr    new_handler,
1096  proc_ptr   *old_handler
1097);
1098
1099/**
1100 *  @ingroup CPUInterrupt
1101 *  This routine installs an interrupt vector.
1102 *
1103 *  @param[in] vector is the vector number
1104 *  @param[in] new_handler is the RTEMS ISR handler to install
1105 *  @param[in] old_handler is the previously installed ISR Handler
1106 *
1107 *  Port Specific Information:
1108 *
1109 *  XXX document implementation including references if appropriate
1110 */
1111void _CPU_ISR_install_vector(
1112  uint32_t    vector,
1113  proc_ptr    new_handler,
1114  proc_ptr   *old_handler
1115);
1116
1117/**
1118 *  @ingroup CPUInterrupt
1119 *  This routine installs the hardware interrupt stack pointer.
1120 *
1121 *  @note  It need only be provided if @ref CPU_HAS_HARDWARE_INTERRUPT_STACK
1122 *         is TRUE.
1123 *
1124 *  Port Specific Information:
1125 *
1126 *  XXX document implementation including references if appropriate
1127 */
1128void _CPU_Install_interrupt_stack( void );
1129
1130typedef uint32_t CPU_Counter_ticks;
1131
1132CPU_Counter_ticks _CPU_Counter_read( void );
1133
1134CPU_Counter_ticks _CPU_Counter_difference(
1135  CPU_Counter_ticks second,
1136  CPU_Counter_ticks first
1137);
1138
1139/**
1140 *  This routine is the CPU dependent IDLE thread body.
1141 *
1142 *  @note  It need only be provided if @ref CPU_PROVIDES_IDLE_THREAD_BODY
1143 *         is TRUE.
1144 *
1145 *  Port Specific Information:
1146 *
1147 *  XXX document implementation including references if appropriate
1148 */
1149void *_CPU_Thread_Idle_body( uintptr_t ignored );
1150
1151/**
1152 *  @ingroup CPUContext
1153 *  This routine switches from the run context to the heir context.
1154 *
1155 *  @param[in] run points to the context of the currently executing task
1156 *  @param[in] heir points to the context of the heir task
1157 *
1158 *  Port Specific Information:
1159 *
1160 *  XXX document implementation including references if appropriate
1161 */
1162void _CPU_Context_switch(
1163  Context_Control  *run,
1164  Context_Control  *heir
1165);
1166
1167/**
1168 *  @ingroup CPUContext
1169 *  This routine is generally used only to restart self in an
1170 *  efficient manner.  It may simply be a label in @ref _CPU_Context_switch.
1171 *
1172 *  @param[in] new_context points to the context to be restored.
1173 *
1174 *  @note May be unnecessary to reload some registers.
1175 *
1176 *  Port Specific Information:
1177 *
1178 *  XXX document implementation including references if appropriate
1179 */
1180void _CPU_Context_restore(
1181  Context_Control *new_context
1182);
1183
1184/**
1185 *  @ingroup CPUContext
1186 *  This routine saves the floating point context passed to it.
1187 *
1188 *  @param[in] fp_context_ptr is a pointer to a pointer to a floating
1189 *  point context area
1190 *
1191 *  @return on output @a *fp_context_ptr will contain the address that
1192 *  should be used with @ref _CPU_Context_restore_fp to restore this context.
1193 *
1194 *  Port Specific Information:
1195 *
1196 *  XXX document implementation including references if appropriate
1197 */
1198void _CPU_Context_save_fp(
1199  Context_Control_fp **fp_context_ptr
1200);
1201
1202/**
1203 *  @ingroup CPUContext
1204 *  This routine restores the floating point context passed to it.
1205 *
1206 *  @param[in] fp_context_ptr is a pointer to a pointer to a floating
1207 *  point context area to restore
1208 *
1209 *  @return on output @a *fp_context_ptr will contain the address that
1210 *  should be used with @ref _CPU_Context_save_fp to save this context.
1211 *
1212 *  Port Specific Information:
1213 *
1214 *  XXX document implementation including references if appropriate
1215 */
1216void _CPU_Context_restore_fp(
1217  Context_Control_fp **fp_context_ptr
1218);
1219
1220#ifdef RTEMS_SMP
1221  #define _CPU_Context_switch_to_first_task_smp(_context )
1222
1223  RTEMS_COMPILER_PURE_ATTRIBUTE static inline uint32_t
1224    _CPU_SMP_Get_current_processor( void )
1225  {
1226    return 0;
1227  }
1228
1229  #define _CPU_SMP_Send_interrupt( dest);
1230
1231  static inline void _CPU_SMP_Processor_event_broadcast( void )
1232  {
1233  }
1234
1235  static inline void _CPU_SMP_Processor_event_receive( void )
1236  {
1237  }
1238#endif
1239typedef struct {
1240  uint32_t trap;
1241  CPU_Interrupt_frame *isf;
1242} CPU_Exception_frame;
1243
1244static inline void _CPU_Exception_frame_print(
1245  const CPU_Exception_frame *frame
1246)
1247{
1248  /* printk( "Printing exception frame\n" ); */
1249}
1250/**
1251 *  @ingroup CPUEndian
1252 *  The following routine swaps the endian format of an unsigned int.
1253 *  It must be static because it is referenced indirectly.
1254 *
1255 *  This version will work on any processor, but if there is a better
1256 *  way for your CPU PLEASE use it.  The most common way to do this is to:
1257 *
1258 *     swap least significant two bytes with 16-bit rotate
1259 *     swap upper and lower 16-bits
1260 *     swap most significant two bytes with 16-bit rotate
1261 *
1262 *  Some CPUs have special instructions which swap a 32-bit quantity in
1263 *  a single instruction (e.g. i486).  It is probably best to avoid
1264 *  an "endian swapping control bit" in the CPU.  One good reason is
1265 *  that interrupts would probably have to be disabled to ensure that
1266 *  an interrupt does not try to access the same "chunk" with the wrong
1267 *  endian.  Another good reason is that on some CPUs, the endian bit
1268 *  endianness for ALL fetches -- both code and data -- so the code
1269 *  will be fetched incorrectly.
1270 *
1271 *  @param[in] value is the value to be swapped
1272 *  @return the value after being endian swapped
1273 *
1274 *  Port Specific Information:
1275 *
1276 *  XXX document implementation including references if appropriate
1277 */
1278static inline uint32_t CPU_swap_u32(
1279  uint32_t value
1280)
1281{
1282  uint32_t byte1, byte2, byte3, byte4, swapped;
1283
1284  byte4 = (value >> 24) & 0xff;
1285  byte3 = (value >> 16) & 0xff;
1286  byte2 = (value >> 8)  & 0xff;
1287  byte1 =  value        & 0xff;
1288
1289  swapped = (byte1 << 24) | (byte2 << 16) | (byte3 << 8) | byte4;
1290  return swapped;
1291}
1292
1293/**
1294 *  @ingroup CPUEndian
1295 *  This routine swaps a 16 bir quantity.
1296 *
1297 *  @param[in] value is the value to be swapped
1298 *  @return the value after being endian swapped
1299 */
1300#define CPU_swap_u16( value ) \
1301  (((value&0xff) << 8) | ((value >> 8)&0xff))
1302
1303/*
1304 *  SMP Support
1305 */
1306void __SMP_cpu_swap(
1307  uint32_t *a,
1308  uint32_t *value,
1309  uint32_t *prev
1310);
1311#define SMP_CPU_SWAP( _address, _value, _previous ) \
1312  do { \
1313    volatile unsigned int *_a = (volatile unsigned int *)_address; \
1314    _previous = *(_a); \
1315    *(_a) = _value; \
1316  } while (0)
1317
1318#ifdef __cplusplus
1319}
1320#endif
1321
1322#endif
Note: See TracBrowser for help on using the repository browser.