source: rtems/c/src/lib/libbsp/powerpc/gen5200/startup/bspstart.c @ 2d2de4eb

4.104.115
Last change on this file since 2d2de4eb was 2d2de4eb, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 10/23/09 at 07:32:46

Update for exception support changes.

  • Property mode set to 100644
File size: 9.0 KB
Line 
1/*===============================================================*\
2| Project: RTEMS generic MPC5200 BSP                              |
3+-----------------------------------------------------------------+
4| Partially based on the code references which are named below.   |
5| Adaptions, modifications, enhancements and any recent parts of  |
6| the code are:                                                   |
7|                    Copyright (c) 2005                           |
8|                    Embedded Brains GmbH                         |
9|                    Obere Lagerstr. 30                           |
10|                    D-82178 Puchheim                             |
11|                    Germany                                      |
12|                    rtems@embedded-brains.de                     |
13+-----------------------------------------------------------------+
14| The license and distribution terms for this file may be         |
15| found in the file LICENSE in this distribution or at            |
16|                                                                 |
17| http://www.rtems.com/license/LICENSE.                           |
18|                                                                 |
19+-----------------------------------------------------------------+
20| this file contains the BSP initialization code                  |
21\*===============================================================*/
22/***********************************************************************/
23/*                                                                     */
24/*   Module:       bspstart.c                                          */
25/*   Date:         07/17/2003                                          */
26/*   Purpose:      RTEMS MPC5x00 C level startup code                  */
27/*                                                                     */
28/*---------------------------------------------------------------------*/
29/*                                                                     */
30/*   Description:  This routine starts the application. It includes    */
31/*                 application, board, and monitor specific            */
32/*                 initialization and configuration. The generic CPU   */
33/*                 dependent initialization has been performed before  */
34/*                 this routine is invoked.                            */
35/*                                                                     */
36/*---------------------------------------------------------------------*/
37/*                                                                     */
38/*   Code                                                              */
39/*   References:   MPC8260ads C level startup code                     */
40/*   Module:       bspstart.c                                          */
41/*   Project:      RTEMS 4.6.0pre1 / MCF8260ads BSP                    */
42/*   Version       1.2                                                 */
43/*   Date:         04/17/2002                                          */
44/*                                                                     */
45/*   Author(s) / Copyright(s):                                         */
46/*                                                                     */
47/*   The MPC860 specific stuff was written by Jay Monkman              */
48/*   (jmonkman@frasca.com)                                             */
49/*                                                                     */
50/*   Modified for the MPC8260ADS board by Andy Dachs                   */
51/*   <a.dachs@sstl.co.uk>                                              */
52/*   Surrey Satellite Technology Limited, 2001                         */
53/*   A 40MHz system clock is assumed.                                  */
54/*   The PON. RST.CONF. Dip switches (DS1) are                         */
55/*   1 - Off                                                           */
56/*   2 - On                                                            */
57/*   3 - Off                                                           */
58/*   4 - On                                                            */
59/*   5 - Off                                                           */
60/*   6 - Off                                                           */
61/*   7 - Off                                                           */
62/*   8 - Off                                                           */
63/*   Dip switches on DS2 and DS3 are all set to ON                     */
64/*   The LEDs on the board are used to signal panic and fatal_error    */
65/*   conditions.                                                       */
66/*   The mmu is unused at this time.                                   */
67/*                                                                     */
68/*   COPYRIGHT (c) 1989-2007.                                          */
69/*   On-Line Applications Research Corporation (OAR).                  */
70/*                                                                     */
71/*   The license and distribution terms for this file may be           */
72/*   found in found in the file LICENSE in this distribution or at     */
73/*   http://www.rtems.com/license/LICENSE.                             */
74/*                                                                     */
75/*---------------------------------------------------------------------*/
76/*                                                                     */
77/*   Partially based on the code references which are named above.     */
78/*   Adaptions, modifications, enhancements and any recent parts of    */
79/*   the code are under the right of                                   */
80/*                                                                     */
81/*         IPR Engineering, Dachauer Straße 38, D-80335 MÃŒnchen        */
82/*                        Copyright(C) 2003                            */
83/*                                                                     */
84/*---------------------------------------------------------------------*/
85/*                                                                     */
86/*   IPR Engineering makes no representation or warranties with        */
87/*   respect to the performance of this computer program, and          */
88/*   specifically disclaims any responsibility for any damages,        */
89/*   special or consequential, connected with the use of this program. */
90/*                                                                     */
91/*---------------------------------------------------------------------*/
92/*                                                                     */
93/*   Version history:  1.0                                             */
94/*                                                                     */
95/***********************************************************************/
96
97#include <rtems.h>
98
99#include <libcpu/powerpc-utility.h>
100
101#include <bsp.h>
102#include <bsp/vectors.h>
103#include <bsp/bootcard.h>
104#include <bsp/irq.h>
105#include <bsp/irq-generic.h>
106
107#if defined(HAS_UBOOT)
108/* will be overwritten from startup code */
109bd_t *bsp_uboot_board_info_ptr = (bd_t *)1;
110/* will be overwritten with copy of board information */
111bd_t bsp_uboot_board_info;
112#endif
113
114/*
115 *  Driver configuration parameters
116 */
117uint32_t   bsp_clicks_per_usec;
118
119void BSP_panic(char *s)
120{
121  printk("%s PANIC %s\n",_RTEMS_version, s);
122  __asm__ __volatile ("sc");
123}
124
125void _BSP_Fatal_error(unsigned int v)
126{
127  printk("%s PANIC ERROR %x\n",_RTEMS_version, v);
128  __asm__ __volatile ("sc");
129}
130
131void bsp_start(void)
132{
133  rtems_status_code sc = RTEMS_SUCCESSFUL;
134  ppc_cpu_id_t myCpu;
135  ppc_cpu_revision_t myCpuRevision;
136
137  /*
138   * Get CPU identification dynamically. Note that the get_ppc_cpu_type()
139   * function store the result in global variables so that it can be used
140   * later...
141   */
142  myCpu         = get_ppc_cpu_type();
143  myCpuRevision = get_ppc_cpu_revision();
144
145  #if defined(HAS_UBOOT)
146    bsp_uboot_board_info = *bsp_uboot_board_info_ptr;
147  #endif 
148
149  #if defined(HAS_UBOOT) && defined(SHOW_MORE_INIT_SETTINGS)
150    {
151      void dumpUBootBDInfo( bd_t * );
152      dumpUBootBDInfo( bsp_uboot_board_info_ptr );
153    }
154  #endif
155
156  cpu_init();
157
158  bsp_clicks_per_usec    = (IPB_CLOCK/1000000);
159
160  /*
161   * Enable instruction and data caches. Do not force writethrough mode.
162   */
163  #if INSTRUCTION_CACHE_ENABLE
164    rtems_cache_enable_instruction();
165  #endif
166  #if DATA_CACHE_ENABLE
167    rtems_cache_enable_data();
168  #endif
169
170  /* Initialize exception handler */
171  ppc_exc_cache_wb_check = 0;
172  sc = ppc_exc_initialize(
173    PPC_INTERRUPT_DISABLE_MASK_DEFAULT,
174    (uintptr_t) bsp_interrupt_stack_start,
175    (uintptr_t) bsp_interrupt_stack_size
176  );
177  if (sc != RTEMS_SUCCESSFUL) {
178    BSP_panic("cannot initialize exceptions");
179  }
180
181  /* Initalize interrupt support */
182  sc = bsp_interrupt_initialize();
183  if (sc != RTEMS_SUCCESSFUL) {
184    BSP_panic("cannot intitialize interrupts");
185  }
186
187  /*
188   *  If the BSP was built with IRQ benchmarking enabled,
189   *  then intialize it.
190   */
191  #if (BENCHMARK_IRQ_PROCESSING == 1)
192    BSP_IRQ_Benchmarking_Reset();
193  #endif
194
195  #ifdef SHOW_MORE_INIT_SETTINGS
196    printk("Exit from bspstart\n");
197  #endif
198}
Note: See TracBrowser for help on using the repository browser.