summaryrefslogtreecommitdiffstats
path: root/bsps/m68k/mvme167
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/mvme167
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/mvme167')
-rw-r--r--bsps/m68k/mvme167/btimer/btimer.c139
-rw-r--r--bsps/m68k/mvme167/btimer/timerisr.S50
2 files changed, 189 insertions, 0 deletions
diff --git a/bsps/m68k/mvme167/btimer/btimer.c b/bsps/m68k/mvme167/btimer/btimer.c
new file mode 100644
index 0000000000..ed2ce26e51
--- /dev/null
+++ b/bsps/m68k/mvme167/btimer/btimer.c
@@ -0,0 +1,139 @@
+/**
+ * @file
+ *
+ * This file manages the benchmark timer used by the RTEMS Timing Test Suite.
+ * Each measured time period is demarcated by calls to
+ * benchmark_timer_initialize() and benchmark_timer_read().
+ * benchmark_timer_read() usually returns the number of microseconds
+ * since benchmark_timer_initialize() exitted.
+ *
+ * These functions are prototyped in rtems/btimer.h and
+ * must be implemented as part of the BSP.
+ *
+ * This port does not allow the application to select which timer on the
+ * MVME167 to use for the timer, nor does it allow the application to
+ * configure the timer. The timer uses the VMEchip2 Tick Timer #1. This timer
+ * is distinct from the clock, which uses Tick Timer #2 in the VMEchip2.
+ *
+ * All page references are to the MVME166/MVME167/MVME187 Single Board
+ * Computer Programmer's Reference Guide (MVME187PG/D2) with the April 1993
+ * supplements/addenda (MVME187PG/D2A1).
+ */
+
+/*
+ * 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.
+ *
+ * Modifications of respective RTEMS file:
+ * Copyright (c) 1998, National Research Council of Canada
+ */
+
+#include <rtems.h>
+#include <rtems/btimer.h>
+#include <bsp.h>
+
+/* Periodic tick interval */
+#define TICK_INTERVAL 10000UL /* T1's countdown constant (10 ms) */
+#define TIMER_INT_LEVEL 6 /* T1's interrupt level */
+#define TIMER_VECTOR (VBR0 * 0x10 + 0x8) /* T1 is vector $X8 (p. 2-71)*/
+
+/* Number of interrupts since timer was re-initialized */
+uint32_t Ttimer_val;
+
+/*
+ * Set to true to return raw value. Normally zero. Depends on being allocated
+ * in the .bss section and on that section being explicitly zeroed at boot
+ * time.
+ */
+bool benchmark_timer_find_average_overhead;
+
+rtems_isr timerisr(rtems_vector_number);
+
+/*
+ * This routine initializes the Tick Timer 1 on the MVME167 board.
+ *
+ * Input parameters: NONE
+ *
+ * Output parameters: NONE
+ *
+ * NOTE: This routine may not work if the optimizer is enabled for some
+ * compilers. The multiple writes may be optimized away.
+ *
+ * It is important that the timer start/stop overhead be
+ * determined when porting or modifying this code.
+ *
+ * THE VMECHIP2 PRESCALER REGISTER IS ASSUMED TO BE SET!
+ * The prescaler is used by all VMEchip2 timers, including the VMEbus grant
+ * timeout counter, the DMAC time off timer, the DMAC timer on timer, and the
+ * VMEbus global timeout timer. The prescaler value is normally set by the
+ * boot ROM to provide a 1 MHz clock to the timers. For a 25 MHz MVME167, the
+ * prescaler value should be 0xE7 (page 2-63).
+ */
+void benchmark_timer_initialize(void)
+{
+ (void) set_vector( timerisr, TIMER_VECTOR, 0 );
+
+ Ttimer_val = 0; /* clear timer ISR count */
+ lcsr->intr_ena &= 0xFEFFFFFF; /* disable tick timer 1 interrupt */
+ lcsr->intr_clear |= 0x01000000; /* clear tick timer 1 interrupt */
+ lcsr->intr_level[0] = /* set int level */
+ (lcsr->intr_level[0] & 0xFFFFFFF0) | TIMER_INT_LEVEL;
+ lcsr->timer_cmp_1 = TICK_INTERVAL; /* period in compare register */
+ lcsr->timer_cnt_1 = 0; /* clear tick timer 1 counter */
+ lcsr->board_ctl |= 7; /* start tick timer 1, reset-on-compare, */
+ /* and clear overflow counter */
+
+ lcsr->intr_ena |= 0x01000000; /* enable tick timer 1 interrupt */
+ lcsr->vector_base |= MASK_INT; /* unmask VMEchip2 interrupts */
+}
+
+#define AVG_OVERHEAD 3UL /* It typically takes 3.0 microseconds */
+ /* (3 countdowns) to start/stop the timer. */
+#define LEAST_VALID 3UL /* Don't trust a value lower than this */
+
+/*
+ * This routine reads the Tick Timer 1 on the MVME167 board.
+ *
+ * Input parameters: NONE
+ *
+ * Output parameters: time in microseconds
+ *
+ * AVG_OVEREHAD is the overhead for starting and stopping the timer. It
+ * is usually deducted from the number returned.
+ *
+ * LEAST_VALID is the lowest number this routine should trust. Numbers
+ * below this are "noise" and zero is returned.
+ */
+benchmark_timer_t benchmark_timer_read(void)
+{
+ uint32_t total;
+
+ total = (Ttimer_val * TICK_INTERVAL) + lcsr->timer_cnt_1;
+
+ if ( benchmark_timer_find_average_overhead )
+ return total; /* in one microsecond units */
+
+ if ( total < LEAST_VALID )
+ return 0; /* below timer resolution */
+
+ return total - AVG_OVERHEAD;
+}
+
+/*
+ * This routine sets the benchmark_timer_find_average_overhead flag in this
+ * module.
+ *
+ * Input parameters: NONE
+ *
+ * Output parameters: time in microseconds
+ */
+void benchmark_timer_disable_subtracting_average_overhead(
+ bool find_flag
+)
+{
+ benchmark_timer_find_average_overhead = find_flag;
+}
diff --git a/bsps/m68k/mvme167/btimer/timerisr.S b/bsps/m68k/mvme167/btimer/timerisr.S
new file mode 100644
index 0000000000..d96f0996a5
--- /dev/null
+++ b/bsps/m68k/mvme167/btimer/timerisr.S
@@ -0,0 +1,50 @@
+/**
+ * @file
+ *
+ * This ISR is used to bump a count of interval "overflow" interrupts which
+ * have occurred since the timer was started. The number of overflows is taken
+ * into account in the benchmark_timer_read() routine.
+ */
+
+/*
+ * COPYRIGHT (c) 1989-2014.
+ * 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.
+ *
+ * Modifications of respective RTEMS file: COPYRIGHT (c) 1994.
+ * Copyright (c) 1998, National Research Council of Canada
+ */
+
+#include <rtems/asm.h>
+
+BEGIN_CODE
+
+.set INTR_CLEAR_REG, 0xfff40074 | interrupt clear register
+.set T1_CNTRL_REG, 0xfff40060 | tick timer 1 control register
+.set CLEAR_INT, 0x01000000 | clear tick 1 interrupt
+.set CLEAR_OVF, 0x00000004 | clear tick 1 overflow counter
+
+ PUBLIC (Ttimer_val)
+ PUBLIC (timerisr)
+SYM (timerisr):
+ move.l a0, -(a7) | save a0
+ move.l d0, -(a7) | save d0
+ move.w sr, -(a7) | save ccr
+ movea.l #INTR_CLEAR_REG, a0 | a0 = addr of intr clr reg
+ ori.l #CLEAR_INT, (a0) | clear tick timer 1 intr
+ movea.l #T1_CNTRL_REG, a0 | a0 = addr of t1 cntrl reg
+ move.l (a0), d0 | read overflow counter
+ lsr.l #4, d0 | put overflow in low order bits
+ andi.l #0xF, d0 | keep only overflow
+ add.l d0, SYM (Ttimer_val) | increment timer value
+ ori.l #CLEAR_OVF, (a0) | clear overflow counter
+ move.w (a7)+, sr | restore ccr
+ move.l (a7)+, d0 | restore d0
+ move.l (a7)+, a0 | restore a0
+ rte
+
+END_CODE
+END