source: rtems/c/src/lib/libbsp/sh/gensh4/startup/bspstart.c @ dde1fedb

4.104.114.95
Last change on this file since dde1fedb was dde1fedb, checked in by Joel Sherrill <joel.sherrill@…>, on 05/15/08 at 15:55:28

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

  • startup/bspstart.c: Add capability for bootcard.c BSP Initialization Framework to ask the BSP where it has memory for the RTEMS Workspace and C Program Heap. These collectively are referred to as work area. If the BSP supports this, then it does not have to include code to split the available memory between the two areas. This reduces the amount of code in the BSP specific bspstart.c file. Additionally, the shared framework can initialize the C Library, call rtems_debug_enable(), and dirty the work area memory. Until most/all BSPs support this new capability, if the BSP supports this, it should call RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION from its configure.ac. When the transition is complete, this autoconf macro can be removed.
  • Property mode set to 100644
File size: 3.0 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-2001.
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 <bsp.h>
28#include <rtems/libio.h>
29
30#include <rtems/libcsupport.h>
31
32#include <string.h>
33
34uint32_t bsp_clicks_per_second;
35
36extern void bsp_hw_init(void);
37
38/*
39 *  Use the shared implementations of the following routines
40 */
41
42void bsp_libc_init( void *, uint32_t, int );
43
44/*
45 *  Function:   bsp_pretasking_hook
46 *
47 *  Description:
48 *      BSP pretasking hook.  Called just before drivers are initialized.
49 *      Used to setup libc and install any BSP extensions.
50 *
51 *  NOTES:
52 *      Must not use libc (to do io) from here, since drivers are
53 *      not yet initialized.
54 *
55 */
56
57void bsp_pretasking_hook(void)
58{
59    bsp_libc_init(&HeapStart, (char *)&HeapEnd - (char *)&HeapStart, 0);
60}
61
62/*
63 *  bsp_start
64 *
65 *  This routine does the bulk of the system initialization.
66 */
67
68void bsp_start(void)
69{
70  /*
71     For real boards you need to setup the hardware
72     and need to copy the vector table from rom to ram.
73
74     Depending on the board this can ether be done from inside the rom
75     startup code, rtems startup code or here.
76   */
77
78#ifndef START_HW_INIT
79  /* board hardware setup here, or from 'start.S' */
80  bsp_hw_init();
81#endif
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
91  /*
92   *  Need to "allocate" the memory for the RTEMS Workspace and
93   *  tell the RTEMS configuration where it is.  This memory is
94   *  not malloc'ed.  It is just "pulled from the air".
95   */
96
97  Configuration.work_space_start = (void *) &WorkSpaceStart ;
98  rtems_configuration_get_work_space_size()  =
99    (uint32_t) &WorkSpaceEnd -
100    (uint32_t) &WorkSpaceStart ;
101
102  /*
103   *  initialize the CPU table for this BSP
104   */
105
106#if ( CPU_ALLOCATE_INTERRUPT_STACK == FALSE )
107  _CPU_Interrupt_stack_low = &CPU_Interrupt_stack_low ;
108  _CPU_Interrupt_stack_high = &CPU_Interrupt_stack_high ;
109#endif
110
111  /*
112   *  initialize the device driver parameters
113   */
114  bsp_clicks_per_second = CPU_CLOCK_RATE_HZ;
115}
Note: See TracBrowser for help on using the repository browser.