source: rtems/c/src/lib/libbsp/powerpc/virtex/startup/bspstart.c @ e916b125

4.115
Last change on this file since e916b125 was e916b125, checked in by Sebastian Huber <sebastian.huber@…>, on 06/21/13 at 15:17:28

bsp/virtex: Use shared clock driver

  • Property mode set to 100644
File size: 3.4 KB
Line 
1/*  bsp_start()
2 *
3 *  This routine starts the application.  It includes application,
4 *  board, and monitor specific initialization and configuration.
5 *  The generic CPU dependent initialization has been performed
6 *  before this routine is invoked.
7 *
8 *  INPUT:  NONE
9 *
10 *  OUTPUT: NONE
11 *
12 *  Author:     Thomas Doerfler <td@imd.m.isar.de>
13 *              IMD Ingenieurbuero fuer Microcomputertechnik
14 *
15 *  COPYRIGHT (c) 1998 by IMD
16 *
17 *  Changes from IMD are covered by the original distributions terms.
18 *  This file has been derived from the papyrus BSP:
19 *
20 *  Author:     Andrew Bray <andy@i-cubed.co.uk>
21 *
22 *  COPYRIGHT (c) 1995 by i-cubed ltd.
23 *
24 *  To anyone who acknowledges that this file is provided "AS IS"
25 *  without any express or implied warranty:
26 *      permission to use, copy, modify, and distribute this file
27 *      for any purpose is hereby granted without fee, provided that
28 *      the above copyright notice and this notice appears in all
29 *      copies, and that the name of i-cubed limited not be used in
30 *      advertising or publicity pertaining to distribution of the
31 *      software without specific, written prior permission.
32 *      i-cubed limited makes no representations about the suitability
33 *      of this software for any purpose.
34 *
35 *  Modifications for spooling console driver and control of memory layout
36 *  with linker command file by
37 *              Thomas Doerfler <td@imd.m.isar.de>
38 *  for these modifications:
39 *  COPYRIGHT (c) 1997 by IMD, Puchheim, Germany.
40 *
41 *  To anyone who acknowledges that this file is provided "AS IS"
42 *  without any express or implied warranty:
43 *      permission to use, copy, modify, and distribute this file
44 *      for any purpose is hereby granted without fee, provided that
45 *      the above copyright notice and this notice appears in all
46 *      copies. IMD makes no representations about the suitability
47 *      of this software for any purpose.
48 *
49 *  Derived from c/src/lib/libbsp/no_cpu/no_bsp/startup/bspstart.c:
50 *
51 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
52 *  On-Line Applications Research Corporation (OAR).
53 *
54 *  Modifications for PPC405GP by Dennis Ehlin
55 */
56
57#include <bsp.h>
58#include <bsp/irq.h>
59#include <bsp/irq-generic.h>
60#include <bsp/bootcard.h>
61#include <bsp/linker-symbols.h>
62
63#include <libcpu/powerpc-utility.h>
64
65#include RTEMS_XPARAMETERS_H
66
67/* Symbols defined in linker command file */
68LINKER_SYMBOL(virtex_exc_vector_base);
69
70/*
71 *  Driver configuration parameters
72 */
73uint32_t bsp_time_base_frequency = XPAR_CPU_PPC405_CORE_CLOCK_FREQ_HZ;
74
75/*
76 *  bsp_start
77 *
78 *  This routine does the bulk of the system initialization.
79 */
80void bsp_start( void )
81{
82  /*
83   * Get CPU identification dynamically. Note that the get_ppc_cpu_type()
84   * function store the result in global variables
85   * so that it can be used latter...
86   */
87  get_ppc_cpu_type();
88  get_ppc_cpu_revision();
89
90  /*
91   * Initialize default raw exception handlers.
92   */
93  ppc_exc_initialize_with_vector_base(
94    PPC_INTERRUPT_DISABLE_MASK_DEFAULT,
95    (uintptr_t) bsp_section_work_begin,
96    rtems_configuration_get_interrupt_stack_size(),
97    virtex_exc_vector_base
98  );
99  __asm__ volatile ("mtevpr %0" : : "r" (virtex_exc_vector_base));
100
101  bsp_interrupt_initialize();
102}
103
104void _BSP_Fatal_error(unsigned int v)
105{
106  rtems_interrupt_level level;
107
108  rtems_interrupt_disable(level);
109  (void) level;
110
111  while (true) {
112    /* Do nothing */
113  }
114}
Note: See TracBrowser for help on using the repository browser.