blob: f74069386c135d2e4d09b1b5d7aced89406b90fb [file] [log] [blame]
Lennert Buytenhek9569dae2008-10-20 01:51:03 +02001/*
2 * arch/arm/plat-orion/gpio.c
3 *
4 * Marvell Orion SoC GPIO handling.
5 *
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
9 */
10
Andrew Lunn278b45b2012-06-27 13:40:04 +020011#define DEBUG
12
Lennert Buytenhek9569dae2008-10-20 01:51:03 +020013#include <linux/kernel.h>
14#include <linux/init.h>
Lennert Buytenhek07332312008-10-20 01:51:03 +020015#include <linux/irq.h>
Andrew Lunn278b45b2012-06-27 13:40:04 +020016#include <linux/irqdomain.h>
Lennert Buytenhek9569dae2008-10-20 01:51:03 +020017#include <linux/module.h>
18#include <linux/spinlock.h>
19#include <linux/bitops.h>
20#include <linux/io.h>
Erik Benadaa8865652009-05-28 17:08:55 -070021#include <linux/gpio.h>
Arnaud Patard (Rtp)ff3e6602012-04-18 23:16:40 +020022#include <linux/leds.h>
Andrew Lunn278b45b2012-06-27 13:40:04 +020023#include <linux/of.h>
24#include <linux/of_irq.h>
25#include <linux/of_address.h>
Rob Herringce915742012-08-29 10:16:55 -050026#include <plat/orion-gpio.h>
Lennert Buytenhek9569dae2008-10-20 01:51:03 +020027
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +010028/*
29 * GPIO unit register offsets.
30 */
31#define GPIO_OUT_OFF 0x0000
32#define GPIO_IO_CONF_OFF 0x0004
33#define GPIO_BLINK_EN_OFF 0x0008
34#define GPIO_IN_POL_OFF 0x000c
35#define GPIO_DATA_IN_OFF 0x0010
36#define GPIO_EDGE_CAUSE_OFF 0x0014
37#define GPIO_EDGE_MASK_OFF 0x0018
38#define GPIO_LEVEL_MASK_OFF 0x001c
Lennert Buytenhek9569dae2008-10-20 01:51:03 +020039
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +010040struct orion_gpio_chip {
41 struct gpio_chip chip;
42 spinlock_t lock;
43 void __iomem *base;
44 unsigned long valid_input;
45 unsigned long valid_output;
46 int mask_offset;
47 int secondary_irq_base;
Andrew Lunn278b45b2012-06-27 13:40:04 +020048 struct irq_domain *domain;
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +010049};
50
51static void __iomem *GPIO_OUT(struct orion_gpio_chip *ochip)
52{
53 return ochip->base + GPIO_OUT_OFF;
54}
55
56static void __iomem *GPIO_IO_CONF(struct orion_gpio_chip *ochip)
57{
58 return ochip->base + GPIO_IO_CONF_OFF;
59}
60
61static void __iomem *GPIO_BLINK_EN(struct orion_gpio_chip *ochip)
62{
63 return ochip->base + GPIO_BLINK_EN_OFF;
64}
65
66static void __iomem *GPIO_IN_POL(struct orion_gpio_chip *ochip)
67{
68 return ochip->base + GPIO_IN_POL_OFF;
69}
70
71static void __iomem *GPIO_DATA_IN(struct orion_gpio_chip *ochip)
72{
73 return ochip->base + GPIO_DATA_IN_OFF;
74}
75
76static void __iomem *GPIO_EDGE_CAUSE(struct orion_gpio_chip *ochip)
77{
78 return ochip->base + GPIO_EDGE_CAUSE_OFF;
79}
80
81static void __iomem *GPIO_EDGE_MASK(struct orion_gpio_chip *ochip)
82{
83 return ochip->base + ochip->mask_offset + GPIO_EDGE_MASK_OFF;
84}
85
86static void __iomem *GPIO_LEVEL_MASK(struct orion_gpio_chip *ochip)
87{
88 return ochip->base + ochip->mask_offset + GPIO_LEVEL_MASK_OFF;
89}
90
91
92static struct orion_gpio_chip orion_gpio_chips[2];
93static int orion_gpio_chip_count;
94
95static inline void
96__set_direction(struct orion_gpio_chip *ochip, unsigned pin, int input)
Lennert Buytenhek9569dae2008-10-20 01:51:03 +020097{
98 u32 u;
99
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100100 u = readl(GPIO_IO_CONF(ochip));
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200101 if (input)
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100102 u |= 1 << pin;
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200103 else
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100104 u &= ~(1 << pin);
105 writel(u, GPIO_IO_CONF(ochip));
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200106}
107
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100108static void __set_level(struct orion_gpio_chip *ochip, unsigned pin, int high)
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200109{
110 u32 u;
111
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100112 u = readl(GPIO_OUT(ochip));
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200113 if (high)
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100114 u |= 1 << pin;
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200115 else
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100116 u &= ~(1 << pin);
117 writel(u, GPIO_OUT(ochip));
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200118}
119
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100120static inline void
121__set_blinking(struct orion_gpio_chip *ochip, unsigned pin, int blink)
Erik Benadaa8865652009-05-28 17:08:55 -0700122{
123 u32 u;
124
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100125 u = readl(GPIO_BLINK_EN(ochip));
Erik Benadaa8865652009-05-28 17:08:55 -0700126 if (blink)
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100127 u |= 1 << pin;
Erik Benadaa8865652009-05-28 17:08:55 -0700128 else
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100129 u &= ~(1 << pin);
130 writel(u, GPIO_BLINK_EN(ochip));
Erik Benadaa8865652009-05-28 17:08:55 -0700131}
132
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100133static inline int
134orion_gpio_is_valid(struct orion_gpio_chip *ochip, unsigned pin, int mode)
Erik Benadaa8865652009-05-28 17:08:55 -0700135{
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100136 if (pin >= ochip->chip.ngpio)
137 goto err_out;
138
139 if ((mode & GPIO_INPUT_OK) && !test_bit(pin, &ochip->valid_input))
140 goto err_out;
141
142 if ((mode & GPIO_OUTPUT_OK) && !test_bit(pin, &ochip->valid_output))
143 goto err_out;
144
145 return 1;
Erik Benadaa8865652009-05-28 17:08:55 -0700146
147err_out:
148 pr_debug("%s: invalid GPIO %d\n", __func__, pin);
149 return false;
150}
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200151
152/*
Alexandre Courbot7fd2bf32013-03-28 05:07:46 -0700153 * GPIO primitives.
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200154 */
Erik Benadaa8865652009-05-28 17:08:55 -0700155static int orion_gpio_request(struct gpio_chip *chip, unsigned pin)
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200156{
Linus Walleij66d718d2015-12-08 13:28:31 +0100157 struct orion_gpio_chip *ochip = gpiochip_get_data(chip);
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100158
159 if (orion_gpio_is_valid(ochip, pin, GPIO_INPUT_OK) ||
160 orion_gpio_is_valid(ochip, pin, GPIO_OUTPUT_OK))
Erik Benadaa8865652009-05-28 17:08:55 -0700161 return 0;
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100162
Erik Benadaa8865652009-05-28 17:08:55 -0700163 return -EINVAL;
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200164}
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200165
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100166static int orion_gpio_direction_input(struct gpio_chip *chip, unsigned pin)
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200167{
Linus Walleij66d718d2015-12-08 13:28:31 +0100168 struct orion_gpio_chip *ochip = gpiochip_get_data(chip);
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100169 unsigned long flags;
170
171 if (!orion_gpio_is_valid(ochip, pin, GPIO_INPUT_OK))
172 return -EINVAL;
173
174 spin_lock_irqsave(&ochip->lock, flags);
175 __set_direction(ochip, pin, 1);
176 spin_unlock_irqrestore(&ochip->lock, flags);
177
178 return 0;
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200179}
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200180
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100181static int orion_gpio_get(struct gpio_chip *chip, unsigned pin)
182{
Linus Walleij66d718d2015-12-08 13:28:31 +0100183 struct orion_gpio_chip *ochip = gpiochip_get_data(chip);
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100184 int val;
185
186 if (readl(GPIO_IO_CONF(ochip)) & (1 << pin)) {
187 val = readl(GPIO_DATA_IN(ochip)) ^ readl(GPIO_IN_POL(ochip));
188 } else {
189 val = readl(GPIO_OUT(ochip));
190 }
191
192 return (val >> pin) & 1;
193}
194
195static int
196orion_gpio_direction_output(struct gpio_chip *chip, unsigned pin, int value)
197{
Linus Walleij66d718d2015-12-08 13:28:31 +0100198 struct orion_gpio_chip *ochip = gpiochip_get_data(chip);
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100199 unsigned long flags;
200
201 if (!orion_gpio_is_valid(ochip, pin, GPIO_OUTPUT_OK))
202 return -EINVAL;
203
204 spin_lock_irqsave(&ochip->lock, flags);
205 __set_blinking(ochip, pin, 0);
206 __set_level(ochip, pin, value);
207 __set_direction(ochip, pin, 0);
208 spin_unlock_irqrestore(&ochip->lock, flags);
209
210 return 0;
211}
212
213static void orion_gpio_set(struct gpio_chip *chip, unsigned pin, int value)
214{
Linus Walleij66d718d2015-12-08 13:28:31 +0100215 struct orion_gpio_chip *ochip = gpiochip_get_data(chip);
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100216 unsigned long flags;
217
218 spin_lock_irqsave(&ochip->lock, flags);
219 __set_level(ochip, pin, value);
220 spin_unlock_irqrestore(&ochip->lock, flags);
221}
222
223static int orion_gpio_to_irq(struct gpio_chip *chip, unsigned pin)
224{
Linus Walleij66d718d2015-12-08 13:28:31 +0100225 struct orion_gpio_chip *ochip = gpiochip_get_data(chip);
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100226
Andrew Lunn278b45b2012-06-27 13:40:04 +0200227 return irq_create_mapping(ochip->domain,
228 ochip->secondary_irq_base + pin);
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100229}
230
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200231/*
232 * Orion-specific GPIO API extensions.
233 */
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100234static struct orion_gpio_chip *orion_gpio_chip_find(int pin)
235{
236 int i;
237
238 for (i = 0; i < orion_gpio_chip_count; i++) {
239 struct orion_gpio_chip *ochip = orion_gpio_chips + i;
240 struct gpio_chip *chip = &ochip->chip;
241
242 if (pin >= chip->base && pin < chip->base + chip->ngpio)
243 return ochip;
244 }
245
246 return NULL;
247}
248
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200249void __init orion_gpio_set_unused(unsigned pin)
250{
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100251 struct orion_gpio_chip *ochip = orion_gpio_chip_find(pin);
252
253 if (ochip == NULL)
254 return;
255
256 pin -= ochip->chip.base;
257
Erik Benadaa8865652009-05-28 17:08:55 -0700258 /* Configure as output, drive low. */
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100259 __set_level(ochip, pin, 0);
260 __set_direction(ochip, pin, 0);
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200261}
262
Nicolas Pitre28d27cf2009-02-02 15:27:55 -0500263void __init orion_gpio_set_valid(unsigned pin, int mode)
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200264{
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100265 struct orion_gpio_chip *ochip = orion_gpio_chip_find(pin);
266
267 if (ochip == NULL)
268 return;
269
270 pin -= ochip->chip.base;
271
Nicolas Pitre28d27cf2009-02-02 15:27:55 -0500272 if (mode == 1)
273 mode = GPIO_INPUT_OK | GPIO_OUTPUT_OK;
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100274
Nicolas Pitre28d27cf2009-02-02 15:27:55 -0500275 if (mode & GPIO_INPUT_OK)
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100276 __set_bit(pin, &ochip->valid_input);
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200277 else
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100278 __clear_bit(pin, &ochip->valid_input);
279
Nicolas Pitre28d27cf2009-02-02 15:27:55 -0500280 if (mode & GPIO_OUTPUT_OK)
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100281 __set_bit(pin, &ochip->valid_output);
Nicolas Pitre28d27cf2009-02-02 15:27:55 -0500282 else
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100283 __clear_bit(pin, &ochip->valid_output);
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200284}
285
286void orion_gpio_set_blink(unsigned pin, int blink)
287{
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100288 struct orion_gpio_chip *ochip = orion_gpio_chip_find(pin);
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200289 unsigned long flags;
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200290
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100291 if (ochip == NULL)
292 return;
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200293
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100294 spin_lock_irqsave(&ochip->lock, flags);
Arnaud Patard (Rtp)92a486e2012-04-18 23:16:39 +0200295 __set_level(ochip, pin & 31, 0);
296 __set_blinking(ochip, pin & 31, blink);
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100297 spin_unlock_irqrestore(&ochip->lock, flags);
Lennert Buytenhek9569dae2008-10-20 01:51:03 +0200298}
299EXPORT_SYMBOL(orion_gpio_set_blink);
Lennert Buytenhek07332312008-10-20 01:51:03 +0200300
Arnaud Patard (Rtp)ff3e6602012-04-18 23:16:40 +0200301#define ORION_BLINK_HALF_PERIOD 100 /* ms */
302
Mika Westerbergc673a2b2014-10-31 13:40:58 +0200303int orion_gpio_led_blink_set(struct gpio_desc *desc, int state,
Arnaud Patard (Rtp)ff3e6602012-04-18 23:16:40 +0200304 unsigned long *delay_on, unsigned long *delay_off)
305{
Mika Westerbergc673a2b2014-10-31 13:40:58 +0200306 unsigned gpio = desc_to_gpio(desc);
Arnaud Patard (Rtp)ff3e6602012-04-18 23:16:40 +0200307
308 if (delay_on && delay_off && !*delay_on && !*delay_off)
309 *delay_on = *delay_off = ORION_BLINK_HALF_PERIOD;
310
311 switch (state) {
312 case GPIO_LED_NO_BLINK_LOW:
313 case GPIO_LED_NO_BLINK_HIGH:
314 orion_gpio_set_blink(gpio, 0);
315 gpio_set_value(gpio, state);
316 break;
317 case GPIO_LED_BLINK:
318 orion_gpio_set_blink(gpio, 1);
319 }
320 return 0;
321}
322EXPORT_SYMBOL_GPL(orion_gpio_led_blink_set);
323
Lennert Buytenhek07332312008-10-20 01:51:03 +0200324
325/*****************************************************************************
326 * Orion GPIO IRQ
327 *
328 * GPIO_IN_POL register controls whether GPIO_DATA_IN will hold the same
329 * value of the line or the opposite value.
330 *
331 * Level IRQ handlers: DATA_IN is used directly as cause register.
332 * Interrupt are masked by LEVEL_MASK registers.
333 * Edge IRQ handlers: Change in DATA_IN are latched in EDGE_CAUSE.
334 * Interrupt are masked by EDGE_MASK registers.
335 * Both-edge handlers: Similar to regular Edge handlers, but also swaps
336 * the polarity to catch the next line transaction.
337 * This is a race condition that might not perfectly
338 * work on some use cases.
339 *
340 * Every eight GPIO lines are grouped (OR'ed) before going up to main
341 * cause register.
342 *
343 * EDGE cause mask
344 * data-in /--------| |-----| |----\
345 * -----| |----- ---- to main cause reg
346 * X \----------------| |----/
347 * polarity LEVEL mask
348 *
349 ****************************************************************************/
Lennert Buytenhek07332312008-10-20 01:51:03 +0200350
Lennert Buytenhek3b0c8d42010-11-29 11:17:38 +0100351static int gpio_irq_set_type(struct irq_data *d, u32 type)
Lennert Buytenhek07332312008-10-20 01:51:03 +0200352{
Thomas Gleixnere59347a2011-04-14 19:17:57 +0200353 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
354 struct irq_chip_type *ct = irq_data_get_chip_type(d);
355 struct orion_gpio_chip *ochip = gc->private;
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100356 int pin;
Lennert Buytenhek07332312008-10-20 01:51:03 +0200357 u32 u;
358
Andrew Lunn278b45b2012-06-27 13:40:04 +0200359 pin = d->hwirq - ochip->secondary_irq_base;
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100360
361 u = readl(GPIO_IO_CONF(ochip)) & (1 << pin);
Lennert Buytenhek07332312008-10-20 01:51:03 +0200362 if (!u) {
Lennert Buytenhek07332312008-10-20 01:51:03 +0200363 return -EINVAL;
364 }
365
Thomas Gleixnere59347a2011-04-14 19:17:57 +0200366 type &= IRQ_TYPE_SENSE_MASK;
367 if (type == IRQ_TYPE_NONE)
Lennert Buytenhek07332312008-10-20 01:51:03 +0200368 return -EINVAL;
Thomas Gleixnere59347a2011-04-14 19:17:57 +0200369
370 /* Check if we need to change chip and handler */
371 if (!(ct->type & type))
372 if (irq_setup_alt_chip(d, type))
373 return -EINVAL;
Lennert Buytenhek07332312008-10-20 01:51:03 +0200374
375 /*
376 * Configure interrupt polarity.
377 */
378 if (type == IRQ_TYPE_EDGE_RISING || type == IRQ_TYPE_LEVEL_HIGH) {
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100379 u = readl(GPIO_IN_POL(ochip));
380 u &= ~(1 << pin);
381 writel(u, GPIO_IN_POL(ochip));
Lennert Buytenhek07332312008-10-20 01:51:03 +0200382 } else if (type == IRQ_TYPE_EDGE_FALLING || type == IRQ_TYPE_LEVEL_LOW) {
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100383 u = readl(GPIO_IN_POL(ochip));
384 u |= 1 << pin;
385 writel(u, GPIO_IN_POL(ochip));
Lennert Buytenhek07332312008-10-20 01:51:03 +0200386 } else if (type == IRQ_TYPE_EDGE_BOTH) {
387 u32 v;
388
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100389 v = readl(GPIO_IN_POL(ochip)) ^ readl(GPIO_DATA_IN(ochip));
Lennert Buytenhek07332312008-10-20 01:51:03 +0200390
391 /*
392 * set initial polarity based on current input level
393 */
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100394 u = readl(GPIO_IN_POL(ochip));
395 if (v & (1 << pin))
396 u |= 1 << pin; /* falling */
Lennert Buytenhek07332312008-10-20 01:51:03 +0200397 else
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100398 u &= ~(1 << pin); /* rising */
399 writel(u, GPIO_IN_POL(ochip));
Lennert Buytenhek07332312008-10-20 01:51:03 +0200400 }
Lennert Buytenhek07332312008-10-20 01:51:03 +0200401 return 0;
402}
403
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200404static void gpio_irq_handler(struct irq_desc *desc)
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100405{
Jiang Liuf5753982015-06-04 12:13:19 +0800406 struct orion_gpio_chip *ochip = irq_desc_get_handler_data(desc);
Thomas Gleixnere83bbb12011-03-24 12:35:19 +0100407 u32 cause, type;
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100408 int i;
Lennert Buytenhek07332312008-10-20 01:51:03 +0200409
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100410 if (ochip == NULL)
411 return;
Lennert Buytenhek07332312008-10-20 01:51:03 +0200412
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100413 cause = readl(GPIO_DATA_IN(ochip)) & readl(GPIO_LEVEL_MASK(ochip));
414 cause |= readl(GPIO_EDGE_CAUSE(ochip)) & readl(GPIO_EDGE_MASK(ochip));
Lennert Buytenhek07332312008-10-20 01:51:03 +0200415
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100416 for (i = 0; i < ochip->chip.ngpio; i++) {
417 int irq;
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100418
419 irq = ochip->secondary_irq_base + i;
420
421 if (!(cause & (1 << i)))
Lennert Buytenhek07332312008-10-20 01:51:03 +0200422 continue;
423
Javier Martinez Canillasf88704c2013-06-14 18:40:47 +0200424 type = irq_get_trigger_type(irq);
Thomas Gleixnere83bbb12011-03-24 12:35:19 +0100425 if ((type & IRQ_TYPE_SENSE_MASK) == IRQ_TYPE_EDGE_BOTH) {
Lennert Buytenhek07332312008-10-20 01:51:03 +0200426 /* Swap polarity (race with GPIO line) */
427 u32 polarity;
428
Lennert Buytenhek9eac6d02010-12-14 12:54:03 +0100429 polarity = readl(GPIO_IN_POL(ochip));
430 polarity ^= 1 << i;
431 writel(polarity, GPIO_IN_POL(ochip));
Lennert Buytenhek07332312008-10-20 01:51:03 +0200432 }
Thomas Gleixnere83bbb12011-03-24 12:35:19 +0100433 generic_handle_irq(irq);
Lennert Buytenhek07332312008-10-20 01:51:03 +0200434 }
435}
Andrew Lunn278b45b2012-06-27 13:40:04 +0200436
Simon Guinot8d007482013-03-24 15:45:30 +0100437#ifdef CONFIG_DEBUG_FS
438#include <linux/seq_file.h>
439
440static void orion_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
441{
Linus Walleij66d718d2015-12-08 13:28:31 +0100442
443 struct orion_gpio_chip *ochip = gpiochip_get_data(chip);
Simon Guinot8d007482013-03-24 15:45:30 +0100444 u32 out, io_conf, blink, in_pol, data_in, cause, edg_msk, lvl_msk;
445 int i;
446
447 out = readl_relaxed(GPIO_OUT(ochip));
448 io_conf = readl_relaxed(GPIO_IO_CONF(ochip));
449 blink = readl_relaxed(GPIO_BLINK_EN(ochip));
450 in_pol = readl_relaxed(GPIO_IN_POL(ochip));
451 data_in = readl_relaxed(GPIO_DATA_IN(ochip));
452 cause = readl_relaxed(GPIO_EDGE_CAUSE(ochip));
453 edg_msk = readl_relaxed(GPIO_EDGE_MASK(ochip));
454 lvl_msk = readl_relaxed(GPIO_LEVEL_MASK(ochip));
455
456 for (i = 0; i < chip->ngpio; i++) {
457 const char *label;
458 u32 msk;
459 bool is_out;
460
461 label = gpiochip_is_requested(chip, i);
462 if (!label)
463 continue;
464
465 msk = 1 << i;
466 is_out = !(io_conf & msk);
467
468 seq_printf(s, " gpio-%-3d (%-20.20s)", chip->base + i, label);
469
470 if (is_out) {
471 seq_printf(s, " out %s %s\n",
472 out & msk ? "hi" : "lo",
473 blink & msk ? "(blink )" : "");
474 continue;
475 }
476
477 seq_printf(s, " in %s (act %s) - IRQ",
478 (data_in ^ in_pol) & msk ? "hi" : "lo",
479 in_pol & msk ? "lo" : "hi");
480 if (!((edg_msk | lvl_msk) & msk)) {
481 seq_printf(s, " disabled\n");
482 continue;
483 }
484 if (edg_msk & msk)
485 seq_printf(s, " edge ");
486 if (lvl_msk & msk)
487 seq_printf(s, " level");
488 seq_printf(s, " (%s)\n", cause & msk ? "pending" : "clear ");
489 }
490}
491#else
492#define orion_gpio_dbg_show NULL
493#endif
494
Evgeniy Dushistov9ece8832014-07-26 19:56:59 +0400495static void orion_gpio_unmask_irq(struct irq_data *d)
496{
497 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
498 struct irq_chip_type *ct = irq_data_get_chip_type(d);
499 u32 reg_val;
500 u32 mask = d->mask;
501
502 irq_gc_lock(gc);
Gregory CLEMENT2f90bce2014-11-25 16:19:12 +0100503 reg_val = irq_reg_readl(gc, ct->regs.mask);
Evgeniy Dushistov9ece8832014-07-26 19:56:59 +0400504 reg_val |= mask;
Gregory CLEMENT2f90bce2014-11-25 16:19:12 +0100505 irq_reg_writel(gc, reg_val, ct->regs.mask);
Evgeniy Dushistov9ece8832014-07-26 19:56:59 +0400506 irq_gc_unlock(gc);
507}
508
509static void orion_gpio_mask_irq(struct irq_data *d)
510{
511 struct irq_chip_generic *gc = irq_data_get_irq_chip_data(d);
512 struct irq_chip_type *ct = irq_data_get_chip_type(d);
513 u32 mask = d->mask;
514 u32 reg_val;
515
516 irq_gc_lock(gc);
Gregory CLEMENT2f90bce2014-11-25 16:19:12 +0100517 reg_val = irq_reg_readl(gc, ct->regs.mask);
Evgeniy Dushistov9ece8832014-07-26 19:56:59 +0400518 reg_val &= ~mask;
Gregory CLEMENT2f90bce2014-11-25 16:19:12 +0100519 irq_reg_writel(gc, reg_val, ct->regs.mask);
Evgeniy Dushistov9ece8832014-07-26 19:56:59 +0400520 irq_gc_unlock(gc);
521}
522
Andrew Lunn278b45b2012-06-27 13:40:04 +0200523void __init orion_gpio_init(struct device_node *np,
524 int gpio_base, int ngpio,
525 void __iomem *base, int mask_offset,
526 int secondary_irq_base,
527 int irqs[4])
528{
529 struct orion_gpio_chip *ochip;
530 struct irq_chip_generic *gc;
531 struct irq_chip_type *ct;
532 char gc_label[16];
533 int i;
534
535 if (orion_gpio_chip_count == ARRAY_SIZE(orion_gpio_chips))
536 return;
537
538 snprintf(gc_label, sizeof(gc_label), "orion_gpio%d",
539 orion_gpio_chip_count);
540
541 ochip = orion_gpio_chips + orion_gpio_chip_count;
542 ochip->chip.label = kstrdup(gc_label, GFP_KERNEL);
543 ochip->chip.request = orion_gpio_request;
544 ochip->chip.direction_input = orion_gpio_direction_input;
545 ochip->chip.get = orion_gpio_get;
546 ochip->chip.direction_output = orion_gpio_direction_output;
547 ochip->chip.set = orion_gpio_set;
548 ochip->chip.to_irq = orion_gpio_to_irq;
549 ochip->chip.base = gpio_base;
550 ochip->chip.ngpio = ngpio;
551 ochip->chip.can_sleep = 0;
552#ifdef CONFIG_OF
553 ochip->chip.of_node = np;
554#endif
Simon Guinot8d007482013-03-24 15:45:30 +0100555 ochip->chip.dbg_show = orion_gpio_dbg_show;
Andrew Lunn278b45b2012-06-27 13:40:04 +0200556
557 spin_lock_init(&ochip->lock);
558 ochip->base = (void __iomem *)base;
559 ochip->valid_input = 0;
560 ochip->valid_output = 0;
561 ochip->mask_offset = mask_offset;
562 ochip->secondary_irq_base = secondary_irq_base;
563
Linus Walleij66d718d2015-12-08 13:28:31 +0100564 gpiochip_add_data(&ochip->chip, ochip);
Andrew Lunn278b45b2012-06-27 13:40:04 +0200565
566 /*
567 * Mask and clear GPIO interrupts.
568 */
569 writel(0, GPIO_EDGE_CAUSE(ochip));
570 writel(0, GPIO_EDGE_MASK(ochip));
571 writel(0, GPIO_LEVEL_MASK(ochip));
572
573 /* Setup the interrupt handlers. Each chip can have up to 4
574 * interrupt handlers, with each handler dealing with 8 GPIO
575 * pins. */
576
577 for (i = 0; i < 4; i++) {
578 if (irqs[i]) {
Thomas Gleixner206287c2015-06-21 21:25:10 +0200579 irq_set_chained_handler_and_data(irqs[i],
580 gpio_irq_handler,
581 ochip);
Andrew Lunn278b45b2012-06-27 13:40:04 +0200582 }
583 }
584
585 gc = irq_alloc_generic_chip("orion_gpio_irq", 2,
586 secondary_irq_base,
587 ochip->base, handle_level_irq);
588 gc->private = ochip;
589 ct = gc->chip_types;
590 ct->regs.mask = ochip->mask_offset + GPIO_LEVEL_MASK_OFF;
591 ct->type = IRQ_TYPE_LEVEL_HIGH | IRQ_TYPE_LEVEL_LOW;
Evgeniy Dushistov9ece8832014-07-26 19:56:59 +0400592 ct->chip.irq_mask = orion_gpio_mask_irq;
593 ct->chip.irq_unmask = orion_gpio_unmask_irq;
Andrew Lunn278b45b2012-06-27 13:40:04 +0200594 ct->chip.irq_set_type = gpio_irq_set_type;
595 ct->chip.name = ochip->chip.label;
596
597 ct++;
598 ct->regs.mask = ochip->mask_offset + GPIO_EDGE_MASK_OFF;
599 ct->regs.ack = GPIO_EDGE_CAUSE_OFF;
600 ct->type = IRQ_TYPE_EDGE_RISING | IRQ_TYPE_EDGE_FALLING;
601 ct->chip.irq_ack = irq_gc_ack_clr_bit;
Evgeniy Dushistov9ece8832014-07-26 19:56:59 +0400602 ct->chip.irq_mask = orion_gpio_mask_irq;
603 ct->chip.irq_unmask = orion_gpio_unmask_irq;
Andrew Lunn278b45b2012-06-27 13:40:04 +0200604 ct->chip.irq_set_type = gpio_irq_set_type;
605 ct->handler = handle_edge_irq;
606 ct->chip.name = ochip->chip.label;
607
608 irq_setup_generic_chip(gc, IRQ_MSK(ngpio), IRQ_GC_INIT_MASK_CACHE,
609 IRQ_NOREQUEST, IRQ_LEVEL | IRQ_NOPROBE);
610
611 /* Setup irq domain on top of the generic chip. */
612 ochip->domain = irq_domain_add_legacy(np,
613 ochip->chip.ngpio,
614 ochip->secondary_irq_base,
615 ochip->secondary_irq_base,
616 &irq_domain_simple_ops,
617 ochip);
618 if (!ochip->domain)
619 panic("%s: couldn't allocate irq domain (DT).\n",
620 ochip->chip.label);
621
622 orion_gpio_chip_count++;
623}