From 89c86764af822af3895ef0696d463e5a0ba6e50d Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 22 Apr 2004 13:44:03 +0000 Subject: 2004-04-22 Ralf Corsepius * include/bsp.h: Split out tmtest27 support. * include/tm27.h: New. --- c/src/lib/libbsp/i386/pc386/include/bsp.h | 14 ------------ c/src/lib/libbsp/i386/pc386/include/tm27.h | 36 ++++++++++++++++++++++++++++++ 2 files changed, 36 insertions(+), 14 deletions(-) create mode 100644 c/src/lib/libbsp/i386/pc386/include/tm27.h (limited to 'c/src/lib/libbsp/i386/pc386/include') diff --git a/c/src/lib/libbsp/i386/pc386/include/bsp.h b/c/src/lib/libbsp/i386/pc386/include/bsp.h index 8a3f3ecfa0..be92a6c70b 100644 --- a/c/src/lib/libbsp/i386/pc386/include/bsp.h +++ b/c/src/lib/libbsp/i386/pc386/include/bsp.h @@ -142,20 +142,6 @@ extern int rtems_dec21140_driver_attach(struct rtems_bsdnet_ifconfig *, int); /*-------------------------------------------------------------------------+ | Macros +--------------------------------------------------------------------------*/ -/*-------------------------------------------------------------------------+ -| Define the interrupt mechanism for Time Test 27. -| NOTE: Use a software interrupt for the i386 family. -+--------------------------------------------------------------------------*/ -#define MUST_WAIT_FOR_INTERRUPT 0 -#define Install_tm27_vector(handler) \ -{ \ - rtems_isr_entry dummy; \ - rtems_interrupt_catch(handler, 0x90, &dummy); \ -} -#define Cause_tm27_intr() asm volatile("int $0x90" : :); -#define Clear_tm27_intr() -#define Lower_tm27_intr() - /* does anyone need this? if so, report it so we can rename this macro */ #if 0 /*-------------------------------------------------------------------------+ diff --git a/c/src/lib/libbsp/i386/pc386/include/tm27.h b/c/src/lib/libbsp/i386/pc386/include/tm27.h new file mode 100644 index 0000000000..b5d6b0d373 --- /dev/null +++ b/c/src/lib/libbsp/i386/pc386/include/tm27.h @@ -0,0 +1,36 @@ +/* + * tm27.h + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.com/license/LICENSE. + * + * $Id$ + */ + +#ifndef _TMTEST27 +#error "This is an RTEMS internal file you must not include directly." +#endif + +#ifndef __tm27_h +#define __tm27_h + +/* + * Define the interrupt mechanism for Time Test 27 + */ + +#define MUST_WAIT_FOR_INTERRUPT 0 + +#define Install_tm27_vector(handler) \ +{ \ + rtems_isr_entry dummy; \ + rtems_interrupt_catch(handler, 0x90, &dummy); \ +} + +#define Cause_tm27_intr() asm volatile("int $0x90" : :); + +#define Clear_tm27_intr() + +#define Lower_tm27_intr() + +#endif -- cgit v1.2.3