source: rtems/bsps/powerpc/ss555/start/bspstart.c @ 4c7b18e3

5
Last change on this file since 4c7b18e3 was 9964895, checked in by Sebastian Huber <sebastian.huber@…>, on 04/20/18 at 08:35:35

bsps: Move startup files to bsps

Adjust build support files to new directory layout.

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 2.6 KB
RevLine 
[5eb04f4d]1/*
2 *  This routine does the bulk of the system initialization.
3 */
4
5/*
[07e9642c]6 *  COPYRIGHT (c) 1989-2007.
[a800d09c]7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
[c499856]11 *  http://www.rtems.org/license/LICENSE.
[a800d09c]12 *
13 *  SS555 port sponsored by Defence Research and Development Canada - Suffield
14 *  Copyright (C) 2004, Real-Time Systems Inc. (querbach@realtime.bc.ca)
15 *
16 *  Derived from c/src/lib/libbsp/powerpc/mbx8xx/startup/bspstart.c:
17 *
18 *  Modifications for MBX860:
19 *  Copyright (c) 1999, National Research Council of Canada
20 */
21
22#include <rtems/bspIo.h>
[24bf11e]23#include <rtems/counter.h>
[5eb04f4d]24#include <bsp/bootcard.h>
[1899fe4]25#include <rtems/powerpc/powerpc.h>
[a800d09c]26
27#include <libcpu/cpuIdent.h>
28#include <libcpu/spr.h>
29
30#include <bsp/irq.h>
31#include <bsp.h>
32
33SPR_RW(SPRG1)
34
35extern unsigned long intrStackPtr;
36
[07e9642c]37/*
38 *  Driver configuration parameters
39 */
40uint32_t   bsp_clicks_per_usec;
41uint32_t   bsp_clock_speed;            /* Serial clocks per second */
42
[a800d09c]43/*
44 *  bsp_start()
45 *
46 *  Board-specific initialization code. Called from the generic boot_card()
47 *  function defined in rtems/c/src/lib/libbsp/shared/main.c. That function
48 *  does some of the board independent initialization. It is called from the
49 *  SS555 entry point _start() defined in
[c6af4585]50 *  rtems/c/src/lib/libbsp/powerpc/ss555/start/start.S
[a800d09c]51 *
52 *  _start() has set up a stack, has zeroed the .bss section, has set up the
53 *  .data section from contents stored in ROM, has turned off interrupts,
54 *  and placed the processor in the supervisor mode.  boot_card() has left
55 *  the processor in that state when bsp_start() was called.
56 *
57 *  Input parameters: NONE
58 *
59 *  Output parameters: NONE
60 *
61 *  Return values: NONE
62 */
63void bsp_start(void)
64{
65  register unsigned char* intrStack;
[6128a4a]66
[a800d09c]67  /*
68   * Get CPU identification dynamically.  Note that the get_ppc_cpu_type()
69   * function stores the result in global variables so that it can be used
70   * later.
71   */
[27474fb]72  get_ppc_cpu_type();
73  get_ppc_cpu_revision();
[a800d09c]74
75  /*
76   * Initialize some SPRG registers related to irq handling
77   */
[1899fe4]78  intrStack = (((unsigned char*)&intrStackPtr) - PPC_MINIMUM_STACK_FRAME_SIZE);
[a800d09c]79  _write_SPRG1((unsigned int)intrStack);
80
81  /*
82   * Install our own set of exception vectors
83   */
84  initialize_exceptions();
85
86  /*
[cafa2c5]87   *  initialize the device driver parameters
[a800d09c]88   */
[07e9642c]89  bsp_clicks_per_usec = BSP_CRYSTAL_HZ / 4 / 1000000;
90  bsp_clock_speed     = BSP_CLOCK_HZ;   /* for SCI baud rate generator */
[24bf11e]91  rtems_counter_initialize_converter(BSP_CRYSTAL_HZ / 4);
[a800d09c]92
93  /*
94   * Initalize RTEMS IRQ system
95   */
96  BSP_rtems_irq_mng_init(0);
97}
Note: See TracBrowser for help on using the repository browser.