summaryrefslogtreecommitdiffstats
path: root/bsps/m68k/mvme147
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-20 12:08:42 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-20 13:52:19 +0200
commite0dd8a5ad830798bc8082b03b8c42c32fb9660e0 (patch)
treed147bfc4d670fcdfbd2e2d2e75eb209f92e07df1 /bsps/m68k/mvme147
parentbsps: Move startup files to bsps (diff)
downloadrtems-e0dd8a5ad830798bc8082b03b8c42c32fb9660e0.tar.bz2
bsps: Move benchmark timer to bsps
This patch is a part of the BSP source reorganization. Update #3285.
Diffstat (limited to 'bsps/m68k/mvme147')
-rw-r--r--bsps/m68k/mvme147/btimer/btimer.c67
-rw-r--r--bsps/m68k/mvme147/btimer/timerisr.S26
2 files changed, 93 insertions, 0 deletions
diff --git a/bsps/m68k/mvme147/btimer/btimer.c b/bsps/m68k/mvme147/btimer/btimer.c
new file mode 100644
index 0000000000..9d48fa7075
--- /dev/null
+++ b/bsps/m68k/mvme147/btimer/btimer.c
@@ -0,0 +1,67 @@
+/*
+ * COPYRIGHT (c) 1989-1999.
+ * 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.rtems.org/license/LICENSE.
+ *
+ * MVME147 port for TNI - Telecom Bretagne
+ * by Dominique LE CAMPION (Dominique.LECAMPION@enst-bretagne.fr)
+ * May 1996
+ */
+
+#include <rtems/btimer.h>
+#include <bsp.h>
+
+#define TIMER_INT_LEVEL 6
+
+#define COUNTDOWN_VALUE 0
+/* Allows 0.4096 second delay betwin ints */
+/* Each tick is 6.25 us */
+
+int Ttimer_val;
+bool benchmark_timer_find_average_overhead;
+
+rtems_isr timerisr(rtems_vector_number);
+
+void benchmark_timer_initialize(void)
+{
+ (void) set_vector(timerisr, TIMER_1_VECTOR, 0); /* install ISR */
+
+ Ttimer_val = 0; /* clear timer ISR count */
+ pcc->timer1_int_control = 0x00; /* Disable T1 Interr. */
+ pcc->timer1_preload = COUNTDOWN_VALUE;
+ /* write countdown preload value */
+ pcc->timer1_control = 0x00; /* load preload value */
+ pcc->timer1_control = 0x07; /* clear T1 overflow counter, enable counter */
+ pcc->timer1_int_control = TIMER_INT_LEVEL|0x08;
+ /* Enable Timer 1 and set its int. level */
+
+}
+
+#define AVG_OVERHEAD 0 /* No need to start/stop the timer to read
+ its value on the MVME147 PCC: reads are not
+ synchronized whith the counter updates*/
+#define LEAST_VALID 10 /* Don't trust a value lower than this */
+
+benchmark_timer_t benchmark_timer_read(void)
+{
+ uint32_t total;
+ uint16_t counter_value;
+
+ counter_value = pcc->timer1_count; /* read the counter value */
+
+ total = ((Ttimer_val * 0x10000) + counter_value); /* in 6.25 us units */
+ /* DC note : just look at the assembly generated
+ to see gcc's impressive optimization ! */
+ return total;
+
+}
+
+void benchmark_timer_disable_subtracting_average_overhead(
+ bool find_flag
+)
+{
+ benchmark_timer_find_average_overhead = find_flag;
+}
diff --git a/bsps/m68k/mvme147/btimer/timerisr.S b/bsps/m68k/mvme147/btimer/timerisr.S
new file mode 100644
index 0000000000..418cf64108
--- /dev/null
+++ b/bsps/m68k/mvme147/btimer/timerisr.S
@@ -0,0 +1,26 @@
+/* timer_isr()
+ *
+ * This routine provides the ISR for the PCC timer on the MVME147
+ * board. The timer is set up to generate an interrupt at maximum
+ * intervals.
+ *
+ * MVME147 port for TNI - Telecom Bretagne
+ * by Dominique LE CAMPION (Dominique.LECAMPION@enst-bretagne.fr)
+ * May 1996
+ */
+
+#include <rtems/asm.h>
+
+BEGIN_CODE
+
+.set T1_CONTROL_REGISTER, 0xfffe1018 | timer 1 control register
+
+ PUBLIC (timerisr)
+SYM (timerisr):
+ orb #0x80, T1_CONTROL_REGISTER | clear T1 int status bit
+ addql #1, SYM (Ttimer_val) | increment timer value
+end_timerisr:
+ rte
+
+END_CODE
+END