source: rtems/c/src/lib/libbsp/c4x/c4xsim/startup/bspstart.c @ 6ea100c1

4.104.114.95
Last change on this file since 6ea100c1 was 6ea100c1, checked in by Joel Sherrill <joel.sherrill@…>, on 05/12/08 at 18:43:55

2008-05-12 Joel Sherrill <joel.sherrill@…>

  • startup/bspstart.c: Refactored and renamed initialization routines to rtems_initialize_data_structures, rtems_initialize_before_drivers, rtems_initialize_device_drivers, and rtems_initialize_start_multitasking. This opened the sequence up so that bootcard() could provide a more robust and flexible framework which is easier to explain and understand. This also lays the groundwork for sharing the division of available memory between the RTEMS workspace and heap and the C library initialization across all BSPs.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1/*
2 *  This set of routines starts the application.  It includes application,
3 *  board, and monitor specific initialization and configuration.
4 *  The generic CPU dependent initialization has been performed
5 *  before any of these are invoked.
6 *
7 *  COPYRIGHT (c) 1989-1999.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 *
14 *  $Id$
15 */
16
17#include <string.h>
18
19#include <bsp.h>
20#include <rtems/libio.h>
21#include <rtems/libcsupport.h>
22
23/*
24 *  Use the shared implementations of the following routines
25 */
26
27void bsp_libc_init( void *, uint32_t, int );
28extern void bsp_spurious_initialize();
29
30/*
31 *  bsp_pretasking_hook
32 *
33 *  BSP pretasking hook.  Called just before drivers are initialized.
34 *  Used to setup libc and install any BSP extensions.
35 */
36
37void bsp_pretasking_hook(void)
38{
39  extern void *_HeapStart;
40  extern uint32_t         _HeapSize;
41
42  bsp_libc_init(&_HeapStart, (unsigned int) &_HeapSize, 0);
43
44#ifdef RTEMS_DEBUG
45  rtems_debug_enable( RTEMS_DEBUG_ALL_MASK );
46#endif
47
48  bsp_spurious_initialize();
49}
50
51/*
52 *  bsp_start
53 *
54 *  This routine does the bulk of the system initialization.
55 */
56
57#include <rtems/bspIo.h>
58
59BSP_output_char_function_type           BSP_output_char;
60BSP_polling_getchar_function_type       BSP_poll_char;
61extern void C4X_BSP_output_char(char c);
62
63void bsp_start( void )
64{
65  extern void     *_WorkspaceBase;
66  extern uint32_t _WorkspaceMax;
67
68  Configuration.work_space_start = (void *)&_WorkspaceBase;
69  /* XXX check to see if satisfying small memory model */
70
71  if ( rtems_configuration_get_work_space_size() > (int) &_WorkspaceMax )
72    rtems_fatal_error_occurred( 0x43218765 );
73
74  BSP_output_char = C4X_BSP_output_char;
75  BSP_poll_char = (BSP_polling_getchar_function_type) NULL;
76}
Note: See TracBrowser for help on using the repository browser.