source: rtems/c/src/lib/libbsp/m68k/mvme162/startup/bspstart.c @ 08311cc3

4.104.114.84.95
Last change on this file since 08311cc3 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 3.4 KB
Line 
1/*
2 *  This routine starts the application.  It includes application,
3 *  board, and monitor specific initialization and configuration.
4 *  The generic CPU dependent initialization has been performed
5 *  before this routine is invoked.
6 *
7 *  COPYRIGHT (c) 1989-1999.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.OARcorp.com/rtems/license.html.
13 *
14 *  Modifications of respective RTEMS file: COPYRIGHT (c) 1994.
15 *  EISCAT Scientific Association. M.Savitski
16 *
17 *  This material is a part of the MVME162 Board Support Package
18 *  for the RTEMS executive. Its licensing policies are those of the
19 *  RTEMS above.
20 *
21 *  $Id$
22 */
23
24#include <bsp.h>
25#include <rtems/libio.h>
26#include <page_table.h>
27 
28#include <libcsupport.h>
29 
30#include <string.h>
31 
32/*
33 *  The original table from the application and our copy of it with
34 *  some changes.
35 */
36
37extern rtems_configuration_table  Configuration;
38rtems_configuration_table  BSP_Configuration;
39
40rtems_cpu_table Cpu_table;
41
42char *rtems_progname;
43
44/*
45 *  Use the shared implementations of the following routines
46 */
47 
48void bsp_postdriver_hook(void);
49void bsp_libc_init( void *, unsigned32, int );
50
51/*
52 *  Function:   bsp_pretasking_hook
53 *  Created:    95/03/10
54 *
55 *  Description:
56 *      BSP pretasking hook.  Called just before drivers are initialized.
57 *      Used to setup libc and install any BSP extensions.
58 *
59 *  NOTES:
60 *      Must not use libc (to do io) from here, since drivers are
61 *      not yet initialized.
62 *
63 */
64 
65void bsp_pretasking_hook(void)
66{
67    extern int end;
68    rtems_unsigned32        heap_start;
69
70    heap_start = (rtems_unsigned32) &end;
71    if (heap_start & (CPU_ALIGNMENT-1))
72        heap_start = (heap_start + CPU_ALIGNMENT) & ~(CPU_ALIGNMENT-1);
73
74    bsp_libc_init((void *) heap_start, 64 * 1024, 0);
75 
76#ifdef RTEMS_DEBUG
77    rtems_debug_enable( RTEMS_DEBUG_ALL_MASK );
78#endif
79}
80
81/*
82 *  bsp_start
83 *
84 *  This routine does the bulk of the system initialization.
85 */
86
87void bsp_start( void )
88{
89  m68k_isr_entry *monitors_vector_table;
90  int             index;
91
92  /*
93   *  162Bug Vectors are at 0xFFE00000
94   *  162Bug Vectors on LX are at 0x00000000
95   */
96
97#if defined(mvme162lx)
98  monitors_vector_table = (m68k_isr_entry *)0x00000000;
99#else
100  monitors_vector_table = (m68k_isr_entry *)0xFFE00000;
101#endif
102
103  m68k_set_vbr( monitors_vector_table );
104
105  for ( index=2 ; index<=255 ; index++ )
106    M68Kvec[ index ] = monitors_vector_table[ 32 ];
107
108  M68Kvec[  2 ] = monitors_vector_table[  2 ];   /* bus error vector */
109  M68Kvec[  4 ] = monitors_vector_table[  4 ];   /* breakpoints vector */
110  M68Kvec[  9 ] = monitors_vector_table[  9 ];   /* trace vector */
111  M68Kvec[ 47 ] = monitors_vector_table[ 47 ];   /* system call vector */
112
113  m68k_set_vbr( &M68Kvec );
114
115  /*
116   *  You may wish to make the VME arbitration round-robin here, currently
117   *  we leave it as it is.
118   */
119
120  /* set the Interrupt Base Vectors */
121
122  lcsr->vector_base = (VBR0 << 28) | (VBR1 << 24);
123
124  page_table_init();
125
126  /*
127   *  we only use a hook to get the C library initialized.
128   */
129
130  Cpu_table.pretasking_hook = bsp_pretasking_hook;  /* init libc, etc. */
131  Cpu_table.postdriver_hook = bsp_postdriver_hook;
132  Cpu_table.interrupt_vector_table = (m68k_isr_entry *) &M68Kvec;
133  Cpu_table.interrupt_stack_size = 4096;
134
135  BSP_Configuration.work_space_start = (void *)
136     (RAM_END - BSP_Configuration.work_space_size);
137}
Note: See TracBrowser for help on using the repository browser.