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/i386ex/ChangeLog | 5 ++++ c/src/lib/libbsp/i386/i386ex/include/bsp.h | 19 -------------- c/src/lib/libbsp/i386/i386ex/include/tm27.h | 37 ++++++++++++++++++++++++++ c/src/lib/libbsp/i386/pc386/ChangeLog | 5 ++++ c/src/lib/libbsp/i386/pc386/include/bsp.h | 14 ---------- c/src/lib/libbsp/i386/pc386/include/tm27.h | 36 +++++++++++++++++++++++++ c/src/lib/libbsp/i386/ts_386ex/ChangeLog | 5 ++++ c/src/lib/libbsp/i386/ts_386ex/include/bsp.h | 19 -------------- c/src/lib/libbsp/i386/ts_386ex/include/tm27.h | 38 +++++++++++++++++++++++++++ 9 files changed, 126 insertions(+), 52 deletions(-) create mode 100644 c/src/lib/libbsp/i386/i386ex/include/tm27.h create mode 100644 c/src/lib/libbsp/i386/pc386/include/tm27.h create mode 100644 c/src/lib/libbsp/i386/ts_386ex/include/tm27.h (limited to 'c') diff --git a/c/src/lib/libbsp/i386/i386ex/ChangeLog b/c/src/lib/libbsp/i386/i386ex/ChangeLog index de96f3ee39..dc0e10f213 100644 --- a/c/src/lib/libbsp/i386/i386ex/ChangeLog +++ b/c/src/lib/libbsp/i386/i386ex/ChangeLog @@ -1,3 +1,8 @@ +2004-04-22 Ralf Corsepius + + * include/bsp.h: Split out tmtest27 support. + * include/tm27.h: New. + 2004-04-21 Ralf Corsepius PR 613/bsps diff --git a/c/src/lib/libbsp/i386/i386ex/include/bsp.h b/c/src/lib/libbsp/i386/i386ex/include/bsp.h index a1d3e1df5e..ee6d39782b 100644 --- a/c/src/lib/libbsp/i386/i386ex/include/bsp.h +++ b/c/src/lib/libbsp/i386/i386ex/include/bsp.h @@ -37,25 +37,6 @@ extern "C" { /* #define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 2 */ #define CONFIGURE_INTERRUPT_STACK_MEMORY (8 * 1024) -/* - * Define the interrupt mechanism for Time Test 27 - * - * NOTE: Use a software interrupt for the i386. - */ - -#define MUST_WAIT_FOR_INTERRUTPT 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() - /* * Simple spin delay in microsecond units for device drivers. * This is very dependent on the clock speed of the target. diff --git a/c/src/lib/libbsp/i386/i386ex/include/tm27.h b/c/src/lib/libbsp/i386/i386ex/include/tm27.h new file mode 100644 index 0000000000..4a2486b398 --- /dev/null +++ b/c/src/lib/libbsp/i386/i386ex/include/tm27.h @@ -0,0 +1,37 @@ +/* + * 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 + * + * NOTE: Use a software interrupt for the i386. + */ + +#define MUST_WAIT_FOR_INTERRUTPT 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 diff --git a/c/src/lib/libbsp/i386/pc386/ChangeLog b/c/src/lib/libbsp/i386/pc386/ChangeLog index 56dd91d93f..62fbe978fb 100644 --- a/c/src/lib/libbsp/i386/pc386/ChangeLog +++ b/c/src/lib/libbsp/i386/pc386/ChangeLog @@ -1,3 +1,8 @@ +2004-04-22 Ralf Corsepius + + * include/bsp.h: Split out tmtest27 support. + * include/tm27.h: New. + 2004-04-21 Ralf Corsepius PR 613/bsps 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 diff --git a/c/src/lib/libbsp/i386/ts_386ex/ChangeLog b/c/src/lib/libbsp/i386/ts_386ex/ChangeLog index f7d01d10ca..0e229dfd31 100644 --- a/c/src/lib/libbsp/i386/ts_386ex/ChangeLog +++ b/c/src/lib/libbsp/i386/ts_386ex/ChangeLog @@ -1,3 +1,8 @@ +2004-04-22 Ralf Corsepius + + * include/bsp.h: Split out tmtest27 support. + * include/tm27.h: New. + 2004-04-21 Ralf Corsepius PR 613/bsps diff --git a/c/src/lib/libbsp/i386/ts_386ex/include/bsp.h b/c/src/lib/libbsp/i386/ts_386ex/include/bsp.h index 65bb9b7d12..401507a652 100644 --- a/c/src/lib/libbsp/i386/ts_386ex/include/bsp.h +++ b/c/src/lib/libbsp/i386/ts_386ex/include/bsp.h @@ -79,25 +79,6 @@ extern void Wait_X_ms (unsigned); #define TIMER_16BIT 0x30 /* r/w counter 16 bits, LSB first */ #define TIMER_BCD 0x01 /* count in BCD */ -/* - * Define the interrupt mechanism for Time Test 27 - * - * NOTE: Use a software interrupt for the i386. - */ - -#define MUST_WAIT_FOR_INTERRUTPT 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() - /* * Simple spin delay in microsecond units for device drivers. * This is very dependent on the clock speed of the target. diff --git a/c/src/lib/libbsp/i386/ts_386ex/include/tm27.h b/c/src/lib/libbsp/i386/ts_386ex/include/tm27.h new file mode 100644 index 0000000000..274c84e5ab --- /dev/null +++ b/c/src/lib/libbsp/i386/ts_386ex/include/tm27.h @@ -0,0 +1,38 @@ +/* + * 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 + * + * NOTE: Use a software interrupt for the i386. + */ + +#define MUST_WAIT_FOR_INTERRUTPT 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