RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
tm27.h
1/*
2 * @file
3 * @ingroup powerpc_mpc8260ads
4 * @brief Implementations for interrupt mechanisms for Time Test 27
5 */
6
7/*
8 * The license and distribution terms for this file may be
9 * found in the file LICENSE in this distribution or at
10 * http://www.rtems.org/license/LICENSE.
11 */
12
13#ifndef _RTEMS_TMTEST27
14#error "This is an RTEMS internal file you must not include directly."
15#endif
16
17#ifndef __tm27_h
18#define __tm27_h
19
21
22/*
23 * Stuff for Time Test 27
24 */
25
26#define MUST_WAIT_FOR_INTERRUPT 0
27
28#define Install_tm27_vector( handler ) \
29 do { \
30 static rtems_irq_connect_data scIrqData = { \
31 PPC_IRQ_SCALL, \
32 (rtems_irq_hdl) handler, \
33 NULL, \
34 NULL, \
35 NULL \
36 }; \
37 BSP_install_rtems_irq_handler (&scIrqData); \
38 } while(0)
39
40#define Cause_tm27_intr() __asm__ volatile ("sc")
41
42#define Clear_tm27_intr() /* empty */
43
44#define Lower_tm27_intr() /* empty */
45
46#endif