source: rtems/cpukit/sapi/src/exinit.c @ e79093a

4.115
Last change on this file since e79093a was e79093a, checked in by Joel Sherrill <joel.sherrill@…>, on 04/04/11 at 16:40:00

2011-04-04 Joel Sherrill <joel.sherrilL@…>

PR 1773/cpukit

  • sapi/include/confdefs.h, sapi/src/exinit.c, score/include/rtems/bspsmp.h, score/src/percpu.c, score/src/thread.c: Rename rtems_smp_maximum_processor to rtems_configuration_smp_maximum_processor. Eliminate printk().
  • Property mode set to 100644
File size: 6.2 KB
RevLine 
[ac7d5ef0]1/*
2 *  Initialization Manager
3 *
[06dcaf0]4 *  COPYRIGHT (c) 1989-2011.
[ac7d5ef0]5 *  On-Line Applications Research Corporation (OAR).
6 *
[98e4ebf5]7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
[2ba508b]9 *  http://www.rtems.com/license/LICENSE.
[ac7d5ef0]10 *
11 *  $Id$
12 */
13
[16351f7a]14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
[ac7d5ef0]18/*
[8486081]19 *  SCORE_INIT and SAPI_INIT are defined so all of the super core and
[c627b2a3]20 *  super API data will be included in this object file.
[ac7d5ef0]21 */
22
[c627b2a3]23#define SAPI_INIT
24#define SCORE_INIT
[ac7d5ef0]25
26#include <rtems/system.h>
27#include <rtems/config.h>
28#include <rtems/debug.h>
29#include <rtems/extension.h>
30#include <rtems/fatal.h>
31#include <rtems/init.h>
32#include <rtems/io.h>
[5e9b32b]33#include <rtems/score/sysstate.h>
[ac7d5ef0]34
[5e9b32b]35#include <rtems/score/apiext.h>
[a2a8c5b]36#include <rtems/score/apimutex.h>
[5e9b32b]37#include <rtems/score/copyrt.h>
38#include <rtems/score/heap.h>
39#include <rtems/score/interr.h>
40#include <rtems/score/isr.h>
[97e2729d]41#if defined(RTEMS_MULTIPROCESSING)
[5e9b32b]42#include <rtems/score/mpci.h>
[97e2729d]43#endif
[5e9b32b]44#include <rtems/score/priority.h>
[0faa9dad]45#include <rtems/score/scheduler.h>
[5e9b32b]46#include <rtems/score/thread.h>
47#include <rtems/score/tod.h>
48#include <rtems/score/userext.h>
49#include <rtems/score/watchdog.h>
50#include <rtems/score/wkspace.h>
[3a4ae6c]51
[ac7d5ef0]52#include <rtems/sptables.h>
53
[c627b2a3]54
[3a4ae6c]55#include <rtems/rtems/rtemsapi.h>
[c627b2a3]56#ifdef RTEMS_POSIX_API
[aac75d3b]57  #include <rtems/posix/posixapi.h>
[c627b2a3]58#endif
[352c9b2]59
[06dcaf0]60#if defined(RTEMS_SMP)
61  #include <rtems/bspsmp.h>
62  #include <rtems/score/percpu.h>
63#endif
64
[0577ec1d]65Objects_Information *_Internal_Objects[ OBJECTS_INTERNAL_CLASSES_LAST + 1 ];
[3a4ae6c]66
[aac75d3b]67void rtems_initialize_data_structures(void)
[ac7d5ef0]68{
69  /*
70   *  Dispatching and interrupts are disabled until the end of the
71   *  initialization sequence.  This prevents an inadvertent context
72   *  switch before the executive is initialized.
[a0d22251]73   *
74   *  WARNING: Interrupts should have been disabled by the BSP and
75   *           are disabled by boot_card().
[ac7d5ef0]76   */
77
[aac75d3b]78  #if defined(RTEMS_MULTIPROCESSING)
79    /*
80     *  Initialize the system state based on whether this is an MP system.
81     *  In an MP configuration, internally we view single processor
82     *  systems as a very restricted multiprocessor system.
83     */
84    _Configuration_MP_table = Configuration.User_multiprocessing_table;
85
86    if ( _Configuration_MP_table == NULL ) {
87      _Configuration_MP_table =
88        (void *)&_Initialization_Default_multiprocessing_table;
89      _System_state_Handler_initialization( FALSE );
90    } else {
91      _System_state_Handler_initialization( TRUE );
92    }
93  #else
[9221838]94    _System_state_Handler_initialization( FALSE );
[aac75d3b]95  #endif
[ac7d5ef0]96
[45d107ec]97  /*
98   * Initialize any target architecture specific support as early as possible
99   */
100  _CPU_Initialize();
101
[562eab5c]102  #if defined(RTEMS_MULTIPROCESSING)
103    _Objects_MP_Handler_early_initialization();
104  #endif
105
[3a4ae6c]106  /*
[aac75d3b]107   *  Do this as early as possible to ensure no debugging output
[3a4ae6c]108   *  is even attempted to be printed.
109   */
110  _Debug_Manager_initialization();
[ac7d5ef0]111
[7af35da5]112  _API_extensions_Initialization();
113
[ac7d5ef0]114  _Thread_Dispatch_initialization();
115
[f5f4566]116  /*
117   *  Before this is called, we are not allowed to allocate memory
118   *  from the Workspace because it is not initialized.
119   */
[790b50b]120  _Workspace_Handler_initialization();
[0451b44]121
[06dcaf0]122  #if defined(RTEMS_SMP)
123    _SMP_Handler_initialize();
124  #endif
125
[790b50b]126  _User_extensions_Handler_initialization();
[ac7d5ef0]127  _ISR_Handler_initialization();
[0577ec1d]128
[70669f28]129  /*
[790b50b]130   * Initialize the internal support API and allocator Mutex
[70669f28]131   */
[790b50b]132  _Objects_Information_table[OBJECTS_INTERNAL_API] = _Internal_Objects;
133
[70669f28]134  _API_Mutex_Initialization( 1 );
[8fd28d83]135  _API_Mutex_Allocate( &_RTEMS_Allocator_Mutex );
[70669f28]136
[a55e305]137  _Priority_bit_map_Handler_initialization();
[ac7d5ef0]138  _Watchdog_Handler_initialization();
[790b50b]139  _TOD_Handler_initialization();
[ac7d5ef0]140
[790b50b]141  _Thread_Handler_initialization();
[ac7d5ef0]142
[0faa9dad]143  _Scheduler_Handler_initialization();
144
[aac75d3b]145  #if defined(RTEMS_MULTIPROCESSING)
[584ab9e]146    _Objects_MP_Handler_initialization();
[790b50b]147    _MPCI_Handler_initialization( RTEMS_TIMEOUT );
[aac75d3b]148  #endif
[ac7d5ef0]149
[3a4ae6c]150/* MANAGERS */
[ac7d5ef0]151
[aac75d3b]152  _RTEMS_API_Initialize();
[0577ec1d]153
[790b50b]154  _Extension_Manager_initialization();
[ac7d5ef0]155
[790b50b]156  _IO_Manager_initialization();
[ac7d5ef0]157
[aac75d3b]158  #ifdef RTEMS_POSIX_API
159    _POSIX_API_Initialize();
160  #endif
[d4b44877]161
[06dcaf0]162  /*
163   * Discover and initialize the secondary cores in an SMP system.
164   */
165  #if defined(RTEMS_SMP)
[e79093a]166    _SMP_Processor_count =
167        bsp_smp_initialize( rtems_configuration_smp_maximum_processors );
[06dcaf0]168  #endif
169
[56d34e6]170  _System_state_Set( SYSTEM_STATE_BEFORE_MULTITASKING );
171
172  /*
[8486081]173   *  No threads should be created before this point!!!
[a2a8c5b]174   *  _Thread_Executing and _Thread_Heir are not set.
[56d34e6]175   *
176   *  At this point all API extensions are in place.  After the call to
[a2a8c5b]177   *  _Thread_Create_idle() _Thread_Executing and _Thread_Heir will be set.
[56d34e6]178   */
179  _Thread_Create_idle();
180
[a2a8c5b]181  /*
182   *  Scheduling can properly occur now as long as we avoid dispatching.
183   */
[d86ae06]184}
[a2a8c5b]185
[d86ae06]186void rtems_initialize_before_drivers(void)
187{
[a2a8c5b]188
[aac75d3b]189  #if defined(RTEMS_MULTIPROCESSING)
190    _MPCI_Create_server();
191  #endif
[ac7d5ef0]192
[27b961a]193  #if defined(FUNCTIONALITY_NOT_CURRENTLY_USED_BY_ANY_API)
194    /*
195     *  Run the API and BSPs predriver hook.
196     */
197    _API_extensions_Run_predriver();
198  #endif
[d86ae06]199}
[8486081]200
[d86ae06]201void rtems_initialize_device_drivers(void)
202{
[389fa850]203  /*
204   *  Initialize all the device drivers and initialize the MPCI layer.
205   *
206   *  NOTE:  The MPCI may be build upon a device driver.
207   */
[8486081]208
[389fa850]209  _IO_Initialize_all_drivers();
[8486081]210
[aac75d3b]211  #if defined(RTEMS_MULTIPROCESSING)
212    if ( _System_state_Is_multiprocessing ) {
213      _MPCI_Initialization();
214      _MPCI_Internal_packets_Send_process_packet(
215        MPCI_PACKETS_SYSTEM_VERIFY
216      );
217    }
218  #endif
[8486081]219
[389fa850]220  /*
221   *  Run the APIs and BSPs postdriver hooks.
222   *
223   *  The API extensions are supposed to create user initialization tasks.
224   */
225  _API_extensions_Run_postdriver();
[ac7d5ef0]226}
227
[d86ae06]228void rtems_initialize_start_multitasking(void)
[ac7d5ef0]229{
230
231  _System_state_Set( SYSTEM_STATE_BEGIN_MULTITASKING );
232
[f972294d]233  _Thread_Start_multitasking();
[ac7d5ef0]234
[d86ae06]235  /*******************************************************************
236   *******************************************************************
237   *******************************************************************
238   ******                 APPLICATION RUNS HERE                 ******
239   ******            RETURNS WHEN SYSTEM IS SHUT DOWN           ******
240   *******************************************************************
241   *******************************************************************
242   *******************************************************************/
[ac7d5ef0]243}
Note: See TracBrowser for help on using the repository browser.