mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 14:18:20 +00:00
Add "(void) param;" annotation to address unused parameter warnings. Found with GCC's warning -Wunused-parameter.
53 lines
1.1 KiB
C
53 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0+-with-RTEMS-exception */
|
|
|
|
/*
|
|
* Timer Init
|
|
*
|
|
* Use the last DMA timer (DTIM3) as the diagnostic timer.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) 2005 Eric Norum <eric@norum.ca>
|
|
*
|
|
* COPYRIGHT (c) 2005.
|
|
* 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.
|
|
*/
|
|
|
|
#include <rtems.h>
|
|
#include <bsp.h>
|
|
#include <rtems/btimer.h>
|
|
|
|
void
|
|
benchmark_timer_initialize(void)
|
|
{
|
|
int preScaleDivisor = bsp_get_CPU_clock_speed() / 1000000;
|
|
int div = MCF5282_TIMER_DTMR_CLK_DIV1;
|
|
|
|
if (preScaleDivisor > 256) {
|
|
preScaleDivisor /= 16;
|
|
div = MCF5282_TIMER_DTMR_CLK_DIV16;
|
|
}
|
|
MCF5282_TIMER3_DTMR = 0;
|
|
MCF5282_TIMER3_DTMR = MCF5282_TIMER_DTMR_PS(preScaleDivisor - 1) | div |
|
|
MCF5282_TIMER_DTMR_RST;
|
|
}
|
|
|
|
/*
|
|
* Return timer value in microsecond units
|
|
*/
|
|
uint32_t
|
|
benchmark_timer_read(void)
|
|
{
|
|
return MCF5282_TIMER3_DTCN;
|
|
}
|
|
|
|
void
|
|
benchmark_timer_disable_subtracting_average_overhead(bool find_flag)
|
|
{
|
|
(void) find_flag;
|
|
}
|