source: rtems/c/src/lib/libbsp/powerpc/psim/startup/bspstart.c @ 5f91272

4.115
Last change on this file since 5f91272 was 5f91272, checked in by Sebastian Huber <sebastian.huber@…>, on 06/20/13 at 09:17:23

bsps/powerpc: Delete bsp_exceptions_in_RAM

Delete ppc_exc_vector_base. Add and use
ppc_exc_initialize_with_vector_base().

  • 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   * Initialize default raw exception handlers.
98   */
99  ppc_exc_initialize_with_vector_base(
100    PPC_INTERRUPT_DISABLE_MASK_DEFAULT,
101    (uintptr_t) bsp_section_work_begin,
102    rtems_configuration_get_interrupt_stack_size(),
103    (void *) 0xfff00000
104  );
105
106  /*
107   * Initalize RTEMS IRQ system
108   */
109  BSP_rtems_irq_mng_init(0);
110
111  /*
112   * Setup BATs and enable MMU
113   */
114  /* Memory */
115  setdbat(0, 0x0<<24, 0x0<<24, 2<<24, _PAGE_RW);
116  setibat(0, 0x0<<24, 0x0<<24, 2<<24,        0);
117  /* PCI    */
118  setdbat(1, 0x8<<24, 0x8<<24, 1<<24,  IO_PAGE);
119  setdbat(2, 0xc<<24, 0xc<<24, 1<<24,  IO_PAGE);
120
121  _write_MSR(_read_MSR() | MSR_DR | MSR_IR);
122  __asm__ volatile("sync; isync");
123
124}
Note: See TracBrowser for help on using the repository browser.