source: rtems/c/src/lib/libbsp/powerpc/virtex/irq/irq_init.c @ 3916cec

4.115
Last change on this file since 3916cec was 3916cec, checked in by Joel Sherrill <joel.sherrill@…>, on 10/13/14 at 19:56:07

powerpc/virtex: Fix unused variable warnings

  • Property mode set to 100644
File size: 5.0 KB
Line 
1/*===============================================================*\
2| Project: RTEMS virtex BSP                                       |
3+-----------------------------------------------------------------+
4| Partially based on the code references which are named below.   |
5| Adaptions, modifications, enhancements and any recent parts of  |
6| the code are:                                                   |
7|                    Copyright (c) 2007                           |
8|                    Embedded Brains GmbH                         |
9|                    Obere Lagerstr. 30                           |
10|                    D-82178 Puchheim                             |
11|                    Germany                                      |
12|                    rtems@embedded-brains.de                     |
13+-----------------------------------------------------------------+
14| The license and distribution terms for this file may be         |
15| found in the file LICENSE in this distribution or at            |
16|                                                                 |
17| http://www.rtems.org/license/LICENSE.                           |
18|                                                                 |
19+-----------------------------------------------------------------+
20| this file contains the irq controller handler                   |
21\*===============================================================*/
22
23/*  Content moved from opbintctrl.c:
24 *
25 *  This file contains definitions and declarations for the
26 *  Xilinx Off Processor Bus (OPB) Interrupt Controller
27 *
28 *  Author: Keith Robertson <kjrobert@alumni.uwaterloo.ca>
29 *  COPYRIGHT (c) 2005 Linn Products Ltd, Scotland.
30 *
31 *  The license and distribution terms for this file may be
32 *  found in the file LICENSE in this distribution or at
33 *  http://www.rtems.org/license/LICENSE.
34 */
35
36#include <bsp.h>
37#include <bsp/irq.h>
38#include <bsp/irq-generic.h>
39#include <bsp/vectors.h>
40
41#include <libcpu/powerpc-utility.h>
42
43/*
44 * Acknowledge a mask of interrupts.
45 */
46static void set_iar(uint32_t mask)
47{
48  *((volatile uint32_t *) (OPB_INTC_BASE + OPB_INTC_IAR)) = mask;
49}
50
51/*
52 * Set IER state.  Used to (dis)enable a mask of vectors.
53 * If you only have to do one, use enable/disable_vector.
54 */
55static void set_ier(uint32_t mask)
56{
57  *((volatile uint32_t *) (OPB_INTC_BASE + OPB_INTC_IER)) = mask;
58}
59
60/*
61 * Retrieve contents of Interrupt Pending Register
62 */
63static uint32_t get_ipr(void)
64{
65  uint32_t c = *((volatile uint32_t *) (OPB_INTC_BASE + OPB_INTC_IPR));
66  return c;
67}
68
69static void BSP_irq_enable_at_opbintc (rtems_irq_number irqnum)
70{
71  *((volatile uint32_t *) (OPB_INTC_BASE + OPB_INTC_SIE))
72    = 1 << (irqnum - BSP_OPBINTC_IRQ_LOWEST_OFFSET);
73}
74
75static void BSP_irq_disable_at_opbintc (rtems_irq_number irqnum)
76{
77  *((volatile uint32_t *) (OPB_INTC_BASE + OPB_INTC_CIE))
78    = 1 << (irqnum - BSP_OPBINTC_IRQ_LOWEST_OFFSET);
79}
80
81/*
82 *  IRQ Handler: this is called from the primary exception dispatcher
83 */
84static void BSP_irq_handle_at_opbintc(void)
85{
86  uint32_t ipr;
87
88  /* Get pending interrupts */
89  ipr = get_ipr();
90
91  if (ipr != 0) {
92    /* Acknowledge all pending interrupts now and service them afterwards */
93    set_iar(ipr);
94
95    do {
96      /* Get highest priority pending interrupt */
97      uint32_t i = 31 - ppc_count_leading_zeros(ipr);
98
99      ipr &= ~(1U << i);
100
101      bsp_interrupt_handler_dispatch(i+BSP_OPBINTC_IRQ_LOWEST_OFFSET);
102    } while (ipr != 0);
103  }
104}
105
106/*
107 * activate the interrupt controller
108 */
109static void opb_intc_init(void)
110{
111  uint32_t i, mask = 0;
112
113  /* mask off all interrupts */
114  set_ier(0x0);
115
116  for (i = 0; i < OPB_INTC_IRQ_MAX; i++) {
117    mask |= (1 << i);
118  }
119
120  /* make sure interupt status register is clear before we enable the interrupt controller */
121  *((volatile uint32_t *) (OPB_INTC_BASE + OPB_INTC_ISR)) = 0;
122
123  /* acknowledge all interrupt sources */
124  set_iar(mask);
125
126  /* Turn on normal hardware operation of interrupt controller */
127  *((volatile uint32_t *) (OPB_INTC_BASE + OPB_INTC_MER)) =
128    (OPB_INTC_MER_HIE);
129
130  /* Enable master interrupt switch for the interrupt controller */
131  *((volatile uint32_t *) (OPB_INTC_BASE + OPB_INTC_MER)) =
132    (OPB_INTC_MER_HIE | OPB_INTC_MER_ME);
133}
134
135rtems_status_code bsp_interrupt_vector_enable(rtems_vector_number vector)
136{
137  rtems_status_code sc = RTEMS_SUCCESSFUL;
138
139  if (bsp_interrupt_is_valid_vector(vector)) {
140    if (BSP_IS_OPBINTC_IRQ(vector)) {
141      BSP_irq_enable_at_opbintc(vector);
142    }
143  } else {
144    sc = RTEMS_INVALID_ID;
145  }
146
147  return sc;
148}
149
150rtems_status_code bsp_interrupt_vector_disable(rtems_vector_number vector)
151{
152  rtems_status_code sc = RTEMS_SUCCESSFUL;
153
154  if (bsp_interrupt_is_valid_vector(vector)) {
155    if (BSP_IS_OPBINTC_IRQ(vector)) {
156      BSP_irq_disable_at_opbintc(vector);
157    }
158  } else {
159    sc = RTEMS_INVALID_ID;
160  }
161
162  return sc;
163}
164
165static int C_dispatch_irq_handler(BSP_Exception_frame *frame, unsigned int excNum)
166{
167  BSP_irq_handle_at_opbintc();
168
169  return 0;
170}
171
172rtems_status_code bsp_interrupt_facility_initialize(void)
173{
174  opb_intc_init();
175
176  ppc_exc_set_handler(ASM_EXT_VECTOR, C_dispatch_irq_handler);
177
178  return RTEMS_SUCCESSFUL;
179}
Note: See TracBrowser for help on using the repository browser.