Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 2 | * linux/arch/arm/mach-omap1/fpga.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/types.h> |
Russell King | 2f8163b | 2011-07-26 10:53:52 +0100 | [diff] [blame] | 20 | #include <linux/gpio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/init.h> |
| 22 | #include <linux/kernel.h> |
| 23 | #include <linux/device.h> |
| 24 | #include <linux/errno.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 25 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <asm/irq.h> |
| 28 | #include <asm/mach/irq.h> |
| 29 | |
Tony Lindgren | 2e3ee9f | 2012-02-24 10:34:34 -0800 | [diff] [blame] | 30 | #include <mach/hardware.h> |
| 31 | |
| 32 | #include "iomap.h" |
Paul Walmsley | 97af08b | 2012-10-26 13:21:48 -0600 | [diff] [blame] | 33 | #include "common.h" |
Tony Lindgren | 21d182b | 2012-10-31 14:02:46 -0700 | [diff] [blame] | 34 | #include "fpga.h" |
Tony Lindgren | 2e3ee9f | 2012-02-24 10:34:34 -0800 | [diff] [blame] | 35 | |
Lennert Buytenhek | a51eef7 | 2010-11-29 10:39:27 +0100 | [diff] [blame] | 36 | static void fpga_mask_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | { |
Lennert Buytenhek | a51eef7 | 2010-11-29 10:39:27 +0100 | [diff] [blame] | 38 | unsigned int irq = d->irq - OMAP_FPGA_IRQ_BASE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
| 40 | if (irq < 8) |
| 41 | __raw_writeb((__raw_readb(OMAP1510_FPGA_IMR_LO) |
| 42 | & ~(1 << irq)), OMAP1510_FPGA_IMR_LO); |
| 43 | else if (irq < 16) |
| 44 | __raw_writeb((__raw_readb(OMAP1510_FPGA_IMR_HI) |
| 45 | & ~(1 << (irq - 8))), OMAP1510_FPGA_IMR_HI); |
| 46 | else |
| 47 | __raw_writeb((__raw_readb(INNOVATOR_FPGA_IMR2) |
| 48 | & ~(1 << (irq - 16))), INNOVATOR_FPGA_IMR2); |
| 49 | } |
| 50 | |
| 51 | |
| 52 | static inline u32 get_fpga_unmasked_irqs(void) |
| 53 | { |
| 54 | return |
| 55 | ((__raw_readb(OMAP1510_FPGA_ISR_LO) & |
| 56 | __raw_readb(OMAP1510_FPGA_IMR_LO))) | |
| 57 | ((__raw_readb(OMAP1510_FPGA_ISR_HI) & |
| 58 | __raw_readb(OMAP1510_FPGA_IMR_HI)) << 8) | |
| 59 | ((__raw_readb(INNOVATOR_FPGA_ISR2) & |
| 60 | __raw_readb(INNOVATOR_FPGA_IMR2)) << 16); |
| 61 | } |
| 62 | |
| 63 | |
Lennert Buytenhek | a51eef7 | 2010-11-29 10:39:27 +0100 | [diff] [blame] | 64 | static void fpga_ack_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | { |
| 66 | /* Don't need to explicitly ACK FPGA interrupts */ |
| 67 | } |
| 68 | |
Lennert Buytenhek | a51eef7 | 2010-11-29 10:39:27 +0100 | [diff] [blame] | 69 | static void fpga_unmask_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { |
Lennert Buytenhek | a51eef7 | 2010-11-29 10:39:27 +0100 | [diff] [blame] | 71 | unsigned int irq = d->irq - OMAP_FPGA_IRQ_BASE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
| 73 | if (irq < 8) |
| 74 | __raw_writeb((__raw_readb(OMAP1510_FPGA_IMR_LO) | (1 << irq)), |
| 75 | OMAP1510_FPGA_IMR_LO); |
| 76 | else if (irq < 16) |
| 77 | __raw_writeb((__raw_readb(OMAP1510_FPGA_IMR_HI) |
| 78 | | (1 << (irq - 8))), OMAP1510_FPGA_IMR_HI); |
| 79 | else |
| 80 | __raw_writeb((__raw_readb(INNOVATOR_FPGA_IMR2) |
| 81 | | (1 << (irq - 16))), INNOVATOR_FPGA_IMR2); |
| 82 | } |
| 83 | |
Lennert Buytenhek | a51eef7 | 2010-11-29 10:39:27 +0100 | [diff] [blame] | 84 | static void fpga_mask_ack_irq(struct irq_data *d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | { |
Lennert Buytenhek | a51eef7 | 2010-11-29 10:39:27 +0100 | [diff] [blame] | 86 | fpga_mask_irq(d); |
| 87 | fpga_ack_irq(d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | } |
| 89 | |
Thomas Gleixner | bd0b9ac | 2015-09-14 10:42:37 +0200 | [diff] [blame] | 90 | static void innovator_fpga_IRQ_demux(struct irq_desc *desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | u32 stat; |
| 93 | int fpga_irq; |
| 94 | |
| 95 | stat = get_fpga_unmasked_irqs(); |
| 96 | |
| 97 | if (!stat) |
| 98 | return; |
| 99 | |
Tony Lindgren | 44f78f4 | 2008-07-03 12:24:41 +0300 | [diff] [blame] | 100 | for (fpga_irq = OMAP_FPGA_IRQ_BASE; |
| 101 | (fpga_irq < OMAP_FPGA_IRQ_END) && stat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | fpga_irq++, stat >>= 1) { |
| 103 | if (stat & 1) { |
Dmitry Baryshkov | d8aa025 | 2008-10-09 13:36:24 +0100 | [diff] [blame] | 104 | generic_handle_irq(fpga_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | } |
| 106 | } |
| 107 | } |
| 108 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 109 | static struct irq_chip omap_fpga_irq_ack = { |
| 110 | .name = "FPGA-ack", |
Lennert Buytenhek | a51eef7 | 2010-11-29 10:39:27 +0100 | [diff] [blame] | 111 | .irq_ack = fpga_mask_ack_irq, |
| 112 | .irq_mask = fpga_mask_irq, |
| 113 | .irq_unmask = fpga_unmask_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | }; |
| 115 | |
| 116 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 117 | static struct irq_chip omap_fpga_irq = { |
| 118 | .name = "FPGA", |
Lennert Buytenhek | a51eef7 | 2010-11-29 10:39:27 +0100 | [diff] [blame] | 119 | .irq_ack = fpga_ack_irq, |
| 120 | .irq_mask = fpga_mask_irq, |
| 121 | .irq_unmask = fpga_unmask_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | }; |
| 123 | |
| 124 | /* |
| 125 | * All of the FPGA interrupt request inputs except for the touchscreen are |
| 126 | * edge-sensitive; the touchscreen is level-sensitive. The edge-sensitive |
| 127 | * interrupts are acknowledged as a side-effect of reading the interrupt |
| 128 | * status register from the FPGA. The edge-sensitive interrupt inputs |
| 129 | * cause a problem with level interrupt requests, such as Ethernet. The |
| 130 | * problem occurs when a level interrupt request is asserted while its |
| 131 | * interrupt input is masked in the FPGA, which results in a missed |
| 132 | * interrupt. |
| 133 | * |
| 134 | * In an attempt to workaround the problem with missed interrupts, the |
| 135 | * mask_ack routine for all of the FPGA interrupts has been changed from |
| 136 | * fpga_mask_ack_irq() to fpga_ack_irq() so that the specific FPGA interrupt |
| 137 | * being serviced is left unmasked. We can do this because the FPGA cascade |
Michael Opdenacker | fe806d0 | 2013-09-07 09:19:25 +0200 | [diff] [blame] | 138 | * interrupt is run with all interrupts masked. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | * |
| 140 | * Limited testing indicates that this workaround appears to be effective |
| 141 | * for the smc9194 Ethernet driver used on the Innovator. It should work |
| 142 | * on other FPGA interrupts as well, but any drivers that explicitly mask |
| 143 | * interrupts at the interrupt controller via disable_irq/enable_irq |
| 144 | * could pose a problem. |
| 145 | */ |
| 146 | void omap1510_fpga_init_irq(void) |
| 147 | { |
Tony Lindgren | 65dd4c1 | 2010-12-17 18:37:08 -0800 | [diff] [blame] | 148 | int i, res; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
| 150 | __raw_writeb(0, OMAP1510_FPGA_IMR_LO); |
| 151 | __raw_writeb(0, OMAP1510_FPGA_IMR_HI); |
| 152 | __raw_writeb(0, INNOVATOR_FPGA_IMR2); |
| 153 | |
Tony Lindgren | 44f78f4 | 2008-07-03 12:24:41 +0300 | [diff] [blame] | 154 | for (i = OMAP_FPGA_IRQ_BASE; i < OMAP_FPGA_IRQ_END; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
| 156 | if (i == OMAP1510_INT_FPGA_TS) { |
| 157 | /* |
| 158 | * The touchscreen interrupt is level-sensitive, so |
| 159 | * we'll use the regular mask_ack routine for it. |
| 160 | */ |
Thomas Gleixner | 6845664a | 2011-03-24 13:25:22 +0100 | [diff] [blame] | 161 | irq_set_chip(i, &omap_fpga_irq_ack); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | } |
| 163 | else { |
| 164 | /* |
| 165 | * All FPGA interrupts except the touchscreen are |
| 166 | * edge-sensitive, so we won't mask them. |
| 167 | */ |
Thomas Gleixner | 6845664a | 2011-03-24 13:25:22 +0100 | [diff] [blame] | 168 | irq_set_chip(i, &omap_fpga_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |
| 170 | |
Thomas Gleixner | 6845664a | 2011-03-24 13:25:22 +0100 | [diff] [blame] | 171 | irq_set_handler(i, handle_edge_irq); |
Rob Herring | e8d36d5 | 2015-07-27 15:55:13 -0500 | [diff] [blame] | 172 | irq_clear_status_flags(i, IRQ_NOREQUEST); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | /* |
| 176 | * The FPGA interrupt line is connected to GPIO13. Claim this pin for |
| 177 | * the ARM. |
| 178 | * |
| 179 | * NOTE: For general GPIO/MPUIO access and interrupts, please see |
| 180 | * gpio.[ch] |
| 181 | */ |
Tony Lindgren | 65dd4c1 | 2010-12-17 18:37:08 -0800 | [diff] [blame] | 182 | res = gpio_request(13, "FPGA irq"); |
| 183 | if (res) { |
| 184 | pr_err("%s failed to get gpio\n", __func__); |
| 185 | return; |
| 186 | } |
David Brownell | 40e3925 | 2008-12-10 17:35:26 -0800 | [diff] [blame] | 187 | gpio_direction_input(13); |
Thomas Gleixner | 6845664a | 2011-03-24 13:25:22 +0100 | [diff] [blame] | 188 | irq_set_irq_type(gpio_to_irq(13), IRQ_TYPE_EDGE_RISING); |
| 189 | irq_set_chained_handler(OMAP1510_INT_FPGA, innovator_fpga_IRQ_demux); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | } |