Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 1 | /* |
Grant Likely | c103de2 | 2011-06-04 18:38:28 -0600 | [diff] [blame] | 2 | * Copyright (C) 2008, 2009 Provigent Ltd. |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 3 | * |
Paul Gortmaker | ef3e710 | 2016-03-27 11:44:46 -0400 | [diff] [blame] | 4 | * Author: Baruch Siach <baruch@tkos.co.il> |
| 5 | * |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | * Driver for the ARM PrimeCell(tm) General Purpose Input/Output (PL061) |
| 11 | * |
| 12 | * Data sheet: ARM DDI 0190B, September 2000 |
| 13 | */ |
| 14 | #include <linux/spinlock.h> |
| 15 | #include <linux/errno.h> |
Paul Gortmaker | ef3e710 | 2016-03-27 11:44:46 -0400 | [diff] [blame] | 16 | #include <linux/init.h> |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 17 | #include <linux/io.h> |
| 18 | #include <linux/ioport.h> |
Sudeep Holla | 2f46205 | 2015-11-27 17:19:15 +0000 | [diff] [blame] | 19 | #include <linux/interrupt.h> |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 20 | #include <linux/irq.h> |
Catalin Marinas | de88cbb | 2013-01-18 15:31:37 +0000 | [diff] [blame] | 21 | #include <linux/irqchip/chained_irq.h> |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 22 | #include <linux/bitops.h> |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 23 | #include <linux/gpio.h> |
| 24 | #include <linux/device.h> |
| 25 | #include <linux/amba/bus.h> |
| 26 | #include <linux/amba/pl061.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 27 | #include <linux/slab.h> |
Haojian Zhuang | 39b70ee | 2013-02-17 19:42:51 +0800 | [diff] [blame] | 28 | #include <linux/pinctrl/consumer.h> |
Deepak Sikri | e198a8de | 2011-11-18 15:20:12 +0530 | [diff] [blame] | 29 | #include <linux/pm.h> |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 30 | |
| 31 | #define GPIODIR 0x400 |
| 32 | #define GPIOIS 0x404 |
| 33 | #define GPIOIBE 0x408 |
| 34 | #define GPIOIEV 0x40C |
| 35 | #define GPIOIE 0x410 |
| 36 | #define GPIORIS 0x414 |
| 37 | #define GPIOMIS 0x418 |
| 38 | #define GPIOIC 0x41C |
| 39 | |
| 40 | #define PL061_GPIO_NR 8 |
| 41 | |
Deepak Sikri | e198a8de | 2011-11-18 15:20:12 +0530 | [diff] [blame] | 42 | #ifdef CONFIG_PM |
| 43 | struct pl061_context_save_regs { |
| 44 | u8 gpio_data; |
| 45 | u8 gpio_dir; |
| 46 | u8 gpio_is; |
| 47 | u8 gpio_ibe; |
| 48 | u8 gpio_iev; |
| 49 | u8 gpio_ie; |
| 50 | }; |
| 51 | #endif |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 52 | |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 53 | struct pl061_gpio { |
Baruch Siach | 835c192 | 2012-11-22 11:46:14 +0200 | [diff] [blame] | 54 | spinlock_t lock; |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 55 | |
| 56 | void __iomem *base; |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 57 | struct gpio_chip gc; |
Deepak Sikri | e198a8de | 2011-11-18 15:20:12 +0530 | [diff] [blame] | 58 | |
| 59 | #ifdef CONFIG_PM |
| 60 | struct pl061_context_save_regs csave_regs; |
| 61 | #endif |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 62 | }; |
| 63 | |
Linus Walleij | 3484f1b | 2016-04-28 13:18:59 +0200 | [diff] [blame] | 64 | static int pl061_get_direction(struct gpio_chip *gc, unsigned offset) |
| 65 | { |
| 66 | struct pl061_gpio *chip = gpiochip_get_data(gc); |
| 67 | |
| 68 | return !(readb(chip->base + GPIODIR) & BIT(offset)); |
| 69 | } |
| 70 | |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 71 | static int pl061_direction_input(struct gpio_chip *gc, unsigned offset) |
| 72 | { |
Linus Walleij | d81b37f | 2015-12-07 11:37:33 +0100 | [diff] [blame] | 73 | struct pl061_gpio *chip = gpiochip_get_data(gc); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 74 | unsigned long flags; |
| 75 | unsigned char gpiodir; |
| 76 | |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 77 | spin_lock_irqsave(&chip->lock, flags); |
| 78 | gpiodir = readb(chip->base + GPIODIR); |
Javier Martinez Canillas | bea4150 | 2014-04-27 02:00:50 +0200 | [diff] [blame] | 79 | gpiodir &= ~(BIT(offset)); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 80 | writeb(gpiodir, chip->base + GPIODIR); |
| 81 | spin_unlock_irqrestore(&chip->lock, flags); |
| 82 | |
| 83 | return 0; |
| 84 | } |
| 85 | |
| 86 | static int pl061_direction_output(struct gpio_chip *gc, unsigned offset, |
| 87 | int value) |
| 88 | { |
Linus Walleij | d81b37f | 2015-12-07 11:37:33 +0100 | [diff] [blame] | 89 | struct pl061_gpio *chip = gpiochip_get_data(gc); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 90 | unsigned long flags; |
| 91 | unsigned char gpiodir; |
| 92 | |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 93 | spin_lock_irqsave(&chip->lock, flags); |
Javier Martinez Canillas | bea4150 | 2014-04-27 02:00:50 +0200 | [diff] [blame] | 94 | writeb(!!value << offset, chip->base + (BIT(offset + 2))); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 95 | gpiodir = readb(chip->base + GPIODIR); |
Javier Martinez Canillas | bea4150 | 2014-04-27 02:00:50 +0200 | [diff] [blame] | 96 | gpiodir |= BIT(offset); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 97 | writeb(gpiodir, chip->base + GPIODIR); |
viresh kumar | 64b997c5 | 2010-04-21 09:42:05 +0100 | [diff] [blame] | 98 | |
| 99 | /* |
| 100 | * gpio value is set again, because pl061 doesn't allow to set value of |
| 101 | * a gpio pin before configuring it in OUT mode. |
| 102 | */ |
Javier Martinez Canillas | bea4150 | 2014-04-27 02:00:50 +0200 | [diff] [blame] | 103 | writeb(!!value << offset, chip->base + (BIT(offset + 2))); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 104 | spin_unlock_irqrestore(&chip->lock, flags); |
| 105 | |
| 106 | return 0; |
| 107 | } |
| 108 | |
| 109 | static int pl061_get_value(struct gpio_chip *gc, unsigned offset) |
| 110 | { |
Linus Walleij | d81b37f | 2015-12-07 11:37:33 +0100 | [diff] [blame] | 111 | struct pl061_gpio *chip = gpiochip_get_data(gc); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 112 | |
Javier Martinez Canillas | bea4150 | 2014-04-27 02:00:50 +0200 | [diff] [blame] | 113 | return !!readb(chip->base + (BIT(offset + 2))); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | static void pl061_set_value(struct gpio_chip *gc, unsigned offset, int value) |
| 117 | { |
Linus Walleij | d81b37f | 2015-12-07 11:37:33 +0100 | [diff] [blame] | 118 | struct pl061_gpio *chip = gpiochip_get_data(gc); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 119 | |
Javier Martinez Canillas | bea4150 | 2014-04-27 02:00:50 +0200 | [diff] [blame] | 120 | writeb(!!value << offset, chip->base + (BIT(offset + 2))); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 121 | } |
| 122 | |
Lennert Buytenhek | b222186 | 2011-01-12 17:00:16 -0800 | [diff] [blame] | 123 | static int pl061_irq_type(struct irq_data *d, unsigned trigger) |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 124 | { |
Linus Walleij | 8d5b24b | 2014-03-25 10:42:35 +0100 | [diff] [blame] | 125 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | d81b37f | 2015-12-07 11:37:33 +0100 | [diff] [blame] | 126 | struct pl061_gpio *chip = gpiochip_get_data(gc); |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 127 | int offset = irqd_to_hwirq(d); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 128 | unsigned long flags; |
| 129 | u8 gpiois, gpioibe, gpioiev; |
Linus Walleij | 438a2c9 | 2013-11-26 12:59:51 +0100 | [diff] [blame] | 130 | u8 bit = BIT(offset); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 131 | |
Axel Lin | c1cc9b9 | 2010-05-26 14:42:19 -0700 | [diff] [blame] | 132 | if (offset < 0 || offset >= PL061_GPIO_NR) |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 133 | return -EINVAL; |
| 134 | |
Linus Walleij | 1dbf7f2 | 2015-09-17 14:21:25 +0200 | [diff] [blame] | 135 | if ((trigger & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) && |
| 136 | (trigger & (IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING))) |
| 137 | { |
Linus Walleij | 58383c7 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 138 | dev_err(gc->parent, |
Linus Walleij | 1dbf7f2 | 2015-09-17 14:21:25 +0200 | [diff] [blame] | 139 | "trying to configure line %d for both level and edge " |
| 140 | "detection, choose one!\n", |
| 141 | offset); |
| 142 | return -EINVAL; |
| 143 | } |
| 144 | |
Dan Carpenter | 21d4de1 | 2015-10-08 10:12:01 +0300 | [diff] [blame] | 145 | |
| 146 | spin_lock_irqsave(&chip->lock, flags); |
| 147 | |
| 148 | gpioiev = readb(chip->base + GPIOIEV); |
| 149 | gpiois = readb(chip->base + GPIOIS); |
| 150 | gpioibe = readb(chip->base + GPIOIBE); |
| 151 | |
Linus Walleij | 438a2c9 | 2013-11-26 12:59:51 +0100 | [diff] [blame] | 152 | if (trigger & (IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW)) { |
Linus Walleij | 1dbf7f2 | 2015-09-17 14:21:25 +0200 | [diff] [blame] | 153 | bool polarity = trigger & IRQ_TYPE_LEVEL_HIGH; |
| 154 | |
| 155 | /* Disable edge detection */ |
| 156 | gpioibe &= ~bit; |
| 157 | /* Enable level detection */ |
Linus Walleij | 438a2c9 | 2013-11-26 12:59:51 +0100 | [diff] [blame] | 158 | gpiois |= bit; |
Linus Walleij | 1dbf7f2 | 2015-09-17 14:21:25 +0200 | [diff] [blame] | 159 | /* Select polarity */ |
| 160 | if (polarity) |
Linus Walleij | 438a2c9 | 2013-11-26 12:59:51 +0100 | [diff] [blame] | 161 | gpioiev |= bit; |
| 162 | else |
| 163 | gpioiev &= ~bit; |
Linus Walleij | 26ba9cd | 2015-09-24 17:52:52 -0700 | [diff] [blame] | 164 | irq_set_handler_locked(d, handle_level_irq); |
Linus Walleij | 58383c7 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 165 | dev_dbg(gc->parent, "line %d: IRQ on %s level\n", |
Linus Walleij | 1dbf7f2 | 2015-09-17 14:21:25 +0200 | [diff] [blame] | 166 | offset, |
| 167 | polarity ? "HIGH" : "LOW"); |
| 168 | } else if ((trigger & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) { |
| 169 | /* Disable level detection */ |
| 170 | gpiois &= ~bit; |
| 171 | /* Select both edges, setting this makes GPIOEV be ignored */ |
Linus Walleij | 438a2c9 | 2013-11-26 12:59:51 +0100 | [diff] [blame] | 172 | gpioibe |= bit; |
Linus Walleij | 26ba9cd | 2015-09-24 17:52:52 -0700 | [diff] [blame] | 173 | irq_set_handler_locked(d, handle_edge_irq); |
Linus Walleij | 58383c7 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 174 | dev_dbg(gc->parent, "line %d: IRQ on both edges\n", offset); |
Linus Walleij | 1dbf7f2 | 2015-09-17 14:21:25 +0200 | [diff] [blame] | 175 | } else if ((trigger & IRQ_TYPE_EDGE_RISING) || |
| 176 | (trigger & IRQ_TYPE_EDGE_FALLING)) { |
| 177 | bool rising = trigger & IRQ_TYPE_EDGE_RISING; |
| 178 | |
| 179 | /* Disable level detection */ |
| 180 | gpiois &= ~bit; |
| 181 | /* Clear detection on both edges */ |
Linus Walleij | 438a2c9 | 2013-11-26 12:59:51 +0100 | [diff] [blame] | 182 | gpioibe &= ~bit; |
Linus Walleij | 1dbf7f2 | 2015-09-17 14:21:25 +0200 | [diff] [blame] | 183 | /* Select edge */ |
| 184 | if (rising) |
Linus Walleij | 438a2c9 | 2013-11-26 12:59:51 +0100 | [diff] [blame] | 185 | gpioiev |= bit; |
Linus Walleij | 1dbf7f2 | 2015-09-17 14:21:25 +0200 | [diff] [blame] | 186 | else |
Linus Walleij | 438a2c9 | 2013-11-26 12:59:51 +0100 | [diff] [blame] | 187 | gpioiev &= ~bit; |
Linus Walleij | 26ba9cd | 2015-09-24 17:52:52 -0700 | [diff] [blame] | 188 | irq_set_handler_locked(d, handle_edge_irq); |
Linus Walleij | 58383c7 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 189 | dev_dbg(gc->parent, "line %d: IRQ on %s edge\n", |
Linus Walleij | 1dbf7f2 | 2015-09-17 14:21:25 +0200 | [diff] [blame] | 190 | offset, |
| 191 | rising ? "RISING" : "FALLING"); |
| 192 | } else { |
| 193 | /* No trigger: disable everything */ |
| 194 | gpiois &= ~bit; |
| 195 | gpioibe &= ~bit; |
| 196 | gpioiev &= ~bit; |
Linus Walleij | 26ba9cd | 2015-09-24 17:52:52 -0700 | [diff] [blame] | 197 | irq_set_handler_locked(d, handle_bad_irq); |
Linus Walleij | 58383c7 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 198 | dev_warn(gc->parent, "no trigger selected for line %d\n", |
Linus Walleij | 1dbf7f2 | 2015-09-17 14:21:25 +0200 | [diff] [blame] | 199 | offset); |
Linus Walleij | 438a2c9 | 2013-11-26 12:59:51 +0100 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | writeb(gpiois, chip->base + GPIOIS); |
| 203 | writeb(gpioibe, chip->base + GPIOIBE); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 204 | writeb(gpioiev, chip->base + GPIOIEV); |
| 205 | |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 206 | spin_unlock_irqrestore(&chip->lock, flags); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 207 | |
| 208 | return 0; |
| 209 | } |
| 210 | |
Thomas Gleixner | bd0b9ac | 2015-09-14 10:42:37 +0200 | [diff] [blame] | 211 | static void pl061_irq_handler(struct irq_desc *desc) |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 212 | { |
Rob Herring | 2de0dbc | 2012-01-04 10:36:07 -0600 | [diff] [blame] | 213 | unsigned long pending; |
| 214 | int offset; |
Linus Walleij | 8d5b24b | 2014-03-25 10:42:35 +0100 | [diff] [blame] | 215 | struct gpio_chip *gc = irq_desc_get_handler_data(desc); |
Linus Walleij | d81b37f | 2015-12-07 11:37:33 +0100 | [diff] [blame] | 216 | struct pl061_gpio *chip = gpiochip_get_data(gc); |
Rob Herring | dece904 | 2011-12-09 14:12:53 -0600 | [diff] [blame] | 217 | struct irq_chip *irqchip = irq_desc_get_chip(desc); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 218 | |
Rob Herring | dece904 | 2011-12-09 14:12:53 -0600 | [diff] [blame] | 219 | chained_irq_enter(irqchip, desc); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 220 | |
Rob Herring | 2de0dbc | 2012-01-04 10:36:07 -0600 | [diff] [blame] | 221 | pending = readb(chip->base + GPIOMIS); |
Rob Herring | 2de0dbc | 2012-01-04 10:36:07 -0600 | [diff] [blame] | 222 | if (pending) { |
Akinobu Mita | 984b3f5 | 2010-03-05 13:41:37 -0800 | [diff] [blame] | 223 | for_each_set_bit(offset, &pending, PL061_GPIO_NR) |
Linus Walleij | 8d5b24b | 2014-03-25 10:42:35 +0100 | [diff] [blame] | 224 | generic_handle_irq(irq_find_mapping(gc->irqdomain, |
| 225 | offset)); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 226 | } |
Rob Herring | 2de0dbc | 2012-01-04 10:36:07 -0600 | [diff] [blame] | 227 | |
Rob Herring | dece904 | 2011-12-09 14:12:53 -0600 | [diff] [blame] | 228 | chained_irq_exit(irqchip, desc); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 229 | } |
| 230 | |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 231 | static void pl061_irq_mask(struct irq_data *d) |
Rob Herring | 3ab5247 | 2011-10-21 08:05:53 -0500 | [diff] [blame] | 232 | { |
Linus Walleij | 8d5b24b | 2014-03-25 10:42:35 +0100 | [diff] [blame] | 233 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | d81b37f | 2015-12-07 11:37:33 +0100 | [diff] [blame] | 234 | struct pl061_gpio *chip = gpiochip_get_data(gc); |
Javier Martinez Canillas | bea4150 | 2014-04-27 02:00:50 +0200 | [diff] [blame] | 235 | u8 mask = BIT(irqd_to_hwirq(d) % PL061_GPIO_NR); |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 236 | u8 gpioie; |
Rob Herring | 3ab5247 | 2011-10-21 08:05:53 -0500 | [diff] [blame] | 237 | |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 238 | spin_lock(&chip->lock); |
| 239 | gpioie = readb(chip->base + GPIOIE) & ~mask; |
| 240 | writeb(gpioie, chip->base + GPIOIE); |
| 241 | spin_unlock(&chip->lock); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 242 | } |
| 243 | |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 244 | static void pl061_irq_unmask(struct irq_data *d) |
| 245 | { |
Linus Walleij | 8d5b24b | 2014-03-25 10:42:35 +0100 | [diff] [blame] | 246 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | d81b37f | 2015-12-07 11:37:33 +0100 | [diff] [blame] | 247 | struct pl061_gpio *chip = gpiochip_get_data(gc); |
Javier Martinez Canillas | bea4150 | 2014-04-27 02:00:50 +0200 | [diff] [blame] | 248 | u8 mask = BIT(irqd_to_hwirq(d) % PL061_GPIO_NR); |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 249 | u8 gpioie; |
| 250 | |
| 251 | spin_lock(&chip->lock); |
| 252 | gpioie = readb(chip->base + GPIOIE) | mask; |
| 253 | writeb(gpioie, chip->base + GPIOIE); |
| 254 | spin_unlock(&chip->lock); |
| 255 | } |
| 256 | |
Linus Walleij | 26ba9cd | 2015-09-24 17:52:52 -0700 | [diff] [blame] | 257 | /** |
| 258 | * pl061_irq_ack() - ACK an edge IRQ |
| 259 | * @d: IRQ data for this IRQ |
| 260 | * |
| 261 | * This gets called from the edge IRQ handler to ACK the edge IRQ |
| 262 | * in the GPIOIC (interrupt-clear) register. For level IRQs this is |
| 263 | * not needed: these go away when the level signal goes away. |
| 264 | */ |
| 265 | static void pl061_irq_ack(struct irq_data *d) |
| 266 | { |
| 267 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
Linus Walleij | d81b37f | 2015-12-07 11:37:33 +0100 | [diff] [blame] | 268 | struct pl061_gpio *chip = gpiochip_get_data(gc); |
Linus Walleij | 26ba9cd | 2015-09-24 17:52:52 -0700 | [diff] [blame] | 269 | u8 mask = BIT(irqd_to_hwirq(d) % PL061_GPIO_NR); |
| 270 | |
| 271 | spin_lock(&chip->lock); |
| 272 | writeb(mask, chip->base + GPIOIC); |
| 273 | spin_unlock(&chip->lock); |
| 274 | } |
| 275 | |
Sudeep Holla | 2f46205 | 2015-11-27 17:19:15 +0000 | [diff] [blame] | 276 | static int pl061_irq_set_wake(struct irq_data *d, unsigned int state) |
| 277 | { |
| 278 | struct gpio_chip *gc = irq_data_get_irq_chip_data(d); |
| 279 | |
| 280 | return irq_set_irq_wake(gc->irq_parent, state); |
| 281 | } |
| 282 | |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 283 | static struct irq_chip pl061_irqchip = { |
Linus Walleij | 9ae7e9e | 2013-11-26 14:19:44 +0100 | [diff] [blame] | 284 | .name = "pl061", |
Linus Walleij | 26ba9cd | 2015-09-24 17:52:52 -0700 | [diff] [blame] | 285 | .irq_ack = pl061_irq_ack, |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 286 | .irq_mask = pl061_irq_mask, |
| 287 | .irq_unmask = pl061_irq_unmask, |
| 288 | .irq_set_type = pl061_irq_type, |
Sudeep Holla | 2f46205 | 2015-11-27 17:19:15 +0000 | [diff] [blame] | 289 | .irq_set_wake = pl061_irq_set_wake, |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 290 | }; |
| 291 | |
Tobias Klauser | 8944df7 | 2012-10-05 11:45:28 +0200 | [diff] [blame] | 292 | static int pl061_probe(struct amba_device *adev, const struct amba_id *id) |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 293 | { |
Tobias Klauser | 8944df7 | 2012-10-05 11:45:28 +0200 | [diff] [blame] | 294 | struct device *dev = &adev->dev; |
Jingoo Han | e56aee1 | 2013-07-30 17:08:05 +0900 | [diff] [blame] | 295 | struct pl061_platform_data *pdata = dev_get_platdata(dev); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 296 | struct pl061_gpio *chip; |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 297 | int ret, irq, i, irq_base; |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 298 | |
Tobias Klauser | 8944df7 | 2012-10-05 11:45:28 +0200 | [diff] [blame] | 299 | chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 300 | if (chip == NULL) |
| 301 | return -ENOMEM; |
| 302 | |
Rob Herring | 76c05c8 | 2011-08-10 16:31:46 -0500 | [diff] [blame] | 303 | if (pdata) { |
| 304 | chip->gc.base = pdata->gpio_base; |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 305 | irq_base = pdata->irq_base; |
Linus Walleij | 7808755 | 2013-11-22 10:11:49 +0100 | [diff] [blame] | 306 | if (irq_base <= 0) { |
| 307 | dev_err(&adev->dev, "invalid IRQ base in pdata\n"); |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 308 | return -ENODEV; |
Linus Walleij | 7808755 | 2013-11-22 10:11:49 +0100 | [diff] [blame] | 309 | } |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 310 | } else { |
Rob Herring | 76c05c8 | 2011-08-10 16:31:46 -0500 | [diff] [blame] | 311 | chip->gc.base = -1; |
Haojian Zhuang | f1f7047 | 2013-02-17 19:42:49 +0800 | [diff] [blame] | 312 | irq_base = 0; |
| 313 | } |
Rob Herring | 76c05c8 | 2011-08-10 16:31:46 -0500 | [diff] [blame] | 314 | |
Jingoo Han | 09bafc3 | 2014-02-12 11:53:58 +0900 | [diff] [blame] | 315 | chip->base = devm_ioremap_resource(dev, &adev->res); |
| 316 | if (IS_ERR(chip->base)) |
| 317 | return PTR_ERR(chip->base); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 318 | |
| 319 | spin_lock_init(&chip->lock); |
Jonas Gorski | 31831f4 | 2015-10-11 17:34:18 +0200 | [diff] [blame] | 320 | if (of_property_read_bool(dev->of_node, "gpio-ranges")) { |
| 321 | chip->gc.request = gpiochip_generic_request; |
| 322 | chip->gc.free = gpiochip_generic_free; |
| 323 | } |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 324 | |
Linus Walleij | 3484f1b | 2016-04-28 13:18:59 +0200 | [diff] [blame] | 325 | chip->gc.get_direction = pl061_get_direction; |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 326 | chip->gc.direction_input = pl061_direction_input; |
| 327 | chip->gc.direction_output = pl061_direction_output; |
| 328 | chip->gc.get = pl061_get_value; |
| 329 | chip->gc.set = pl061_set_value; |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 330 | chip->gc.ngpio = PL061_GPIO_NR; |
Tobias Klauser | 8944df7 | 2012-10-05 11:45:28 +0200 | [diff] [blame] | 331 | chip->gc.label = dev_name(dev); |
Linus Walleij | 58383c7 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 332 | chip->gc.parent = dev; |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 333 | chip->gc.owner = THIS_MODULE; |
| 334 | |
Linus Walleij | d81b37f | 2015-12-07 11:37:33 +0100 | [diff] [blame] | 335 | ret = gpiochip_add_data(&chip->gc, chip); |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 336 | if (ret) |
Tobias Klauser | 8944df7 | 2012-10-05 11:45:28 +0200 | [diff] [blame] | 337 | return ret; |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 338 | |
| 339 | /* |
| 340 | * irq_chip support |
| 341 | */ |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 342 | writeb(0, chip->base + GPIOIE); /* disable irqs */ |
Tobias Klauser | 8944df7 | 2012-10-05 11:45:28 +0200 | [diff] [blame] | 343 | irq = adev->irq[0]; |
Linus Walleij | 7808755 | 2013-11-22 10:11:49 +0100 | [diff] [blame] | 344 | if (irq < 0) { |
| 345 | dev_err(&adev->dev, "invalid IRQ\n"); |
Tobias Klauser | 8944df7 | 2012-10-05 11:45:28 +0200 | [diff] [blame] | 346 | return -ENODEV; |
Linus Walleij | 7808755 | 2013-11-22 10:11:49 +0100 | [diff] [blame] | 347 | } |
Tobias Klauser | 8944df7 | 2012-10-05 11:45:28 +0200 | [diff] [blame] | 348 | |
Linus Walleij | 8d5b24b | 2014-03-25 10:42:35 +0100 | [diff] [blame] | 349 | ret = gpiochip_irqchip_add(&chip->gc, &pl061_irqchip, |
Linus Walleij | 26ba9cd | 2015-09-24 17:52:52 -0700 | [diff] [blame] | 350 | irq_base, handle_bad_irq, |
Linus Walleij | 8d5b24b | 2014-03-25 10:42:35 +0100 | [diff] [blame] | 351 | IRQ_TYPE_NONE); |
| 352 | if (ret) { |
| 353 | dev_info(&adev->dev, "could not add irqchip\n"); |
| 354 | return ret; |
Linus Walleij | 7808755 | 2013-11-22 10:11:49 +0100 | [diff] [blame] | 355 | } |
Linus Walleij | 8d5b24b | 2014-03-25 10:42:35 +0100 | [diff] [blame] | 356 | gpiochip_set_chained_irqchip(&chip->gc, &pl061_irqchip, |
| 357 | irq, pl061_irq_handler); |
Linus Walleij | 2ba3154 | 2013-11-27 08:47:02 +0100 | [diff] [blame] | 358 | |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 359 | for (i = 0; i < PL061_GPIO_NR; i++) { |
Rob Herring | 76c05c8 | 2011-08-10 16:31:46 -0500 | [diff] [blame] | 360 | if (pdata) { |
Javier Martinez Canillas | bea4150 | 2014-04-27 02:00:50 +0200 | [diff] [blame] | 361 | if (pdata->directions & (BIT(i))) |
Rob Herring | 76c05c8 | 2011-08-10 16:31:46 -0500 | [diff] [blame] | 362 | pl061_direction_output(&chip->gc, i, |
Javier Martinez Canillas | bea4150 | 2014-04-27 02:00:50 +0200 | [diff] [blame] | 363 | pdata->values & (BIT(i))); |
Rob Herring | 76c05c8 | 2011-08-10 16:31:46 -0500 | [diff] [blame] | 364 | else |
| 365 | pl061_direction_input(&chip->gc, i); |
| 366 | } |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 367 | } |
| 368 | |
Tobias Klauser | 8944df7 | 2012-10-05 11:45:28 +0200 | [diff] [blame] | 369 | amba_set_drvdata(adev, chip); |
Fabio Estevam | 76b3627 | 2014-02-26 08:12:37 -0300 | [diff] [blame] | 370 | dev_info(&adev->dev, "PL061 GPIO chip @%pa registered\n", |
| 371 | &adev->res.start); |
Deepak Sikri | e198a8de | 2011-11-18 15:20:12 +0530 | [diff] [blame] | 372 | |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 373 | return 0; |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 374 | } |
| 375 | |
Deepak Sikri | e198a8de | 2011-11-18 15:20:12 +0530 | [diff] [blame] | 376 | #ifdef CONFIG_PM |
| 377 | static int pl061_suspend(struct device *dev) |
| 378 | { |
| 379 | struct pl061_gpio *chip = dev_get_drvdata(dev); |
| 380 | int offset; |
| 381 | |
| 382 | chip->csave_regs.gpio_data = 0; |
| 383 | chip->csave_regs.gpio_dir = readb(chip->base + GPIODIR); |
| 384 | chip->csave_regs.gpio_is = readb(chip->base + GPIOIS); |
| 385 | chip->csave_regs.gpio_ibe = readb(chip->base + GPIOIBE); |
| 386 | chip->csave_regs.gpio_iev = readb(chip->base + GPIOIEV); |
| 387 | chip->csave_regs.gpio_ie = readb(chip->base + GPIOIE); |
| 388 | |
| 389 | for (offset = 0; offset < PL061_GPIO_NR; offset++) { |
Javier Martinez Canillas | bea4150 | 2014-04-27 02:00:50 +0200 | [diff] [blame] | 390 | if (chip->csave_regs.gpio_dir & (BIT(offset))) |
Deepak Sikri | e198a8de | 2011-11-18 15:20:12 +0530 | [diff] [blame] | 391 | chip->csave_regs.gpio_data |= |
| 392 | pl061_get_value(&chip->gc, offset) << offset; |
| 393 | } |
| 394 | |
| 395 | return 0; |
| 396 | } |
| 397 | |
| 398 | static int pl061_resume(struct device *dev) |
| 399 | { |
| 400 | struct pl061_gpio *chip = dev_get_drvdata(dev); |
| 401 | int offset; |
| 402 | |
| 403 | for (offset = 0; offset < PL061_GPIO_NR; offset++) { |
Javier Martinez Canillas | bea4150 | 2014-04-27 02:00:50 +0200 | [diff] [blame] | 404 | if (chip->csave_regs.gpio_dir & (BIT(offset))) |
Deepak Sikri | e198a8de | 2011-11-18 15:20:12 +0530 | [diff] [blame] | 405 | pl061_direction_output(&chip->gc, offset, |
| 406 | chip->csave_regs.gpio_data & |
Javier Martinez Canillas | bea4150 | 2014-04-27 02:00:50 +0200 | [diff] [blame] | 407 | (BIT(offset))); |
Deepak Sikri | e198a8de | 2011-11-18 15:20:12 +0530 | [diff] [blame] | 408 | else |
| 409 | pl061_direction_input(&chip->gc, offset); |
| 410 | } |
| 411 | |
| 412 | writeb(chip->csave_regs.gpio_is, chip->base + GPIOIS); |
| 413 | writeb(chip->csave_regs.gpio_ibe, chip->base + GPIOIBE); |
| 414 | writeb(chip->csave_regs.gpio_iev, chip->base + GPIOIEV); |
| 415 | writeb(chip->csave_regs.gpio_ie, chip->base + GPIOIE); |
| 416 | |
| 417 | return 0; |
| 418 | } |
| 419 | |
Viresh Kumar | 6e33ace | 2012-01-11 15:25:20 +0530 | [diff] [blame] | 420 | static const struct dev_pm_ops pl061_dev_pm_ops = { |
| 421 | .suspend = pl061_suspend, |
| 422 | .resume = pl061_resume, |
| 423 | .freeze = pl061_suspend, |
| 424 | .restore = pl061_resume, |
| 425 | }; |
Deepak Sikri | e198a8de | 2011-11-18 15:20:12 +0530 | [diff] [blame] | 426 | #endif |
| 427 | |
Russell King | 2c39c9e | 2010-07-27 08:50:16 +0100 | [diff] [blame] | 428 | static struct amba_id pl061_ids[] = { |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 429 | { |
| 430 | .id = 0x00041061, |
| 431 | .mask = 0x000fffff, |
| 432 | }, |
| 433 | { 0, 0 }, |
| 434 | }; |
| 435 | |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 436 | static struct amba_driver pl061_gpio_driver = { |
| 437 | .drv = { |
| 438 | .name = "pl061_gpio", |
Deepak Sikri | e198a8de | 2011-11-18 15:20:12 +0530 | [diff] [blame] | 439 | #ifdef CONFIG_PM |
| 440 | .pm = &pl061_dev_pm_ops, |
| 441 | #endif |
Baruch Siach | 1e9c285 | 2009-06-18 16:48:58 -0700 | [diff] [blame] | 442 | }, |
| 443 | .id_table = pl061_ids, |
| 444 | .probe = pl061_probe, |
| 445 | }; |
| 446 | |
| 447 | static int __init pl061_gpio_init(void) |
| 448 | { |
| 449 | return amba_driver_register(&pl061_gpio_driver); |
| 450 | } |
Paul Gortmaker | ef3e710 | 2016-03-27 11:44:46 -0400 | [diff] [blame] | 451 | device_initcall(pl061_gpio_init); |