blob: 07be937b3d9ac7d47c96bc0bc2386867180278ae [file] [log] [blame]
Michal Simekeedbdab2009-03-27 14:25:49 +01001/*
Michal Simek968674b2013-08-27 10:48:29 +02002 * Copyright (C) 2007-2013 Michal Simek <monstr@monstr.eu>
3 * Copyright (C) 2012-2013 Xilinx, Inc.
Michal Simekeedbdab2009-03-27 14:25:49 +01004 * Copyright (C) 2007-2009 PetaLogix
5 * Copyright (C) 2006 Atmark Techno, Inc.
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
9 * for more details.
10 */
11
12#include <linux/init.h>
Grant Likely2462bac2012-01-26 14:10:13 -070013#include <linux/irqdomain.h>
Michal Simekeedbdab2009-03-27 14:25:49 +010014#include <linux/irq.h>
15#include <asm/page.h>
16#include <linux/io.h>
John Williams892ee922009-07-29 22:08:40 +100017#include <linux/bug.h>
Michal Simekeedbdab2009-03-27 14:25:49 +010018
19#include <asm/prom.h>
20#include <asm/irq.h>
Michal Simek8a9e90a2013-08-27 10:49:00 +020021#include "../../drivers/irqchip/irqchip.h"
Michal Simekeedbdab2009-03-27 14:25:49 +010022
Michal Simekeedbdab2009-03-27 14:25:49 +010023static unsigned int intc_baseaddr;
Michal Simekeedbdab2009-03-27 14:25:49 +010024
Michal Simekeedbdab2009-03-27 14:25:49 +010025/* No one else should require these constants, so define them locally here. */
26#define ISR 0x00 /* Interrupt Status Register */
27#define IPR 0x04 /* Interrupt Pending Register */
28#define IER 0x08 /* Interrupt Enable Register */
29#define IAR 0x0c /* Interrupt Acknowledge Register */
30#define SIE 0x10 /* Set Interrupt Enable bits */
31#define CIE 0x14 /* Clear Interrupt Enable bits */
32#define IVR 0x18 /* Interrupt Vector Register */
33#define MER 0x1c /* Master Enable Register */
34
35#define MER_ME (1<<0)
36#define MER_HIE (1<<1)
37
Thomas Gleixner6f205a42011-02-06 19:36:30 +000038static void intc_enable_or_unmask(struct irq_data *d)
Michal Simekeedbdab2009-03-27 14:25:49 +010039{
Michal Simek6c7a2672011-12-09 10:45:20 +010040 unsigned long mask = 1 << d->hwirq;
41
42 pr_debug("enable_or_unmask: %ld\n", d->hwirq);
steve@digidescorp.com33d9ff52009-11-17 08:43:39 -060043
44 /* ack level irqs because they can't be acked during
45 * ack function since the handle_level_irq function
46 * acks the irq before calling the interrupt handler
47 */
Thomas Gleixner4adc1922011-03-24 14:52:04 +010048 if (irqd_is_level_type(d))
Michal Simek9e77dab2013-08-27 09:57:52 +020049 out_be32(intc_baseaddr + IAR, mask);
Michal Simek7958a682012-11-05 11:51:13 +010050
Michal Simek9e77dab2013-08-27 09:57:52 +020051 out_be32(intc_baseaddr + SIE, mask);
Michal Simekeedbdab2009-03-27 14:25:49 +010052}
53
Thomas Gleixner6f205a42011-02-06 19:36:30 +000054static void intc_disable_or_mask(struct irq_data *d)
Michal Simekeedbdab2009-03-27 14:25:49 +010055{
Michal Simek6c7a2672011-12-09 10:45:20 +010056 pr_debug("disable: %ld\n", d->hwirq);
Michal Simek9e77dab2013-08-27 09:57:52 +020057 out_be32(intc_baseaddr + CIE, 1 << d->hwirq);
Michal Simekeedbdab2009-03-27 14:25:49 +010058}
59
Thomas Gleixner6f205a42011-02-06 19:36:30 +000060static void intc_ack(struct irq_data *d)
Michal Simekeedbdab2009-03-27 14:25:49 +010061{
Michal Simek6c7a2672011-12-09 10:45:20 +010062 pr_debug("ack: %ld\n", d->hwirq);
Michal Simek9e77dab2013-08-27 09:57:52 +020063 out_be32(intc_baseaddr + IAR, 1 << d->hwirq);
Michal Simekeedbdab2009-03-27 14:25:49 +010064}
65
Thomas Gleixner6f205a42011-02-06 19:36:30 +000066static void intc_mask_ack(struct irq_data *d)
Michal Simekeedbdab2009-03-27 14:25:49 +010067{
Michal Simek6c7a2672011-12-09 10:45:20 +010068 unsigned long mask = 1 << d->hwirq;
69
70 pr_debug("disable_and_ack: %ld\n", d->hwirq);
Michal Simek9e77dab2013-08-27 09:57:52 +020071 out_be32(intc_baseaddr + CIE, mask);
72 out_be32(intc_baseaddr + IAR, mask);
Michal Simekeedbdab2009-03-27 14:25:49 +010073}
74
Michal Simekeedbdab2009-03-27 14:25:49 +010075static struct irq_chip intc_dev = {
76 .name = "Xilinx INTC",
Thomas Gleixner6f205a42011-02-06 19:36:30 +000077 .irq_unmask = intc_enable_or_unmask,
78 .irq_mask = intc_disable_or_mask,
79 .irq_ack = intc_ack,
80 .irq_mask_ack = intc_mask_ack,
Michal Simekeedbdab2009-03-27 14:25:49 +010081};
82
Grant Likely2462bac2012-01-26 14:10:13 -070083static struct irq_domain *root_domain;
Michal Simekeedbdab2009-03-27 14:25:49 +010084
Grant Likely2462bac2012-01-26 14:10:13 -070085unsigned int get_irq(void)
86{
87 unsigned int hwirq, irq = -1;
88
Michal Simek9e77dab2013-08-27 09:57:52 +020089 hwirq = in_be32(intc_baseaddr + IVR);
Grant Likely2462bac2012-01-26 14:10:13 -070090 if (hwirq != -1U)
91 irq = irq_find_mapping(root_domain, hwirq);
92
93 pr_debug("get_irq: hwirq=%d, irq=%d\n", hwirq, irq);
Michal Simekeedbdab2009-03-27 14:25:49 +010094
95 return irq;
96}
97
Michal Simekc0d997f2012-12-13 17:30:05 +010098static int xintc_map(struct irq_domain *d, unsigned int irq, irq_hw_number_t hw)
Grant Likely2462bac2012-01-26 14:10:13 -070099{
100 u32 intr_mask = (u32)d->host_data;
101
102 if (intr_mask & (1 << hw)) {
103 irq_set_chip_and_handler_name(irq, &intc_dev,
104 handle_edge_irq, "edge");
105 irq_clear_status_flags(irq, IRQ_LEVEL);
106 } else {
107 irq_set_chip_and_handler_name(irq, &intc_dev,
108 handle_level_irq, "level");
109 irq_set_status_flags(irq, IRQ_LEVEL);
110 }
111 return 0;
112}
113
114static const struct irq_domain_ops xintc_irq_domain_ops = {
115 .xlate = irq_domain_xlate_onetwocell,
116 .map = xintc_map,
117};
118
Michal Simek8a9e90a2013-08-27 10:49:00 +0200119static int __init xilinx_intc_of_init(struct device_node *intc,
120 struct device_node *parent)
Michal Simekeedbdab2009-03-27 14:25:49 +0100121{
Grant Likely2462bac2012-01-26 14:10:13 -0700122 u32 nr_irq, intr_mask;
Michal Simekeedbdab2009-03-27 14:25:49 +0100123
Michal Simek6c7a2672011-12-09 10:45:20 +0100124 intc_baseaddr = be32_to_cpup(of_get_property(intc, "reg", NULL));
Michal Simekeedbdab2009-03-27 14:25:49 +0100125 intc_baseaddr = (unsigned long) ioremap(intc_baseaddr, PAGE_SIZE);
Michal Simek02b08042010-09-28 16:04:14 +1000126 nr_irq = be32_to_cpup(of_get_property(intc,
127 "xlnx,num-intr-inputs", NULL));
Michal Simekeedbdab2009-03-27 14:25:49 +0100128
Michal Simek2ecb8992011-12-09 12:26:55 +0100129 intr_mask =
130 be32_to_cpup(of_get_property(intc, "xlnx,kind-of-intr", NULL));
131 if (intr_mask > (u32)((1ULL << nr_irq) - 1))
Michal Simek6bd55f02012-12-27 10:40:38 +0100132 pr_info(" ERROR: Mismatch in kind-of-intr param\n");
Michal Simekeedbdab2009-03-27 14:25:49 +0100133
Michal Simek6bd55f02012-12-27 10:40:38 +0100134 pr_info("%s #0 at 0x%08x, num_irq=%d, edge=0x%x\n",
Michal Simekcc5647a2011-11-07 13:42:12 +0100135 intc->name, intc_baseaddr, nr_irq, intr_mask);
Michal Simekeedbdab2009-03-27 14:25:49 +0100136
137 /*
138 * Disable all external interrupts until they are
139 * explicity requested.
140 */
141 out_be32(intc_baseaddr + IER, 0);
142
143 /* Acknowledge any pending interrupts just in case. */
144 out_be32(intc_baseaddr + IAR, 0xffffffff);
145
146 /* Turn on the Master Enable. */
147 out_be32(intc_baseaddr + MER, MER_HIE | MER_ME);
148
Grant Likely2462bac2012-01-26 14:10:13 -0700149 /* Yeah, okay, casting the intr_mask to a void* is butt-ugly, but I'm
150 * lazy and Michal can clean it up to something nicer when he tests
151 * and commits this patch. ~~gcl */
152 root_domain = irq_domain_add_linear(intc, nr_irq, &xintc_irq_domain_ops,
153 (void *)intr_mask);
Dan Christensen7c2c8512013-03-17 04:48:56 -0500154
155 irq_set_default_host(root_domain);
Michal Simek8a9e90a2013-08-27 10:49:00 +0200156
157 return 0;
Michal Simekeedbdab2009-03-27 14:25:49 +0100158}
Michal Simek8a9e90a2013-08-27 10:49:00 +0200159
160IRQCHIP_DECLARE(xilinx_intc, "xlnx,xps-intc-1.00.a", xilinx_intc_of_init);