source: rtems/c/src/lib/libbsp/powerpc/ss555/irq/irq.h @ af2af2b4

4.104.115
Last change on this file since af2af2b4 was af2af2b4, checked in by Joel Sherrill <joel.sherrill@…>, on 04/28/10 at 17:17:48

2010-04-28 Joel Sherrill <joel.sherrilL@…>

  • irq/irq.h, startup/iss555.c, startup/tm27supp.c: Remove warnings.
  • Property mode set to 100644
File size: 2.1 KB
Line 
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 found in the file LICENSE in this distribution or at
22 *  http://www.rtems.com/license/LICENSE.
23 *
24 *  $Id$
25 */
26
27#ifndef LIBBSP_POWERPC_SS555_IRQ_IRQ_H
28#define LIBBSP_POWERPC_SS555_IRQ_IRQ_H
29
30#include <libcpu/irq.h>
31
32#ifndef ASM
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38/*
39 *  These are no longer prototyped anywhere else. This appears to be
40 *  remnants of the IRQ code upgrade.
41 *
42 *  --joel 28 April 2010
43 */
44int CPU_install_rtems_irq_handler(const rtems_irq_connect_data* irq);
45int CPU_get_current_rtems_irq_handler(rtems_irq_connect_data* irq);
46int CPU_remove_rtems_irq_handler(const rtems_irq_connect_data* irq);
47int CPU_rtems_irq_mngt_set(rtems_irq_global_settings* config);
48int CPU_rtems_irq_mngt_get(rtems_irq_global_settings** config);
49
50/*
51 * The SS555 has no external interrupt controller chip, so use the standard
52 * routines from the CPU-dependent code.
53 */
54#define BSP_install_rtems_irq_handler(ptr)      CPU_install_rtems_irq_handler(ptr)
55#define BSP_get_current_rtems_irq_handler(ptr)  CPU_get_current_rtems_irq_handler(ptr)
56#define BSP_remove_rtems_irq_handler(ptr)       CPU_remove_rtems_irq_handler(ptr)
57#define BSP_rtems_irq_mngt_set(config)          CPU_rtems_irq_mngt_set(config)
58#define BSP_rtems_irq_mngt_get(config)          CPU_rtems_irq_mngt_get(config)
59#define BSP_rtems_irq_mng_init(cpuId)           CPU_rtems_irq_mng_init(cpuId)
60
61#ifdef __cplusplus
62}
63#endif
64
65#endif /* ASM */
66
67#endif /* LIBBSP_POWERPC_SS555_IRQ_IRQ_H */
Note: See TracBrowser for help on using the repository browser.