source: rtems/c/src/lib/libbsp/sh/gensh1/startup/bspstart.c @ d34d8692

4.104.114.95
Last change on this file since d34d8692 was d34d8692, checked in by Joel Sherrill <joel.sherrill@…>, on 12/04/07 at 22:22:26

2007-12-04 Joel Sherrill <joel.sherrill@…>

  • include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field from CPU Table to Configuration Table. Eliminate CPU Table from all ports. Delete references to CPU Table in all forms.
  • Property mode set to 100644
File size: 3.1 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 *  Authors: Ralf Corsepius (corsepiu@faw.uni-ulm.de) and
8 *           Bernd Becker (becker@faw.uni-ulm.de)
9 *
10 *  COPYRIGHT (c) 1997-1998, FAW Ulm, Germany
11 *
12 *  This program is distributed in the hope that it will be useful,
13 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15 *
16 *
17 *  COPYRIGHT (c) 1998.
18 *  On-Line Applications Research Corporation (OAR).
19 *
20 *  The license and distribution terms for this file may be
21 *  found in the file LICENSE in this distribution or at
22 *  http://www.rtems.com/license/LICENSE.
23 *
24 *  $Id$
25 */
26
27#include <string.h>
28
29#include <bsp.h>
30#include <rtems/libio.h>
31#include <rtems/libcsupport.h>
32
33uint32_t bsp_clicks_per_second;
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;
41rtems_configuration_table  BSP_Configuration;
42char *rtems_progname;
43
44/*
45 *  Use the shared implementations of the following routines
46 */
47
48void bsp_postdriver_hook(void);
49void bsp_libc_init( void *, uint32_t, int );
50
51/*
52 *  Function:   bsp_pretasking_hook
53 *
54 *  Description:
55 *      BSP pretasking hook.  Called just before drivers are initialized.
56 *      Used to setup libc and install any BSP extensions.
57 *
58 *  NOTES:
59 *      Must not use libc (to do io) from here, since drivers are
60 *      not yet initialized.
61 *
62 */
63
64void bsp_pretasking_hook(void)
65{
66    bsp_libc_init(&HeapStart, (char *)&HeapEnd - (char *)&HeapStart, 0);
67
68#ifdef RTEMS_DEBUG
69    rtems_debug_enable( RTEMS_DEBUG_ALL_MASK );
70#endif
71}
72
73/*
74 *  bsp_start
75 *
76 *  This routine does the bulk of the system initialization.
77 */
78
79void bsp_start(void)
80{
81  /*
82     For real boards you need to setup the hardware
83     and need to copy the vector table from rom to ram.
84
85     Depending on the board this can either be done from inside the rom
86     startup code, rtems startup code or here.
87   */
88
89  /*
90   *  Allocate the memory for the RTEMS Work Space.  This can come from
91   *  a variety of places: hard coded address, malloc'ed from outside
92   *  RTEMS world (e.g. simulator or primitive memory manager), or (as
93   *  typically done by stock BSPs) by subtracting the required amount
94   *  of work space from the last physical address on the CPU board.
95   */
96
97  /*
98   *  Need to "allocate" the memory for the RTEMS Workspace and
99   *  tell the RTEMS configuration where it is.  This memory is
100   *  not malloc'ed.  It is just "pulled from the air".
101   */
102
103  BSP_Configuration.work_space_start = (void *) &WorkSpaceStart ;
104  BSP_Configuration.work_space_size  =
105    (uint32_t) &WorkSpaceEnd -
106    (uint32_t) &WorkSpaceStart ;
107
108  /*
109   *  initialize the CPU table for this BSP
110   */
111
112#if ( CPU_ALLOCATE_INTERRUPT_STACK == FALSE )
113  _CPU_Interrupt_stack_low = &CPU_Interrupt_stack_low ;
114  _CPU_Interrupt_stack_high = &CPU_Interrupt_stack_high ;
115#endif
116  bsp_clicks_per_second = CPU_CLOCK_RATE_HZ;
117}
Note: See TracBrowser for help on using the repository browser.