source: rtems/doc/supplements/sparc/cputable.texi @ a1c57e4

4.104.114.84.95
Last change on this file since a1c57e4 was a1c57e4, checked in by Joel Sherrill <joel.sherrill@…>, on 10/12/98 at 21:27:10

Added idle_task_stack_size field to CPU Table.

  • Property mode set to 100644
File size: 4.2 KB
Line 
1@c
2@c  COPYRIGHT (c) 1988-1998.
3@c  On-Line Applications Research Corporation (OAR).
4@c  All rights reserved.
5@c
6@c  $Id$
7@c
8
9@ifinfo
10@node Processor Dependent Information Table, Processor Dependent Information Table Introduction, Board Support Packages Processor Initialization, Top
11@end ifinfo
12@chapter Processor Dependent Information Table
13@ifinfo
14@menu
15* Processor Dependent Information Table Introduction::
16* Processor Dependent Information Table CPU Dependent Information Table::
17@end menu
18@end ifinfo
19
20@ifinfo
21@node Processor Dependent Information Table Introduction, Processor Dependent Information Table CPU Dependent Information Table, Processor Dependent Information Table, Processor Dependent Information Table
22@end ifinfo
23@section Introduction
24
25Any highly processor dependent information required
26to describe a processor to RTEMS is provided in the CPU
27Dependent Information Table.  This table is not required for all
28processors supported by RTEMS.  This chapter describes the
29contents, if any, for a particular processor type.
30
31@ifinfo
32@node Processor Dependent Information Table CPU Dependent Information Table, Memory Requirements, Processor Dependent Information Table Introduction, Processor Dependent Information Table
33@end ifinfo
34@section CPU Dependent Information Table
35
36The SPARC version of the RTEMS CPU Dependent
37Information Table is given by the C structure definition is
38shown below:
39
40@example
41@group
42typedef struct @{
43  void       (*pretasking_hook)( void );
44  void       (*predriver_hook)( void );
45  void       (*postdriver_hook)( void );
46  void       (*idle_task)( void );
47  boolean      do_zero_of_workspace;
48  unsigned32   idle_task_stack_size;
49  unsigned32   interrupt_stack_size;
50  unsigned32   extra_mpci_receive_server_stack;
51  void *     (*stack_allocate_hook)( unsigned32 );
52  void       (*stack_free_hook)( void* );
53  /* end of fields required on all CPUs */
54
55@} rtems_cpu_table;
56@end group
57@end example
58
59@table @code
60@item pretasking_hook
61is the address of the
62user provided routine which is invoked once RTEMS initialization
63is complete but before interrupts and tasking are enabled.  This
64field may be NULL to indicate that the hook is not utilized.
65
66@item predriver_hook
67is the address of the user provided
68routine which is invoked with tasking enabled immediately before
69the MPCI and device drivers are initialized. RTEMS
70initialization is complete, interrupts and tasking are enabled,
71but no device drivers are initialized.  This field may be NULL to
72indicate that the hook is not utilized.
73
74@item postdriver_hook
75is the address of the user provided
76routine which is invoked with tasking enabled immediately after
77the MPCI and device drivers are initialized. RTEMS
78initialization is complete, interrupts and tasking are enabled,
79and the device drivers are initialized.  This field may be NULL
80to indicate that the hook is not utilized.
81
82@item idle_task
83is the address of the optional user
84provided routine which is used as the system's IDLE task.  If
85this field is not NULL, then the RTEMS default IDLE task is not
86used.  This field may be NULL to indicate that the default IDLE
87is to be used.
88
89@item do_zero_of_workspace
90indicates whether RTEMS should
91zero the Workspace as part of its initialization.  If set to
92TRUE, the Workspace is zeroed.  Otherwise, it is not.
93
94@item idle_task_stack_size
95is the size of the RTEMS idle task stack in bytes. 
96If this number is less than MINIMUM_STACK_SIZE, then the
97idle task's stack will be MINIMUM_STACK_SIZE in byte.
98
99@item interrupt_stack_size
100is the size of the RTEMS allocated interrupt stack in bytes.
101This value must be at least as large as MINIMUM_STACK_SIZE.
102
103@item extra_mpci_receive_server_stack
104is the extra stack space allocated for the RTEMS MPCI receive server task
105in bytes.  The MPCI receive server may invoke nearly all directives and
106may require extra stack space on some targets.
107
108@item stack_allocate_hook
109is the address of the optional user provided routine which allocates
110memory for task stacks.  If this hook is not NULL, then a stack_free_hook
111must be provided as well.
112
113@item stack_free_hook
114is the address of the optional user provided routine which frees
115memory for task stacks.  If this hook is not NULL, then a stack_allocate_hook
116must be provided as well.
117
118@end table
119
Note: See TracBrowser for help on using the repository browser.