RTEMS 7.0-rc1
Loading...
Searching...
No Matches
tm27.h
1/* SPDX-License-Identifier: GPL-2.0+-with-RTEMS-exception */
2
3/*
4 * @file
5 * @ingroup m68k_mcf5329
6 * @brief Implementations for interrupt mechanisms for Time Test 27
7 */
8
9/*
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.org/license/LICENSE.
13 */
14
15#ifndef _RTEMS_TMTEST27
16#error "This is an RTEMS internal file you must not include directly."
17#endif
18
19#ifndef __tm27_h
20#define __tm27_h
21
22/*
23 * Stuff for Time Test 27
24 * Don't bother with hardware -- just use a software-interrupt
25 */
26
27#define MUST_WAIT_FOR_INTERRUPT 0
28
29#define TM27_USE_VECTOR_HANDLER
30
31#define Install_tm27_vector( handler ) \
32 rtems_interrupt_handler_install( \
33 35, \
34 "Install tm27 interrupt", \
35 RTEMS_INTERRUPT_UNIQUE, \
36 (void *)handler, \
37 NULL \
38 );
39
40#define Cause_tm27_intr() asm volatile ("trap #3");
41
42#define Clear_tm27_intr() /* empty */
43
44#define Lower_tm27_intr() /* empty */
45
46#endif