source: rtems/c/src/lib/libbsp/powerpc/virtex5/startup/bspstart.c @ f97536d

5
Last change on this file since f97536d was f97536d, checked in by Sebastian Huber <sebastian.huber@…>, on 10/16/15 at 06:21:48

basdefs.h: Add and use RTEMS_UNUSED

  • Property mode set to 100644
File size: 7.9 KB
Line 
1/*
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
9/*
10 *  Author:     Thomas Doerfler <td@imd.m.isar.de>
11 *              IMD Ingenieurbuero fuer Microcomputertechnik
12 *
13 *  COPYRIGHT (c) 1998 by IMD
14 *
15 *  Changes from IMD are covered by the original distributions terms.
16 *  This file has been derived from the papyrus BSP:
17 *
18 *  Author:     Andrew Bray <andy@i-cubed.co.uk>
19 *
20 *  COPYRIGHT (c) 1995 by i-cubed ltd.
21 *
22 *  To anyone who acknowledges that this file is provided "AS IS"
23 *  without any express or implied warranty:
24 *      permission to use, copy, modify, and distribute this file
25 *      for any purpose is hereby granted without fee, provided that
26 *      the above copyright notice and this notice appears in all
27 *      copies, and that the name of i-cubed limited not be used in
28 *      advertising or publicity pertaining to distribution of the
29 *      software without specific, written prior permission.
30 *      i-cubed limited makes no representations about the suitability
31 *      of this software for any purpose.
32 *
33 *  Modifications for spooling console driver and control of memory layout
34 *  with linker command file by
35 *              Thomas Doerfler <td@imd.m.isar.de>
36 *  for these modifications:
37 *  COPYRIGHT (c) 1997 by IMD, Puchheim, Germany.
38 *
39 *  To anyone who acknowledges that this file is provided "AS IS"
40 *  without any express or implied warranty:
41 *      permission to use, copy, modify, and distribute this file
42 *      for any purpose is hereby granted without fee, provided that
43 *      the above copyright notice and this notice appears in all
44 *      copies. IMD makes no representations about the suitability
45 *      of this software for any purpose.
46 *
47 *  Derived from c/src/lib/libbsp/no_cpu/no_bsp/startup/bspstart.c:
48 *
49 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
50 *  On-Line Applications Research Corporation (OAR).
51 *
52 *  Modifications for PPC405GP by Dennis Ehlin
53 *  Modifications for Virtex5 by Richard Claus <claus@slac.stanford.edu>
54 */
55#include <rtems.h>
56#include <rtems/config.h>
57#include <rtems/bspIo.h>
58#include <rtems/counter.h>
59#include <rtems/libio.h>
60#include <rtems/libcsupport.h>
61
62#include <libcpu/cpuIdent.h>
63#include <libcpu/spr.h>
64
65#include <bsp.h>
66#include <bsp/vectors.h>
67#include <bsp/bootcard.h>
68#include <bsp/irq.h>
69
70#include <string.h>
71#include <fcntl.h>
72
73#define DO_DOWN_ALIGN(x,a) ((x) & ~((a)-1))
74
75#define DO_UP_ALIGN(x,a)   DO_DOWN_ALIGN(((x) + (a) - 1 ),a)
76
77#define CPU_DOWN_ALIGN(x)  DO_DOWN_ALIGN(x, CPU_ALIGNMENT)
78#define CPU_UP_ALIGN(x)    DO_UP_ALIGN(x, CPU_ALIGNMENT)
79
80
81/* Defined in linkcmds linker script */
82LINKER_SYMBOL(RamBase);
83LINKER_SYMBOL(RamSize);
84LINKER_SYMBOL(__bsp_ram_start);
85LINKER_SYMBOL(__bsp_ram_end);
86LINKER_SYMBOL(__rtems_end);
87LINKER_SYMBOL(_stack);
88LINKER_SYMBOL(StackSize);
89LINKER_SYMBOL(__stack_base);
90LINKER_SYMBOL(WorkAreaBase);
91LINKER_SYMBOL(MsgAreaBase);
92LINKER_SYMBOL(MsgAreaSize);
93LINKER_SYMBOL(__phy_ram_end);
94LINKER_SYMBOL(bsp_exc_vector_base);
95
96
97/* Expected by clock.c */
98uint32_t    bsp_clicks_per_usec;
99bool        bsp_timer_internal_clock;   /* true, when timer runs with CPU clk */
100uint32_t    bsp_timer_least_valid;
101uint32_t    bsp_timer_average_overhead;
102
103/*
104 * Bus Frequency
105 */
106unsigned int BSP_bus_frequency;
107/*
108 * processor clock frequency
109 */
110unsigned int BSP_processor_frequency;
111
112/*
113 * Time base divisior (bus freq / TB clock)
114 */
115unsigned int BSP_time_base_divisor;
116
117/*
118 * Provide weak aliases so that RTEMS distribution builds
119 */
120static void _noopfun(void) {}
121
122
123void app_bsp_start(void)
124__attribute__(( weak, alias("_noopfun") ));
125
126void app_bsp_pretasking_hook(void)
127__attribute__(( weak, alias("_noopfun") ));
128
129void app_bsp_predriver_hook(void)
130__attribute__(( weak, alias("_noopfun") ));
131
132
133static char* bspMsgBuffer = (char*)MsgAreaBase;
134
135static void __bsp_outchar_to_memory(char c)
136{
137  static char* msgBuffer = (char*)MsgAreaBase;
138  *msgBuffer++ = c;
139  if (msgBuffer >= &bspMsgBuffer[(int)MsgAreaSize])  msgBuffer = bspMsgBuffer;
140  *msgBuffer   = 0x00;                /* Overwrite next location to show EOM */
141}
142
143
144void BSP_ask_for_reset(void)
145{
146  printk("\nSystem stopped, issue RESET");
147
148  for(;;);
149}
150
151
152void BSP_panic(char *s)
153{
154  RTEMS_UNUSED rtems_interrupt_level level;
155
156  rtems_interrupt_disable(level);
157
158  printk("\n%s PANIC %s\n", rtems_get_version_string(), s);
159
160  BSP_ask_for_reset();
161}
162
163
164void _BSP_Fatal_error(unsigned int v)
165{
166  RTEMS_UNUSED rtems_interrupt_level level;
167
168  rtems_interrupt_disable(level);
169
170  printk("\n%s FATAL ERROR %x\n", rtems_get_version_string(), v);
171
172  BSP_ask_for_reset();
173}
174
175
176/*===================================================================*/
177
178/*
179 *  BSP start routine.  Called by boot_card().
180 *
181 *  This routine does the bulk of the system initialization.
182 */
183void bsp_start(void)
184{
185  uintptr_t          intrStackStart;
186  uintptr_t          intrStackSize;
187
188  ppc_cpu_id_t       myCpu;
189  ppc_cpu_revision_t myCpuRevision;
190
191  /* Set the character output function;  The application may override this */
192  BSP_output_char = __bsp_outchar_to_memory;
193
194  printk("RTEMS %s\n", rtems_get_version_string());
195
196  /*
197   * Get CPU identification dynamically. Note that the get_ppc_cpu_type()
198   * function stores the result in global variables so that it can be used later...
199   */
200  myCpu         = get_ppc_cpu_type();
201  myCpuRevision = get_ppc_cpu_revision();
202  printk("CPU: 0x%04x,  Revision: 0x%04x = %d,  Name: %s\n",
203         myCpu, myCpuRevision, myCpuRevision, get_ppc_cpu_type_name(myCpu));
204
205  /*
206   *  Initialize the device driver parameters
207   */
208
209  /* For mpc6xx clock driver: */
210  BSP_bus_frequency       = 465000000;
211  BSP_processor_frequency = 465000000;  /* Measured with a DPM 440 2012/8/13 */
212  BSP_time_base_divisor   = 1000;
213
214  /* Timebase register ticks/microsecond;  The application may override these */
215  bsp_clicks_per_usec        = BSP_bus_frequency/(BSP_time_base_divisor * 1000);
216  rtems_counter_initialize_converter(
217    BSP_bus_frequency / (BSP_time_base_divisor / 1000)
218  );
219  bsp_timer_internal_clock   = true;
220  bsp_timer_average_overhead = 2;
221  bsp_timer_least_valid      = 3;
222
223  /*
224   * Initialize the interrupt related settings.
225   */
226  intrStackStart = CPU_UP_ALIGN((uint32_t)__bsp_ram_start);
227  intrStackSize  = rtems_configuration_get_interrupt_stack_size();
228
229  ppc_exc_initialize(intrStackStart, intrStackSize);
230
231  /* Let the user know what parameters we were compiled with */
232  printk("                  Base/Start     End         Size\n"
233         "RAM:              0x%08x              0x%x\n"
234         "RTEMS:                        0x%08x\n"
235         "Interrupt Stack:  0x%08x              0x%x\n"
236         "Stack:            0x%08x  0x%08x  0x%x\n"
237         "Workspace:        0x%08x  0x%08x\n"
238         "MsgArea:          0x%08x              0x%x\n"
239         "Physical RAM                  0x%08x\n",
240         (uint32_t)RamBase,                               (uint32_t)RamSize,
241         (uint32_t)__rtems_end,
242         intrStackStart,                                  intrStackSize,
243         (uint32_t)__stack_base, (uint32_t)_stack,        (uint32_t)StackSize,
244         (uint32_t)WorkAreaBase, (uint32_t)__bsp_ram_end,
245         (uint32_t)MsgAreaBase,                           (uint32_t)MsgAreaSize,
246         (uint32_t)__phy_ram_end);
247
248  /*
249   * Initialize RTEMS IRQ system
250   */
251  BSP_rtems_irq_mngt_init(0);
252
253  /* Continue with application-specific initialization */
254  app_bsp_start();
255}
256
257
258/*
259 *  BSP pretasking hook.  Called just before drivers are initialized.
260 *  Used to setup libc and install any BSP extensions.
261 *
262 *  Must not use libc (to do io) from here, since drivers are not yet
263 *  initialized.
264 */
265
266void bsp_pretasking_hook(void)
267{
268  app_bsp_pretasking_hook();
269}
270
271
272/*
273 *  BSP predriver hook.  Called by boot_card() just before drivers are
274 *  initialized.  Clear out any stale interrupts here.
275 */
276void bsp_predriver_hook(void)
277{
278  app_bsp_predriver_hook();
279}
Note: See TracBrowser for help on using the repository browser.