source: rtems/c/src/lib/libbsp/powerpc/mpc55xxevb/startup/bspstart.c @ 67338ed

4.115
Last change on this file since 67338ed was 67338ed, checked in by Sebastian Huber <sebastian.huber@…>, on 11/15/12 at 15:57:02

bsp/mpc55xx: Add mpc55xx_wait_for_interrupt()

Use mpc55xx_wait_for_interrupt().

  • Property mode set to 100644
File size: 2.9 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup mpc55xx
5 *
6 * @brief BSP startup code.
7 */
8
9/*
10 * Copyright (c) 2008-2011 embedded brains GmbH.  All rights reserved.
11 *
12 *  embedded brains GmbH
13 *  Obere Lagerstr. 30
14 *  82178 Puchheim
15 *  Germany
16 *  <rtems@embedded-brains.de>
17 *
18 * The license and distribution terms for this file may be
19 * found in the file LICENSE in this distribution or at
20 * http://www.rtems.com/license/LICENSE.
21 */
22
23#include <mpc55xx/mpc55xx.h>
24#include <mpc55xx/regs.h>
25#include <mpc55xx/edma.h>
26#include <mpc55xx/emios.h>
27
28#include <string.h>
29
30#include <rtems.h>
31#include <rtems/config.h>
32
33#include <libcpu/powerpc-utility.h>
34#include <bsp/vectors.h>
35
36#include <bsp.h>
37#include <bsp/bootcard.h>
38#include <bsp/irq.h>
39#include <bsp/irq-generic.h>
40#include <bsp/linker-symbols.h>
41#include <bsp/start.h>
42#include <bsp/mpc55xx-config.h>
43
44/* Symbols defined in linker command file */
45LINKER_SYMBOL(mpc55xx_exc_vector_base);
46
47unsigned int bsp_clock_speed = 0;
48
49uint32_t bsp_clicks_per_usec = 0;
50
51void BSP_panic( char *s)
52{
53        rtems_interrupt_level level;
54
55        rtems_interrupt_disable( level);
56
57        printk( "%s PANIC %s\n", _RTEMS_version, s);
58
59        while (1) {
60                /* Do nothing */
61        }
62}
63
64void _BSP_Fatal_error(unsigned n)
65{
66        rtems_interrupt_level level;
67
68        rtems_interrupt_disable( level);
69
70        while (true) {
71                mpc55xx_wait_for_interrupt();
72        }
73}
74
75static void null_pointer_protection(void)
76{
77#ifdef MPC55XX_NULL_POINTER_PROTECTION
78        struct MMU_tag mmu = { .MAS0 = { .B = { .TLBSEL = 1, .ESEL = 1 } } };
79
80        PPC_SET_SPECIAL_PURPOSE_REGISTER(FSL_EIS_MAS0, mmu.MAS0.R);
81        __asm__ volatile ("tlbre");
82        mmu.MAS1.R = PPC_SPECIAL_PURPOSE_REGISTER(FSL_EIS_MAS1);
83        mmu.MAS1.B.VALID = 0;
84        PPC_SET_SPECIAL_PURPOSE_REGISTER(FSL_EIS_MAS1, mmu.MAS1.R);
85        __asm__ volatile ("tlbwe");
86#endif
87}
88
89void bsp_start(void)
90{
91        ppc_cpu_id_t myCpu;
92        ppc_cpu_revision_t myCpuRevision;
93
94        null_pointer_protection();
95
96        /*
97         * make sure BSS/SBSS is cleared
98         */
99        memset(&bsp_section_bss_begin [0], 0, (size_t) bsp_section_bss_size);
100
101        /*
102         * Get CPU identification dynamically. Note that the get_ppc_cpu_type()
103         * function store the result in global variables so that it can be used
104         * latter...
105         */
106        myCpu = get_ppc_cpu_type();
107        myCpuRevision = get_ppc_cpu_revision();
108
109        /*
110         * determine clock speed
111         */
112        bsp_clock_speed = mpc55xx_get_system_clock() / MPC55XX_SYSTEM_CLOCK_DIVIDER;
113
114        /* Time reference value */
115        bsp_clicks_per_usec = bsp_clock_speed / 1000000;
116
117        /* Initialize exceptions */
118        ppc_exc_vector_base = (uint32_t) mpc55xx_exc_vector_base;
119        ppc_exc_initialize(
120                PPC_INTERRUPT_DISABLE_MASK_DEFAULT,
121                (uintptr_t) bsp_section_work_begin,
122                rtems_configuration_get_interrupt_stack_size()
123        );
124        ppc_exc_set_handler(ASM_ALIGN_VECTOR, ppc_exc_alignment_handler);
125
126        /* Initialize interrupts */
127        bsp_interrupt_initialize();
128
129        mpc55xx_edma_init();
130        #ifdef MPC55XX_EMIOS_PRESCALER
131                mpc55xx_emios_initialize(MPC55XX_EMIOS_PRESCALER);
132        #endif
133}
Note: See TracBrowser for help on using the repository browser.