source: rtems/c/src/lib/libcpu/m68k/mcf5272/timer/timerisr.S @ 3dae380

4.104.114.84.95
Last change on this file since 3dae380 was 3cfd520, checked in by Jay Monkman <jtm@…>, on 08/03/04 at 04:59:11

2004-08-02 Jay Monkman <jtm@…>

  • Makefile.am, configure.ac: Added CSB360 BSP
  • mcf5272/.cvsignore, mcf5272/ChangeLog, mcf5272/Makefile.am, mcf5272/clock/.cvsignore, mcf5272/clock/ckinit.c, mcf5272/include/.cvsignore, mcf5272/include/mcf5272.h, mcf5272/timer/.cvsignore, mcf5272/timer/timer.c, mcf5272/timer/timerisr.S: New files.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 *  Handle MCF5272 TIMER2 interrupts.
3 *
4 * All code in this routine is pure overhead which can perturb the
5 * accuracy of RTEMS' timing test suite.
6 *
7 * See also:    Read_timer()
8 *
9 * To reduce overhead this is best to be the "rawest" hardware interupt
10 * handler you can write.  This should be the only interrupt which can
11 * occur during the measured time period.
12 *
13 * An external counter, Timer_interrupts, is incremented.
14 *
15 *  Copyright (C) 2000 OKTET Ltd., St.-Petersburg, Russia
16 *  Author: Victor V. Vengerov <vvv@oktet.ru>
17 *
18 *  This file based on work:
19 *  Author:
20 *    David Fiddes, D.J@fiddes.surfaid.org
21 *    http://www.calm.hw.ac.uk/davidf/coldfire/
22 *
23 *  COPYRIGHT (c) 1989-1998.
24 *  On-Line Applications Research Corporation (OAR).
25 *  Copyright assigned to U.S. Government, 1994.
26 *
27 *  The license and distribution terms for this file may be
28 *  found in the file LICENSE in this distribution or at
29 *
30 *  http://www.OARcorp.com/rtems/license.html.
31 *
32 *  timerisr.S,v 1.1 2001/10/26 19:32:40 joel Exp
33 */
34
35#include "asm.h"
36#include "bsp.h"
37/*
38#include "mcf5272/mcf5272.h"
39*/
40
41BEGIN_CODE
42        PUBLIC(timerisr)
43SYM(timerisr):
44        move.l   a0, a7@-
45        move.b   # (MCF5272_TER_REF + MCF5272_TER_CAP), (a0)
46        addq.l   #1,SYM(Timer_interrupts) | increment timer value
47        move.l   a7@+, a0
48        rte
49END_CODE
50END
Note: See TracBrowser for help on using the repository browser.