blob: d940fac9a9ed03128210c555df284b3cd0076780 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Tony Lindgren7c38cf02005-09-08 23:07:38 +01002 * linux/arch/arm/mach-omap1/fpga.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Interrupt handler for OMAP-1510 Innovator FPGA
5 *
6 * Copyright (C) 2001 RidgeRun, Inc.
7 * Author: Greg Lonnon <glonnon@ridgerun.com>
8 *
9 * Copyright (C) 2002 MontaVista Software, Inc.
10 *
11 * Separated FPGA interrupts from innovator1510.c and cleaned up for 2.6
12 * Copyright (C) 2004 Nokia Corporation by Tony Lindrgen <tony@atomide.com>
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation.
17 */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/types.h>
Russell King2f8163b2011-07-26 10:53:52 +010020#include <linux/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/init.h>
22#include <linux/kernel.h>
23#include <linux/device.h>
24#include <linux/errno.h>
Russell Kingfced80c2008-09-06 12:10:45 +010025#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/irq.h>
28#include <asm/mach/irq.h>
29
Tony Lindgren4c98dc62012-10-02 12:39:09 -070030#include <../plat-omap/fpga.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080032#include <mach/hardware.h>
33
34#include "iomap.h"
Paul Walmsley97af08b2012-10-26 13:21:48 -060035#include "common.h"
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080036
Lennert Buytenheka51eef72010-11-29 10:39:27 +010037static void fpga_mask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
Lennert Buytenheka51eef72010-11-29 10:39:27 +010039 unsigned int irq = d->irq - OMAP_FPGA_IRQ_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41 if (irq < 8)
42 __raw_writeb((__raw_readb(OMAP1510_FPGA_IMR_LO)
43 & ~(1 << irq)), OMAP1510_FPGA_IMR_LO);
44 else if (irq < 16)
45 __raw_writeb((__raw_readb(OMAP1510_FPGA_IMR_HI)
46 & ~(1 << (irq - 8))), OMAP1510_FPGA_IMR_HI);
47 else
48 __raw_writeb((__raw_readb(INNOVATOR_FPGA_IMR2)
49 & ~(1 << (irq - 16))), INNOVATOR_FPGA_IMR2);
50}
51
52
53static inline u32 get_fpga_unmasked_irqs(void)
54{
55 return
56 ((__raw_readb(OMAP1510_FPGA_ISR_LO) &
57 __raw_readb(OMAP1510_FPGA_IMR_LO))) |
58 ((__raw_readb(OMAP1510_FPGA_ISR_HI) &
59 __raw_readb(OMAP1510_FPGA_IMR_HI)) << 8) |
60 ((__raw_readb(INNOVATOR_FPGA_ISR2) &
61 __raw_readb(INNOVATOR_FPGA_IMR2)) << 16);
62}
63
64
Lennert Buytenheka51eef72010-11-29 10:39:27 +010065static void fpga_ack_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066{
67 /* Don't need to explicitly ACK FPGA interrupts */
68}
69
Lennert Buytenheka51eef72010-11-29 10:39:27 +010070static void fpga_unmask_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Lennert Buytenheka51eef72010-11-29 10:39:27 +010072 unsigned int irq = d->irq - OMAP_FPGA_IRQ_BASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 if (irq < 8)
75 __raw_writeb((__raw_readb(OMAP1510_FPGA_IMR_LO) | (1 << irq)),
76 OMAP1510_FPGA_IMR_LO);
77 else if (irq < 16)
78 __raw_writeb((__raw_readb(OMAP1510_FPGA_IMR_HI)
79 | (1 << (irq - 8))), OMAP1510_FPGA_IMR_HI);
80 else
81 __raw_writeb((__raw_readb(INNOVATOR_FPGA_IMR2)
82 | (1 << (irq - 16))), INNOVATOR_FPGA_IMR2);
83}
84
Lennert Buytenheka51eef72010-11-29 10:39:27 +010085static void fpga_mask_ack_irq(struct irq_data *d)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Lennert Buytenheka51eef72010-11-29 10:39:27 +010087 fpga_mask_irq(d);
88 fpga_ack_irq(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
Paul Walmsley8c3d4532012-04-13 06:34:26 -060091static void innovator_fpga_IRQ_demux(unsigned int irq, struct irq_desc *desc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 u32 stat;
94 int fpga_irq;
95
96 stat = get_fpga_unmasked_irqs();
97
98 if (!stat)
99 return;
100
Tony Lindgren44f78f42008-07-03 12:24:41 +0300101 for (fpga_irq = OMAP_FPGA_IRQ_BASE;
102 (fpga_irq < OMAP_FPGA_IRQ_END) && stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 fpga_irq++, stat >>= 1) {
104 if (stat & 1) {
Dmitry Baryshkovd8aa0252008-10-09 13:36:24 +0100105 generic_handle_irq(fpga_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
107 }
108}
109
David Brownell38c677c2006-08-01 22:26:25 +0100110static struct irq_chip omap_fpga_irq_ack = {
111 .name = "FPGA-ack",
Lennert Buytenheka51eef72010-11-29 10:39:27 +0100112 .irq_ack = fpga_mask_ack_irq,
113 .irq_mask = fpga_mask_irq,
114 .irq_unmask = fpga_unmask_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115};
116
117
David Brownell38c677c2006-08-01 22:26:25 +0100118static struct irq_chip omap_fpga_irq = {
119 .name = "FPGA",
Lennert Buytenheka51eef72010-11-29 10:39:27 +0100120 .irq_ack = fpga_ack_irq,
121 .irq_mask = fpga_mask_irq,
122 .irq_unmask = fpga_unmask_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123};
124
125/*
126 * All of the FPGA interrupt request inputs except for the touchscreen are
127 * edge-sensitive; the touchscreen is level-sensitive. The edge-sensitive
128 * interrupts are acknowledged as a side-effect of reading the interrupt
129 * status register from the FPGA. The edge-sensitive interrupt inputs
130 * cause a problem with level interrupt requests, such as Ethernet. The
131 * problem occurs when a level interrupt request is asserted while its
132 * interrupt input is masked in the FPGA, which results in a missed
133 * interrupt.
134 *
135 * In an attempt to workaround the problem with missed interrupts, the
136 * mask_ack routine for all of the FPGA interrupts has been changed from
137 * fpga_mask_ack_irq() to fpga_ack_irq() so that the specific FPGA interrupt
138 * being serviced is left unmasked. We can do this because the FPGA cascade
Thomas Gleixner52e405e2006-07-03 02:20:05 +0200139 * interrupt is installed with the IRQF_DISABLED flag, which leaves all
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 * interrupts masked at the CPU while an FPGA interrupt handler executes.
141 *
142 * Limited testing indicates that this workaround appears to be effective
143 * for the smc9194 Ethernet driver used on the Innovator. It should work
144 * on other FPGA interrupts as well, but any drivers that explicitly mask
145 * interrupts at the interrupt controller via disable_irq/enable_irq
146 * could pose a problem.
147 */
148void omap1510_fpga_init_irq(void)
149{
Tony Lindgren65dd4c12010-12-17 18:37:08 -0800150 int i, res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 __raw_writeb(0, OMAP1510_FPGA_IMR_LO);
153 __raw_writeb(0, OMAP1510_FPGA_IMR_HI);
154 __raw_writeb(0, INNOVATOR_FPGA_IMR2);
155
Tony Lindgren44f78f42008-07-03 12:24:41 +0300156 for (i = OMAP_FPGA_IRQ_BASE; i < OMAP_FPGA_IRQ_END; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 if (i == OMAP1510_INT_FPGA_TS) {
159 /*
160 * The touchscreen interrupt is level-sensitive, so
161 * we'll use the regular mask_ack routine for it.
162 */
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100163 irq_set_chip(i, &omap_fpga_irq_ack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
165 else {
166 /*
167 * All FPGA interrupts except the touchscreen are
168 * edge-sensitive, so we won't mask them.
169 */
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100170 irq_set_chip(i, &omap_fpga_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 }
172
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100173 irq_set_handler(i, handle_edge_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 set_irq_flags(i, IRQF_VALID);
175 }
176
177 /*
178 * The FPGA interrupt line is connected to GPIO13. Claim this pin for
179 * the ARM.
180 *
181 * NOTE: For general GPIO/MPUIO access and interrupts, please see
182 * gpio.[ch]
183 */
Tony Lindgren65dd4c12010-12-17 18:37:08 -0800184 res = gpio_request(13, "FPGA irq");
185 if (res) {
186 pr_err("%s failed to get gpio\n", __func__);
187 return;
188 }
David Brownell40e39252008-12-10 17:35:26 -0800189 gpio_direction_input(13);
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100190 irq_set_irq_type(gpio_to_irq(13), IRQ_TYPE_EDGE_RISING);
191 irq_set_chained_handler(OMAP1510_INT_FPGA, innovator_fpga_IRQ_demux);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}