source: rtems/c/src/lib/libbsp/powerpc/gen5200/startup/bspstart.c @ 379a4761

4.104.115
Last change on this file since 379a4761 was 379a4761, checked in by Joel Sherrill <joel.sherrill@…>, on 09/15/08 at 19:25:42

2008-09-15 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, startup/bspstart.c: Use shared bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization.
  • startup/bspgetworkarea.c: New file.
  • Property mode set to 100644
File size: 9.5 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#warning The interrupt disable mask is now stored in SPRG0, please verify that this is compatible to this BSP (see also bootcard.c).
98
99#include <string.h>
100
101#include <rtems/libio.h>
102#include <rtems/libcsupport.h>
103#include <rtems/score/thread.h>
104
105#include <libcpu/powerpc-utility.h>
106#include <libcpu/raw_exception.h>
107
108#include <bsp.h>
109#include <bsp/bootcard.h>
110#include <bsp/ppc_exc_bspsupp.h>
111
112#include <bsp/irq.h>
113
114#if defined(HAS_UBOOT)
115bd_t *uboot_bdinfo_ptr = (bd_t *)1; /* will be overwritten from startup code */
116bd_t uboot_bdinfo_copy;             /* will be overwritten with copy of bdinfo */
117#endif
118
119/*
120 *  Driver configuration parameters
121 */
122uint32_t   bsp_clicks_per_usec;
123
124void BSP_panic(char *s)
125{
126  printk("%s PANIC %s\n",_RTEMS_version, s);
127  __asm__ __volatile ("sc");
128}
129
130void _BSP_Fatal_error(unsigned int v)
131{
132  printk("%s PANIC ERROR %x\n",_RTEMS_version, v);
133  __asm__ __volatile ("sc");
134}
135
136void bsp_start(void)
137{
138  ppc_cpu_id_t myCpu;
139  ppc_cpu_revision_t myCpuRevision;
140
141  /*
142   * Get CPU identification dynamically. Note that the get_ppc_cpu_type()
143   * function store the result in global variables so that it can be used
144   * later...
145   */
146  myCpu         = get_ppc_cpu_type();
147  myCpuRevision = get_ppc_cpu_revision();
148
149  #if defined(HAS_UBOOT)
150    uboot_bdinfo_copy = *uboot_bdinfo_ptr;
151    uboot_bdinfo_ptr = &uboot_bdinfo_copy;
152  #endif 
153
154  #if defined(HAS_UBOOT) && defined(SHOW_MORE_INIT_SETTINGS)
155    {
156      void dumpUBootBDInfo( bd_t * );
157      dumpUBootBDInfo( uboot_bdinfo_ptr );
158    }
159  #endif
160
161  cpu_init();
162
163 bsp_clicks_per_usec    = (IPB_CLOCK/1000000);
164
165  /*
166   * Enable instruction and data caches. Do not force writethrough mode.
167   */
168  #if INSTRUCTION_CACHE_ENABLE
169    rtems_cache_enable_instruction();
170  #endif
171  #if DATA_CACHE_ENABLE
172    rtems_cache_enable_data();
173  #endif
174
175  /* Initialize exception handler */
176  ppc_exc_cache_wb_check = 0;
177  ppc_exc_initialize(
178    PPC_INTERRUPT_DISABLE_MASK_DEFAULT,
179    (uint32_t) bsp_interrupt_stack_start,
180    (uint32_t) bsp_interrupt_stack_size
181  );
182
183  /* Initalize interrupt support */
184  if (bsp_interrupt_initialize() != RTEMS_SUCCESSFUL) {
185    BSP_panic( "Cannot intitialize interrupt support\n");
186  }
187
188  /*
189   *  If the BSP was built with IRQ benchmarking enabled,
190   *  then intialize it.
191   */
192  #if (BENCHMARK_IRQ_PROCESSING == 1)
193    BSP_IRQ_Benchmarking_Reset();
194  #endif
195
196  #ifdef SHOW_MORE_INIT_SETTINGS
197    printk("Exit from bspstart\n");
198  #endif
199
200}
201
202/*
203 *
204 *  _Thread_Idle_body
205 *
206 *  Replaces the one in c/src/exec/score/src/threadidlebody.c
207 *  The MSR[POW] bit is set to put the CPU into the low power mode
208 *  defined in HID0.  HID0 is set during starup in start.S.
209 *
210 */
211Thread _Thread_Idle_body(uint32_t ignored)
212{
213  for(;;) {
214    asm volatile(
215      "mfmsr 3; oris 3,3,4; sync; mtmsr 3; isync; ori 3,3,0; ori 3,3,0"
216     );
217  }
218  return 0;
219}
220
Note: See TracBrowser for help on using the repository browser.