blob: 724e8b7271f4a465a3008d06de4f65452bf3eb48 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Paul Mundt18bc8132007-11-21 23:16:33 +09002 * arch/sh/mach-cayman/irq.c - SH-5 Cayman Interrupt Support
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * This file handles the board specific parts of the Cayman interrupt system
5 *
6 * Copyright (C) 2002 Stuart Menefy
Paul Mundt18bc8132007-11-21 23:16:33 +09007 *
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
10 * for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
Paul Mundt18bc8132007-11-21 23:16:33 +090012#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/irq.h>
14#include <linux/interrupt.h>
15#include <linux/signal.h>
Paul Mundtf15cbe62008-07-29 08:09:44 +090016#include <cpu/irq.h>
Paul Mundt18bc8132007-11-21 23:16:33 +090017#include <asm/page.h>
18
19/* Setup for the SMSC FDC37C935 / LAN91C100FD */
20#define SMSC_IRQ IRQ_IRL1
21
22/* Setup for PCI Bus 2, which transmits interrupts via the EPLD */
23#define PCI2_IRQ IRQ_IRL3
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25unsigned long epld_virt;
26
27#define EPLD_BASE 0x04002000
28#define EPLD_STATUS_BASE (epld_virt + 0x10)
29#define EPLD_MASK_BASE (epld_virt + 0x20)
30
31/* Note the SMSC SuperIO chip and SMSC LAN chip interrupts are all muxed onto
32 the same SH-5 interrupt */
33
Paul Mundta226d332007-05-14 09:10:01 +090034static irqreturn_t cayman_interrupt_smsc(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
36 printk(KERN_INFO "CAYMAN: spurious SMSC interrupt\n");
37 return IRQ_NONE;
38}
39
Paul Mundta226d332007-05-14 09:10:01 +090040static irqreturn_t cayman_interrupt_pci2(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 printk(KERN_INFO "CAYMAN: spurious PCI interrupt, IRQ %d\n", irq);
43 return IRQ_NONE;
44}
45
46static struct irqaction cayman_action_smsc = {
47 .name = "Cayman SMSC Mux",
48 .handler = cayman_interrupt_smsc,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049};
50
51static struct irqaction cayman_action_pci2 = {
52 .name = "Cayman PCI2 Mux",
53 .handler = cayman_interrupt_pci2,
Linus Torvalds1da177e2005-04-16 15:20:36 -070054};
55
Paul Mundt815db142010-10-27 15:38:59 +090056static void enable_cayman_irq(struct irq_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Paul Mundt815db142010-10-27 15:38:59 +090058 unsigned int irq = data->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 unsigned long flags;
60 unsigned long mask;
61 unsigned int reg;
62 unsigned char bit;
63
64 irq -= START_EXT_IRQS;
65 reg = EPLD_MASK_BASE + ((irq / 8) << 2);
66 bit = 1<<(irq % 8);
67 local_irq_save(flags);
Paul Mundt9d56dd32010-01-26 12:58:40 +090068 mask = __raw_readl(reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 mask |= bit;
Paul Mundt9d56dd32010-01-26 12:58:40 +090070 __raw_writel(mask, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 local_irq_restore(flags);
72}
73
Paul Mundt815db142010-10-27 15:38:59 +090074static void disable_cayman_irq(struct irq_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Paul Mundt815db142010-10-27 15:38:59 +090076 unsigned int irq = data->irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 unsigned long flags;
78 unsigned long mask;
79 unsigned int reg;
80 unsigned char bit;
81
82 irq -= START_EXT_IRQS;
83 reg = EPLD_MASK_BASE + ((irq / 8) << 2);
84 bit = 1<<(irq % 8);
85 local_irq_save(flags);
Paul Mundt9d56dd32010-01-26 12:58:40 +090086 mask = __raw_readl(reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 mask &= ~bit;
Paul Mundt9d56dd32010-01-26 12:58:40 +090088 __raw_writel(mask, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 local_irq_restore(flags);
90}
91
Matt Fleming1a947572008-12-14 12:02:27 +000092struct irq_chip cayman_irq_type = {
93 .name = "Cayman-IRQ",
Paul Mundt815db142010-10-27 15:38:59 +090094 .irq_unmask = enable_cayman_irq,
95 .irq_mask = disable_cayman_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096};
97
98int cayman_irq_demux(int evt)
99{
100 int irq = intc_evt_to_irq[evt];
101
102 if (irq == SMSC_IRQ) {
103 unsigned long status;
104 int i;
105
Paul Mundt9d56dd32010-01-26 12:58:40 +0900106 status = __raw_readl(EPLD_STATUS_BASE) &
107 __raw_readl(EPLD_MASK_BASE) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 if (status == 0) {
109 irq = -1;
110 } else {
111 for (i=0; i<8; i++) {
112 if (status & (1<<i))
113 break;
114 }
115 irq = START_EXT_IRQS + i;
116 }
117 }
118
119 if (irq == PCI2_IRQ) {
120 unsigned long status;
121 int i;
122
Paul Mundt9d56dd32010-01-26 12:58:40 +0900123 status = __raw_readl(EPLD_STATUS_BASE + 3 * sizeof(u32)) &
124 __raw_readl(EPLD_MASK_BASE + 3 * sizeof(u32)) & 0xff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 if (status == 0) {
126 irq = -1;
127 } else {
128 for (i=0; i<8; i++) {
129 if (status & (1<<i))
130 break;
131 }
132 irq = START_EXT_IRQS + (3 * 8) + i;
133 }
134 }
135
136 return irq;
137}
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139void init_cayman_irq(void)
140{
141 int i;
142
Paul Mundt0fb849b2009-05-07 18:10:27 +0900143 epld_virt = (unsigned long)ioremap_nocache(EPLD_BASE, 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (!epld_virt) {
145 printk(KERN_ERR "Cayman IRQ: Unable to remap EPLD\n");
146 return;
147 }
148
Matt Fleming1a947572008-12-14 12:02:27 +0000149 for (i = 0; i < NR_EXT_IRQS; i++) {
Thomas Gleixnerfcb89182011-03-24 16:31:17 +0100150 irq_set_chip_and_handler(START_EXT_IRQS + i,
151 &cayman_irq_type, handle_level_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 }
153
154 /* Setup the SMSC interrupt */
155 setup_irq(SMSC_IRQ, &cayman_action_smsc);
156 setup_irq(PCI2_IRQ, &cayman_action_pci2);
157}