3 * Guennadi Liakhovetski, DENX Software Engineering, <lg@denx.de>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #include <linux/init.h>
11 #include <linux/err.h>
12 #include <linux/spinlock.h>
13 #include <linux/delay.h>
14 #include <linux/clk.h>
15 #include <linux/irq.h>
20 #include "ipu_intern.h"
23 * Register read / write - shall be inlined by the compiler
25 static u32
ipu_read_reg(struct ipu
*ipu
, unsigned long reg
)
27 return __raw_readl(ipu
->reg_ipu
+ reg
);
30 static void ipu_write_reg(struct ipu
*ipu
, u32 value
, unsigned long reg
)
32 __raw_writel(value
, ipu
->reg_ipu
+ reg
);
40 #define IPU_IRQ_NR_FN_BANKS 3
41 #define IPU_IRQ_NR_ERR_BANKS 2
42 #define IPU_IRQ_NR_BANKS (IPU_IRQ_NR_FN_BANKS + IPU_IRQ_NR_ERR_BANKS)
51 static struct ipu_irq_bank irq_bank
[IPU_IRQ_NR_BANKS
] = {
52 /* 3 groups of functional interrupts */
54 .control
= IPU_INT_CTRL_1
,
55 .status
= IPU_INT_STAT_1
,
57 .control
= IPU_INT_CTRL_2
,
58 .status
= IPU_INT_STAT_2
,
60 .control
= IPU_INT_CTRL_3
,
61 .status
= IPU_INT_STAT_3
,
63 /* 2 groups of error interrupts */
65 .control
= IPU_INT_CTRL_4
,
66 .status
= IPU_INT_STAT_4
,
68 .control
= IPU_INT_CTRL_5
,
69 .status
= IPU_INT_STAT_5
,
76 struct ipu_irq_bank
*bank
;
80 static struct ipu_irq_map irq_map
[CONFIG_MX3_IPU_IRQS
];
81 /* Protects allocations from the above array of maps */
82 static DEFINE_MUTEX(map_lock
);
83 /* Protects register accesses and individual mappings */
84 static DEFINE_SPINLOCK(bank_lock
);
86 static struct ipu_irq_map
*src2map(unsigned int src
)
90 for (i
= 0; i
< CONFIG_MX3_IPU_IRQS
; i
++)
91 if (irq_map
[i
].source
== src
)
97 static void ipu_irq_unmask(unsigned int irq
)
99 struct ipu_irq_map
*map
= get_irq_chip_data(irq
);
100 struct ipu_irq_bank
*bank
;
102 unsigned long lock_flags
;
104 spin_lock_irqsave(&bank_lock
, lock_flags
);
108 spin_unlock_irqrestore(&bank_lock
, lock_flags
);
109 pr_err("IPU: %s(%u) - unmapped!\n", __func__
, irq
);
113 reg
= ipu_read_reg(bank
->ipu
, bank
->control
);
114 reg
|= (1UL << (map
->source
& 31));
115 ipu_write_reg(bank
->ipu
, reg
, bank
->control
);
117 spin_unlock_irqrestore(&bank_lock
, lock_flags
);
120 static void ipu_irq_mask(unsigned int irq
)
122 struct ipu_irq_map
*map
= get_irq_chip_data(irq
);
123 struct ipu_irq_bank
*bank
;
125 unsigned long lock_flags
;
127 spin_lock_irqsave(&bank_lock
, lock_flags
);
131 spin_unlock_irqrestore(&bank_lock
, lock_flags
);
132 pr_err("IPU: %s(%u) - unmapped!\n", __func__
, irq
);
136 reg
= ipu_read_reg(bank
->ipu
, bank
->control
);
137 reg
&= ~(1UL << (map
->source
& 31));
138 ipu_write_reg(bank
->ipu
, reg
, bank
->control
);
140 spin_unlock_irqrestore(&bank_lock
, lock_flags
);
143 static void ipu_irq_ack(unsigned int irq
)
145 struct ipu_irq_map
*map
= get_irq_chip_data(irq
);
146 struct ipu_irq_bank
*bank
;
147 unsigned long lock_flags
;
149 spin_lock_irqsave(&bank_lock
, lock_flags
);
153 spin_unlock_irqrestore(&bank_lock
, lock_flags
);
154 pr_err("IPU: %s(%u) - unmapped!\n", __func__
, irq
);
158 ipu_write_reg(bank
->ipu
, 1UL << (map
->source
& 31), bank
->status
);
159 spin_unlock_irqrestore(&bank_lock
, lock_flags
);
163 * ipu_irq_status() - returns the current interrupt status of the specified IRQ.
164 * @irq: interrupt line to get status for.
165 * @return: true if the interrupt is pending/asserted or false if the
166 * interrupt is not pending.
168 bool ipu_irq_status(unsigned int irq
)
170 struct ipu_irq_map
*map
= get_irq_chip_data(irq
);
171 struct ipu_irq_bank
*bank
;
172 unsigned long lock_flags
;
175 spin_lock_irqsave(&bank_lock
, lock_flags
);
177 ret
= bank
&& ipu_read_reg(bank
->ipu
, bank
->status
) &
178 (1UL << (map
->source
& 31));
179 spin_unlock_irqrestore(&bank_lock
, lock_flags
);
185 * ipu_irq_map() - map an IPU interrupt source to an IRQ number
186 * @source: interrupt source bit position (see below)
187 * @return: mapped IRQ number or negative error code
189 * The source parameter has to be explained further. On i.MX31 IPU has 137 IRQ
190 * sources, they are broken down in 5 32-bit registers, like 32, 32, 24, 32, 17.
191 * However, the source argument of this function is not the sequence number of
192 * the possible IRQ, but rather its bit position. So, first interrupt in fourth
193 * register has source number 96, and not 88. This makes calculations easier,
194 * and also provides forward compatibility with any future IPU implementations
195 * with any interrupt bit assignments.
197 int ipu_irq_map(unsigned int source
)
199 int i
, ret
= -ENOMEM
;
200 struct ipu_irq_map
*map
;
204 mutex_lock(&map_lock
);
205 map
= src2map(source
);
207 pr_err("IPU: Source %u already mapped to IRQ %u\n", source
, map
->irq
);
212 for (i
= 0; i
< CONFIG_MX3_IPU_IRQS
; i
++) {
213 if (irq_map
[i
].source
< 0) {
214 unsigned long lock_flags
;
216 spin_lock_irqsave(&bank_lock
, lock_flags
);
217 irq_map
[i
].source
= source
;
218 irq_map
[i
].bank
= irq_bank
+ source
/ 32;
219 spin_unlock_irqrestore(&bank_lock
, lock_flags
);
221 ret
= irq_map
[i
].irq
;
222 pr_debug("IPU: mapped source %u to IRQ %u\n",
228 mutex_unlock(&map_lock
);
231 pr_err("IPU: couldn't map source %u: %d\n", source
, ret
);
237 * ipu_irq_map() - map an IPU interrupt source to an IRQ number
238 * @source: interrupt source bit position (see ipu_irq_map())
239 * @return: 0 or negative error code
241 int ipu_irq_unmap(unsigned int source
)
243 int i
, ret
= -EINVAL
;
247 mutex_lock(&map_lock
);
248 for (i
= 0; i
< CONFIG_MX3_IPU_IRQS
; i
++) {
249 if (irq_map
[i
].source
== source
) {
250 unsigned long lock_flags
;
252 pr_debug("IPU: unmapped source %u from IRQ %u\n",
253 source
, irq_map
[i
].irq
);
255 spin_lock_irqsave(&bank_lock
, lock_flags
);
256 irq_map
[i
].source
= -EINVAL
;
257 irq_map
[i
].bank
= NULL
;
258 spin_unlock_irqrestore(&bank_lock
, lock_flags
);
264 mutex_unlock(&map_lock
);
269 /* Chained IRQ handler for IPU error interrupt */
270 static void ipu_irq_err(unsigned int irq
, struct irq_desc
*desc
)
272 struct ipu
*ipu
= get_irq_data(irq
);
276 for (i
= IPU_IRQ_NR_FN_BANKS
; i
< IPU_IRQ_NR_BANKS
; i
++) {
277 struct ipu_irq_bank
*bank
= irq_bank
+ i
;
279 spin_lock(&bank_lock
);
280 status
= ipu_read_reg(ipu
, bank
->status
);
282 * Don't think we have to clear all interrupts here, they will
283 * be acked by ->handle_irq() (handle_level_irq). However, we
284 * might want to clear unhandled interrupts after the loop...
286 status
&= ipu_read_reg(ipu
, bank
->control
);
287 spin_unlock(&bank_lock
);
288 while ((line
= ffs(status
))) {
289 struct ipu_irq_map
*map
;
292 status
&= ~(1UL << line
);
294 spin_lock(&bank_lock
);
295 map
= src2map(32 * i
+ line
);
298 spin_unlock(&bank_lock
);
301 pr_err("IPU: Interrupt on unmapped source %u bank %d\n",
305 generic_handle_irq(irq
);
310 /* Chained IRQ handler for IPU function interrupt */
311 static void ipu_irq_fn(unsigned int irq
, struct irq_desc
*desc
)
313 struct ipu
*ipu
= get_irq_data(irq
);
317 for (i
= 0; i
< IPU_IRQ_NR_FN_BANKS
; i
++) {
318 struct ipu_irq_bank
*bank
= irq_bank
+ i
;
320 spin_lock(&bank_lock
);
321 status
= ipu_read_reg(ipu
, bank
->status
);
322 /* Not clearing all interrupts, see above */
323 status
&= ipu_read_reg(ipu
, bank
->control
);
324 spin_unlock(&bank_lock
);
325 while ((line
= ffs(status
))) {
326 struct ipu_irq_map
*map
;
329 status
&= ~(1UL << line
);
331 spin_lock(&bank_lock
);
332 map
= src2map(32 * i
+ line
);
335 spin_unlock(&bank_lock
);
338 pr_err("IPU: Interrupt on unmapped source %u bank %d\n",
342 generic_handle_irq(irq
);
347 static struct irq_chip ipu_irq_chip
= {
350 .mask
= ipu_irq_mask
,
351 .unmask
= ipu_irq_unmask
,
354 /* Install the IRQ handler */
355 int __init
ipu_irq_attach_irq(struct ipu
*ipu
, struct platform_device
*dev
)
357 struct ipu_platform_data
*pdata
= dev
->dev
.platform_data
;
358 unsigned int irq
, irq_base
, i
;
360 irq_base
= pdata
->irq_base
;
362 for (i
= 0; i
< IPU_IRQ_NR_BANKS
; i
++)
363 irq_bank
[i
].ipu
= ipu
;
365 for (i
= 0; i
< CONFIG_MX3_IPU_IRQS
; i
++) {
369 ret
= set_irq_chip(irq
, &ipu_irq_chip
);
372 ret
= set_irq_chip_data(irq
, irq_map
+ i
);
375 irq_map
[i
].ipu
= ipu
;
376 irq_map
[i
].irq
= irq
;
377 irq_map
[i
].source
= -EINVAL
;
378 set_irq_handler(irq
, handle_level_irq
);
380 set_irq_flags(irq
, IRQF_VALID
| IRQF_PROBE
);
384 set_irq_data(ipu
->irq_fn
, ipu
);
385 set_irq_chained_handler(ipu
->irq_fn
, ipu_irq_fn
);
387 set_irq_data(ipu
->irq_err
, ipu
);
388 set_irq_chained_handler(ipu
->irq_err
, ipu_irq_err
);
393 void ipu_irq_detach_irq(struct ipu
*ipu
, struct platform_device
*dev
)
395 struct ipu_platform_data
*pdata
= dev
->dev
.platform_data
;
396 unsigned int irq
, irq_base
;
398 irq_base
= pdata
->irq_base
;
400 set_irq_chained_handler(ipu
->irq_fn
, NULL
);
401 set_irq_data(ipu
->irq_fn
, NULL
);
403 set_irq_chained_handler(ipu
->irq_err
, NULL
);
404 set_irq_data(ipu
->irq_err
, NULL
);
406 for (irq
= irq_base
; irq
< irq_base
+ CONFIG_MX3_IPU_IRQS
; irq
++) {
408 set_irq_flags(irq
, 0);
410 set_irq_chip(irq
, NULL
);
411 set_irq_chip_data(irq
, NULL
);