source: rtems/c/src/lib/libbsp/m68k/ods68302/startup/bspstart.c @ d8ff793

4.104.114.84.95
Last change on this file since d8ff793 was bd9c3d1, checked in by Joel Sherrill <joel.sherrill@…>, on 04/15/98 at 20:50:31

Numerous changes which in total greatly reduced the amount of source
code in each BSP's bspstart.c. These changes were:

+ confdefs.h now knows libio's semaphore requirements
+ shared/main.c now copies Configuration to BSP_Configuration
+ shared/main.c fills in the Cpu_table with default values

This removed the need for rtems_libio_config() and the constant
BSP_LIBIO_MAX_FDS in every BSP. Plus now the maximum number of open
files can now be set on the gcc command line.

  • Property mode set to 100644
File size: 2.8 KB
Line 
1/*
2 *  This routine 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 this routine is invoked.
6 *
7 *  COPYRIGHT (c) 1989-1998.
8 *  On-Line Applications Research Corporation (OAR).
9 *  Copyright assigned to U.S. Government, 1994.
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.OARcorp.com/rtems/license.html.
14 *
15 *  $Id$
16 */
17
18#include <bsp.h>
19#include <rtems/libio.h>
20 
21#include <libcsupport.h>
22 
23#include <string.h>
24 
25/*
26 *  The original table from the application and our copy of it with
27 *  some changes.
28 */
29
30extern rtems_configuration_table Configuration;
31rtems_configuration_table  BSP_Configuration;
32
33rtems_cpu_table Cpu_table;
34rtems_interrupt_level bsp_isr_level;
35
36char *rtems_progname;
37
38/*
39 *  Use the shared implementations of the following routines
40 */
41 
42void bsp_postdriver_hook(void);
43void bsp_libc_init( void *, unsigned32, int );
44
45/*
46 *  Function:   bsp_pretasking_hook
47 *  Created:    95/03/10
48 *
49 *  Description:
50 *      BSP pretasking hook.  Called just before drivers are initialized.
51 *      Used to setup libc and install any BSP extensions.
52 *
53 *  NOTES:
54 *      Must not use libc (to do io) from here, since drivers are
55 *      not yet initialized.
56 *
57 */
58 
59void bsp_pretasking_hook(void)
60{
61    extern int end;
62    rtems_unsigned32        heap_start;
63
64    heap_start = (rtems_unsigned32) &end;
65    if (heap_start & (CPU_ALIGNMENT-1))
66        heap_start = (heap_start + CPU_ALIGNMENT) & ~(CPU_ALIGNMENT-1);
67
68    bsp_libc_init((void *) heap_start, 64 * 1024, 0);
69 
70#ifdef RTEMS_DEBUG
71    rtems_debug_enable( RTEMS_DEBUG_ALL_MASK );
72#endif
73}
74 
75/*
76 *  bsp_start
77 *
78 *  This routine does the bulk of the system initialization.
79 */
80
81void bsp_start( void )
82{
83  /*
84   *  Allocate the memory for the RTEMS Work Space.  This can come from
85   *  a variety of places: hard coded address, malloc'ed from outside
86   *  RTEMS world (e.g. simulator or primitive memory manager), or (as
87   *  typically done by stock BSPs) by subtracting the required amount
88   *  of work space from the last physical address on the CPU board.
89   */
90#if 0
91  Cpu_table.interrupt_vector_table = (mc68000_isr *) 0/*&M68Kvec*/;
92#endif
93
94  /*
95   *  Need to "allocate" the memory for the RTEMS Workspace and
96   *  tell the RTEMS configuration where it is.  This memory is
97   *  not malloc'ed.  It is just "pulled from the air".
98   */
99
100  BSP_Configuration.work_space_start = (void *)
101      (RAM_END - BSP_Configuration.work_space_size);
102
103  /*
104   *  initialize the CPU table for this BSP
105   */
106
107  Cpu_table.pretasking_hook = bsp_pretasking_hook;  /* init libc, etc. */
108  Cpu_table.postdriver_hook = bsp_postdriver_hook;
109  Cpu_table.interrupt_stack_size = 4096;
110}
Note: See TracBrowser for help on using the repository browser.