OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libbsp/] [powerpc/] [helas403/] [startup/] [bspstart.c] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*  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
 *  Author:     Thomas Doerfler <td@imd.m.isar.de>
13
 *              IMD Ingenieurbuero fuer Microcomputertechnik
14
 *
15
 *  COPYRIGHT (c) 1998 by IMD
16
 *
17
 *  Changes from IMD are covered by the original distributions terms.
18
 *  This file has been derived from the papyrus BSP:
19
 *
20
 *  Author:     Andrew Bray <andy@i-cubed.co.uk>
21
 *
22
 *  COPYRIGHT (c) 1995 by i-cubed ltd.
23
 *
24
 *  To anyone who acknowledges that this file is provided "AS IS"
25
 *  without any express or implied warranty:
26
 *      permission to use, copy, modify, and distribute this file
27
 *      for any purpose is hereby granted without fee, provided that
28
 *      the above copyright notice and this notice appears in all
29
 *      copies, and that the name of i-cubed limited not be used in
30
 *      advertising or publicity pertaining to distribution of the
31
 *      software without specific, written prior permission.
32
 *      i-cubed limited makes no representations about the suitability
33
 *      of this software for any purpose.
34
 *
35
 *  Modifications for spooling console driver and control of memory layout
36
 *  with linker command file by
37
 *              Thomas Doerfler <td@imd.m.isar.de>
38
 *  for these modifications:
39
 *  COPYRIGHT (c) 1997 by IMD, Puchheim, Germany.
40
 *
41
 *  To anyone who acknowledges that this file is provided "AS IS"
42
 *  without any express or implied warranty:
43
 *      permission to use, copy, modify, and distribute this file
44
 *      for any purpose is hereby granted without fee, provided that
45
 *      the above copyright notice and this notice appears in all
46
 *      copies. IMD makes no representations about the suitability
47
 *      of this software for any purpose.
48
 *
49
 *  Derived from c/src/lib/libbsp/no_cpu/no_bsp/startup/bspstart.c:
50
 *
51
 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
52
 *  On-Line Applications Research Corporation (OAR).
53
 *  All rights assigned to U.S. Government, 1994.
54
 *
55
 *  This material may be reproduced by or for the U.S. Government pursuant
56
 *  to the copyright license under the clause at DFARS 252.227-7013.  This
57
 *  notice must appear in all copies of this file and its derivatives.
58
 *
59
 *  $Id: bspstart.c,v 1.2 2001-09-27 12:00:36 chris Exp $
60
 */
61
 
62
 
63
#include <bsp.h>
64
#include <ictrl.h>
65
#include <rtems/libio.h>
66
 
67
#include <libcsupport.h>
68
 
69
#include <string.h>
70
#include <fcntl.h>
71
 
72
/*
73
 *  The original table from the application and our copy of it with
74
 *  some changes.
75
 */
76
 
77
extern rtems_configuration_table Configuration;
78
 
79
rtems_configuration_table  BSP_Configuration;
80
 
81
rtems_cpu_table Cpu_table;
82
 
83
char *rtems_progname;
84
void *bsp_ram_end = (void *)RAM_END;  /* first addr behind avail. ram area */
85
 
86
/*      Initialize whatever libc we are using
87
 *      called from postdriver hook
88
 */
89
 
90
void bsp_postdriver_hook(void);
91
void bsp_libc_init( void *, unsigned32, int );
92
 
93
/*
94
 *
95
 *  bsp_predriver_hook
96
 *
97
 *  Before drivers are setup.
98
 */
99
 
100
void bsp_predriver_hook(void)
101
{
102
  rtems_status_code status;
103
  /* init the PPC403GA external interrupt controller handler... */
104
  status = ictrl_init();
105
}
106
 
107
/*
108
 *  Function:   bsp_pretasking_hook
109
 *  Created:    95/03/10
110
 *
111
 *  Description:
112
 *      BSP pretasking hook.  Called just before drivers are initialized.
113
 *      Used to setup libc and install any BSP extensions.
114
 *
115
 *  NOTES:
116
 *      Must not use libc (to do io) from here, since drivers are
117
 *      not yet initialized.
118
 *
119
 */
120
 
121
void bsp_pretasking_hook(void)
122
{
123
    extern int _end;
124
    rtems_unsigned32        heap_start;
125
 
126
    heap_start = (rtems_unsigned32) &_end;
127
    if (heap_start & (CPU_ALIGNMENT-1))
128
        heap_start = (heap_start + CPU_ALIGNMENT) & ~(CPU_ALIGNMENT-1);
129
 
130
    bsp_libc_init((void *) heap_start, 64 * 1024, 0);
131
 
132
#ifdef RTEMS_DEBUG
133
    rtems_debug_enable( RTEMS_DEBUG_ALL_MASK );
134
#endif
135
}
136
 
137
 
138
/*
139
 *  bsp_start
140
 *
141
 *  This routine does the bulk of the system initialization.
142
 */
143
 
144
void bsp_start( void )
145
{
146
  /*
147
   *  Allocate the memory for the RTEMS Work Space.  This can come from
148
   *  a variety of places: hard coded address, malloc'ed from outside
149
   *  RTEMS world (e.g. simulator or primitive memory manager), or (as
150
   *  typically done by stock BSPs) by subtracting the required amount
151
   *  of work space from the last physical address on the CPU board.
152
   */
153
 
154
  /*
155
   *  Need to "allocate" the memory for the RTEMS Workspace and
156
   *  tell the RTEMS configuration where it is.  This memory is
157
   *  not malloc'ed.  It is just "pulled from the air".
158
   */
159
  /* FIME: plan usage of RAM better:
160
     - make top of ram dynamic,
161
     - take out some part for persistant log
162
     - make rest of ram to heap...
163
     -remove RAM_END from bsp.h, this cannot be valid...
164
      or must be a function call
165
   */
166
  BSP_Configuration.work_space_start = (void *)
167
      ((char *)(bsp_ram_end)) - BSP_Configuration.work_space_size;
168
 
169
  /*
170
   *  initialize the CPU table for this BSP
171
   */
172
 
173
  Cpu_table.pretasking_hook = bsp_pretasking_hook;  /* init libc, etc. */
174
  Cpu_table.predriver_hook  = bsp_predriver_hook;
175
  Cpu_table.postdriver_hook = bsp_postdriver_hook;
176
  Cpu_table.interrupt_stack_size = CONFIGURE_INTERRUPT_STACK_MEMORY;
177
 
178
  Cpu_table.clicks_per_usec = 25;
179
  Cpu_table.serial_per_sec = 25000000;
180
  Cpu_table.serial_external_clock = 0;
181
  Cpu_table.timer_internal_clock  = 1;
182
  Cpu_table.serial_xon_xoff = 0;
183
  Cpu_table.serial_cts_rts = 1;
184
  Cpu_table.serial_rate = 9600;
185
  Cpu_table.timer_average_overhead = 2;
186
  Cpu_table.timer_least_valid = 3;
187
  Cpu_table.exceptions_in_RAM = TRUE;
188
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.