source: rtems/c/src/lib/libbsp/m68k/mrm332/startup/start_c.c @ bb43b51e

4.115
Last change on this file since bb43b51e was 1fec9e0, checked in by Gedare Bloom <gedare@…>, on 04/16/12 at 02:22:36

m68k: replace m68k_isr with rtems_isr

  • Property mode set to 100644
File size: 3.3 KB
Line 
1/*
2 *  $Id
3 */
4
5#include <mrm332.h>
6#include <rtems/m68k/sim.h>
7#define __START_C__
8#include "bsp.h"
9
10rtems_isr_entry M68Kvec[256];
11rtems_isr_entry vectors[256];
12
13void  boot_card(const char *cmdline);
14
15/*
16 *  This prototype really should have the noreturn attribute but
17 *  that causes a warning. Not sure how to fix that.
18 */
19/* void dumby_start ()  __attribute__ ((noreturn)); */
20void start_c(void);
21
22void start_c(void) {
23
24  /* Synthesizer Control Register */
25  /*    see section(s) 4.8 */
26  /* end include in ram_init.S */
27  *SYNCR = (unsigned short int)
28    ( SAM(MRM_W,15,VCO) | SAM(0x0,14,PRESCALE) | SAM(MRM_Y,8,COUNTER) );
29  while (! (*SYNCR & SLOCK));   /* protect from clock overshoot */
30  /* include in ram_init.S */
31  *SYNCR = (unsigned short int)
32    ( SAM(MRM_W,15,VCO) | SAM(MRM_X,14,PRESCALE) | SAM(MRM_Y,8,COUNTER) );
33
34  /* System Protection Control Register */
35  /*    !!! can only write to once after reset !!! */
36  /*    see section 3.8.4 of the SIM Reference Manual */
37  *SYPCR = (unsigned char)( HME | BME );
38
39  /* Periodic Interrupr Control Register */
40  /*    see section 3.8.2 of the SIM Reference Manual */
41  *PICR = (unsigned short int)
42    ( SAM(0,8,PIRQL) | SAM(MRM_PIV,0,PIV) );
43  /*     ^^^ zero disables interrupt, don't enable here or ram_init will
44         be wrong. It's enabled below. */
45
46  /* Periodic Interrupt Timer Register */
47  /*    see section 3.8.3 of the SIM Reference Manual */
48  *PITR = (unsigned short int)( SAM(0x09,0,PITM) );
49  /*    1.098mS interrupt, assuming 32.768 KHz input clock */
50
51  /* Port C Data */
52  /*    load values before enabled */
53  *PORTC = (unsigned char) 0x0;
54
55  /* Port E and F Data Register */
56  /*    see section 9 of the SIM Reference Manual */
57  *PORTE0 = (unsigned char) 0;
58  *PORTF0 = (unsigned char) 0;
59
60  /* Port E and F Data Direction Register */
61  /*    see section 9 of the SIM Reference Manual */
62  *DDRE = (unsigned char) 0xff;
63  *DDRF = (unsigned char) 0xfd;
64
65  /* Port E and F Pin Assignment Register */
66  /*    see section 9 of the SIM Reference Manual */
67  *PEPAR = (unsigned char) 0;
68  *PFPAR = (unsigned char) 0;
69
70  /* end of SIM initalization code */
71  /* end include in ram_init.S */
72
73  /*
74   * Initialize RAM by copying the .data section out of ROM (if
75   * needed) and "zero-ing" the .bss section.
76   */
77  {
78    register char *src = _etext;
79    register char *dst = _copy_start;
80
81    if (_copy_data_from_rom)
82      /* ROM has data at end of text; copy it. */
83      while (dst < _edata)
84        *dst++ = *src++;
85
86    /* Zero bss */
87    for (dst = _clear_start; dst< end; dst++)
88      {
89        *dst = 0;
90      }
91  }
92
93  /*
94   * Initialize vector table.
95   */
96  {
97    rtems_isr_entry *monitors_vector_table;
98
99    m68k_get_vbr(monitors_vector_table);
100
101    M68Kvec[  4 ] = monitors_vector_table[  4 ];   /* breakpoints vector */
102    M68Kvec[  9 ] = monitors_vector_table[  9 ];   /* trace vector */
103    M68Kvec[ 31 ] = monitors_vector_table[ 31 ];   /* level 7 interrupt */
104    M68Kvec[ 47 ] = monitors_vector_table[ 47 ];   /* system call vector */
105    M68Kvec[ 66 ] = monitors_vector_table[ 66 ];   /* user defined */
106
107    m68k_set_vbr(&M68Kvec);
108  }
109
110  /*
111   * Initalize the board.
112   */
113
114  /* Spurious should be called in the predriver hook */
115  /* Spurious_Initialize(); */
116  /*console_init(); */
117
118  /*
119   * Execute main with arguments argc and agrv.
120   */
121  boot_card((void*)0);
122  reboot();
123
124}
Note: See TracBrowser for help on using the repository browser.