Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Dmitry Eremin-Solenikov | 85e6f09 | 2015-05-19 16:16:14 +0100 | [diff] [blame] | 2 | * Copyright (C) 2015 Dmitry Eremin-Solenikov |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Copyright (C) 1999-2001 Nicolas Pitre |
| 4 | * |
Dmitry Eremin-Solenikov | 85e6f09 | 2015-05-19 16:16:14 +0100 | [diff] [blame] | 5 | * Generic IRQ handling for the SA11x0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | #include <linux/init.h> |
| 12 | #include <linux/module.h> |
Thomas Gleixner | 119c641 | 2006-07-01 22:32:38 +0100 | [diff] [blame] | 13 | #include <linux/interrupt.h> |
Russell King | 3169663 | 2012-06-06 11:42:36 +0100 | [diff] [blame] | 14 | #include <linux/io.h> |
Thomas Gleixner | 119c641 | 2006-07-01 22:32:38 +0100 | [diff] [blame] | 15 | #include <linux/irq.h> |
Dmitry Eremin-Solenikov | 1eca42b | 2014-11-28 15:56:54 +0100 | [diff] [blame] | 16 | #include <linux/irqdomain.h> |
Rafael J. Wysocki | 9053398 | 2011-04-22 22:03:03 +0200 | [diff] [blame] | 17 | #include <linux/syscore_ops.h> |
Dmitry Eremin-Solenikov | 85e6f09 | 2015-05-19 16:16:14 +0100 | [diff] [blame] | 18 | #include <linux/irqchip/irq-sa11x0.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | |
Dmitry Eremin-Solenikov | a657d7f | 2015-05-18 16:01:19 +0100 | [diff] [blame] | 20 | #include <soc/sa1100/pwer.h> |
| 21 | |
Dmitry Eremin-Solenikov | affcab3 | 2014-11-28 15:55:16 +0100 | [diff] [blame] | 22 | #include <asm/exception.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Dmitry Eremin-Solenikov | 60c06c4 | 2015-05-18 16:02:47 +0100 | [diff] [blame] | 24 | #define ICIP 0x00 /* IC IRQ Pending reg. */ |
| 25 | #define ICMR 0x04 /* IC Mask Reg. */ |
| 26 | #define ICLR 0x08 /* IC Level Reg. */ |
| 27 | #define ICCR 0x0C /* IC Control Reg. */ |
| 28 | #define ICFP 0x10 /* IC FIQ Pending reg. */ |
| 29 | #define ICPR 0x20 /* IC Pending Reg. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Dmitry Eremin-Solenikov | 60c06c4 | 2015-05-18 16:02:47 +0100 | [diff] [blame] | 31 | static void __iomem *iobase; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | /* |
Dmitry Eremin-Solenikov | ab71f99 | 2014-11-28 15:57:52 +0100 | [diff] [blame] | 34 | * We don't need to ACK IRQs on the SA1100 unless they're GPIOs |
| 35 | * this is for internal IRQs i.e. from IRQ LCD to RTCAlrm. |
| 36 | */ |
| 37 | static void sa1100_mask_irq(struct irq_data *d) |
| 38 | { |
Dmitry Eremin-Solenikov | 60c06c4 | 2015-05-18 16:02:47 +0100 | [diff] [blame] | 39 | u32 reg; |
| 40 | |
| 41 | reg = readl_relaxed(iobase + ICMR); |
| 42 | reg &= ~BIT(d->hwirq); |
| 43 | writel_relaxed(reg, iobase + ICMR); |
Dmitry Eremin-Solenikov | ab71f99 | 2014-11-28 15:57:52 +0100 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | static void sa1100_unmask_irq(struct irq_data *d) |
| 47 | { |
Dmitry Eremin-Solenikov | 60c06c4 | 2015-05-18 16:02:47 +0100 | [diff] [blame] | 48 | u32 reg; |
| 49 | |
| 50 | reg = readl_relaxed(iobase + ICMR); |
| 51 | reg |= BIT(d->hwirq); |
| 52 | writel_relaxed(reg, iobase + ICMR); |
Dmitry Eremin-Solenikov | ab71f99 | 2014-11-28 15:57:52 +0100 | [diff] [blame] | 53 | } |
| 54 | |
Dmitry Eremin-Solenikov | ab71f99 | 2014-11-28 15:57:52 +0100 | [diff] [blame] | 55 | static int sa1100_set_wake(struct irq_data *d, unsigned int on) |
| 56 | { |
Dmitry Eremin-Solenikov | a657d7f | 2015-05-18 16:01:19 +0100 | [diff] [blame] | 57 | return sa11x0_sc_set_wake(d->hwirq, on); |
Dmitry Eremin-Solenikov | ab71f99 | 2014-11-28 15:57:52 +0100 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | static struct irq_chip sa1100_normal_chip = { |
| 61 | .name = "SC", |
| 62 | .irq_ack = sa1100_mask_irq, |
| 63 | .irq_mask = sa1100_mask_irq, |
| 64 | .irq_unmask = sa1100_unmask_irq, |
| 65 | .irq_set_wake = sa1100_set_wake, |
| 66 | }; |
| 67 | |
| 68 | static int sa1100_normal_irqdomain_map(struct irq_domain *d, |
| 69 | unsigned int irq, irq_hw_number_t hwirq) |
| 70 | { |
| 71 | irq_set_chip_and_handler(irq, &sa1100_normal_chip, |
| 72 | handle_level_irq); |
Dmitry Eremin-Solenikov | ab71f99 | 2014-11-28 15:57:52 +0100 | [diff] [blame] | 73 | |
| 74 | return 0; |
| 75 | } |
| 76 | |
Krzysztof Kozlowski | 9827e8e | 2015-04-27 14:55:12 +0100 | [diff] [blame] | 77 | static const struct irq_domain_ops sa1100_normal_irqdomain_ops = { |
Dmitry Eremin-Solenikov | ab71f99 | 2014-11-28 15:57:52 +0100 | [diff] [blame] | 78 | .map = sa1100_normal_irqdomain_map, |
| 79 | .xlate = irq_domain_xlate_onetwocell, |
| 80 | }; |
| 81 | |
| 82 | static struct irq_domain *sa1100_normal_irqdomain; |
| 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | static struct sa1100irq_state { |
| 85 | unsigned int saved; |
| 86 | unsigned int icmr; |
| 87 | unsigned int iclr; |
| 88 | unsigned int iccr; |
| 89 | } sa1100irq_state; |
| 90 | |
Rafael J. Wysocki | 9053398 | 2011-04-22 22:03:03 +0200 | [diff] [blame] | 91 | static int sa1100irq_suspend(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | { |
| 93 | struct sa1100irq_state *st = &sa1100irq_state; |
| 94 | |
| 95 | st->saved = 1; |
Dmitry Eremin-Solenikov | 60c06c4 | 2015-05-18 16:02:47 +0100 | [diff] [blame] | 96 | st->icmr = readl_relaxed(iobase + ICMR); |
| 97 | st->iclr = readl_relaxed(iobase + ICLR); |
| 98 | st->iccr = readl_relaxed(iobase + ICCR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | |
| 100 | /* |
| 101 | * Disable all GPIO-based interrupts. |
| 102 | */ |
Dmitry Eremin-Solenikov | 60c06c4 | 2015-05-18 16:02:47 +0100 | [diff] [blame] | 103 | writel_relaxed(st->icmr & 0xfffff000, iobase + ICMR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | return 0; |
| 106 | } |
| 107 | |
Rafael J. Wysocki | 9053398 | 2011-04-22 22:03:03 +0200 | [diff] [blame] | 108 | static void sa1100irq_resume(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | { |
| 110 | struct sa1100irq_state *st = &sa1100irq_state; |
| 111 | |
| 112 | if (st->saved) { |
Dmitry Eremin-Solenikov | 60c06c4 | 2015-05-18 16:02:47 +0100 | [diff] [blame] | 113 | writel_relaxed(st->iccr, iobase + ICCR); |
| 114 | writel_relaxed(st->iclr, iobase + ICLR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
Dmitry Eremin-Solenikov | 60c06c4 | 2015-05-18 16:02:47 +0100 | [diff] [blame] | 116 | writel_relaxed(st->icmr, iobase + ICMR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | } |
| 119 | |
Rafael J. Wysocki | 9053398 | 2011-04-22 22:03:03 +0200 | [diff] [blame] | 120 | static struct syscore_ops sa1100irq_syscore_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | .suspend = sa1100irq_suspend, |
| 122 | .resume = sa1100irq_resume, |
| 123 | }; |
| 124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | static int __init sa1100irq_init_devicefs(void) |
| 126 | { |
Rafael J. Wysocki | 9053398 | 2011-04-22 22:03:03 +0200 | [diff] [blame] | 127 | register_syscore_ops(&sa1100irq_syscore_ops); |
| 128 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | device_initcall(sa1100irq_init_devicefs); |
| 132 | |
Dmitry Eremin-Solenikov | affcab3 | 2014-11-28 15:55:16 +0100 | [diff] [blame] | 133 | static asmlinkage void __exception_irq_entry |
| 134 | sa1100_handle_irq(struct pt_regs *regs) |
| 135 | { |
| 136 | uint32_t icip, icmr, mask; |
| 137 | |
| 138 | do { |
Dmitry Eremin-Solenikov | 60c06c4 | 2015-05-18 16:02:47 +0100 | [diff] [blame] | 139 | icip = readl_relaxed(iobase + ICIP); |
| 140 | icmr = readl_relaxed(iobase + ICMR); |
Dmitry Eremin-Solenikov | affcab3 | 2014-11-28 15:55:16 +0100 | [diff] [blame] | 141 | mask = icip & icmr; |
| 142 | |
| 143 | if (mask == 0) |
| 144 | break; |
| 145 | |
Dmitry Eremin-Solenikov | 364e386 | 2015-01-15 02:33:23 +0100 | [diff] [blame] | 146 | handle_domain_irq(sa1100_normal_irqdomain, |
| 147 | ffs(mask) - 1, regs); |
Dmitry Eremin-Solenikov | affcab3 | 2014-11-28 15:55:16 +0100 | [diff] [blame] | 148 | } while (1); |
| 149 | } |
| 150 | |
Dmitry Eremin-Solenikov | 85e6f09 | 2015-05-19 16:16:14 +0100 | [diff] [blame] | 151 | void __init sa11x0_init_irq_nodt(int irq_start, resource_size_t io_start) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | { |
Dmitry Eremin-Solenikov | 85e6f09 | 2015-05-19 16:16:14 +0100 | [diff] [blame] | 153 | iobase = ioremap(io_start, SZ_64K); |
Dmitry Eremin-Solenikov | 60c06c4 | 2015-05-18 16:02:47 +0100 | [diff] [blame] | 154 | if (WARN_ON(!iobase)) |
| 155 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
| 157 | /* disable all IRQs */ |
Dmitry Eremin-Solenikov | 60c06c4 | 2015-05-18 16:02:47 +0100 | [diff] [blame] | 158 | writel_relaxed(0, iobase + ICMR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
| 160 | /* all IRQs are IRQ, not FIQ */ |
Dmitry Eremin-Solenikov | 60c06c4 | 2015-05-18 16:02:47 +0100 | [diff] [blame] | 161 | writel_relaxed(0, iobase + ICLR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | /* |
| 164 | * Whatever the doc says, this has to be set for the wait-on-irq |
| 165 | * instruction to work... on a SA1100 rev 9 at least. |
| 166 | */ |
Dmitry Eremin-Solenikov | 60c06c4 | 2015-05-18 16:02:47 +0100 | [diff] [blame] | 167 | writel_relaxed(1, iobase + ICCR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
Dmitry Eremin-Solenikov | a82be3f | 2015-01-15 02:31:48 +0100 | [diff] [blame] | 169 | sa1100_normal_irqdomain = irq_domain_add_simple(NULL, |
Dmitry Eremin-Solenikov | 85e6f09 | 2015-05-19 16:16:14 +0100 | [diff] [blame] | 170 | 32, irq_start, |
Dmitry Eremin-Solenikov | 8350809 | 2015-01-15 02:29:16 +0100 | [diff] [blame] | 171 | &sa1100_normal_irqdomain_ops, NULL); |
| 172 | |
Dmitry Eremin-Solenikov | affcab3 | 2014-11-28 15:55:16 +0100 | [diff] [blame] | 173 | set_handle_irq(sa1100_handle_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | } |