forked from Imagelibrary/rtems
This change starts with removing the effectively empty file timerdrv.h. The prototypes for benchmark_timer_XXX() were in btimer.h which was not universally used. Thus every use of timerdrv.h had to be changed to btimer.h. Then the prototypes for benchmark_timer_read() had to be adjusted to return benchmark_timer_t rather than int or uint32_t. I took this opportunity to also correct the file headers to separate the copyright from the file description comments which is needed to ensure the copyright isn't propagated into Doxygen output.
47 lines
1.2 KiB
ArmAsm
47 lines
1.2 KiB
ArmAsm
/**
|
|
* @file
|
|
* @brief Handle MCF5272 TIMER2 interrupts.
|
|
*
|
|
* All code in this routine is pure overhead which can perturb the
|
|
* accuracy of RTEMS' timing test suite.
|
|
*
|
|
* See also: benchmark_timer_read()
|
|
*
|
|
* To reduce overhead this is best to be the "rawest" hardware interupt
|
|
* handler you can write. This should be the only interrupt which can
|
|
* occur during the measured time period.
|
|
*
|
|
* An external counter, Timer_interrupts, is incremented.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2000 OKTET Ltd., St.-Petersburg, Russia
|
|
* Author: Victor V. Vengerov <vvv@oktet.ru>
|
|
*
|
|
* This file based on work:
|
|
* Author:
|
|
* David Fiddes, D.J@fiddes.surfaid.org
|
|
* http://www.calm.hw.ac.uk/davidf/coldfire/
|
|
*
|
|
* COPYRIGHT (c) 1989-1998.
|
|
* 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/asm.h>
|
|
#include <bsp.h>
|
|
|
|
BEGIN_CODE
|
|
PUBLIC(timerisr)
|
|
SYM(timerisr):
|
|
move.l a0, a7@-
|
|
move.b # (MCF5272_TER_REF + MCF5272_TER_CAP), (a0)
|
|
addq.l #1,SYM(Timer_interrupts) | increment timer value
|
|
move.l a7@+, a0
|
|
rte
|
|
END_CODE
|
|
END
|