1 |
1026 |
ivang |
@c
|
2 |
|
|
@c COPYRIGHT (c) 1988-2002.
|
3 |
|
|
@c On-Line Applications Research Corporation (OAR).
|
4 |
|
|
@c All rights reserved.
|
5 |
|
|
@c
|
6 |
|
|
@c cputable.t,v 1.12 2002/01/17 21:47:46 joel Exp
|
7 |
|
|
@c
|
8 |
|
|
|
9 |
|
|
@chapter Processor Dependent Information Table
|
10 |
|
|
|
11 |
|
|
@section Introduction
|
12 |
|
|
|
13 |
|
|
Any highly processor dependent information required
|
14 |
|
|
to describe a processor to RTEMS is provided in the CPU
|
15 |
|
|
Dependent Information Table. This table is not required for all
|
16 |
|
|
processors supported by RTEMS. This chapter describes the
|
17 |
|
|
contents, if any, for a particular processor type.
|
18 |
|
|
|
19 |
|
|
@section CPU Dependent Information Table
|
20 |
|
|
|
21 |
|
|
The PowerPC version of the RTEMS CPU Dependent
|
22 |
|
|
Information Table is given by the C structure definition is
|
23 |
|
|
shown below:
|
24 |
|
|
|
25 |
|
|
@example
|
26 |
|
|
typedef struct @{
|
27 |
|
|
void (*pretasking_hook)( void );
|
28 |
|
|
void (*predriver_hook)( void );
|
29 |
|
|
void (*postdriver_hook)( void );
|
30 |
|
|
void (*idle_task)( void );
|
31 |
|
|
boolean do_zero_of_workspace;
|
32 |
|
|
unsigned32 idle_task_stack_size;
|
33 |
|
|
unsigned32 interrupt_stack_size;
|
34 |
|
|
unsigned32 extra_mpci_receive_server_stack;
|
35 |
|
|
void * (*stack_allocate_hook)( unsigned32 );
|
36 |
|
|
void (*stack_free_hook)( void* );
|
37 |
|
|
/* end of fields required on all CPUs */
|
38 |
|
|
|
39 |
|
|
unsigned32 clicks_per_usec; /* Timer clicks per microsecond */
|
40 |
|
|
void (*spurious_handler)(
|
41 |
|
|
unsigned32 vector, CPU_Interrupt_frame *);
|
42 |
|
|
boolean exceptions_in_RAM; /* TRUE if in RAM */
|
43 |
|
|
|
44 |
|
|
#if defined(ppc403)
|
45 |
|
|
unsigned32 serial_per_sec; /* Serial clocks per second */
|
46 |
|
|
boolean serial_external_clock;
|
47 |
|
|
boolean serial_xon_xoff;
|
48 |
|
|
boolean serial_cts_rts;
|
49 |
|
|
unsigned32 serial_rate;
|
50 |
|
|
unsigned32 timer_average_overhead; /* in ticks */
|
51 |
|
|
unsigned32 timer_least_valid; /* Least valid number from timer */
|
52 |
|
|
#endif
|
53 |
|
|
@};
|
54 |
|
|
@end example
|
55 |
|
|
|
56 |
|
|
@table @code
|
57 |
|
|
@item pretasking_hook
|
58 |
|
|
is the address of the user provided routine which is invoked
|
59 |
|
|
once RTEMS APIs are initialized. This routine will be invoked
|
60 |
|
|
before any system tasks are created. Interrupts are disabled.
|
61 |
|
|
This field may be NULL to indicate that the hook is not utilized.
|
62 |
|
|
|
63 |
|
|
@item predriver_hook
|
64 |
|
|
is the address of the user provided
|
65 |
|
|
routine that is invoked immediately before the
|
66 |
|
|
the device drivers and MPCI are initialized. RTEMS
|
67 |
|
|
initialization is complete but interrupts and tasking are disabled.
|
68 |
|
|
This field may be NULL to indicate that the hook is not utilized.
|
69 |
|
|
|
70 |
|
|
@item postdriver_hook
|
71 |
|
|
is the address of the user provided
|
72 |
|
|
routine that is invoked immediately after the
|
73 |
|
|
the device drivers and MPCI are initialized. RTEMS
|
74 |
|
|
initialization is complete but interrupts and tasking are disabled.
|
75 |
|
|
This field may be NULL to indicate that the hook is not utilized.
|
76 |
|
|
|
77 |
|
|
@item idle_task
|
78 |
|
|
is the address of the optional user
|
79 |
|
|
provided routine which is used as the system's IDLE task. If
|
80 |
|
|
this field is not NULL, then the RTEMS default IDLE task is not
|
81 |
|
|
used. This field may be NULL to indicate that the default IDLE
|
82 |
|
|
is to be used.
|
83 |
|
|
|
84 |
|
|
@item do_zero_of_workspace
|
85 |
|
|
indicates whether RTEMS should
|
86 |
|
|
zero the Workspace as part of its initialization. If set to
|
87 |
|
|
TRUE, the Workspace is zeroed. Otherwise, it is not.
|
88 |
|
|
|
89 |
|
|
@item idle_task_stack_size
|
90 |
|
|
is the size of the RTEMS idle task stack in bytes.
|
91 |
|
|
If this number is less than MINIMUM_STACK_SIZE, then the
|
92 |
|
|
idle task's stack will be MINIMUM_STACK_SIZE in byte.
|
93 |
|
|
|
94 |
|
|
@item interrupt_stack_size
|
95 |
|
|
is the size of the RTEMS allocated interrupt stack in bytes.
|
96 |
|
|
This value must be at least as large as MINIMUM_STACK_SIZE.
|
97 |
|
|
|
98 |
|
|
@item extra_mpci_receive_server_stack
|
99 |
|
|
is the extra stack space allocated for the RTEMS MPCI receive server task
|
100 |
|
|
in bytes. The MPCI receive server may invoke nearly all directives and
|
101 |
|
|
may require extra stack space on some targets.
|
102 |
|
|
|
103 |
|
|
@item stack_allocate_hook
|
104 |
|
|
is the address of the optional user provided routine which allocates
|
105 |
|
|
memory for task stacks. If this hook is not NULL, then a stack_free_hook
|
106 |
|
|
must be provided as well.
|
107 |
|
|
|
108 |
|
|
@item stack_free_hook
|
109 |
|
|
is the address of the optional user provided routine which frees
|
110 |
|
|
memory for task stacks. If this hook is not NULL, then a stack_allocate_hook
|
111 |
|
|
must be provided as well.
|
112 |
|
|
|
113 |
|
|
@item clicks_per_usec
|
114 |
|
|
is the number of decrementer interupts that occur each microsecond.
|
115 |
|
|
|
116 |
|
|
@item spurious_handler
|
117 |
|
|
is the address of the
|
118 |
|
|
routine which is invoked when a spurious interrupt occurs.
|
119 |
|
|
|
120 |
|
|
@item exceptions_in_RAM
|
121 |
|
|
indicates whether the exception vectors are located in RAM or ROM. If
|
122 |
|
|
they are located in RAM dynamic vector installation occurs, otherwise
|
123 |
|
|
it does not.
|
124 |
|
|
|
125 |
|
|
@item serial_per_sec
|
126 |
|
|
is a PPC403 specific field which specifies the number of clock
|
127 |
|
|
ticks per second for the PPC403 serial timer.
|
128 |
|
|
|
129 |
|
|
@item serial_rate
|
130 |
|
|
is a PPC403 specific field which specifies the baud rate for the
|
131 |
|
|
PPC403 serial port.
|
132 |
|
|
|
133 |
|
|
@item serial_external_clock
|
134 |
|
|
is a PPC403 specific field which indicates whether or not to mask in a 0x2 into
|
135 |
|
|
the Input/Output Configuration Register (IOCR) during initialization of the
|
136 |
|
|
PPC403 console. (NOTE: This bit is defined as "reserved" 6-12?)
|
137 |
|
|
|
138 |
|
|
@item serial_xon_xoff
|
139 |
|
|
is a PPC403 specific field which indicates whether or not
|
140 |
|
|
XON/XOFF flow control is supported for the PPC403 serial port.
|
141 |
|
|
|
142 |
|
|
@item serial_cts_rts
|
143 |
|
|
is a PPC403 specific field which indicates whether or not to set the
|
144 |
|
|
least significant bit of the Input/Output Configuration Register
|
145 |
|
|
(IOCR) during initialization of the PPC403 console. (NOTE: This
|
146 |
|
|
bit is defined as "reserved" 6-12?)
|
147 |
|
|
|
148 |
|
|
@item timer_average_overhead
|
149 |
|
|
is a PPC403 specific field which specifies the average number of overhead ticks that occur on the PPC403 timer.
|
150 |
|
|
|
151 |
|
|
@item timer_least_valid
|
152 |
|
|
is a PPC403 specific field which specifies the maximum valid PPC403 timer value.
|
153 |
|
|
|
154 |
|
|
@end table
|
155 |
|
|
|