summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/pc386/include
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-22 13:44:03 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-22 13:44:03 +0000
commit89c86764af822af3895ef0696d463e5a0ba6e50d (patch)
treeaec82e5aa918b0fdb6ef3bf6008c90f604745b6f /c/src/lib/libbsp/i386/pc386/include
parent2004-04-22 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-89c86764af822af3895ef0696d463e5a0ba6e50d.tar.bz2
2004-04-22 Ralf Corsepius <ralf_corsepius@rtems.org>
* include/bsp.h: Split out tmtest27 support. * include/tm27.h: New.
Diffstat (limited to 'c/src/lib/libbsp/i386/pc386/include')
-rw-r--r--c/src/lib/libbsp/i386/pc386/include/bsp.h14
-rw-r--r--c/src/lib/libbsp/i386/pc386/include/tm27.h36
2 files changed, 36 insertions, 14 deletions
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