RTEMS  5.0.0
irq.h
1 /* irq.h
2  *
3  * This include file describe the data structure and the functions implemented
4  * by rtems to write interrupt handlers.
5  *
6  *
7  * SS555 port sponsored by Defence Research and Development Canada - Suffield
8  * Copyright (C) 2004, Real-Time Systems Inc. (querbach@realtime.bc.ca)
9  *
10  * Derived from libbsp/powerpc/mbx8xx/irq/irq.h:
11  *
12  * CopyRight (C) 1999 valette@crf.canon.fr
13  *
14  * This code is heavilly inspired by the public specification of STREAM V2
15  * that can be found at :
16  *
17  * <http://www.chorus.com/Documentation/index.html> by following
18  * the STREAM API Specification Document link.
19  *
20  * The license and distribution terms for this file may be
21  * found in the file LICENSE in this distribution or at
22  * http://www.rtems.org/license/LICENSE.
23  */
24 
25 #ifndef LIBBSP_POWERPC_SS555_IRQ_IRQ_H
26 #define LIBBSP_POWERPC_SS555_IRQ_IRQ_H
27 
28 #include <libcpu/irq.h>
29 
30 #ifndef ASM
31 
32 #ifdef __cplusplus
33 extern "C" {
34 #endif
35 
36 /*
37  * These are no longer prototyped anywhere else. This appears to be
38  * remnants of the IRQ code upgrade.
39  *
40  * --joel 28 April 2010
41  */
42 int CPU_install_rtems_irq_handler(const rtems_irq_connect_data* irq);
43 int CPU_get_current_rtems_irq_handler(rtems_irq_connect_data* irq);
44 int CPU_remove_rtems_irq_handler(const rtems_irq_connect_data* irq);
45 int CPU_rtems_irq_mngt_set(rtems_irq_global_settings* config);
46 int CPU_rtems_irq_mngt_get(rtems_irq_global_settings** config);
47 void C_default_exception_handler(CPU_Exception_frame* excPtr);
48 
49 /*
50  * The SS555 has no external interrupt controller chip, so use the standard
51  * routines from the CPU-dependent code.
52  */
53 #define BSP_install_rtems_irq_handler(ptr) CPU_install_rtems_irq_handler(ptr)
54 #define BSP_get_current_rtems_irq_handler(ptr) CPU_get_current_rtems_irq_handler(ptr)
55 #define BSP_remove_rtems_irq_handler(ptr) CPU_remove_rtems_irq_handler(ptr)
56 #define BSP_rtems_irq_mngt_set(config) CPU_rtems_irq_mngt_set(config)
57 #define BSP_rtems_irq_mngt_get(config) CPU_rtems_irq_mngt_get(config)
58 #define BSP_rtems_irq_mng_init(cpuId) CPU_rtems_irq_mng_init(cpuId)
59 
60 #ifdef __cplusplus
61 }
62 #endif
63 
64 #endif /* ASM */
65 
66 #endif /* LIBBSP_POWERPC_SS555_IRQ_IRQ_H */
Definition: deflate.c:115
Definition: irq.h:92
Definition: irq.h:45
The set of registers that specifies the complete processor state.
Definition: cpu.h:635