source: rtems/c/src/lib/libbsp/powerpc/psim/startup/bspstart.c @ 6457fb29

4.115
Last change on this file since 6457fb29 was 6457fb29, checked in by Sebastian Huber <sebastian.huber@…>, on 03/19/13 at 09:12:06

bsp/psim: Use shared linkcmds.base

Several GCC tests faild due to the outdated previous linker command
file.

  • Property mode set to 100644
File size: 2.9 KB
Line 
1/*
2 *  This set of routines 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 any of these are invoked.
6 *
7 *  COPYRIGHT (c) 1989-2008.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 */
14
15#include <string.h>
16#include <fcntl.h>
17#include <bsp.h>
18#include <bsp/irq.h>
19#include <psim.h>
20#include <bsp/bootcard.h>
21#include <bsp/linker-symbols.h>
22#include <rtems/bspIo.h>
23#include <rtems/powerpc/powerpc.h>
24
25#include <libcpu/cpuIdent.h>
26#include <libcpu/bat.h>
27#include <libcpu/spr.h>
28
29SPR_RW(SPRG1)
30
31/*  On psim, each click of the decrementer register corresponds
32 *  to 1 instruction.  By setting this to 100, we are indicating
33 *  that we are assuming it can execute 100 instructions per
34 *  microsecond.  This corresponds to sustaining 1 instruction
35 *  per cycle at 100 Mhz.  Whether this is a good guess or not
36 *  is anyone's guess.
37 */
38extern int PSIM_INSTRUCTIONS_PER_MICROSECOND;
39
40/*
41 * PCI Bus Frequency
42 */
43unsigned int BSP_bus_frequency;
44
45/*
46 *  Driver configuration parameters
47 */
48uint32_t   bsp_clicks_per_usec;
49
50/*
51 * Memory on this board.
52 */
53uint32_t BSP_mem_size = (uint32_t)RamSize;
54
55/*
56 * Time base divisior (how many tick for 1 second).
57 */
58unsigned int BSP_time_base_divisor;
59
60extern unsigned long __rtems_end[];
61
62void BSP_panic(char *s)
63{
64  printk("%s PANIC %s\n",_RTEMS_version, s);
65  __asm__ __volatile ("sc");
66}
67
68void _BSP_Fatal_error(unsigned int v)
69{
70  printk("%s PANIC ERROR %x\n",_RTEMS_version, v);
71  __asm__ __volatile ("sc");
72}
73
74/*
75 *  bsp_start
76 *
77 *  This routine does the bulk of the system initialization.
78 */
79void bsp_start( void )
80{
81  /*
82   * Note we can not get CPU identification dynamically.
83   * PVR has to be set to PPC_PSIM (0xfffe) from the device
84   * file.
85   */
86
87  get_ppc_cpu_type();
88
89  /*
90   *  initialize the device driver parameters
91   */
92  BSP_bus_frequency        = (unsigned int)&PSIM_INSTRUCTIONS_PER_MICROSECOND;
93  bsp_clicks_per_usec      = BSP_bus_frequency;
94  BSP_time_base_divisor    = 1;
95
96  /*
97   *  The simulator likes the exception table to be at 0xfff00000.
98   */
99  bsp_exceptions_in_RAM = FALSE;
100
101  /*
102   * Initialize default raw exception handlers.
103   */
104  ppc_exc_initialize(
105    PPC_INTERRUPT_DISABLE_MASK_DEFAULT,
106    (uintptr_t) bsp_section_work_begin,
107    rtems_configuration_get_interrupt_stack_size()
108  );
109
110  /*
111   * Initalize RTEMS IRQ system
112   */
113  BSP_rtems_irq_mng_init(0);
114
115  /*
116   * Setup BATs and enable MMU
117   */
118  /* Memory */
119  setdbat(0, 0x0<<24, 0x0<<24, 2<<24, _PAGE_RW);
120  setibat(0, 0x0<<24, 0x0<<24, 2<<24,        0);
121  /* PCI    */
122  setdbat(1, 0x8<<24, 0x8<<24, 1<<24,  IO_PAGE);
123  setdbat(2, 0xc<<24, 0xc<<24, 1<<24,  IO_PAGE);
124
125  _write_MSR(_read_MSR() | MSR_DR | MSR_IR);
126  __asm__ volatile("sync; isync");
127
128}
Note: See TracBrowser for help on using the repository browser.