source: rtems/cpukit/score/cpu/no_cpu/rtems/score/cpu.h @ 11b05f1

4.115
Last change on this file since 11b05f1 was 11b05f1, checked in by Sebastian Huber <sebastian.huber@…>, on 05/08/14 at 08:11:13

score: Fix CPU context usage on SMP

We must not alter the is executing indicator in
_CPU_Context_Initialize() since this would cause an invalid state during
a self restart.

The is executing indicator must be valid at creation time since
otherwise _Thread_Kill_zombies() uses an undefined value for not started
threads. This could result in a system life lock.

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