blob: 4cde8e7da4b8e0f9ec8afdd9fd1d0d0eb8f8090a [file] [log] [blame]
Albert Herranz028ee972009-12-12 06:31:41 +00001/*
2 * arch/powerpc/platforms/embedded6xx/flipper-pic.c
3 *
4 * Nintendo GameCube/Wii "Flipper" interrupt controller support.
5 * Copyright (C) 2004-2009 The GameCube Linux Team
6 * Copyright (C) 2007,2008,2009 Albert Herranz
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 */
14#define DRV_MODULE_NAME "flipper-pic"
15#define pr_fmt(fmt) DRV_MODULE_NAME ": " fmt
16
17#include <linux/kernel.h>
18#include <linux/init.h>
19#include <linux/irq.h>
20#include <linux/of.h>
Rob Herring26a20562013-09-26 07:40:04 -050021#include <linux/of_address.h>
Albert Herranz028ee972009-12-12 06:31:41 +000022#include <asm/io.h>
23
24#include "flipper-pic.h"
25
26#define FLIPPER_NR_IRQS 32
27
28/*
29 * Each interrupt has a corresponding bit in both
30 * the Interrupt Cause (ICR) and Interrupt Mask (IMR) registers.
31 *
32 * Enabling/disabling an interrupt line involves setting/clearing
33 * the corresponding bit in IMR.
34 * Except for the RSW interrupt, all interrupts get deasserted automatically
35 * when the source deasserts the interrupt.
36 */
37#define FLIPPER_ICR 0x00
38#define FLIPPER_ICR_RSS (1<<16) /* reset switch state */
39
40#define FLIPPER_IMR 0x04
41
42#define FLIPPER_RESET 0x24
43
44
45/*
46 * IRQ chip hooks.
47 *
48 */
49
Lennert Buytenhek0bf88782011-03-08 22:26:53 +000050static void flipper_pic_mask_and_ack(struct irq_data *d)
Albert Herranz028ee972009-12-12 06:31:41 +000051{
Grant Likely476eb492011-05-04 15:02:15 +100052 int irq = irqd_to_hwirq(d);
Lennert Buytenhek0bf88782011-03-08 22:26:53 +000053 void __iomem *io_base = irq_data_get_irq_chip_data(d);
Albert Herranz028ee972009-12-12 06:31:41 +000054 u32 mask = 1 << irq;
55
56 clrbits32(io_base + FLIPPER_IMR, mask);
57 /* this is at least needed for RSW */
58 out_be32(io_base + FLIPPER_ICR, mask);
59}
60
Lennert Buytenhek0bf88782011-03-08 22:26:53 +000061static void flipper_pic_ack(struct irq_data *d)
Albert Herranz028ee972009-12-12 06:31:41 +000062{
Grant Likely476eb492011-05-04 15:02:15 +100063 int irq = irqd_to_hwirq(d);
Lennert Buytenhek0bf88782011-03-08 22:26:53 +000064 void __iomem *io_base = irq_data_get_irq_chip_data(d);
Albert Herranz028ee972009-12-12 06:31:41 +000065
66 /* this is at least needed for RSW */
67 out_be32(io_base + FLIPPER_ICR, 1 << irq);
68}
69
Lennert Buytenhek0bf88782011-03-08 22:26:53 +000070static void flipper_pic_mask(struct irq_data *d)
Albert Herranz028ee972009-12-12 06:31:41 +000071{
Grant Likely476eb492011-05-04 15:02:15 +100072 int irq = irqd_to_hwirq(d);
Lennert Buytenhek0bf88782011-03-08 22:26:53 +000073 void __iomem *io_base = irq_data_get_irq_chip_data(d);
Albert Herranz028ee972009-12-12 06:31:41 +000074
75 clrbits32(io_base + FLIPPER_IMR, 1 << irq);
76}
77
Lennert Buytenhek0bf88782011-03-08 22:26:53 +000078static void flipper_pic_unmask(struct irq_data *d)
Albert Herranz028ee972009-12-12 06:31:41 +000079{
Grant Likely476eb492011-05-04 15:02:15 +100080 int irq = irqd_to_hwirq(d);
Lennert Buytenhek0bf88782011-03-08 22:26:53 +000081 void __iomem *io_base = irq_data_get_irq_chip_data(d);
Albert Herranz028ee972009-12-12 06:31:41 +000082
83 setbits32(io_base + FLIPPER_IMR, 1 << irq);
84}
85
86
87static struct irq_chip flipper_pic = {
88 .name = "flipper-pic",
Lennert Buytenhek0bf88782011-03-08 22:26:53 +000089 .irq_ack = flipper_pic_ack,
90 .irq_mask_ack = flipper_pic_mask_and_ack,
91 .irq_mask = flipper_pic_mask,
92 .irq_unmask = flipper_pic_unmask,
Albert Herranz028ee972009-12-12 06:31:41 +000093};
94
95/*
96 * IRQ host hooks.
97 *
98 */
99
Grant Likelybae1d8f2012-02-14 14:06:50 -0700100static struct irq_domain *flipper_irq_host;
Albert Herranz028ee972009-12-12 06:31:41 +0000101
Grant Likelybae1d8f2012-02-14 14:06:50 -0700102static int flipper_pic_map(struct irq_domain *h, unsigned int virq,
Albert Herranz028ee972009-12-12 06:31:41 +0000103 irq_hw_number_t hwirq)
104{
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100105 irq_set_chip_data(virq, h->host_data);
Thomas Gleixner98488db2011-03-25 15:43:57 +0100106 irq_set_status_flags(virq, IRQ_LEVEL);
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100107 irq_set_chip_and_handler(virq, &flipper_pic, handle_level_irq);
Albert Herranz028ee972009-12-12 06:31:41 +0000108 return 0;
109}
110
Grant Likelybae1d8f2012-02-14 14:06:50 -0700111static int flipper_pic_match(struct irq_domain *h, struct device_node *np)
Albert Herranz028ee972009-12-12 06:31:41 +0000112{
113 return 1;
114}
115
116
Grant Likely9f70b8e2012-01-26 12:24:34 -0700117static const struct irq_domain_ops flipper_irq_domain_ops = {
Albert Herranz028ee972009-12-12 06:31:41 +0000118 .map = flipper_pic_map,
Albert Herranz028ee972009-12-12 06:31:41 +0000119 .match = flipper_pic_match,
120};
121
122/*
123 * Platform hooks.
124 *
125 */
126
127static void __flipper_quiesce(void __iomem *io_base)
128{
129 /* mask and ack all IRQs */
130 out_be32(io_base + FLIPPER_IMR, 0x00000000);
131 out_be32(io_base + FLIPPER_ICR, 0xffffffff);
132}
133
Grant Likelybae1d8f2012-02-14 14:06:50 -0700134struct irq_domain * __init flipper_pic_init(struct device_node *np)
Albert Herranz028ee972009-12-12 06:31:41 +0000135{
136 struct device_node *pi;
Grant Likelybae1d8f2012-02-14 14:06:50 -0700137 struct irq_domain *irq_domain = NULL;
Albert Herranz028ee972009-12-12 06:31:41 +0000138 struct resource res;
139 void __iomem *io_base;
140 int retval;
141
142 pi = of_get_parent(np);
143 if (!pi) {
144 pr_err("no parent found\n");
145 goto out;
146 }
147 if (!of_device_is_compatible(pi, "nintendo,flipper-pi")) {
148 pr_err("unexpected parent compatible\n");
149 goto out;
150 }
151
152 retval = of_address_to_resource(pi, 0, &res);
153 if (retval) {
154 pr_err("no io memory range found\n");
155 goto out;
156 }
157 io_base = ioremap(res.start, resource_size(&res));
158
159 pr_info("controller at 0x%08x mapped to 0x%p\n", res.start, io_base);
160
161 __flipper_quiesce(io_base);
162
Grant Likelya8db8cf2012-02-14 14:06:54 -0700163 irq_domain = irq_domain_add_linear(np, FLIPPER_NR_IRQS,
164 &flipper_irq_domain_ops, io_base);
Grant Likelybae1d8f2012-02-14 14:06:50 -0700165 if (!irq_domain) {
166 pr_err("failed to allocate irq_domain\n");
Albert Herranz028ee972009-12-12 06:31:41 +0000167 return NULL;
168 }
169
Albert Herranz028ee972009-12-12 06:31:41 +0000170out:
Grant Likelybae1d8f2012-02-14 14:06:50 -0700171 return irq_domain;
Albert Herranz028ee972009-12-12 06:31:41 +0000172}
173
174unsigned int flipper_pic_get_irq(void)
175{
Paul Gortmaker6d166fe2012-02-22 18:35:03 -0500176 void __iomem *io_base = flipper_irq_host->host_data;
Albert Herranz028ee972009-12-12 06:31:41 +0000177 int irq;
178 u32 irq_status;
179
180 irq_status = in_be32(io_base + FLIPPER_ICR) &
181 in_be32(io_base + FLIPPER_IMR);
182 if (irq_status == 0)
183 return NO_IRQ; /* no more IRQs pending */
184
185 irq = __ffs(irq_status);
Paul Gortmaker6d166fe2012-02-22 18:35:03 -0500186 return irq_linear_revmap(flipper_irq_host, irq);
Albert Herranz028ee972009-12-12 06:31:41 +0000187}
188
189/*
190 * Probe function.
191 *
192 */
193
194void __init flipper_pic_probe(void)
195{
196 struct device_node *np;
197
198 np = of_find_compatible_node(NULL, NULL, "nintendo,flipper-pic");
199 BUG_ON(!np);
200
Paul Gortmaker6d166fe2012-02-22 18:35:03 -0500201 flipper_irq_host = flipper_pic_init(np);
Albert Herranz028ee972009-12-12 06:31:41 +0000202 BUG_ON(!flipper_irq_host);
203
204 irq_set_default_host(flipper_irq_host);
205
206 of_node_put(np);
207}
208
209/*
210 * Misc functions related to the flipper chipset.
211 *
212 */
213
214/**
215 * flipper_quiesce() - quiesce flipper irq controller
216 *
217 * Mask and ack all interrupt sources.
218 *
219 */
220void flipper_quiesce(void)
221{
222 void __iomem *io_base = flipper_irq_host->host_data;
223
224 __flipper_quiesce(io_base);
225}
226
227/*
228 * Resets the platform.
229 */
230void flipper_platform_reset(void)
231{
232 void __iomem *io_base;
233
234 if (flipper_irq_host && flipper_irq_host->host_data) {
235 io_base = flipper_irq_host->host_data;
236 out_8(io_base + FLIPPER_RESET, 0x00);
237 }
238}
239
240/*
241 * Returns non-zero if the reset button is pressed.
242 */
243int flipper_is_reset_button_pressed(void)
244{
245 void __iomem *io_base;
246 u32 icr;
247
248 if (flipper_irq_host && flipper_irq_host->host_data) {
249 io_base = flipper_irq_host->host_data;
250 icr = in_be32(io_base + FLIPPER_ICR);
251 return !(icr & FLIPPER_ICR_RSS);
252 }
253 return 0;
254}
255