From f849f3ee1f41b9298d840bc79c1e7be4cc4a6249 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 14 Mar 2001 17:19:53 +0000 Subject: 2001-02-22 Joel Sherrill * 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. --- c/src/lib/libbsp/mips/genmongoosev/include/bsp.h | 106 +++++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 c/src/lib/libbsp/mips/genmongoosev/include/bsp.h (limited to 'c/src/lib/libbsp/mips/genmongoosev/include/bsp.h') 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 +#include +#include +#include +#include + +/* + * 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 */ -- cgit v1.2.3