source: rtems/cpukit/sapi/src/exinit.c @ 059a3714

4.104.114.84.95
Last change on this file since 059a3714 was 059a3714, checked in by Joel Sherrill <joel.sherrill@…>, on 10/16/01 at 19:05:29

2001-10-16 Chris Johns <ccj@…>

  • include/confdefs.h, include/rtems/config.h, include/rtems/io.h, optman/no-io.c, src/exinit.c, src/io.c: Added a device driver register/unregister interface to allow device drivers to be installed and removed at runtime. This means you do not need devices present in the device table when you build.
  • Property mode set to 100644
File size: 7.6 KB
Line 
1/*
2 *  Initialization Manager
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.OARcorp.com/rtems/license.html.
10 *
11 *  $Id$
12 */
13
14/*
15 *  SCORE_INIT and SAPI_INIT are defined so all of the super core and
16 *  super API data will be included in this object file.
17 */
18
19#define SAPI_INIT
20#define SCORE_INIT
21
22#include <rtems/system.h>
23#include <rtems/config.h>
24#include <rtems/debug.h>
25#include <rtems/extension.h>
26#include <rtems/fatal.h>
27#include <rtems/init.h>
28#include <rtems/io.h>
29#include <rtems/score/sysstate.h>
30
31#include <rtems/score/apiext.h>
32#include <rtems/score/copyrt.h>
33#include <rtems/score/heap.h>
34#include <rtems/score/interr.h>
35#include <rtems/score/isr.h>
36#if defined(RTEMS_MULTIPROCESSING)
37#include <rtems/score/mpci.h>
38#endif
39#include <rtems/score/priority.h>
40#include <rtems/score/thread.h>
41#include <rtems/score/tod.h>
42#include <rtems/score/userext.h>
43#include <rtems/score/watchdog.h>
44#include <rtems/score/wkspace.h>
45
46#include <rtems/directives.h>
47#include <rtems/sptables.h>
48
49
50#include <rtems/rtems/rtemsapi.h>
51#ifdef RTEMS_POSIX_API
52#include <rtems/posix/posixapi.h>
53#endif
54#ifdef RTEMS_ITRON_API
55#include <rtems/itron/itronapi.h>
56#endif
57
58
59/*PAGE
60 *
61 *  rtems_initialize_executive
62 *
63 *  This directive initializes all the kernels data structures
64 *  to the states necessary for the kernel to begin execution.  All
65 *  include files that contain global variable definitions should be
66 *  included in this file.  The system threads and initialization threads
67 *  are created and started by this routine.  This routine then
68 *  initiates multithreading.
69 *
70 *  Input parameters:
71 *    configuration_table - pointer to the user's configuration table
72 *    cpu_table           - pointer to the user's CPU configuration table
73 *
74 *  Output parameters:  NONE
75 */
76
77void rtems_initialize_executive(
78  rtems_configuration_table *configuration_table,
79  rtems_cpu_table           *cpu_table
80)
81{
82  rtems_interrupt_level bsp_level;
83
84  bsp_level = rtems_initialize_executive_early(configuration_table, cpu_table);
85  rtems_initialize_executive_late( bsp_level );
86}
87
88rtems_interrupt_level rtems_initialize_executive_early(
89  rtems_configuration_table *configuration_table,
90  rtems_cpu_table           *cpu_table
91)
92{
93  rtems_interrupt_level        bsp_level;
94  rtems_multiprocessing_table *multiprocessing_table;
95
96  /*
97   *  Dispatching and interrupts are disabled until the end of the
98   *  initialization sequence.  This prevents an inadvertent context
99   *  switch before the executive is initialized.
100   */
101
102  _ISR_Disable( bsp_level );
103
104  if ( configuration_table == NULL )
105    _Internal_error_Occurred(
106      INTERNAL_ERROR_CORE,
107      TRUE,
108      INTERNAL_ERROR_NO_CONFIGURATION_TABLE
109    );
110
111  /*
112   *  Initialize the system state based on whether this is an MP system.
113   */
114
115#if defined(RTEMS_MULTIPROCESSING)
116  multiprocessing_table = configuration_table->User_multiprocessing_table;
117
118  _System_state_Handler_initialization(
119    (multiprocessing_table) ? TRUE : FALSE
120  );
121#else
122  multiprocessing_table = NULL;
123
124  _System_state_Handler_initialization( FALSE );
125
126#endif
127
128  /*
129   *  Provided just for user convenience.
130   */
131
132  _Configuration_Table    = configuration_table;
133  _Configuration_MP_table = multiprocessing_table;
134
135  /*
136   *  Internally we view single processor systems as a very restricted
137   *  multiprocessor system.
138   */
139
140  if ( multiprocessing_table == NULL )
141    multiprocessing_table =
142      (void *)&_Initialization_Default_multiprocessing_table;
143
144  if ( cpu_table == NULL )
145    _Internal_error_Occurred(
146      INTERNAL_ERROR_CORE,
147      TRUE,
148      INTERNAL_ERROR_NO_CPU_TABLE
149    );
150
151  _CPU_Initialize( cpu_table, _Thread_Dispatch );
152
153  /*
154   *  Do this as early as possible to insure no debugging output
155   *  is even attempted to be printed.
156   */
157
158  _Debug_Manager_initialization();
159
160  _API_extensions_Initialization();
161
162  _Thread_Dispatch_initialization();
163
164  _Workspace_Handler_initialization(
165     (void *)configuration_table->work_space_start,
166     configuration_table->work_space_size
167  );
168
169  _User_extensions_Handler_initialization(
170    configuration_table->number_of_initial_extensions,
171    configuration_table->User_extension_table
172  );
173
174  _ISR_Handler_initialization();
175
176  _Objects_Handler_initialization(
177    multiprocessing_table->node,
178    multiprocessing_table->maximum_nodes,
179    multiprocessing_table->maximum_global_objects
180  );
181
182  _Priority_Handler_initialization();
183
184  _Watchdog_Handler_initialization();
185
186  _TOD_Handler_initialization( configuration_table->microseconds_per_tick );
187
188  _Thread_Handler_initialization(
189    configuration_table->ticks_per_timeslice,
190    configuration_table->maximum_extensions,
191    multiprocessing_table->maximum_proxies
192  );
193
194#if defined(RTEMS_MULTIPROCESSING)
195  _MPCI_Handler_initialization(
196    multiprocessing_table->User_mpci_table,
197    RTEMS_TIMEOUT
198  );
199#endif
200
201/* MANAGERS */
202
203  _Extension_Manager_initialization( configuration_table->maximum_extensions );
204
205  _IO_Manager_initialization(
206    configuration_table->Device_driver_table,
207    configuration_table->number_of_device_drivers,
208    configuration_table->maximum_drivers,
209    configuration_table->maximum_devices
210  );
211
212  _RTEMS_API_Initialize( configuration_table );
213
214#ifdef RTEMS_POSIX_API
215  _POSIX_API_Initialize( configuration_table );
216#endif
217
218#ifdef RTEMS_ITRON_API
219  _ITRON_API_Initialize( configuration_table );
220#endif
221
222  _System_state_Set( SYSTEM_STATE_BEFORE_MULTITASKING );
223
224  if ( cpu_table->pretasking_hook )
225    (*cpu_table->pretasking_hook)();
226
227  /*
228   *  No threads should be created before this point!!!
229   *
230   *  At this point all API extensions are in place.  After the call to
231   *  _Thread_Create_idle() _Thread_Executing will be set.
232   *  and _Thread_Heir are not set yet.
233   */
234
235  _Thread_Create_idle();
236
237#if defined(RTEMS_MULTIPROCESSING)
238  _MPCI_Create_server();
239#endif
240
241  /*
242   *  Run the API and BSPs predriver hook.
243   */
244 
245  _API_extensions_Run_predriver();
246 
247  if ( _CPU_Table.predriver_hook )
248    (*_CPU_Table.predriver_hook)();
249 
250  /*
251   *  Initialize all the device drivers and initialize the MPCI layer.
252   *
253   *  NOTE:  The MPCI may be build upon a device driver.
254   */
255 
256  _IO_Initialize_all_drivers();
257 
258#if defined(RTEMS_MULTIPROCESSING)
259  if ( _System_state_Is_multiprocessing ) {
260    _MPCI_Initialization();
261    _MPCI_Internal_packets_Send_process_packet(
262      MPCI_PACKETS_SYSTEM_VERIFY
263    );
264  }
265#endif
266 
267  /*
268   *  Run the APIs and BSPs postdriver hooks.
269   *
270   *  The API extensions are supposed to create user initialization tasks.
271   */
272 
273  _API_extensions_Run_postdriver();
274 
275  if ( _CPU_Table.postdriver_hook )
276    (*_CPU_Table.postdriver_hook)();
277
278  return bsp_level;
279}
280
281void rtems_initialize_executive_late(
282  rtems_interrupt_level bsp_level
283)
284{
285
286  _System_state_Set( SYSTEM_STATE_BEGIN_MULTITASKING );
287
288  _Thread_Start_multitasking();
289
290  /*
291   *  Restore the interrupt level to what the BSP had.  Technically,
292   *  this is unnecessary since the BSP should have all interrupts
293   *  disabled when rtems_initialize_executive is invoked.  But this keeps
294   *  the ISR Disable/Enable calls paired.
295   */
296
297  _ISR_Enable( bsp_level );
298}
299
300/*PAGE
301 *
302 *  rtems_shutdown_executive
303 *
304 *  This kernel routine shutdowns the executive.  It halts multitasking
305 *  and returns control to the application execution "thread" which
306 *  initialially invoked the rtems_initialize_executive directive.
307 *
308 *  Input parameters:   NONE
309 *
310 *  Output parameters:  NONE
311 */
312
313void rtems_shutdown_executive(
314   unsigned32 result
315)
316{
317  if ( _System_state_Current != SYSTEM_STATE_SHUTDOWN ) {
318    _System_state_Set( SYSTEM_STATE_SHUTDOWN );
319    _Thread_Stop_multitasking();
320  }
321}
Note: See TracBrowser for help on using the repository browser.