source: rtems/c/src/lib/libbsp/powerpc/score603e/irq/irq.h @ e36390a6

4.104.114.95
Last change on this file since e36390a6 was a045c9d, checked in by Till Straumann <strauman@…>, on 11/30/07 at 20:45:11

2007-11-30 Till Straumann <strauman@…>

  • irq/irq.h, irq/irq_init.c: Removed the definition of ASM_IRQ_VECTOR_BASE; this symbol was only use to initialize the irqBase member of the rtems_irq_global_settings struct. However, irqBase is an rtems_irq_symbolic_name, so using BSP_LOWEST_OFFSET is more appropriate.
  • Property mode set to 100644
File size: 3.6 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 *  Copyright (C) 1999 valette@crf.canon.fr
7 *
8 *  This code is heavilly inspired by the public specification of STREAM V2
9 *  that can be found at :
10 *
11 *      <http://www.chorus.com/Documentation/index.html> by following
12 *  the STREAM API Specification Document link.
13 *
14 *  The license and distribution terms for this file may be
15 *  found in found in the file LICENSE in this distribution or at
16 *  http://www.rtems.com/license/LICENSE.
17 *
18 *  $Id$
19 */
20
21#ifndef LIBBSP_POWERPC_IRQ_H
22#define LIBBSP_POWERPC_IRQ_H
23
24#define BSP_SHARED_HANDLER_SUPPORT      1
25#include <rtems/irq.h>
26
27/*
28 * 8259 edge/level control definitions at VIA
29 */
30#define ISA8259_M_ELCR          0x4d0
31#define ISA8259_S_ELCR          0x4d1
32
33#define ELCRS_INT15_LVL         0x80
34#define ELCRS_INT14_LVL         0x40
35#define ELCRS_INT13_LVL         0x20
36#define ELCRS_INT12_LVL         0x10
37#define ELCRS_INT11_LVL         0x08
38#define ELCRS_INT10_LVL         0x04
39#define ELCRS_INT9_LVL          0x02
40#define ELCRS_INT8_LVL          0x01
41#define ELCRM_INT7_LVL          0x80
42#define ELCRM_INT6_LVL          0x40
43#define ELCRM_INT5_LVL          0x20
44#define ELCRM_INT4_LVL          0x10
45#define ELCRM_INT3_LVL          0x8
46#define ELCRM_INT2_LVL          0x4
47#define ELCRM_INT1_LVL          0x2
48#define ELCRM_INT0_LVL          0x1
49
50    /* PIC's command and mask registers */
51#define PIC_MASTER_COMMAND_IO_PORT              0x20    /* Master PIC command register */
52#define PIC_SLAVE_COMMAND_IO_PORT               0xa0    /* Slave PIC command register */
53#define PIC_MASTER_IMR_IO_PORT                  0x21    /* Master PIC Interrupt Mask Register */
54#define PIC_SLAVE_IMR_IO_PORT                   0xa1    /* Slave PIC Interrupt Mask Register */
55
56    /* Command for specific EOI (End Of Interrupt): Interrupt acknowledge */
57#define PIC_EOSI        0x60    /* End of Specific Interrupt (EOSI) */
58#define SLAVE_PIC_EOSI  0x62    /* End of Specific Interrupt (EOSI) for cascade */
59#define PIC_EOI         0x20    /* Generic End of Interrupt (EOI) */
60
61#ifndef ASM
62
63#ifdef __cplusplus
64extern "C" {
65#endif
66
67/*
68 * Symbolic IRQ names and related definitions
69 */
70
71  /*
72   * ISA IRQ handler related definitions
73   */
74#define BSP_ISA_IRQ_NUMBER              (16)
75#define BSP_ISA_IRQ_LOWEST_OFFSET       (0)
76#define BSP_ISA_IRQ_MAX_OFFSET          (BSP_ISA_IRQ_LOWEST_OFFSET+BSP_ISA_IRQ_NUMBER-1)
77  /*
78   * PCI IRQ handlers related definitions
79   * CAUTION : BSP_PCI_IRQ_LOWEST_OFFSET should be equal to OPENPIC_VEC_SOURCE
80   */
81#define BSP_PCI_IRQ_NUMBER              (16)
82#define BSP_PCI_IRQ_LOWEST_OFFSET       (BSP_ISA_IRQ_NUMBER)
83#define BSP_PCI_IRQ_MAX_OFFSET          (BSP_PCI_IRQ_LOWEST_OFFSET+BSP_PCI_IRQ_NUMBER-1)
84  /*
85   * PowerPC exceptions handled as interrupt where an RTEMS managed interrupt
86   * handler might be connected
87   */
88#define BSP_PROCESSOR_IRQ_NUMBER        (1)
89#define BSP_PROCESSOR_IRQ_LOWEST_OFFSET (BSP_PCI_IRQ_MAX_OFFSET + 1)
90#define BSP_PROCESSOR_IRQ_MAX_OFFSET    (BSP_PROCESSOR_IRQ_LOWEST_OFFSET+BSP_PROCESSOR_IRQ_NUMBER-1)
91  /* Misc vectors for OPENPIC irqs (IPI, timers)
92   */
93#define BSP_MISC_IRQ_NUMBER             (8)
94#define BSP_MISC_IRQ_LOWEST_OFFSET      (BSP_PROCESSOR_IRQ_MAX_OFFSET + 1)
95#define BSP_MISC_IRQ_MAX_OFFSET         (BSP_MISC_IRQ_LOWEST_OFFSET+BSP_MISC_IRQ_NUMBER-1)
96  /*
97   * Summary
98   */
99#define BSP_IRQ_NUMBER                  (BSP_MISC_IRQ_MAX_OFFSET + 1)
100#define BSP_LOWEST_OFFSET               (BSP_ISA_IRQ_LOWEST_OFFSET)
101#define BSP_MAX_OFFSET                  (BSP_MISC_IRQ_MAX_OFFSET)
102    /*
103     * Some PCI IRQ symbolic name definition
104     */
105#define BSP_PCI_IRQ0                    (BSP_PCI_IRQ_LOWEST_OFFSET)
106
107    /*
108     * Some Processor execption handled as RTEMS IRQ symbolic name definition
109     */
110#define BSP_DECREMENTER                 (BSP_PROCESSOR_IRQ_LOWEST_OFFSET)
111
112#ifdef __cplusplus
113}
114#endif
115
116#endif
117
118#endif
Note: See TracBrowser for help on using the repository browser.