summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/mvme147
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-22 15:25:55 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-22 15:25:55 +0000
commite35761bf12eb389b689c6eb055a90822ce0af4db (patch)
tree57d9b42bd80e5db2431a8139791eb8b010a4fce4 /c/src/lib/libbsp/m68k/mvme147
parent2004-04-22 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-e35761bf12eb389b689c6eb055a90822ce0af4db.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/m68k/mvme147')
-rw-r--r--c/src/lib/libbsp/m68k/mvme147/ChangeLog5
-rw-r--r--c/src/lib/libbsp/m68k/mvme147/include/bsp.h18
-rw-r--r--c/src/lib/libbsp/m68k/mvme147/include/tm27.h36
3 files changed, 41 insertions, 18 deletions
diff --git a/c/src/lib/libbsp/m68k/mvme147/ChangeLog b/c/src/lib/libbsp/m68k/mvme147/ChangeLog
index b028fd4a90..3c4bf510f8 100644
--- a/c/src/lib/libbsp/m68k/mvme147/ChangeLog
+++ b/c/src/lib/libbsp/m68k/mvme147/ChangeLog
@@ -1,3 +1,8 @@
+2004-04-22 Ralf Corsepius <ralf_corsepius@rtems.org>
+
+ * include/bsp.h: Split out tmtest27 support.
+ * include/tm27.h: New.
+
2004-04-21 Ralf Corsepius <ralf_corsepius@rtems.org>
PR 613/bsps
diff --git a/c/src/lib/libbsp/m68k/mvme147/include/bsp.h b/c/src/lib/libbsp/m68k/mvme147/include/bsp.h
index 868360ba6a..0e2f315da4 100644
--- a/c/src/lib/libbsp/m68k/mvme147/include/bsp.h
+++ b/c/src/lib/libbsp/m68k/mvme147/include/bsp.h
@@ -123,24 +123,6 @@ struct pcc_map {
#define EXTERN extern
#endif
-/*
- * Define the interrupt mechanism for Time Test 27
- *
- * NOTE: Use the MPCSR vector for the MVME147
- */
-
-#define MUST_WAIT_FOR_INTERRUPT 0
-
-#define Install_tm27_vector( handler ) set_vector( (handler), \
- SOFT_1_VECTOR, 1 )
-
-#define Cause_tm27_intr() pcc->software_int_1_control = 0x0c
- /* generate level 4 sotware int. */
-
-#define Clear_tm27_intr() pcc->software_int_1_control = 0x00
-
-#define Lower_tm27_intr()
-
/* miscellaneous stuff assumed to exist */
extern rtems_configuration_table BSP_Configuration;
diff --git a/c/src/lib/libbsp/m68k/mvme147/include/tm27.h b/c/src/lib/libbsp/m68k/mvme147/include/tm27.h
new file mode 100644
index 0000000000..dc2fd0e1b4
--- /dev/null
+++ b/c/src/lib/libbsp/m68k/mvme147/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
+ *
+ * NOTE: Use the MPCSR vector for the MVME147
+ */
+
+#define MUST_WAIT_FOR_INTERRUPT 0
+
+#define Install_tm27_vector( handler ) set_vector( (handler), \
+ SOFT_1_VECTOR, 1 )
+
+#define Cause_tm27_intr() pcc->software_int_1_control = 0x0c
+ /* generate level 4 sotware int. */
+
+#define Clear_tm27_intr() pcc->software_int_1_control = 0x00
+
+#define Lower_tm27_intr()
+
+#endif