source: rtems/c/src/lib/libbsp/m68k/gen68302/startup/bspstart.c @ b6394ae

4.104.114.84.95
Last change on this file since b6394ae was b6394ae, checked in by Joel Sherrill <joel.sherrill@…>, on 04/15/98 at 15:13:01

Transitioned to shared bsp_libc_init() and cleaned up comments.

  • Property mode set to 100644
File size: 3.3 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;
34
35char *rtems_progname;
36
37/*
38 *  Use the shared implementations of the following routines
39 */
40 
41void bsp_postdriver_hook(void);
42void bsp_libc_init( void *, unsigned32, int );
43
44/*
45 *  Function:   bsp_pretasking_hook
46 *  Created:    95/03/10
47 *
48 *  Description:
49 *      BSP pretasking hook.  Called just before drivers are initialized.
50 *      Used to setup libc and install any BSP extensions.
51 *
52 *  NOTES:
53 *      Must not use libc (to do io) from here, since drivers are
54 *      not yet initialized.
55 *
56 */
57 
58void bsp_pretasking_hook(void)
59{
60    extern int end;
61    rtems_unsigned32        heap_start;
62
63    heap_start = (rtems_unsigned32) &end;
64    if (heap_start & (CPU_ALIGNMENT-1))
65        heap_start = (heap_start + CPU_ALIGNMENT) & ~(CPU_ALIGNMENT-1);
66
67    bsp_libc_init((void *) heap_start, 64 * 1024, 0);
68
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  /*
85   *  Allocate the memory for the RTEMS Work Space.  This can come from
86   *  a variety of places: hard coded address, malloc'ed from outside
87   *  RTEMS world (e.g. simulator or primitive memory manager), or (as
88   *  typically done by stock BSPs) by subtracting the required amount
89   *  of work space from the last physical address on the CPU board.
90   */
91#if 0
92  Cpu_table.interrupt_vector_table = (mc68000_isr *) 0/*&M68Kvec*/;
93#endif
94
95
96  /*
97   *  Copy the Configuration Table .. so we can change it
98   */
99
100  BSP_Configuration = Configuration;
101
102  /*
103   * Tell libio how many fd's we want and allow it to tweak config
104   */
105
106  rtems_libio_config(&BSP_Configuration, BSP_LIBIO_MAX_FDS);
107
108  /*
109   *  Need to "allocate" the memory for the RTEMS Workspace and
110   *  tell the RTEMS configuration where it is.  This memory is
111   *  not malloc'ed.  It is just "pulled from the air".
112   */
113
114  BSP_Configuration.work_space_start = (void *)
115      (RAM_END - BSP_Configuration.work_space_size);
116
117  /*
118   *  initialize the CPU table for this BSP
119   */
120
121  /*
122   *  we do not use the pretasking_hook
123   */
124
125  Cpu_table.pretasking_hook = bsp_pretasking_hook;  /* init libc, etc. */
126
127  Cpu_table.predriver_hook = NULL;
128
129  Cpu_table.postdriver_hook = bsp_postdriver_hook;
130
131  Cpu_table.idle_task = NULL;  /* do not override system IDLE task */
132
133  Cpu_table.do_zero_of_workspace = TRUE;
134
135  Cpu_table.interrupt_stack_size = 4096;
136
137  Cpu_table.extra_mpci_receive_server_stack = 0;
138
139  /*
140   *  Don't forget the other CPU Table entries.
141   */
142
143}
Note: See TracBrowser for help on using the repository browser.