source: rtems/c/src/lib/libbsp/no_cpu/no_bsp/startup/bspstart.c @ 3652ad35

4.104.114.84.95
Last change on this file since 3652ad35 was 3652ad35, checked in by Joel Sherrill <joel.sherrill@…>, on 09/19/95 at 14:53:29

Minor bug fixes to get all targets compilable and running. The
single biggest changes were the expansion of the workspace size
macro to include other types of objects and the increase in the
minimum stack size for most CPUs.

  • Property mode set to 100644
File size: 5.6 KB
Line 
1/*  bsp_start()
2 *
3 *  This routine starts the application.  It includes application,
4 *  board, and monitor specific initialization and configuration.
5 *  The generic CPU dependent initialization has been performed
6 *  before this routine is invoked.
7 *
8 *  INPUT:  NONE
9 *
10 *  OUTPUT: NONE
11 *
12 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
13 *  On-Line Applications Research Corporation (OAR).
14 *  All rights assigned to U.S. Government, 1994.
15 *
16 *  This material may be reproduced by or for the U.S. Government pursuant
17 *  to the copyright license under the clause at DFARS 252.227-7013.  This
18 *  notice must appear in all copies of this file and its derivatives.
19 *
20 *  $Id$
21 */
22
23#include <bsp.h>
24#include <rtems/libio.h>
25 
26#include <libcsupport.h>
27 
28#include <string.h>
29#include <fcntl.h>
30 
31#ifdef STACK_CHECKER_ON
32#include <stackchk.h>
33#endif
34
35/*
36 *  The original table from the application and our copy of it with
37 *  some changes.
38 */
39
40extern rtems_configuration_table Configuration;
41
42rtems_configuration_table  BSP_Configuration;
43
44rtems_cpu_table Cpu_table;
45
46char *rtems_progname;
47
48/*      Initialize whatever libc we are using
49 *      called from postdriver hook
50 */
51
52void bsp_libc_init()
53{
54    extern int end;
55    rtems_unsigned32        heap_start;
56
57    heap_start = (rtems_unsigned32) &end;
58    if (heap_start & (CPU_ALIGNMENT-1))
59        heap_start = (heap_start + CPU_ALIGNMENT) & ~(CPU_ALIGNMENT-1);
60
61    /*
62     *  The last parameter to RTEMS_Malloc_Initialize is the "chunk"
63     *  size which a multiple of will be requested on each sbrk()
64     *  call by malloc().  A value of 0 indicates that sbrk() should
65     *  not be called to extend the heap.
66     */
67
68    RTEMS_Malloc_Initialize((void *) heap_start, 64 * 1024, 0);
69
70    /*
71     *  Init the RTEMS libio facility to provide UNIX-like system
72     *  calls for use by newlib (ie: provide __open, __close, etc)
73     *  Uses malloc() to get area for the iops, so must be after malloc init
74     */
75
76    rtems_libio_init();
77
78    /*
79     * Set up for the libc handling.
80     */
81
82    if (BSP_Configuration.ticks_per_timeslice > 0)
83        libc_init(1);                /* reentrant if possible */
84    else
85        libc_init(0);                /* non-reentrant */
86}
87
88/*
89 *  Function:   bsp_pretasking_hook
90 *  Created:    95/03/10
91 *
92 *  Description:
93 *      BSP pretasking hook.  Called just before drivers are initialized.
94 *      Used to setup libc and install any BSP extensions.
95 *
96 *  NOTES:
97 *      Must not use libc (to do io) from here, since drivers are
98 *      not yet initialized.
99 *
100 */
101 
102void
103bsp_pretasking_hook(void)
104{
105    bsp_libc_init();
106 
107#ifdef STACK_CHECKER_ON
108    /*
109     *  Initialize the stack bounds checker
110     *  We can either turn it on here or from the app.
111     */
112 
113    Stack_check_Initialize();
114#endif
115 
116#ifdef RTEMS_DEBUG
117    rtems_debug_enable( RTEMS_DEBUG_ALL_MASK );
118#endif
119}
120 
121
122/*
123 * After drivers are setup, register some "filenames"
124 * and open stdin, stdout, stderr files
125 *
126 * Newlib will automatically associate the files with these
127 * (it hardcodes the numbers)
128 */
129 
130void
131bsp_postdriver_hook(void)
132{
133  int stdin_fd, stdout_fd, stderr_fd;
134 
135  if ((stdin_fd = __open("/dev/console", O_RDONLY, 0)) == -1)
136    rtems_fatal_error_occurred('STD0');
137 
138  if ((stdout_fd = __open("/dev/console", O_WRONLY, 0)) == -1)
139    rtems_fatal_error_occurred('STD1');
140 
141  if ((stderr_fd = __open("/dev/console", O_WRONLY, 0)) == -1)
142    rtems_fatal_error_occurred('STD2');
143 
144  if ((stdin_fd != 0) || (stdout_fd != 1) || (stderr_fd != 2))
145    rtems_fatal_error_occurred('STIO');
146}
147
148int bsp_start(
149  int argc,
150  char **argv,
151  char **environp
152)
153{
154  if ((argc > 0) && argv && argv[0])
155    rtems_progname = argv[0];
156  else
157    rtems_progname = "RTEMS";
158
159  /*
160   *  Allocate the memory for the RTEMS Work Space.  This can come from
161   *  a variety of places: hard coded address, malloc'ed from outside
162   *  RTEMS world (e.g. simulator or primitive memory manager), or (as
163   *  typically done by stock BSPs) by subtracting the required amount
164   *  of work space from the last physical address on the CPU board.
165   */
166
167  /*
168   *  Copy the Configuration Table .. so we can change it
169   */
170
171  BSP_Configuration = Configuration;
172
173  /*
174   * Add 1 region for the RTEMS Malloc
175   */
176
177  BSP_Configuration.maximum_regions++;
178
179  /*
180   * Add 1 extension for newlib libc
181   */
182
183#ifdef RTEMS_NEWLIB
184    BSP_Configuration.maximum_extensions++;
185#endif
186
187  /*
188   * Add 1 extension for newlib libc
189   */
190
191#ifdef RTEMS_NEWLIB
192    BSP_Configuration.maximum_extensions++;
193#endif
194
195#ifdef STACK_CHECKER_ON
196    /*
197     * Add 1 extension for stack checker
198     */
199 
200    BSP_Configuration.maximum_extensions++;
201#endif
202
203  /*
204   * Tell libio how many fd's we want and allow it to tweak config
205   */
206
207  rtems_libio_config(&BSP_Configuration, BSP_LIBIO_MAX_FDS);
208
209  /*
210   *  Need to "allocate" the memory for the RTEMS Workspace and
211   *  tell the RTEMS configuration where it is.  This memory is
212   *  not malloc'ed.  It is just "pulled from the air".
213   */
214
215  BSP_Configuration.work_space_start = (void *) 0;
216
217  /*
218   *  initialize the CPU table for this BSP
219   */
220
221  /*
222   *  we do not use the pretasking_hook
223   */
224
225  Cpu_table.pretasking_hook = bsp_pretasking_hook;  /* init libc, etc. */
226
227  Cpu_table.predriver_hook = NULL;
228
229  Cpu_table.postdriver_hook = bsp_postdriver_hook;
230
231  Cpu_table.idle_task = NULL;  /* do not override system IDLE task */
232
233  Cpu_table.do_zero_of_workspace = TRUE;
234
235  Cpu_table.interrupt_stack_size = 4096;
236
237  Cpu_table.extra_system_initialization_stack = 0;
238
239  /*
240   *  Don't forget the other CPU Table entries.
241   */
242
243  /*
244   *  Start RTEMS
245   */
246
247  rtems_initialize_executive( &BSP_Configuration, &Cpu_table );
248
249  bsp_cleanup();
250
251  return 0;
252}
Note: See TracBrowser for help on using the repository browser.