summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/mips/genmongoosev/include/bsp.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2001-03-14 17:19:53 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2001-03-14 17:19:53 +0000
commitf849f3ee1f41b9298d840bc79c1e7be4cc4a6249 (patch)
tree8d79831f6b52cfaa6bf3263e572627adc4e88e41 /c/src/lib/libbsp/mips/genmongoosev/include/bsp.h
parent2001-03-14 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-f849f3ee1f41b9298d840bc79c1e7be4cc4a6249.tar.bz2
2001-02-22 Joel Sherrill <joel@OARcorp.com>
* The Generic Mongoose-V BSP uses only the peripherals found on the Synova Mongoose-V CPU. This is a radiation hardened CPU based on the LSI Logic 33K. * .cvsignore, ChangeLog, Makefile.am, README, bsp_specs, configure.in, clock/.cvsignore, clock/Makefile.am, clock/clockdrv.c, console/.cvsignore, console/Makefile.am, console/conscfg.c, include/.cvsignore, include/Makefile.am, include/bsp.h, start/.cvsignore, start/Makefile.am, start/regs.S, start/start.S, startup/.cvsignore, startup/Makefile.am, startup/bspstart.c, startup/linkcmds, timer/.cvsignore, timer/Makefile.am, timer/timer.c, wrapup/.cvsignore, wrapup/Makefile.am: New files.
Diffstat (limited to 'c/src/lib/libbsp/mips/genmongoosev/include/bsp.h')
-rw-r--r--c/src/lib/libbsp/mips/genmongoosev/include/bsp.h106
1 files changed, 106 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/mips/genmongoosev/include/bsp.h b/c/src/lib/libbsp/mips/genmongoosev/include/bsp.h
new file mode 100644
index 0000000000..d7b6f91bc6
--- /dev/null
+++ b/c/src/lib/libbsp/mips/genmongoosev/include/bsp.h
@@ -0,0 +1,106 @@
+/* bsp.h
+ *
+ * This include file contains some definitions specific to a board
+ * based upon the generic capabilities of a Mongoose-V.
+ *
+ * COPYRIGHT (c) 1989-2000.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
+ */
+
+#ifndef __GENERIC_MONGOOSE_V_h
+#define __GENERIC_MONGOOSE_V_h
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <rtems.h>
+#include <iosupp.h>
+#include <console.h>
+#include <clockdrv.h>
+#include <libcpu/mongoose-v.h>
+
+/*
+ * Define the time limits for RTEMS Test Suite test durations.
+ * Long test and short test duration limits are provided. These
+ * values are in seconds and need to be converted to ticks for the
+ * application.
+ *
+ */
+
+#define MAX_LONG_TEST_DURATION 300 /* 5 minutes = 300 seconds */
+#define MAX_SHORT_TEST_DURATION 3 /* 3 seconds */
+
+/*
+ * Define the interrupt mechanism for Time Test 27
+ *
+ * NOTE: Following are for XXX and are board independent
+ *
+ */
+
+#define MUST_WAIT_FOR_INTERRUPT 1
+
+#if 0
+#define Install_tm27_vector( handler ) \
+ (void) set_vector( handler, MONGOOSEV_IRQ_SOFTWARE_1, 1 ); \
+
+#define Cause_tm27_intr() \
+ asm volatile ( "syscall 0x01" : : );
+
+#define CLOCK_VECTOR MONGOOSEV_IRQ_TMR0
+
+#define Clear_tm27_intr()
+
+#define Lower_tm27_intr()
+#else
+#define Install_tm27_vector( handler ) \
+ (void) set_vector( handler, MONGOOSEV_IRQ_TMR0, 1 ); \
+
+#define Cause_tm27_intr() \
+ do { \
+ ; \
+ } while(0)
+
+#define Clear_tm27_intr()
+
+#define Lower_tm27_intr()
+
+#endif
+
+/* Constants */
+
+/* miscellaneous stuff assumed to exist */
+
+extern rtems_configuration_table BSP_Configuration;
+
+/*
+ * Device Driver Table Entries
+ */
+
+/*
+ * NOTE: Use the standard Console driver entry
+ */
+
+/*
+ * NOTE: Use the standard Clock driver entry
+ */
+
+/* functions */
+
+void bsp_cleanup( void );
+
+rtems_isr_entry set_vector(
+ rtems_isr_entry, rtems_vector_number, int );
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+/* end of include file */