source: rtems/c/src/lib/libbsp/mips/jmr3904/include/bsp.h @ 2ba9d3bd

4.104.114.84.95
Last change on this file since 2ba9d3bd was 2ba9d3bd, checked in by Joel Sherrill <joel.sherrill@…>, on 12/19/00 at 16:53:13

2000-12-19 Joel Sherrill <joel@…>

  • Makefile.am: Added tools subdirectory and removed commented out line.
  • configure.in: Added tools subdirectory.
  • tools: New subdirectory.
  • tools/.cvsignore, tools/Makefile.am, tools/configure.in, tools/runtest: New files -- based on powerpc/psim.
  • clock/clockdrv.c: Guessed new value for clock tick. Need to add fast idle support.
  • include/bsp.h: tm27 support initiated.
  • start/start.S: Fixed frame/endframe problems on _sys_exit.
  • startup/bspstart.c: Increased Workspace size to 4 MBYTES!
  • linkcmds: Increased Workspace size to 4 MBYTES!
  • Most tests appear to run correctly!
  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*  bsp.h
2 *
3 *  This include file contains some definitions specific to the
4 *  JMR3904 simulator in gdb.
5 *
6 *  COPYRIGHT (c) 1989-2000.
7 *  On-Line Applications Research Corporation (OAR).
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 *  $Id$
14 */
15
16#ifndef __JMR3904_h
17#define __JMR3904_h
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23#include <rtems.h>
24#include <iosupp.h>
25#include <console.h>
26#include <clockdrv.h>
27#include <libcpu/tx3904.h>
28
29/*
30 *  Define the time limits for RTEMS Test Suite test durations.
31 *  Long test and short test duration limits are provided.  These
32 *  values are in seconds and need to be converted to ticks for the
33 *  application.
34 *
35 */
36
37#define MAX_LONG_TEST_DURATION       300 /* 5 minutes = 300 seconds */
38#define MAX_SHORT_TEST_DURATION      3   /* 3 seconds */
39
40/*
41 *  Define the interrupt mechanism for Time Test 27
42 *
43 *  NOTE: Following are for XXX and are board independent
44 *
45 */
46
47#define MUST_WAIT_FOR_INTERRUPT 0
48
49#define Install_tm27_vector( handler ) \
50    (void) set_vector( handler, TX3904_IRQ_SOFTWARE_1, 1 ); \
51
52#define Cause_tm27_intr() \
53
54#define Clear_tm27_intr() 
55
56#define Lower_tm27_intr()
57
58/* Constants */
59
60/* miscellaneous stuff assumed to exist */
61
62extern rtems_configuration_table BSP_Configuration;
63
64/*
65 *  Device Driver Table Entries
66 */
67
68/*
69 * NOTE: Use the standard Console driver entry
70 */
71 
72/*
73 * NOTE: Use the standard Clock driver entry
74 */
75
76/* functions */
77
78void bsp_cleanup( void );
79
80/* i960_isr_entry set_vector( rtems_isr_entry, unsigned int, unsigned int ); */
81
82#ifdef __cplusplus
83}
84#endif
85
86#endif
87/* end of include file */
Note: See TracBrowser for help on using the repository browser.