source: rtems/c/src/lib/libbsp/sparc/leon/include/bsp.h @ 5354ab0

4.104.114.84.95
Last change on this file since 5354ab0 was 5354ab0, checked in by Joel Sherrill <joel.sherrill@…>, on 11/08/01 at 13:39:52

2001-11-08 Jiri Gaisler <jiri@…>

This fix is in response to test results reported by Jerry Needell
<jerry.needell@…> for the SPARC/ERC32 and tracked as PR80.

  • include/bsp.h: TM27 was not running properly because the ERC32 and LEON cannot nest interrupts at the same level. The BSP test support had to be modified to support using two different interrupt sources.
  • Property mode set to 100644
File size: 4.2 KB
RevLine 
[b21b0ab]1/*  bsp.h
2 *
3 *  This include file contains all SPARC simulator definitions.
4 *
5 *  COPYRIGHT (c) 1989-1998.
6 *  On-Line Applications Research Corporation (OAR).
[5354ab0]7 *  Copyright assigned to U.S. Government, 1994.
[b21b0ab]8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  Ported to ERC32 implementation of the SPARC by On-Line Applications
14 *  Research Corporation (OAR) under contract to the European Space
15 *  Agency (ESA).
16 *
17 *  ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
18 *  European Space Agency.
19 *
20 *  $Id$
21 */
22
23#ifndef __SIS_h
24#define __SIS_h
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30#include <rtems.h>
31#include <iosupp.h>
32#include <leon.h>
33#include <clockdrv.h>
34
35#include <console.h>
36
37/*
38 *  confdefs.h overrides for this BSP:
39 *   - two termios serial ports
40 *   - Interrupt stack space is not minimum if defined.
41 */
42
43#define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 2
44#define CONFIGURE_INTERRUPT_STACK_MEMORY  (16 * 1024)
45
46
47/*
48 *  Define the time limits for RTEMS Test Suite test durations.
49 *  Long test and short test duration limits are provided.  These
50 *  values are in seconds and need to be converted to ticks for the
51 *  application.
52 *
53 */
54
55#define MAX_LONG_TEST_DURATION       3   /* 3 seconds */
56#define MAX_SHORT_TEST_DURATION      3   /* 3 seconds */
57
58/*
59 *  Define the interrupt mechanism for Time Test 27
60 *
61 *  NOTE: Since the interrupt code for the SPARC supports both synchronous
62 *        and asynchronous trap handlers, support for testing with both
63 *        is included.
64 */
65
66#define SIS_USE_SYNCHRONOUS_TRAP  0
67
68/*
69 *  The synchronous trap is an arbitrarily chosen software trap.
70 */
71
72#if (SIS_USE_SYNCHRONOUS_TRAP == 1)
73
74#define TEST_VECTOR SPARC_SYNCHRONOUS_TRAP( 0x90 )
75
76#define MUST_WAIT_FOR_INTERRUPT 1
77
78#define Install_tm27_vector( handler ) \
79  set_vector( (handler), TEST_VECTOR, 1 );
80
81#define Cause_tm27_intr() \
82  asm volatile( "ta 0x10; nop " );
83
84#define Clear_tm27_intr() 
85
86#define Lower_tm27_intr()
87
88/*
89 *  The asynchronous trap is an arbitrarily chosen ERC32 interrupt source.
90 */
91
92#else   /* use a regular asynchronous trap */
93
94#define TEST_INTERRUPT_SOURCE LEON_INTERRUPT_EXTERNAL_1
95#define TEST_VECTOR LEON_TRAP_TYPE( TEST_INTERRUPT_SOURCE )
[5354ab0]96#define TEST_INTERRUPT_SOURCE2 LEON_INTERRUPT_EXTERNAL_1+1
97#define TEST_VECTOR2 LEON_TRAP_TYPE( TEST_INTERRUPT_SOURCE2 )
[b21b0ab]98#define MUST_WAIT_FOR_INTERRUPT 1
99 
100#define Install_tm27_vector( handler ) \
[5354ab0]101  set_vector( (handler), TEST_VECTOR, 1 ); \
102  set_vector( (handler), TEST_VECTOR2, 1 );
[b21b0ab]103 
104#define Cause_tm27_intr() \
105  do { \
[5354ab0]106    LEON_Force_interrupt( TEST_INTERRUPT_SOURCE+(Interrupt_nest>>1)); \
[b21b0ab]107    nop(); \
108    nop(); \
109    nop(); \
110  } while (0)
111 
112#define Clear_tm27_intr() \
113  LEON_Clear_interrupt( TEST_INTERRUPT_SOURCE )
114 
115#define Lower_tm27_intr()
116
117#endif
118
119/*
120 *  Simple spin delay in microsecond units for device drivers.
121 *  This is very dependent on the clock speed of the target.
122 */
123
124extern void Clock_delay(rtems_unsigned32 microseconds);
125
[5354ab0]126#define delay( microseconds ) Clock_delay(microseconds)
[b21b0ab]127
128/* Constants */
129
130/*
131 *  Information placed in the linkcmds file.
132 */
133
134extern int   RAM_START;
135extern int   RAM_END;
136extern int   RAM_SIZE;
137 
138extern int   PROM_START;
139extern int   PROM_END;
140extern int   PROM_SIZE;
141
142extern int   CLOCK_SPEED;
143 
144extern int   end;        /* last address in the program */
145
146/*
147 *  Device Driver Table Entries
148 */
149 
150/*
151 * NOTE: Use the standard Console driver entry
152 */
153 
154/*
155 * NOTE: Use the standard Clock driver entry
156 */
157 
158 
159/* miscellaneous stuff assumed to exist */
160
161void bsp_cleanup( void );
162
163void bsp_start( void );
164
165rtems_isr_entry set_vector(                     /* returns old vector */
166    rtems_isr_entry     handler,                /* isr routine        */
167    rtems_vector_number vector,                 /* vector number      */
168    int                 type                    /* RTEMS or RAW intr  */
169);
170
171void DEBUG_puts( char *string );
172
173void BSP_fatal_return( void );
174
175void bsp_spurious_initialize( void );
176
177extern rtems_configuration_table BSP_Configuration;     /* owned by BSP */
178
179extern rtems_cpu_table           Cpu_table;             /* owned by BSP */
180
181#ifdef __cplusplus
182}
183#endif
184
185#endif
186/* end of include file */
Note: See TracBrowser for help on using the repository browser.