source: rtems/cpukit/score/cpu/h8300/rtems/score/cpu.h @ ee29de05

4.104.114.95
Last change on this file since ee29de05 was ee29de05, checked in by Joel Sherrill <joel.sherrill@…>, on 12/04/07 at 22:19:10

2007-12-04 Joel Sherrill <joel.sherrill@…>

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