gpio: max77620: Add missing dependency on GPIOLIB_IRQCHIP
[linux-block.git] / drivers / gpio / gpio-zynq.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
3242ba11
HK
2/*
3 * Xilinx Zynq GPIO device driver
4 *
5 * Copyright (C) 2009 - 2014 Xilinx, Inc.
3242ba11
HK
6 */
7
8#include <linux/bitops.h>
9#include <linux/clk.h>
10#include <linux/gpio/driver.h>
11#include <linux/init.h>
12#include <linux/interrupt.h>
13#include <linux/io.h>
14#include <linux/module.h>
15#include <linux/platform_device.h>
16#include <linux/pm_runtime.h>
bdf7a4ae 17#include <linux/of.h>
3242ba11
HK
18
19#define DRIVER_NAME "zynq-gpio"
20
21/* Maximum banks */
22#define ZYNQ_GPIO_MAX_BANK 4
bdf7a4ae 23#define ZYNQMP_GPIO_MAX_BANK 6
3242ba11
HK
24
25#define ZYNQ_GPIO_BANK0_NGPIO 32
26#define ZYNQ_GPIO_BANK1_NGPIO 22
27#define ZYNQ_GPIO_BANK2_NGPIO 32
28#define ZYNQ_GPIO_BANK3_NGPIO 32
29
bdf7a4ae
AKV
30#define ZYNQMP_GPIO_BANK0_NGPIO 26
31#define ZYNQMP_GPIO_BANK1_NGPIO 26
32#define ZYNQMP_GPIO_BANK2_NGPIO 26
33#define ZYNQMP_GPIO_BANK3_NGPIO 32
34#define ZYNQMP_GPIO_BANK4_NGPIO 32
35#define ZYNQMP_GPIO_BANK5_NGPIO 32
36
37#define ZYNQ_GPIO_NR_GPIOS 118
38#define ZYNQMP_GPIO_NR_GPIOS 174
39
40#define ZYNQ_GPIO_BANK0_PIN_MIN(str) 0
41#define ZYNQ_GPIO_BANK0_PIN_MAX(str) (ZYNQ_GPIO_BANK0_PIN_MIN(str) + \
42 ZYNQ##str##_GPIO_BANK0_NGPIO - 1)
43#define ZYNQ_GPIO_BANK1_PIN_MIN(str) (ZYNQ_GPIO_BANK0_PIN_MAX(str) + 1)
44#define ZYNQ_GPIO_BANK1_PIN_MAX(str) (ZYNQ_GPIO_BANK1_PIN_MIN(str) + \
45 ZYNQ##str##_GPIO_BANK1_NGPIO - 1)
46#define ZYNQ_GPIO_BANK2_PIN_MIN(str) (ZYNQ_GPIO_BANK1_PIN_MAX(str) + 1)
47#define ZYNQ_GPIO_BANK2_PIN_MAX(str) (ZYNQ_GPIO_BANK2_PIN_MIN(str) + \
48 ZYNQ##str##_GPIO_BANK2_NGPIO - 1)
49#define ZYNQ_GPIO_BANK3_PIN_MIN(str) (ZYNQ_GPIO_BANK2_PIN_MAX(str) + 1)
50#define ZYNQ_GPIO_BANK3_PIN_MAX(str) (ZYNQ_GPIO_BANK3_PIN_MIN(str) + \
51 ZYNQ##str##_GPIO_BANK3_NGPIO - 1)
52#define ZYNQ_GPIO_BANK4_PIN_MIN(str) (ZYNQ_GPIO_BANK3_PIN_MAX(str) + 1)
53#define ZYNQ_GPIO_BANK4_PIN_MAX(str) (ZYNQ_GPIO_BANK4_PIN_MIN(str) + \
54 ZYNQ##str##_GPIO_BANK4_NGPIO - 1)
55#define ZYNQ_GPIO_BANK5_PIN_MIN(str) (ZYNQ_GPIO_BANK4_PIN_MAX(str) + 1)
56#define ZYNQ_GPIO_BANK5_PIN_MAX(str) (ZYNQ_GPIO_BANK5_PIN_MIN(str) + \
57 ZYNQ##str##_GPIO_BANK5_NGPIO - 1)
3242ba11 58
3242ba11
HK
59/* Register offsets for the GPIO device */
60/* LSW Mask & Data -WO */
61#define ZYNQ_GPIO_DATA_LSW_OFFSET(BANK) (0x000 + (8 * BANK))
62/* MSW Mask & Data -WO */
63#define ZYNQ_GPIO_DATA_MSW_OFFSET(BANK) (0x004 + (8 * BANK))
64/* Data Register-RW */
06aa0908 65#define ZYNQ_GPIO_DATA_OFFSET(BANK) (0x040 + (4 * BANK))
3242ba11
HK
66#define ZYNQ_GPIO_DATA_RO_OFFSET(BANK) (0x060 + (4 * BANK))
67/* Direction mode reg-RW */
68#define ZYNQ_GPIO_DIRM_OFFSET(BANK) (0x204 + (0x40 * BANK))
69/* Output enable reg-RW */
70#define ZYNQ_GPIO_OUTEN_OFFSET(BANK) (0x208 + (0x40 * BANK))
71/* Interrupt mask reg-RO */
72#define ZYNQ_GPIO_INTMASK_OFFSET(BANK) (0x20C + (0x40 * BANK))
73/* Interrupt enable reg-WO */
74#define ZYNQ_GPIO_INTEN_OFFSET(BANK) (0x210 + (0x40 * BANK))
75/* Interrupt disable reg-WO */
76#define ZYNQ_GPIO_INTDIS_OFFSET(BANK) (0x214 + (0x40 * BANK))
77/* Interrupt status reg-RO */
78#define ZYNQ_GPIO_INTSTS_OFFSET(BANK) (0x218 + (0x40 * BANK))
79/* Interrupt type reg-RW */
80#define ZYNQ_GPIO_INTTYPE_OFFSET(BANK) (0x21C + (0x40 * BANK))
81/* Interrupt polarity reg-RW */
82#define ZYNQ_GPIO_INTPOL_OFFSET(BANK) (0x220 + (0x40 * BANK))
83/* Interrupt on any, reg-RW */
84#define ZYNQ_GPIO_INTANY_OFFSET(BANK) (0x224 + (0x40 * BANK))
85
86/* Disable all interrupts mask */
87#define ZYNQ_GPIO_IXR_DISABLE_ALL 0xFFFFFFFF
88
89/* Mid pin number of a bank */
90#define ZYNQ_GPIO_MID_PIN_NUM 16
91
92/* GPIO upper 16 bit mask */
93#define ZYNQ_GPIO_UPPER_MASK 0xFFFF0000
94
3638bd4a
SB
95/* set to differentiate zynq from zynqmp, 0=zynqmp, 1=zynq */
96#define ZYNQ_GPIO_QUIRK_IS_ZYNQ BIT(0)
06aa0908 97#define GPIO_QUIRK_DATA_RO_BUG BIT(1)
e3296f19 98
e11de4de
SD
99struct gpio_regs {
100 u32 datamsw[ZYNQMP_GPIO_MAX_BANK];
101 u32 datalsw[ZYNQMP_GPIO_MAX_BANK];
102 u32 dirm[ZYNQMP_GPIO_MAX_BANK];
103 u32 outen[ZYNQMP_GPIO_MAX_BANK];
104 u32 int_en[ZYNQMP_GPIO_MAX_BANK];
105 u32 int_dis[ZYNQMP_GPIO_MAX_BANK];
106 u32 int_type[ZYNQMP_GPIO_MAX_BANK];
107 u32 int_polarity[ZYNQMP_GPIO_MAX_BANK];
108 u32 int_any[ZYNQMP_GPIO_MAX_BANK];
109};
eb73d6ea 110
3242ba11
HK
111/**
112 * struct zynq_gpio - gpio device private data structure
113 * @chip: instance of the gpio_chip
114 * @base_addr: base address of the GPIO device
115 * @clk: clock resource for this controller
59e22114 116 * @irq: interrupt for the GPIO device
bdf7a4ae 117 * @p_data: pointer to platform data
e11de4de 118 * @context: context registers
3242ba11
HK
119 */
120struct zynq_gpio {
121 struct gpio_chip chip;
122 void __iomem *base_addr;
123 struct clk *clk;
59e22114 124 int irq;
bdf7a4ae 125 const struct zynq_platform_data *p_data;
e11de4de 126 struct gpio_regs context;
bdf7a4ae
AKV
127};
128
129/**
130 * struct zynq_platform_data - zynq gpio platform data structure
131 * @label: string to store in gpio->label
6ae5104c 132 * @quirks: Flags is used to identify the platform
bdf7a4ae
AKV
133 * @ngpio: max number of gpio pins
134 * @max_bank: maximum number of gpio banks
135 * @bank_min: this array represents bank's min pin
136 * @bank_max: this array represents bank's max pin
6ae5104c 137 */
bdf7a4ae
AKV
138struct zynq_platform_data {
139 const char *label;
e3296f19 140 u32 quirks;
bdf7a4ae
AKV
141 u16 ngpio;
142 int max_bank;
143 int bank_min[ZYNQMP_GPIO_MAX_BANK];
144 int bank_max[ZYNQMP_GPIO_MAX_BANK];
3242ba11
HK
145};
146
6dd85950
LPC
147static struct irq_chip zynq_gpio_level_irqchip;
148static struct irq_chip zynq_gpio_edge_irqchip;
fa9795d1 149
3638bd4a
SB
150/**
151 * zynq_gpio_is_zynq - test if HW is zynq or zynqmp
152 * @gpio: Pointer to driver data struct
153 *
154 * Return: 0 if zynqmp, 1 if zynq.
155 */
156static int zynq_gpio_is_zynq(struct zynq_gpio *gpio)
157{
158 return !!(gpio->p_data->quirks & ZYNQ_GPIO_QUIRK_IS_ZYNQ);
159}
160
06aa0908
SM
161/**
162 * gpio_data_ro_bug - test if HW bug exists or not
163 * @gpio: Pointer to driver data struct
164 *
165 * Return: 0 if bug doesnot exist, 1 if bug exists.
166 */
167static int gpio_data_ro_bug(struct zynq_gpio *gpio)
168{
169 return !!(gpio->p_data->quirks & GPIO_QUIRK_DATA_RO_BUG);
170}
171
3242ba11
HK
172/**
173 * zynq_gpio_get_bank_pin - Get the bank number and pin number within that bank
174 * for a given pin in the GPIO device
175 * @pin_num: gpio pin number within the device
176 * @bank_num: an output parameter used to return the bank number of the gpio
177 * pin
178 * @bank_pin_num: an output parameter used to return pin number within a bank
179 * for the given gpio pin
6ae5104c 180 * @gpio: gpio device data structure
3242ba11
HK
181 *
182 * Returns the bank number and pin offset within the bank.
183 */
184static inline void zynq_gpio_get_bank_pin(unsigned int pin_num,
185 unsigned int *bank_num,
bdf7a4ae
AKV
186 unsigned int *bank_pin_num,
187 struct zynq_gpio *gpio)
3242ba11 188{
bdf7a4ae
AKV
189 int bank;
190
191 for (bank = 0; bank < gpio->p_data->max_bank; bank++) {
192 if ((pin_num >= gpio->p_data->bank_min[bank]) &&
16ee62e5 193 (pin_num <= gpio->p_data->bank_max[bank])) {
2717cfca
NM
194 *bank_num = bank;
195 *bank_pin_num = pin_num -
196 gpio->p_data->bank_min[bank];
197 return;
bdf7a4ae 198 }
3242ba11 199 }
3242ba11 200
bdf7a4ae
AKV
201 /* default */
202 WARN(true, "invalid GPIO pin number: %u", pin_num);
203 *bank_num = 0;
204 *bank_pin_num = 0;
205}
016da144 206
3242ba11
HK
207/**
208 * zynq_gpio_get_value - Get the state of the specified pin of GPIO device
209 * @chip: gpio_chip instance to be worked on
210 * @pin: gpio pin number within the device
211 *
212 * This function reads the state of the specified pin of the GPIO device.
213 *
214 * Return: 0 if the pin is low, 1 if pin is high.
215 */
216static int zynq_gpio_get_value(struct gpio_chip *chip, unsigned int pin)
217{
218 u32 data;
219 unsigned int bank_num, bank_pin_num;
31a89447 220 struct zynq_gpio *gpio = gpiochip_get_data(chip);
3242ba11 221
bdf7a4ae 222 zynq_gpio_get_bank_pin(pin, &bank_num, &bank_pin_num, gpio);
3242ba11 223
06aa0908
SM
224 if (gpio_data_ro_bug(gpio)) {
225 if (zynq_gpio_is_zynq(gpio)) {
226 if (bank_num <= 1) {
227 data = readl_relaxed(gpio->base_addr +
228 ZYNQ_GPIO_DATA_RO_OFFSET(bank_num));
229 } else {
230 data = readl_relaxed(gpio->base_addr +
231 ZYNQ_GPIO_DATA_OFFSET(bank_num));
232 }
233 } else {
234 if (bank_num <= 2) {
235 data = readl_relaxed(gpio->base_addr +
236 ZYNQ_GPIO_DATA_RO_OFFSET(bank_num));
237 } else {
238 data = readl_relaxed(gpio->base_addr +
239 ZYNQ_GPIO_DATA_OFFSET(bank_num));
240 }
241 }
242 } else {
243 data = readl_relaxed(gpio->base_addr +
244 ZYNQ_GPIO_DATA_RO_OFFSET(bank_num));
245 }
3242ba11
HK
246 return (data >> bank_pin_num) & 1;
247}
248
249/**
250 * zynq_gpio_set_value - Modify the state of the pin with specified value
251 * @chip: gpio_chip instance to be worked on
252 * @pin: gpio pin number within the device
253 * @state: value used to modify the state of the specified pin
254 *
255 * This function calculates the register offset (i.e to lower 16 bits or
256 * upper 16 bits) based on the given pin number and sets the state of a
257 * gpio pin to the specified value. The state is either 0 or non-zero.
258 */
259static void zynq_gpio_set_value(struct gpio_chip *chip, unsigned int pin,
260 int state)
261{
262 unsigned int reg_offset, bank_num, bank_pin_num;
31a89447 263 struct zynq_gpio *gpio = gpiochip_get_data(chip);
3242ba11 264
bdf7a4ae 265 zynq_gpio_get_bank_pin(pin, &bank_num, &bank_pin_num, gpio);
3242ba11
HK
266
267 if (bank_pin_num >= ZYNQ_GPIO_MID_PIN_NUM) {
268 /* only 16 data bits in bit maskable reg */
269 bank_pin_num -= ZYNQ_GPIO_MID_PIN_NUM;
270 reg_offset = ZYNQ_GPIO_DATA_MSW_OFFSET(bank_num);
271 } else {
272 reg_offset = ZYNQ_GPIO_DATA_LSW_OFFSET(bank_num);
273 }
274
275 /*
276 * get the 32 bit value to be written to the mask/data register where
277 * the upper 16 bits is the mask and lower 16 bits is the data
278 */
279 state = !!state;
280 state = ~(1 << (bank_pin_num + ZYNQ_GPIO_MID_PIN_NUM)) &
281 ((state << bank_pin_num) | ZYNQ_GPIO_UPPER_MASK);
282
283 writel_relaxed(state, gpio->base_addr + reg_offset);
284}
285
286/**
287 * zynq_gpio_dir_in - Set the direction of the specified GPIO pin as input
288 * @chip: gpio_chip instance to be worked on
289 * @pin: gpio pin number within the device
290 *
291 * This function uses the read-modify-write sequence to set the direction of
292 * the gpio pin as input.
293 *
294 * Return: 0 always
295 */
296static int zynq_gpio_dir_in(struct gpio_chip *chip, unsigned int pin)
297{
298 u32 reg;
299 unsigned int bank_num, bank_pin_num;
31a89447 300 struct zynq_gpio *gpio = gpiochip_get_data(chip);
3242ba11 301
bdf7a4ae 302 zynq_gpio_get_bank_pin(pin, &bank_num, &bank_pin_num, gpio);
3242ba11 303
e3296f19
NM
304 /*
305 * On zynq bank 0 pins 7 and 8 are special and cannot be used
306 * as inputs.
307 */
3638bd4a 308 if (zynq_gpio_is_zynq(gpio) && bank_num == 0 &&
16ee62e5 309 (bank_pin_num == 7 || bank_pin_num == 8))
3242ba11
HK
310 return -EINVAL;
311
312 /* clear the bit in direction mode reg to set the pin as input */
313 reg = readl_relaxed(gpio->base_addr + ZYNQ_GPIO_DIRM_OFFSET(bank_num));
314 reg &= ~BIT(bank_pin_num);
315 writel_relaxed(reg, gpio->base_addr + ZYNQ_GPIO_DIRM_OFFSET(bank_num));
316
317 return 0;
318}
319
320/**
321 * zynq_gpio_dir_out - Set the direction of the specified GPIO pin as output
322 * @chip: gpio_chip instance to be worked on
323 * @pin: gpio pin number within the device
324 * @state: value to be written to specified pin
325 *
326 * This function sets the direction of specified GPIO pin as output, configures
327 * the Output Enable register for the pin and uses zynq_gpio_set to set
328 * the state of the pin to the value specified.
329 *
330 * Return: 0 always
331 */
332static int zynq_gpio_dir_out(struct gpio_chip *chip, unsigned int pin,
333 int state)
334{
335 u32 reg;
336 unsigned int bank_num, bank_pin_num;
31a89447 337 struct zynq_gpio *gpio = gpiochip_get_data(chip);
3242ba11 338
bdf7a4ae 339 zynq_gpio_get_bank_pin(pin, &bank_num, &bank_pin_num, gpio);
3242ba11
HK
340
341 /* set the GPIO pin as output */
342 reg = readl_relaxed(gpio->base_addr + ZYNQ_GPIO_DIRM_OFFSET(bank_num));
343 reg |= BIT(bank_pin_num);
344 writel_relaxed(reg, gpio->base_addr + ZYNQ_GPIO_DIRM_OFFSET(bank_num));
345
346 /* configure the output enable reg for the pin */
347 reg = readl_relaxed(gpio->base_addr + ZYNQ_GPIO_OUTEN_OFFSET(bank_num));
348 reg |= BIT(bank_pin_num);
349 writel_relaxed(reg, gpio->base_addr + ZYNQ_GPIO_OUTEN_OFFSET(bank_num));
350
351 /* set the state of the pin */
352 zynq_gpio_set_value(chip, pin, state);
353 return 0;
354}
355
6169005c
BM
356/**
357 * zynq_gpio_get_direction - Read the direction of the specified GPIO pin
358 * @chip: gpio_chip instance to be worked on
359 * @pin: gpio pin number within the device
360 *
361 * This function returns the direction of the specified GPIO.
362 *
e42615ec 363 * Return: GPIO_LINE_DIRECTION_OUT or GPIO_LINE_DIRECTION_IN
6169005c
BM
364 */
365static int zynq_gpio_get_direction(struct gpio_chip *chip, unsigned int pin)
366{
367 u32 reg;
368 unsigned int bank_num, bank_pin_num;
369 struct zynq_gpio *gpio = gpiochip_get_data(chip);
370
371 zynq_gpio_get_bank_pin(pin, &bank_num, &bank_pin_num, gpio);
372
373 reg = readl_relaxed(gpio->base_addr + ZYNQ_GPIO_DIRM_OFFSET(bank_num));
374
e42615ec
MV
375 if (reg & BIT(bank_pin_num))
376 return GPIO_LINE_DIRECTION_OUT;
377
378 return GPIO_LINE_DIRECTION_IN;
6169005c
BM
379}
380
3242ba11
HK
381/**
382 * zynq_gpio_irq_mask - Disable the interrupts for a gpio pin
383 * @irq_data: per irq and chip data passed down to chip functions
384 *
385 * This function calculates gpio pin number from irq number and sets the
386 * bit in the Interrupt Disable register of the corresponding bank to disable
387 * interrupts for that pin.
388 */
389static void zynq_gpio_irq_mask(struct irq_data *irq_data)
390{
391 unsigned int device_pin_num, bank_num, bank_pin_num;
fa9795d1 392 struct zynq_gpio *gpio =
31a89447 393 gpiochip_get_data(irq_data_get_irq_chip_data(irq_data));
3242ba11
HK
394
395 device_pin_num = irq_data->hwirq;
bdf7a4ae 396 zynq_gpio_get_bank_pin(device_pin_num, &bank_num, &bank_pin_num, gpio);
3242ba11
HK
397 writel_relaxed(BIT(bank_pin_num),
398 gpio->base_addr + ZYNQ_GPIO_INTDIS_OFFSET(bank_num));
399}
400
401/**
402 * zynq_gpio_irq_unmask - Enable the interrupts for a gpio pin
403 * @irq_data: irq data containing irq number of gpio pin for the interrupt
404 * to enable
405 *
406 * This function calculates the gpio pin number from irq number and sets the
407 * bit in the Interrupt Enable register of the corresponding bank to enable
408 * interrupts for that pin.
409 */
410static void zynq_gpio_irq_unmask(struct irq_data *irq_data)
411{
412 unsigned int device_pin_num, bank_num, bank_pin_num;
fa9795d1 413 struct zynq_gpio *gpio =
31a89447 414 gpiochip_get_data(irq_data_get_irq_chip_data(irq_data));
3242ba11
HK
415
416 device_pin_num = irq_data->hwirq;
bdf7a4ae 417 zynq_gpio_get_bank_pin(device_pin_num, &bank_num, &bank_pin_num, gpio);
3242ba11
HK
418 writel_relaxed(BIT(bank_pin_num),
419 gpio->base_addr + ZYNQ_GPIO_INTEN_OFFSET(bank_num));
420}
421
190dc2e6
LPC
422/**
423 * zynq_gpio_irq_ack - Acknowledge the interrupt of a gpio pin
424 * @irq_data: irq data containing irq number of gpio pin for the interrupt
425 * to ack
426 *
427 * This function calculates gpio pin number from irq number and sets the bit
428 * in the Interrupt Status Register of the corresponding bank, to ACK the irq.
429 */
430static void zynq_gpio_irq_ack(struct irq_data *irq_data)
431{
432 unsigned int device_pin_num, bank_num, bank_pin_num;
fa9795d1 433 struct zynq_gpio *gpio =
31a89447 434 gpiochip_get_data(irq_data_get_irq_chip_data(irq_data));
190dc2e6
LPC
435
436 device_pin_num = irq_data->hwirq;
bdf7a4ae 437 zynq_gpio_get_bank_pin(device_pin_num, &bank_num, &bank_pin_num, gpio);
190dc2e6
LPC
438 writel_relaxed(BIT(bank_pin_num),
439 gpio->base_addr + ZYNQ_GPIO_INTSTS_OFFSET(bank_num));
440}
441
442/**
443 * zynq_gpio_irq_enable - Enable the interrupts for a gpio pin
444 * @irq_data: irq data containing irq number of gpio pin for the interrupt
445 * to enable
446 *
20a8a968 447 * Clears the INTSTS bit and unmasks the given interrupt.
190dc2e6
LPC
448 */
449static void zynq_gpio_irq_enable(struct irq_data *irq_data)
450{
451 /*
452 * The Zynq GPIO controller does not disable interrupt detection when
453 * the interrupt is masked and only disables the propagation of the
454 * interrupt. This means when the controller detects an interrupt
455 * condition while the interrupt is logically disabled it will propagate
456 * that interrupt event once the interrupt is enabled. This will cause
457 * the interrupt consumer to see spurious interrupts to prevent this
458 * first make sure that the interrupt is not asserted and then enable
459 * it.
460 */
461 zynq_gpio_irq_ack(irq_data);
462 zynq_gpio_irq_unmask(irq_data);
463}
464
3242ba11
HK
465/**
466 * zynq_gpio_set_irq_type - Set the irq type for a gpio pin
467 * @irq_data: irq data containing irq number of gpio pin
468 * @type: interrupt type that is to be set for the gpio pin
469 *
470 * This function gets the gpio pin number and its bank from the gpio pin number
471 * and configures the INT_TYPE, INT_POLARITY and INT_ANY registers.
472 *
473 * Return: 0, negative error otherwise.
474 * TYPE-EDGE_RISING, INT_TYPE - 1, INT_POLARITY - 1, INT_ANY - 0;
475 * TYPE-EDGE_FALLING, INT_TYPE - 1, INT_POLARITY - 0, INT_ANY - 0;
476 * TYPE-EDGE_BOTH, INT_TYPE - 1, INT_POLARITY - NA, INT_ANY - 1;
477 * TYPE-LEVEL_HIGH, INT_TYPE - 0, INT_POLARITY - 1, INT_ANY - NA;
478 * TYPE-LEVEL_LOW, INT_TYPE - 0, INT_POLARITY - 0, INT_ANY - NA
479 */
480static int zynq_gpio_set_irq_type(struct irq_data *irq_data, unsigned int type)
481{
482 u32 int_type, int_pol, int_any;
483 unsigned int device_pin_num, bank_num, bank_pin_num;
fa9795d1 484 struct zynq_gpio *gpio =
31a89447 485 gpiochip_get_data(irq_data_get_irq_chip_data(irq_data));
3242ba11
HK
486
487 device_pin_num = irq_data->hwirq;
bdf7a4ae 488 zynq_gpio_get_bank_pin(device_pin_num, &bank_num, &bank_pin_num, gpio);
3242ba11
HK
489
490 int_type = readl_relaxed(gpio->base_addr +
491 ZYNQ_GPIO_INTTYPE_OFFSET(bank_num));
492 int_pol = readl_relaxed(gpio->base_addr +
493 ZYNQ_GPIO_INTPOL_OFFSET(bank_num));
494 int_any = readl_relaxed(gpio->base_addr +
495 ZYNQ_GPIO_INTANY_OFFSET(bank_num));
496
497 /*
498 * based on the type requested, configure the INT_TYPE, INT_POLARITY
499 * and INT_ANY registers
500 */
501 switch (type) {
502 case IRQ_TYPE_EDGE_RISING:
503 int_type |= BIT(bank_pin_num);
504 int_pol |= BIT(bank_pin_num);
505 int_any &= ~BIT(bank_pin_num);
506 break;
507 case IRQ_TYPE_EDGE_FALLING:
508 int_type |= BIT(bank_pin_num);
509 int_pol &= ~BIT(bank_pin_num);
510 int_any &= ~BIT(bank_pin_num);
511 break;
512 case IRQ_TYPE_EDGE_BOTH:
513 int_type |= BIT(bank_pin_num);
514 int_any |= BIT(bank_pin_num);
515 break;
516 case IRQ_TYPE_LEVEL_HIGH:
517 int_type &= ~BIT(bank_pin_num);
518 int_pol |= BIT(bank_pin_num);
519 break;
520 case IRQ_TYPE_LEVEL_LOW:
521 int_type &= ~BIT(bank_pin_num);
522 int_pol &= ~BIT(bank_pin_num);
523 break;
524 default:
525 return -EINVAL;
526 }
527
528 writel_relaxed(int_type,
529 gpio->base_addr + ZYNQ_GPIO_INTTYPE_OFFSET(bank_num));
530 writel_relaxed(int_pol,
531 gpio->base_addr + ZYNQ_GPIO_INTPOL_OFFSET(bank_num));
532 writel_relaxed(int_any,
533 gpio->base_addr + ZYNQ_GPIO_INTANY_OFFSET(bank_num));
6dd85950 534
16ee62e5 535 if (type & IRQ_TYPE_LEVEL_MASK)
47c08462 536 irq_set_chip_handler_name_locked(irq_data,
16ee62e5
MS
537 &zynq_gpio_level_irqchip,
538 handle_fasteoi_irq, NULL);
539 else
47c08462 540 irq_set_chip_handler_name_locked(irq_data,
16ee62e5
MS
541 &zynq_gpio_edge_irqchip,
542 handle_level_irq, NULL);
6dd85950 543
3242ba11
HK
544 return 0;
545}
546
547static int zynq_gpio_set_wake(struct irq_data *data, unsigned int on)
548{
fa9795d1 549 struct zynq_gpio *gpio =
31a89447 550 gpiochip_get_data(irq_data_get_irq_chip_data(data));
59e22114
ES
551
552 irq_set_irq_wake(gpio->irq, on);
3242ba11
HK
553
554 return 0;
555}
556
c2df3de0
TP
557static int zynq_gpio_irq_reqres(struct irq_data *d)
558{
559 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
560 int ret;
561
562 ret = pm_runtime_get_sync(chip->parent);
563 if (ret < 0)
564 return ret;
565
566 return gpiochip_reqres_irq(chip, d->hwirq);
567}
568
569static void zynq_gpio_irq_relres(struct irq_data *d)
570{
571 struct gpio_chip *chip = irq_data_get_irq_chip_data(d);
572
573 gpiochip_relres_irq(chip, d->hwirq);
574 pm_runtime_put(chip->parent);
575}
576
3242ba11 577/* irq chip descriptor */
6dd85950 578static struct irq_chip zynq_gpio_level_irqchip = {
3242ba11 579 .name = DRIVER_NAME,
190dc2e6 580 .irq_enable = zynq_gpio_irq_enable,
6dd85950
LPC
581 .irq_eoi = zynq_gpio_irq_ack,
582 .irq_mask = zynq_gpio_irq_mask,
583 .irq_unmask = zynq_gpio_irq_unmask,
584 .irq_set_type = zynq_gpio_set_irq_type,
585 .irq_set_wake = zynq_gpio_set_wake,
c2df3de0
TP
586 .irq_request_resources = zynq_gpio_irq_reqres,
587 .irq_release_resources = zynq_gpio_irq_relres,
a1946778
ES
588 .flags = IRQCHIP_EOI_THREADED | IRQCHIP_EOI_IF_HANDLED |
589 IRQCHIP_MASK_ON_SUSPEND,
6dd85950
LPC
590};
591
592static struct irq_chip zynq_gpio_edge_irqchip = {
593 .name = DRIVER_NAME,
594 .irq_enable = zynq_gpio_irq_enable,
595 .irq_ack = zynq_gpio_irq_ack,
3242ba11
HK
596 .irq_mask = zynq_gpio_irq_mask,
597 .irq_unmask = zynq_gpio_irq_unmask,
598 .irq_set_type = zynq_gpio_set_irq_type,
599 .irq_set_wake = zynq_gpio_set_wake,
c2df3de0
TP
600 .irq_request_resources = zynq_gpio_irq_reqres,
601 .irq_release_resources = zynq_gpio_irq_relres,
a1946778 602 .flags = IRQCHIP_MASK_ON_SUSPEND,
3242ba11
HK
603};
604
5a2533a7
LPC
605static void zynq_gpio_handle_bank_irq(struct zynq_gpio *gpio,
606 unsigned int bank_num,
607 unsigned long pending)
608{
bdf7a4ae 609 unsigned int bank_offset = gpio->p_data->bank_min[bank_num];
f0fbe7bc 610 struct irq_domain *irqdomain = gpio->chip.irq.domain;
5a2533a7
LPC
611 int offset;
612
613 if (!pending)
614 return;
615
616 for_each_set_bit(offset, &pending, 32) {
617 unsigned int gpio_irq;
618
016da144 619 gpio_irq = irq_find_mapping(irqdomain, offset + bank_offset);
5a2533a7
LPC
620 generic_handle_irq(gpio_irq);
621 }
622}
623
3242ba11
HK
624/**
625 * zynq_gpio_irqhandler - IRQ handler for the gpio banks of a gpio device
3242ba11
HK
626 * @desc: irq descriptor instance of the 'irq'
627 *
628 * This function reads the Interrupt Status Register of each bank to get the
629 * gpio pin number which has triggered an interrupt. It then acks the triggered
630 * interrupt and calls the pin specific handler set by the higher layer
631 * application for that pin.
632 * Note: A bug is reported if no handler is set for the gpio pin.
633 */
bd0b9ac4 634static void zynq_gpio_irqhandler(struct irq_desc *desc)
3242ba11
HK
635{
636 u32 int_sts, int_enb;
637 unsigned int bank_num;
fa9795d1 638 struct zynq_gpio *gpio =
31a89447 639 gpiochip_get_data(irq_desc_get_handler_data(desc));
3242ba11
HK
640 struct irq_chip *irqchip = irq_desc_get_chip(desc);
641
642 chained_irq_enter(irqchip, desc);
643
bdf7a4ae 644 for (bank_num = 0; bank_num < gpio->p_data->max_bank; bank_num++) {
3242ba11
HK
645 int_sts = readl_relaxed(gpio->base_addr +
646 ZYNQ_GPIO_INTSTS_OFFSET(bank_num));
647 int_enb = readl_relaxed(gpio->base_addr +
648 ZYNQ_GPIO_INTMASK_OFFSET(bank_num));
5a2533a7 649 zynq_gpio_handle_bank_irq(gpio, bank_num, int_sts & ~int_enb);
3242ba11
HK
650 }
651
652 chained_irq_exit(irqchip, desc);
653}
654
e11de4de
SD
655static void zynq_gpio_save_context(struct zynq_gpio *gpio)
656{
657 unsigned int bank_num;
658
659 for (bank_num = 0; bank_num < gpio->p_data->max_bank; bank_num++) {
660 gpio->context.datalsw[bank_num] =
661 readl_relaxed(gpio->base_addr +
662 ZYNQ_GPIO_DATA_LSW_OFFSET(bank_num));
663 gpio->context.datamsw[bank_num] =
664 readl_relaxed(gpio->base_addr +
665 ZYNQ_GPIO_DATA_MSW_OFFSET(bank_num));
666 gpio->context.dirm[bank_num] = readl_relaxed(gpio->base_addr +
667 ZYNQ_GPIO_DIRM_OFFSET(bank_num));
668 gpio->context.int_en[bank_num] = readl_relaxed(gpio->base_addr +
669 ZYNQ_GPIO_INTMASK_OFFSET(bank_num));
670 gpio->context.int_type[bank_num] =
671 readl_relaxed(gpio->base_addr +
672 ZYNQ_GPIO_INTTYPE_OFFSET(bank_num));
673 gpio->context.int_polarity[bank_num] =
674 readl_relaxed(gpio->base_addr +
675 ZYNQ_GPIO_INTPOL_OFFSET(bank_num));
676 gpio->context.int_any[bank_num] =
677 readl_relaxed(gpio->base_addr +
678 ZYNQ_GPIO_INTANY_OFFSET(bank_num));
679 }
680}
681
682static void zynq_gpio_restore_context(struct zynq_gpio *gpio)
683{
684 unsigned int bank_num;
685
686 for (bank_num = 0; bank_num < gpio->p_data->max_bank; bank_num++) {
687 writel_relaxed(gpio->context.datalsw[bank_num],
688 gpio->base_addr +
689 ZYNQ_GPIO_DATA_LSW_OFFSET(bank_num));
690 writel_relaxed(gpio->context.datamsw[bank_num],
691 gpio->base_addr +
692 ZYNQ_GPIO_DATA_MSW_OFFSET(bank_num));
693 writel_relaxed(gpio->context.dirm[bank_num],
694 gpio->base_addr +
695 ZYNQ_GPIO_DIRM_OFFSET(bank_num));
696 writel_relaxed(gpio->context.int_en[bank_num],
697 gpio->base_addr +
698 ZYNQ_GPIO_INTEN_OFFSET(bank_num));
699 writel_relaxed(gpio->context.int_type[bank_num],
700 gpio->base_addr +
701 ZYNQ_GPIO_INTTYPE_OFFSET(bank_num));
702 writel_relaxed(gpio->context.int_polarity[bank_num],
703 gpio->base_addr +
704 ZYNQ_GPIO_INTPOL_OFFSET(bank_num));
705 writel_relaxed(gpio->context.int_any[bank_num],
706 gpio->base_addr +
707 ZYNQ_GPIO_INTANY_OFFSET(bank_num));
708 }
709}
eb73d6ea 710
3242ba11
HK
711static int __maybe_unused zynq_gpio_suspend(struct device *dev)
712{
a76e865e 713 struct zynq_gpio *gpio = dev_get_drvdata(dev);
5e3a8ecd 714 struct irq_data *data = irq_get_irq_data(gpio->irq);
59e22114 715
e11de4de
SD
716 if (!irqd_is_wakeup_set(data)) {
717 zynq_gpio_save_context(gpio);
3242ba11 718 return pm_runtime_force_suspend(dev);
e11de4de 719 }
3242ba11
HK
720
721 return 0;
722}
723
724static int __maybe_unused zynq_gpio_resume(struct device *dev)
725{
a76e865e 726 struct zynq_gpio *gpio = dev_get_drvdata(dev);
5e3a8ecd 727 struct irq_data *data = irq_get_irq_data(gpio->irq);
e11de4de 728 int ret;
59e22114 729
e11de4de
SD
730 if (!irqd_is_wakeup_set(data)) {
731 ret = pm_runtime_force_resume(dev);
732 zynq_gpio_restore_context(gpio);
733 return ret;
734 }
3242ba11
HK
735
736 return 0;
737}
738
739static int __maybe_unused zynq_gpio_runtime_suspend(struct device *dev)
740{
38ccad02 741 struct zynq_gpio *gpio = dev_get_drvdata(dev);
3242ba11
HK
742
743 clk_disable_unprepare(gpio->clk);
744
745 return 0;
746}
747
748static int __maybe_unused zynq_gpio_runtime_resume(struct device *dev)
749{
38ccad02 750 struct zynq_gpio *gpio = dev_get_drvdata(dev);
3242ba11
HK
751
752 return clk_prepare_enable(gpio->clk);
753}
754
2717cfca 755static int zynq_gpio_request(struct gpio_chip *chip, unsigned int offset)
3242ba11
HK
756{
757 int ret;
758
58383c78 759 ret = pm_runtime_get_sync(chip->parent);
3242ba11
HK
760
761 /*
762 * If the device is already active pm_runtime_get() will return 1 on
763 * success, but gpio_request still needs to return 0.
764 */
765 return ret < 0 ? ret : 0;
766}
767
2717cfca 768static void zynq_gpio_free(struct gpio_chip *chip, unsigned int offset)
3242ba11 769{
58383c78 770 pm_runtime_put(chip->parent);
3242ba11
HK
771}
772
773static const struct dev_pm_ops zynq_gpio_dev_pm_ops = {
774 SET_SYSTEM_SLEEP_PM_OPS(zynq_gpio_suspend, zynq_gpio_resume)
6ed23b80 775 SET_RUNTIME_PM_OPS(zynq_gpio_runtime_suspend,
16ee62e5 776 zynq_gpio_runtime_resume, NULL)
3242ba11
HK
777};
778
bdf7a4ae
AKV
779static const struct zynq_platform_data zynqmp_gpio_def = {
780 .label = "zynqmp_gpio",
06aa0908 781 .quirks = GPIO_QUIRK_DATA_RO_BUG,
bdf7a4ae
AKV
782 .ngpio = ZYNQMP_GPIO_NR_GPIOS,
783 .max_bank = ZYNQMP_GPIO_MAX_BANK,
784 .bank_min[0] = ZYNQ_GPIO_BANK0_PIN_MIN(MP),
785 .bank_max[0] = ZYNQ_GPIO_BANK0_PIN_MAX(MP),
786 .bank_min[1] = ZYNQ_GPIO_BANK1_PIN_MIN(MP),
787 .bank_max[1] = ZYNQ_GPIO_BANK1_PIN_MAX(MP),
788 .bank_min[2] = ZYNQ_GPIO_BANK2_PIN_MIN(MP),
789 .bank_max[2] = ZYNQ_GPIO_BANK2_PIN_MAX(MP),
790 .bank_min[3] = ZYNQ_GPIO_BANK3_PIN_MIN(MP),
791 .bank_max[3] = ZYNQ_GPIO_BANK3_PIN_MAX(MP),
792 .bank_min[4] = ZYNQ_GPIO_BANK4_PIN_MIN(MP),
793 .bank_max[4] = ZYNQ_GPIO_BANK4_PIN_MAX(MP),
794 .bank_min[5] = ZYNQ_GPIO_BANK5_PIN_MIN(MP),
795 .bank_max[5] = ZYNQ_GPIO_BANK5_PIN_MAX(MP),
796};
797
798static const struct zynq_platform_data zynq_gpio_def = {
799 .label = "zynq_gpio",
06aa0908 800 .quirks = ZYNQ_GPIO_QUIRK_IS_ZYNQ | GPIO_QUIRK_DATA_RO_BUG,
bdf7a4ae
AKV
801 .ngpio = ZYNQ_GPIO_NR_GPIOS,
802 .max_bank = ZYNQ_GPIO_MAX_BANK,
803 .bank_min[0] = ZYNQ_GPIO_BANK0_PIN_MIN(),
804 .bank_max[0] = ZYNQ_GPIO_BANK0_PIN_MAX(),
805 .bank_min[1] = ZYNQ_GPIO_BANK1_PIN_MIN(),
806 .bank_max[1] = ZYNQ_GPIO_BANK1_PIN_MAX(),
807 .bank_min[2] = ZYNQ_GPIO_BANK2_PIN_MIN(),
808 .bank_max[2] = ZYNQ_GPIO_BANK2_PIN_MAX(),
809 .bank_min[3] = ZYNQ_GPIO_BANK3_PIN_MIN(),
810 .bank_max[3] = ZYNQ_GPIO_BANK3_PIN_MAX(),
811};
812
813static const struct of_device_id zynq_gpio_of_match[] = {
7808c42b
MY
814 { .compatible = "xlnx,zynq-gpio-1.0", .data = &zynq_gpio_def },
815 { .compatible = "xlnx,zynqmp-gpio-1.0", .data = &zynqmp_gpio_def },
bdf7a4ae
AKV
816 { /* end of table */ }
817};
818MODULE_DEVICE_TABLE(of, zynq_gpio_of_match);
819
3242ba11
HK
820/**
821 * zynq_gpio_probe - Initialization method for a zynq_gpio device
822 * @pdev: platform device instance
823 *
824 * This function allocates memory resources for the gpio device and registers
825 * all the banks of the device. It will also set up interrupts for the gpio
826 * pins.
827 * Note: Interrupts are disabled for all the banks during initialization.
828 *
829 * Return: 0 on success, negative error otherwise.
830 */
831static int zynq_gpio_probe(struct platform_device *pdev)
832{
59e22114 833 int ret, bank_num;
3242ba11
HK
834 struct zynq_gpio *gpio;
835 struct gpio_chip *chip;
f6a7053d 836 struct gpio_irq_chip *girq;
bdf7a4ae 837 const struct of_device_id *match;
3242ba11
HK
838
839 gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
840 if (!gpio)
841 return -ENOMEM;
842
bdf7a4ae
AKV
843 match = of_match_node(zynq_gpio_of_match, pdev->dev.of_node);
844 if (!match) {
845 dev_err(&pdev->dev, "of_match_node() failed\n");
846 return -EINVAL;
847 }
848 gpio->p_data = match->data;
3242ba11
HK
849 platform_set_drvdata(pdev, gpio);
850
77bc0e69 851 gpio->base_addr = devm_platform_ioremap_resource(pdev, 0);
3242ba11
HK
852 if (IS_ERR(gpio->base_addr))
853 return PTR_ERR(gpio->base_addr);
854
59e22114 855 gpio->irq = platform_get_irq(pdev, 0);
15bddb7d 856 if (gpio->irq < 0)
59e22114 857 return gpio->irq;
3242ba11
HK
858
859 /* configure the gpio chip */
860 chip = &gpio->chip;
bdf7a4ae 861 chip->label = gpio->p_data->label;
3242ba11 862 chip->owner = THIS_MODULE;
58383c78 863 chip->parent = &pdev->dev;
3242ba11
HK
864 chip->get = zynq_gpio_get_value;
865 chip->set = zynq_gpio_set_value;
866 chip->request = zynq_gpio_request;
867 chip->free = zynq_gpio_free;
868 chip->direction_input = zynq_gpio_dir_in;
869 chip->direction_output = zynq_gpio_dir_out;
6169005c 870 chip->get_direction = zynq_gpio_get_direction;
060f3ebf 871 chip->base = of_alias_get_id(pdev->dev.of_node, "gpio");
bdf7a4ae 872 chip->ngpio = gpio->p_data->ngpio;
3242ba11 873
3773c195 874 /* Retrieve GPIO clock */
3242ba11
HK
875 gpio->clk = devm_clk_get(&pdev->dev, NULL);
876 if (IS_ERR(gpio->clk)) {
877 dev_err(&pdev->dev, "input clock not found.\n");
878 return PTR_ERR(gpio->clk);
879 }
0f84f29f
HG
880 ret = clk_prepare_enable(gpio->clk);
881 if (ret) {
882 dev_err(&pdev->dev, "Unable to enable clock.\n");
883 return ret;
884 }
3773c195 885
0f84f29f 886 pm_runtime_set_active(&pdev->dev);
3773c195
MS
887 pm_runtime_enable(&pdev->dev);
888 ret = pm_runtime_get_sync(&pdev->dev);
889 if (ret < 0)
615d23f8 890 goto err_pm_dis;
3242ba11 891
3242ba11 892 /* disable interrupts for all banks */
bdf7a4ae 893 for (bank_num = 0; bank_num < gpio->p_data->max_bank; bank_num++)
3242ba11
HK
894 writel_relaxed(ZYNQ_GPIO_IXR_DISABLE_ALL, gpio->base_addr +
895 ZYNQ_GPIO_INTDIS_OFFSET(bank_num));
896
f6a7053d
LW
897 /* Set up the GPIO irqchip */
898 girq = &chip->irq;
899 girq->chip = &zynq_gpio_edge_irqchip;
900 girq->parent_handler = zynq_gpio_irqhandler;
901 girq->num_parents = 1;
902 girq->parents = devm_kcalloc(&pdev->dev, 1,
903 sizeof(*girq->parents),
904 GFP_KERNEL);
905 if (!girq->parents) {
906 ret = -ENOMEM;
907 goto err_pm_put;
3242ba11 908 }
f6a7053d
LW
909 girq->parents[0] = gpio->irq;
910 girq->default_type = IRQ_TYPE_NONE;
911 girq->handler = handle_level_irq;
3242ba11 912
f6a7053d
LW
913 /* report a bug if gpio chip registration fails */
914 ret = gpiochip_add_data(chip, gpio);
915 if (ret) {
916 dev_err(&pdev->dev, "Failed to add gpio chip\n");
917 goto err_pm_put;
918 }
3242ba11 919
3773c195 920 pm_runtime_put(&pdev->dev);
3242ba11 921
3242ba11
HK
922 return 0;
923
3773c195
MS
924err_pm_put:
925 pm_runtime_put(&pdev->dev);
615d23f8
SD
926err_pm_dis:
927 pm_runtime_disable(&pdev->dev);
0f84f29f 928 clk_disable_unprepare(gpio->clk);
3242ba11
HK
929
930 return ret;
931}
932
933/**
934 * zynq_gpio_remove - Driver removal function
935 * @pdev: platform device instance
936 *
937 * Return: 0 always
938 */
939static int zynq_gpio_remove(struct platform_device *pdev)
940{
3242ba11
HK
941 struct zynq_gpio *gpio = platform_get_drvdata(pdev);
942
943 pm_runtime_get_sync(&pdev->dev);
da26d5d8 944 gpiochip_remove(&gpio->chip);
3242ba11
HK
945 clk_disable_unprepare(gpio->clk);
946 device_set_wakeup_capable(&pdev->dev, 0);
6b956af0 947 pm_runtime_disable(&pdev->dev);
3242ba11
HK
948 return 0;
949}
950
3242ba11
HK
951static struct platform_driver zynq_gpio_driver = {
952 .driver = {
953 .name = DRIVER_NAME,
3242ba11
HK
954 .pm = &zynq_gpio_dev_pm_ops,
955 .of_match_table = zynq_gpio_of_match,
956 },
957 .probe = zynq_gpio_probe,
958 .remove = zynq_gpio_remove,
959};
960
961/**
962 * zynq_gpio_init - Initial driver registration call
963 *
964 * Return: value from platform_driver_register
965 */
966static int __init zynq_gpio_init(void)
967{
968 return platform_driver_register(&zynq_gpio_driver);
969}
970postcore_initcall(zynq_gpio_init);
971
80d2bf55
MY
972static void __exit zynq_gpio_exit(void)
973{
974 platform_driver_unregister(&zynq_gpio_driver);
975}
976module_exit(zynq_gpio_exit);
977
3242ba11
HK
978MODULE_AUTHOR("Xilinx Inc.");
979MODULE_DESCRIPTION("Zynq GPIO driver");
980MODULE_LICENSE("GPL");