blob: 86568154cdb3d316ae8f8cd624486945800f7d19 [file] [log] [blame]
Thomas Gleixner9c92ab62019-05-29 07:17:56 -07001// SPDX-License-Identifier: GPL-2.0-only
Erik Gilling3c92db92010-03-15 19:40:06 -07002/*
3 * arch/arm/mach-tegra/gpio.c
4 *
5 * Copyright (c) 2010 Google, Inc
Linus Walleij11da9052019-02-19 21:32:02 +01006 * Copyright (c) 2011-2016, NVIDIA CORPORATION. All rights reserved.
Erik Gilling3c92db92010-03-15 19:40:06 -07007 *
8 * Author:
9 * Erik Gilling <konkers@google.com>
Erik Gilling3c92db92010-03-15 19:40:06 -070010 */
11
Thierry Reding641d0342013-01-21 11:09:01 +010012#include <linux/err.h>
Erik Gilling3c92db92010-03-15 19:40:06 -070013#include <linux/init.h>
14#include <linux/irq.h>
Colin Cross2e47b8b2010-04-07 12:59:42 -070015#include <linux/interrupt.h>
Erik Gilling3c92db92010-03-15 19:40:06 -070016#include <linux/io.h>
Linus Walleij21041da2018-08-06 17:38:33 +020017#include <linux/gpio/driver.h>
Stephen Warren5c1e2c92012-03-16 17:35:08 -060018#include <linux/of_device.h>
Stephen Warren88d89512011-10-11 16:16:14 -060019#include <linux/platform_device.h>
20#include <linux/module.h>
Stephen Warren6f74dc92012-01-04 08:39:37 +000021#include <linux/irqdomain.h>
Catalin Marinasde88cbb2013-01-18 15:31:37 +000022#include <linux/irqchip/chained_irq.h>
Stephen Warren3e215d02012-02-18 01:04:55 -070023#include <linux/pinctrl/consumer.h>
Laxman Dewangan8939ddc2012-11-07 20:31:32 +053024#include <linux/pm.h>
Erik Gilling3c92db92010-03-15 19:40:06 -070025
Erik Gilling3c92db92010-03-15 19:40:06 -070026#define GPIO_BANK(x) ((x) >> 5)
27#define GPIO_PORT(x) (((x) >> 3) & 0x3)
28#define GPIO_BIT(x) ((x) & 0x7)
29
Laxman Dewanganb546be02016-04-25 16:08:33 +053030#define GPIO_REG(tgi, x) (GPIO_BANK(x) * tgi->soc->bank_stride + \
Stephen Warren5c1e2c92012-03-16 17:35:08 -060031 GPIO_PORT(x) * 4)
Erik Gilling3c92db92010-03-15 19:40:06 -070032
Laxman Dewanganb546be02016-04-25 16:08:33 +053033#define GPIO_CNF(t, x) (GPIO_REG(t, x) + 0x00)
34#define GPIO_OE(t, x) (GPIO_REG(t, x) + 0x10)
35#define GPIO_OUT(t, x) (GPIO_REG(t, x) + 0X20)
36#define GPIO_IN(t, x) (GPIO_REG(t, x) + 0x30)
37#define GPIO_INT_STA(t, x) (GPIO_REG(t, x) + 0x40)
38#define GPIO_INT_ENB(t, x) (GPIO_REG(t, x) + 0x50)
39#define GPIO_INT_LVL(t, x) (GPIO_REG(t, x) + 0x60)
40#define GPIO_INT_CLR(t, x) (GPIO_REG(t, x) + 0x70)
Laxman Dewangan3737de42016-04-25 16:08:34 +053041#define GPIO_DBC_CNT(t, x) (GPIO_REG(t, x) + 0xF0)
42
Erik Gilling3c92db92010-03-15 19:40:06 -070043
Laxman Dewanganb546be02016-04-25 16:08:33 +053044#define GPIO_MSK_CNF(t, x) (GPIO_REG(t, x) + t->soc->upper_offset + 0x00)
45#define GPIO_MSK_OE(t, x) (GPIO_REG(t, x) + t->soc->upper_offset + 0x10)
46#define GPIO_MSK_OUT(t, x) (GPIO_REG(t, x) + t->soc->upper_offset + 0X20)
Laxman Dewangan3737de42016-04-25 16:08:34 +053047#define GPIO_MSK_DBC_EN(t, x) (GPIO_REG(t, x) + t->soc->upper_offset + 0x30)
Laxman Dewanganb546be02016-04-25 16:08:33 +053048#define GPIO_MSK_INT_STA(t, x) (GPIO_REG(t, x) + t->soc->upper_offset + 0x40)
49#define GPIO_MSK_INT_ENB(t, x) (GPIO_REG(t, x) + t->soc->upper_offset + 0x50)
50#define GPIO_MSK_INT_LVL(t, x) (GPIO_REG(t, x) + t->soc->upper_offset + 0x60)
Erik Gilling3c92db92010-03-15 19:40:06 -070051
52#define GPIO_INT_LVL_MASK 0x010101
53#define GPIO_INT_LVL_EDGE_RISING 0x000101
54#define GPIO_INT_LVL_EDGE_FALLING 0x000100
55#define GPIO_INT_LVL_EDGE_BOTH 0x010100
56#define GPIO_INT_LVL_LEVEL_HIGH 0x000001
57#define GPIO_INT_LVL_LEVEL_LOW 0x000000
58
Laxman Dewanganb546be02016-04-25 16:08:33 +053059struct tegra_gpio_info;
60
Erik Gilling3c92db92010-03-15 19:40:06 -070061struct tegra_gpio_bank {
Thierry Reding539b7a32017-07-24 16:55:08 +020062 unsigned int bank;
63 unsigned int irq;
Erik Gilling3c92db92010-03-15 19:40:06 -070064 spinlock_t lvl_lock[4];
Laxman Dewangan3737de42016-04-25 16:08:34 +053065 spinlock_t dbc_lock[4]; /* Lock for updating debounce count register */
Laxman Dewangan8939ddc2012-11-07 20:31:32 +053066#ifdef CONFIG_PM_SLEEP
Colin Cross2e47b8b2010-04-07 12:59:42 -070067 u32 cnf[4];
68 u32 out[4];
69 u32 oe[4];
70 u32 int_enb[4];
71 u32 int_lvl[4];
Joseph Lo203f31c2013-04-03 19:31:44 +080072 u32 wake_enb[4];
Laxman Dewangan3737de42016-04-25 16:08:34 +053073 u32 dbc_enb[4];
Colin Cross2e47b8b2010-04-07 12:59:42 -070074#endif
Laxman Dewangan3737de42016-04-25 16:08:34 +053075 u32 dbc_cnt[4];
Laxman Dewanganb546be02016-04-25 16:08:33 +053076 struct tegra_gpio_info *tgi;
Erik Gilling3c92db92010-03-15 19:40:06 -070077};
78
Laxman Dewangan171b92c2016-04-25 16:08:31 +053079struct tegra_gpio_soc_config {
Laxman Dewangan3737de42016-04-25 16:08:34 +053080 bool debounce_supported;
Laxman Dewangan171b92c2016-04-25 16:08:31 +053081 u32 bank_stride;
82 u32 upper_offset;
83};
84
Laxman Dewanganb546be02016-04-25 16:08:33 +053085struct tegra_gpio_info {
86 struct device *dev;
87 void __iomem *regs;
88 struct irq_domain *irq_domain;
89 struct tegra_gpio_bank *bank_info;
90 const struct tegra_gpio_soc_config *soc;
91 struct gpio_chip gc;
92 struct irq_chip ic;
Laxman Dewanganb546be02016-04-25 16:08:33 +053093 u32 bank_count;
94};
Stephen Warren88d89512011-10-11 16:16:14 -060095
Laxman Dewanganb546be02016-04-25 16:08:33 +053096static inline void tegra_gpio_writel(struct tegra_gpio_info *tgi,
97 u32 val, u32 reg)
Stephen Warren88d89512011-10-11 16:16:14 -060098{
Dmitry Osipenkofc782e42019-12-15 21:30:45 +030099 writel_relaxed(val, tgi->regs + reg);
Stephen Warren88d89512011-10-11 16:16:14 -0600100}
101
Laxman Dewanganb546be02016-04-25 16:08:33 +0530102static inline u32 tegra_gpio_readl(struct tegra_gpio_info *tgi, u32 reg)
Stephen Warren88d89512011-10-11 16:16:14 -0600103{
Dmitry Osipenkofc782e42019-12-15 21:30:45 +0300104 return readl_relaxed(tgi->regs + reg);
Stephen Warren88d89512011-10-11 16:16:14 -0600105}
Erik Gilling3c92db92010-03-15 19:40:06 -0700106
Thierry Reding539b7a32017-07-24 16:55:08 +0200107static unsigned int tegra_gpio_compose(unsigned int bank, unsigned int port,
108 unsigned int bit)
Erik Gilling3c92db92010-03-15 19:40:06 -0700109{
110 return (bank << 5) | ((port & 0x3) << 3) | (bit & 0x7);
111}
112
Laxman Dewanganb546be02016-04-25 16:08:33 +0530113static void tegra_gpio_mask_write(struct tegra_gpio_info *tgi, u32 reg,
Thierry Reding539b7a32017-07-24 16:55:08 +0200114 unsigned int gpio, u32 value)
Erik Gilling3c92db92010-03-15 19:40:06 -0700115{
116 u32 val;
117
118 val = 0x100 << GPIO_BIT(gpio);
119 if (value)
120 val |= 1 << GPIO_BIT(gpio);
Laxman Dewanganb546be02016-04-25 16:08:33 +0530121 tegra_gpio_writel(tgi, val, reg);
Erik Gilling3c92db92010-03-15 19:40:06 -0700122}
123
Thierry Reding539b7a32017-07-24 16:55:08 +0200124static void tegra_gpio_enable(struct tegra_gpio_info *tgi, unsigned int gpio)
Erik Gilling3c92db92010-03-15 19:40:06 -0700125{
Laxman Dewanganb546be02016-04-25 16:08:33 +0530126 tegra_gpio_mask_write(tgi, GPIO_MSK_CNF(tgi, gpio), gpio, 1);
Erik Gilling3c92db92010-03-15 19:40:06 -0700127}
128
Thierry Reding539b7a32017-07-24 16:55:08 +0200129static void tegra_gpio_disable(struct tegra_gpio_info *tgi, unsigned int gpio)
Erik Gilling3c92db92010-03-15 19:40:06 -0700130{
Laxman Dewanganb546be02016-04-25 16:08:33 +0530131 tegra_gpio_mask_write(tgi, GPIO_MSK_CNF(tgi, gpio), gpio, 0);
Erik Gilling3c92db92010-03-15 19:40:06 -0700132}
133
Thierry Reding4bc17862017-07-24 16:55:07 +0200134static int tegra_gpio_request(struct gpio_chip *chip, unsigned int offset)
Stephen Warren3e215d02012-02-18 01:04:55 -0700135{
Linus Walleij11da9052019-02-19 21:32:02 +0100136 return pinctrl_gpio_request(chip->base + offset);
Stephen Warren3e215d02012-02-18 01:04:55 -0700137}
138
Thierry Reding4bc17862017-07-24 16:55:07 +0200139static void tegra_gpio_free(struct gpio_chip *chip, unsigned int offset)
Stephen Warren3e215d02012-02-18 01:04:55 -0700140{
Laxman Dewanganb546be02016-04-25 16:08:33 +0530141 struct tegra_gpio_info *tgi = gpiochip_get_data(chip);
142
Linus Walleij11da9052019-02-19 21:32:02 +0100143 pinctrl_gpio_free(chip->base + offset);
Laxman Dewanganb546be02016-04-25 16:08:33 +0530144 tegra_gpio_disable(tgi, offset);
Stephen Warren3e215d02012-02-18 01:04:55 -0700145}
146
Thierry Reding4bc17862017-07-24 16:55:07 +0200147static void tegra_gpio_set(struct gpio_chip *chip, unsigned int offset,
148 int value)
Erik Gilling3c92db92010-03-15 19:40:06 -0700149{
Laxman Dewanganb546be02016-04-25 16:08:33 +0530150 struct tegra_gpio_info *tgi = gpiochip_get_data(chip);
151
152 tegra_gpio_mask_write(tgi, GPIO_MSK_OUT(tgi, offset), offset, value);
Erik Gilling3c92db92010-03-15 19:40:06 -0700153}
154
Thierry Reding4bc17862017-07-24 16:55:07 +0200155static int tegra_gpio_get(struct gpio_chip *chip, unsigned int offset)
Erik Gilling3c92db92010-03-15 19:40:06 -0700156{
Laxman Dewanganb546be02016-04-25 16:08:33 +0530157 struct tegra_gpio_info *tgi = gpiochip_get_data(chip);
Thierry Reding539b7a32017-07-24 16:55:08 +0200158 unsigned int bval = BIT(GPIO_BIT(offset));
Laxman Dewangan195812e2012-11-09 11:34:20 +0530159
Laxman Dewanganb546be02016-04-25 16:08:33 +0530160 /* If gpio is in output mode then read from the out value */
161 if (tegra_gpio_readl(tgi, GPIO_OE(tgi, offset)) & bval)
162 return !!(tegra_gpio_readl(tgi, GPIO_OUT(tgi, offset)) & bval);
163
164 return !!(tegra_gpio_readl(tgi, GPIO_IN(tgi, offset)) & bval);
Erik Gilling3c92db92010-03-15 19:40:06 -0700165}
166
Thierry Reding4bc17862017-07-24 16:55:07 +0200167static int tegra_gpio_direction_input(struct gpio_chip *chip,
168 unsigned int offset)
Erik Gilling3c92db92010-03-15 19:40:06 -0700169{
Laxman Dewanganb546be02016-04-25 16:08:33 +0530170 struct tegra_gpio_info *tgi = gpiochip_get_data(chip);
Linus Walleij11da9052019-02-19 21:32:02 +0100171 int ret;
Laxman Dewanganb546be02016-04-25 16:08:33 +0530172
173 tegra_gpio_mask_write(tgi, GPIO_MSK_OE(tgi, offset), offset, 0);
174 tegra_gpio_enable(tgi, offset);
Linus Walleij11da9052019-02-19 21:32:02 +0100175
176 ret = pinctrl_gpio_direction_input(chip->base + offset);
177 if (ret < 0)
178 dev_err(tgi->dev,
179 "Failed to set pinctrl input direction of GPIO %d: %d",
180 chip->base + offset, ret);
181
182 return ret;
Erik Gilling3c92db92010-03-15 19:40:06 -0700183}
184
Thierry Reding4bc17862017-07-24 16:55:07 +0200185static int tegra_gpio_direction_output(struct gpio_chip *chip,
186 unsigned int offset,
187 int value)
Erik Gilling3c92db92010-03-15 19:40:06 -0700188{
Laxman Dewanganb546be02016-04-25 16:08:33 +0530189 struct tegra_gpio_info *tgi = gpiochip_get_data(chip);
Linus Walleij11da9052019-02-19 21:32:02 +0100190 int ret;
Laxman Dewanganb546be02016-04-25 16:08:33 +0530191
Erik Gilling3c92db92010-03-15 19:40:06 -0700192 tegra_gpio_set(chip, offset, value);
Laxman Dewanganb546be02016-04-25 16:08:33 +0530193 tegra_gpio_mask_write(tgi, GPIO_MSK_OE(tgi, offset), offset, 1);
194 tegra_gpio_enable(tgi, offset);
Linus Walleij11da9052019-02-19 21:32:02 +0100195
196 ret = pinctrl_gpio_direction_output(chip->base + offset);
197 if (ret < 0)
198 dev_err(tgi->dev,
199 "Failed to set pinctrl output direction of GPIO %d: %d",
200 chip->base + offset, ret);
201
202 return ret;
Erik Gilling3c92db92010-03-15 19:40:06 -0700203}
204
Thierry Reding4bc17862017-07-24 16:55:07 +0200205static int tegra_gpio_get_direction(struct gpio_chip *chip,
206 unsigned int offset)
Laxman Dewanganf002d072016-04-29 21:55:23 +0530207{
208 struct tegra_gpio_info *tgi = gpiochip_get_data(chip);
209 u32 pin_mask = BIT(GPIO_BIT(offset));
210 u32 cnf, oe;
211
212 cnf = tegra_gpio_readl(tgi, GPIO_CNF(tgi, offset));
213 if (!(cnf & pin_mask))
214 return -EINVAL;
215
216 oe = tegra_gpio_readl(tgi, GPIO_OE(tgi, offset));
217
Matti Vaittinene42615e2019-11-06 10:54:12 +0200218 if (oe & pin_mask)
219 return GPIO_LINE_DIRECTION_OUT;
220
221 return GPIO_LINE_DIRECTION_IN;
Laxman Dewanganf002d072016-04-29 21:55:23 +0530222}
223
Laxman Dewangan3737de42016-04-25 16:08:34 +0530224static int tegra_gpio_set_debounce(struct gpio_chip *chip, unsigned int offset,
225 unsigned int debounce)
226{
227 struct tegra_gpio_info *tgi = gpiochip_get_data(chip);
228 struct tegra_gpio_bank *bank = &tgi->bank_info[GPIO_BANK(offset)];
229 unsigned int debounce_ms = DIV_ROUND_UP(debounce, 1000);
230 unsigned long flags;
Thierry Reding539b7a32017-07-24 16:55:08 +0200231 unsigned int port;
Laxman Dewangan3737de42016-04-25 16:08:34 +0530232
233 if (!debounce_ms) {
234 tegra_gpio_mask_write(tgi, GPIO_MSK_DBC_EN(tgi, offset),
235 offset, 0);
236 return 0;
237 }
238
239 debounce_ms = min(debounce_ms, 255U);
240 port = GPIO_PORT(offset);
241
242 /* There is only one debounce count register per port and hence
243 * set the maximum of current and requested debounce time.
244 */
245 spin_lock_irqsave(&bank->dbc_lock[port], flags);
246 if (bank->dbc_cnt[port] < debounce_ms) {
247 tegra_gpio_writel(tgi, debounce_ms, GPIO_DBC_CNT(tgi, offset));
248 bank->dbc_cnt[port] = debounce_ms;
249 }
250 spin_unlock_irqrestore(&bank->dbc_lock[port], flags);
251
252 tegra_gpio_mask_write(tgi, GPIO_MSK_DBC_EN(tgi, offset), offset, 1);
253
254 return 0;
255}
256
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300257static int tegra_gpio_set_config(struct gpio_chip *chip, unsigned int offset,
258 unsigned long config)
259{
260 u32 debounce;
261
262 if (pinconf_to_config_param(config) != PIN_CONFIG_INPUT_DEBOUNCE)
263 return -ENOTSUPP;
264
265 debounce = pinconf_to_config_argument(config);
266 return tegra_gpio_set_debounce(chip, offset, debounce);
267}
268
Thierry Reding4bc17862017-07-24 16:55:07 +0200269static int tegra_gpio_to_irq(struct gpio_chip *chip, unsigned int offset)
Stephen Warren438a99c2011-08-23 00:39:56 +0100270{
Laxman Dewanganb546be02016-04-25 16:08:33 +0530271 struct tegra_gpio_info *tgi = gpiochip_get_data(chip);
Erik Gilling3c92db92010-03-15 19:40:06 -0700272
Laxman Dewanganb546be02016-04-25 16:08:33 +0530273 return irq_find_mapping(tgi->irq_domain, offset);
274}
Erik Gilling3c92db92010-03-15 19:40:06 -0700275
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100276static void tegra_gpio_irq_ack(struct irq_data *d)
Erik Gilling3c92db92010-03-15 19:40:06 -0700277{
Laxman Dewanganb546be02016-04-25 16:08:33 +0530278 struct tegra_gpio_bank *bank = irq_data_get_irq_chip_data(d);
279 struct tegra_gpio_info *tgi = bank->tgi;
Thierry Reding539b7a32017-07-24 16:55:08 +0200280 unsigned int gpio = d->hwirq;
Erik Gilling3c92db92010-03-15 19:40:06 -0700281
Laxman Dewanganb546be02016-04-25 16:08:33 +0530282 tegra_gpio_writel(tgi, 1 << GPIO_BIT(gpio), GPIO_INT_CLR(tgi, gpio));
Erik Gilling3c92db92010-03-15 19:40:06 -0700283}
284
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100285static void tegra_gpio_irq_mask(struct irq_data *d)
Erik Gilling3c92db92010-03-15 19:40:06 -0700286{
Laxman Dewanganb546be02016-04-25 16:08:33 +0530287 struct tegra_gpio_bank *bank = irq_data_get_irq_chip_data(d);
288 struct tegra_gpio_info *tgi = bank->tgi;
Thierry Reding539b7a32017-07-24 16:55:08 +0200289 unsigned int gpio = d->hwirq;
Erik Gilling3c92db92010-03-15 19:40:06 -0700290
Laxman Dewanganb546be02016-04-25 16:08:33 +0530291 tegra_gpio_mask_write(tgi, GPIO_MSK_INT_ENB(tgi, gpio), gpio, 0);
Erik Gilling3c92db92010-03-15 19:40:06 -0700292}
293
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100294static void tegra_gpio_irq_unmask(struct irq_data *d)
Erik Gilling3c92db92010-03-15 19:40:06 -0700295{
Laxman Dewanganb546be02016-04-25 16:08:33 +0530296 struct tegra_gpio_bank *bank = irq_data_get_irq_chip_data(d);
297 struct tegra_gpio_info *tgi = bank->tgi;
Thierry Reding539b7a32017-07-24 16:55:08 +0200298 unsigned int gpio = d->hwirq;
Erik Gilling3c92db92010-03-15 19:40:06 -0700299
Laxman Dewanganb546be02016-04-25 16:08:33 +0530300 tegra_gpio_mask_write(tgi, GPIO_MSK_INT_ENB(tgi, gpio), gpio, 1);
Erik Gilling3c92db92010-03-15 19:40:06 -0700301}
302
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100303static int tegra_gpio_irq_set_type(struct irq_data *d, unsigned int type)
Erik Gilling3c92db92010-03-15 19:40:06 -0700304{
Thierry Reding539b7a32017-07-24 16:55:08 +0200305 unsigned int gpio = d->hwirq, port = GPIO_PORT(gpio), lvl_type;
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100306 struct tegra_gpio_bank *bank = irq_data_get_irq_chip_data(d);
Laxman Dewanganb546be02016-04-25 16:08:33 +0530307 struct tegra_gpio_info *tgi = bank->tgi;
Erik Gilling3c92db92010-03-15 19:40:06 -0700308 unsigned long flags;
Thierry Reding539b7a32017-07-24 16:55:08 +0200309 u32 val;
Stephen Warrendf231f22013-10-16 13:25:33 -0600310 int ret;
Erik Gilling3c92db92010-03-15 19:40:06 -0700311
312 switch (type & IRQ_TYPE_SENSE_MASK) {
313 case IRQ_TYPE_EDGE_RISING:
314 lvl_type = GPIO_INT_LVL_EDGE_RISING;
315 break;
316
317 case IRQ_TYPE_EDGE_FALLING:
318 lvl_type = GPIO_INT_LVL_EDGE_FALLING;
319 break;
320
321 case IRQ_TYPE_EDGE_BOTH:
322 lvl_type = GPIO_INT_LVL_EDGE_BOTH;
323 break;
324
325 case IRQ_TYPE_LEVEL_HIGH:
326 lvl_type = GPIO_INT_LVL_LEVEL_HIGH;
327 break;
328
329 case IRQ_TYPE_LEVEL_LOW:
330 lvl_type = GPIO_INT_LVL_LEVEL_LOW;
331 break;
332
333 default:
334 return -EINVAL;
335 }
336
337 spin_lock_irqsave(&bank->lvl_lock[port], flags);
338
Laxman Dewanganb546be02016-04-25 16:08:33 +0530339 val = tegra_gpio_readl(tgi, GPIO_INT_LVL(tgi, gpio));
Erik Gilling3c92db92010-03-15 19:40:06 -0700340 val &= ~(GPIO_INT_LVL_MASK << GPIO_BIT(gpio));
341 val |= lvl_type << GPIO_BIT(gpio);
Laxman Dewanganb546be02016-04-25 16:08:33 +0530342 tegra_gpio_writel(tgi, val, GPIO_INT_LVL(tgi, gpio));
Erik Gilling3c92db92010-03-15 19:40:06 -0700343
344 spin_unlock_irqrestore(&bank->lvl_lock[port], flags);
345
Laxman Dewanganb546be02016-04-25 16:08:33 +0530346 tegra_gpio_mask_write(tgi, GPIO_MSK_OE(tgi, gpio), gpio, 0);
347 tegra_gpio_enable(tgi, gpio);
Stephen Warrend9411362012-03-19 10:31:58 -0600348
Dmitry Osipenkof78709a2018-07-17 19:10:38 +0300349 ret = gpiochip_lock_as_irq(&tgi->gc, gpio);
350 if (ret) {
351 dev_err(tgi->dev,
352 "unable to lock Tegra GPIO %u as IRQ\n", gpio);
353 tegra_gpio_disable(tgi, gpio);
354 return ret;
355 }
356
Erik Gilling3c92db92010-03-15 19:40:06 -0700357 if (type & (IRQ_TYPE_LEVEL_LOW | IRQ_TYPE_LEVEL_HIGH))
Thomas Gleixnerf170d712015-06-23 15:52:40 +0200358 irq_set_handler_locked(d, handle_level_irq);
Erik Gilling3c92db92010-03-15 19:40:06 -0700359 else if (type & (IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING))
Thomas Gleixnerf170d712015-06-23 15:52:40 +0200360 irq_set_handler_locked(d, handle_edge_irq);
Erik Gilling3c92db92010-03-15 19:40:06 -0700361
362 return 0;
363}
364
Stephen Warrendf231f22013-10-16 13:25:33 -0600365static void tegra_gpio_irq_shutdown(struct irq_data *d)
366{
Laxman Dewanganb546be02016-04-25 16:08:33 +0530367 struct tegra_gpio_bank *bank = irq_data_get_irq_chip_data(d);
368 struct tegra_gpio_info *tgi = bank->tgi;
Thierry Reding539b7a32017-07-24 16:55:08 +0200369 unsigned int gpio = d->hwirq;
Stephen Warrendf231f22013-10-16 13:25:33 -0600370
Stephen Warren0cf253e2020-04-27 17:26:05 -0600371 tegra_gpio_irq_mask(d);
Laxman Dewanganb546be02016-04-25 16:08:33 +0530372 gpiochip_unlock_as_irq(&tgi->gc, gpio);
Stephen Warrendf231f22013-10-16 13:25:33 -0600373}
374
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200375static void tegra_gpio_irq_handler(struct irq_desc *desc)
Erik Gilling3c92db92010-03-15 19:40:06 -0700376{
Thierry Reding539b7a32017-07-24 16:55:08 +0200377 unsigned int port, pin, gpio;
Michał Mirosław9e9509e2017-07-18 14:35:45 +0200378 bool unmasked = false;
Laxman Dewanganb546be02016-04-25 16:08:33 +0530379 u32 lvl;
380 unsigned long sta;
Will Deacon98022942011-02-21 13:58:10 +0000381 struct irq_chip *chip = irq_desc_get_chip(desc);
Jiang Liu476f8b42015-06-04 12:13:15 +0800382 struct tegra_gpio_bank *bank = irq_desc_get_handler_data(desc);
Laxman Dewanganb546be02016-04-25 16:08:33 +0530383 struct tegra_gpio_info *tgi = bank->tgi;
Erik Gilling3c92db92010-03-15 19:40:06 -0700384
Will Deacon98022942011-02-21 13:58:10 +0000385 chained_irq_enter(chip, desc);
Erik Gilling3c92db92010-03-15 19:40:06 -0700386
Erik Gilling3c92db92010-03-15 19:40:06 -0700387 for (port = 0; port < 4; port++) {
Laxman Dewanganb546be02016-04-25 16:08:33 +0530388 gpio = tegra_gpio_compose(bank->bank, port, 0);
389 sta = tegra_gpio_readl(tgi, GPIO_INT_STA(tgi, gpio)) &
390 tegra_gpio_readl(tgi, GPIO_INT_ENB(tgi, gpio));
391 lvl = tegra_gpio_readl(tgi, GPIO_INT_LVL(tgi, gpio));
Erik Gilling3c92db92010-03-15 19:40:06 -0700392
393 for_each_set_bit(pin, &sta, 8) {
Laxman Dewanganb546be02016-04-25 16:08:33 +0530394 tegra_gpio_writel(tgi, 1 << pin,
395 GPIO_INT_CLR(tgi, gpio));
Erik Gilling3c92db92010-03-15 19:40:06 -0700396
397 /* if gpio is edge triggered, clear condition
Colin Cronin20a8a962015-05-18 11:41:43 -0700398 * before executing the handler so that we don't
Erik Gilling3c92db92010-03-15 19:40:06 -0700399 * miss edges
400 */
Michał Mirosław9e9509e2017-07-18 14:35:45 +0200401 if (!unmasked && lvl & (0x100 << pin)) {
402 unmasked = true;
Will Deacon98022942011-02-21 13:58:10 +0000403 chained_irq_exit(chip, desc);
Erik Gilling3c92db92010-03-15 19:40:06 -0700404 }
405
Grygorii Strashkoc0debb32017-07-08 17:44:11 -0500406 generic_handle_irq(irq_find_mapping(tgi->irq_domain,
407 gpio + pin));
Erik Gilling3c92db92010-03-15 19:40:06 -0700408 }
409 }
410
411 if (!unmasked)
Will Deacon98022942011-02-21 13:58:10 +0000412 chained_irq_exit(chip, desc);
Erik Gilling3c92db92010-03-15 19:40:06 -0700413
414}
415
Laxman Dewangan8939ddc2012-11-07 20:31:32 +0530416#ifdef CONFIG_PM_SLEEP
417static int tegra_gpio_resume(struct device *dev)
Colin Cross2e47b8b2010-04-07 12:59:42 -0700418{
Wolfram Sang7ddb7dc2018-10-21 22:00:00 +0200419 struct tegra_gpio_info *tgi = dev_get_drvdata(dev);
Thierry Reding539b7a32017-07-24 16:55:08 +0200420 unsigned int b, p;
Colin Cross2e47b8b2010-04-07 12:59:42 -0700421
Laxman Dewanganb546be02016-04-25 16:08:33 +0530422 for (b = 0; b < tgi->bank_count; b++) {
423 struct tegra_gpio_bank *bank = &tgi->bank_info[b];
Colin Cross2e47b8b2010-04-07 12:59:42 -0700424
425 for (p = 0; p < ARRAY_SIZE(bank->oe); p++) {
Thierry Reding4bc17862017-07-24 16:55:07 +0200426 unsigned int gpio = (b << 5) | (p << 3);
427
Laxman Dewanganb546be02016-04-25 16:08:33 +0530428 tegra_gpio_writel(tgi, bank->cnf[p],
429 GPIO_CNF(tgi, gpio));
Laxman Dewangan3737de42016-04-25 16:08:34 +0530430
431 if (tgi->soc->debounce_supported) {
432 tegra_gpio_writel(tgi, bank->dbc_cnt[p],
433 GPIO_DBC_CNT(tgi, gpio));
434 tegra_gpio_writel(tgi, bank->dbc_enb[p],
435 GPIO_MSK_DBC_EN(tgi, gpio));
436 }
437
Laxman Dewanganb546be02016-04-25 16:08:33 +0530438 tegra_gpio_writel(tgi, bank->out[p],
439 GPIO_OUT(tgi, gpio));
440 tegra_gpio_writel(tgi, bank->oe[p],
441 GPIO_OE(tgi, gpio));
442 tegra_gpio_writel(tgi, bank->int_lvl[p],
443 GPIO_INT_LVL(tgi, gpio));
444 tegra_gpio_writel(tgi, bank->int_enb[p],
445 GPIO_INT_ENB(tgi, gpio));
Colin Cross2e47b8b2010-04-07 12:59:42 -0700446 }
447 }
448
Laxman Dewangan8939ddc2012-11-07 20:31:32 +0530449 return 0;
Colin Cross2e47b8b2010-04-07 12:59:42 -0700450}
451
Laxman Dewangan8939ddc2012-11-07 20:31:32 +0530452static int tegra_gpio_suspend(struct device *dev)
Colin Cross2e47b8b2010-04-07 12:59:42 -0700453{
Wolfram Sang7ddb7dc2018-10-21 22:00:00 +0200454 struct tegra_gpio_info *tgi = dev_get_drvdata(dev);
Thierry Reding539b7a32017-07-24 16:55:08 +0200455 unsigned int b, p;
Colin Cross2e47b8b2010-04-07 12:59:42 -0700456
Laxman Dewanganb546be02016-04-25 16:08:33 +0530457 for (b = 0; b < tgi->bank_count; b++) {
458 struct tegra_gpio_bank *bank = &tgi->bank_info[b];
Colin Cross2e47b8b2010-04-07 12:59:42 -0700459
460 for (p = 0; p < ARRAY_SIZE(bank->oe); p++) {
Thierry Reding4bc17862017-07-24 16:55:07 +0200461 unsigned int gpio = (b << 5) | (p << 3);
462
Laxman Dewanganb546be02016-04-25 16:08:33 +0530463 bank->cnf[p] = tegra_gpio_readl(tgi,
464 GPIO_CNF(tgi, gpio));
465 bank->out[p] = tegra_gpio_readl(tgi,
466 GPIO_OUT(tgi, gpio));
467 bank->oe[p] = tegra_gpio_readl(tgi,
468 GPIO_OE(tgi, gpio));
Laxman Dewangan3737de42016-04-25 16:08:34 +0530469 if (tgi->soc->debounce_supported) {
470 bank->dbc_enb[p] = tegra_gpio_readl(tgi,
471 GPIO_MSK_DBC_EN(tgi, gpio));
472 bank->dbc_enb[p] = (bank->dbc_enb[p] << 8) |
473 bank->dbc_enb[p];
474 }
475
Laxman Dewanganb546be02016-04-25 16:08:33 +0530476 bank->int_enb[p] = tegra_gpio_readl(tgi,
477 GPIO_INT_ENB(tgi, gpio));
478 bank->int_lvl[p] = tegra_gpio_readl(tgi,
479 GPIO_INT_LVL(tgi, gpio));
Joseph Lo203f31c2013-04-03 19:31:44 +0800480
481 /* Enable gpio irq for wake up source */
Laxman Dewanganb546be02016-04-25 16:08:33 +0530482 tegra_gpio_writel(tgi, bank->wake_enb[p],
483 GPIO_INT_ENB(tgi, gpio));
Colin Cross2e47b8b2010-04-07 12:59:42 -0700484 }
485 }
Dmitry Osipenko9ccaf102019-12-15 21:30:47 +0300486
Laxman Dewangan8939ddc2012-11-07 20:31:32 +0530487 return 0;
Colin Cross2e47b8b2010-04-07 12:59:42 -0700488}
489
Joseph Lo203f31c2013-04-03 19:31:44 +0800490static int tegra_gpio_irq_set_wake(struct irq_data *d, unsigned int enable)
Colin Cross2e47b8b2010-04-07 12:59:42 -0700491{
Lennert Buytenhek37337a82010-11-29 11:14:46 +0100492 struct tegra_gpio_bank *bank = irq_data_get_irq_chip_data(d);
Thierry Reding539b7a32017-07-24 16:55:08 +0200493 unsigned int gpio = d->hwirq;
Joseph Lo203f31c2013-04-03 19:31:44 +0800494 u32 port, bit, mask;
Dmitry Osipenkof56d9792019-12-15 21:30:46 +0300495 int err;
496
497 err = irq_set_irq_wake(bank->irq, enable);
498 if (err)
499 return err;
Joseph Lo203f31c2013-04-03 19:31:44 +0800500
501 port = GPIO_PORT(gpio);
502 bit = GPIO_BIT(gpio);
503 mask = BIT(bit);
504
505 if (enable)
506 bank->wake_enb[port] |= mask;
507 else
508 bank->wake_enb[port] &= ~mask;
509
Dmitry Osipenkof56d9792019-12-15 21:30:46 +0300510 return 0;
Colin Cross2e47b8b2010-04-07 12:59:42 -0700511}
512#endif
Erik Gilling3c92db92010-03-15 19:40:06 -0700513
Suzuki K. Pouloseb59d5fb2015-11-16 16:07:10 +0000514#ifdef CONFIG_DEBUG_FS
515
516#include <linux/debugfs.h>
517#include <linux/seq_file.h>
518
Axel Lin2773eb22018-02-12 22:01:57 +0800519static int tegra_dbg_gpio_show(struct seq_file *s, void *unused)
Suzuki K. Pouloseb59d5fb2015-11-16 16:07:10 +0000520{
Laxman Dewanganb546be02016-04-25 16:08:33 +0530521 struct tegra_gpio_info *tgi = s->private;
Thierry Reding539b7a32017-07-24 16:55:08 +0200522 unsigned int i, j;
Suzuki K. Pouloseb59d5fb2015-11-16 16:07:10 +0000523
Laxman Dewanganb546be02016-04-25 16:08:33 +0530524 for (i = 0; i < tgi->bank_count; i++) {
Suzuki K. Pouloseb59d5fb2015-11-16 16:07:10 +0000525 for (j = 0; j < 4; j++) {
Thierry Reding539b7a32017-07-24 16:55:08 +0200526 unsigned int gpio = tegra_gpio_compose(i, j, 0);
Thierry Reding4bc17862017-07-24 16:55:07 +0200527
Suzuki K. Pouloseb59d5fb2015-11-16 16:07:10 +0000528 seq_printf(s,
Thierry Reding539b7a32017-07-24 16:55:08 +0200529 "%u:%u %02x %02x %02x %02x %02x %02x %06x\n",
Suzuki K. Pouloseb59d5fb2015-11-16 16:07:10 +0000530 i, j,
Laxman Dewanganb546be02016-04-25 16:08:33 +0530531 tegra_gpio_readl(tgi, GPIO_CNF(tgi, gpio)),
532 tegra_gpio_readl(tgi, GPIO_OE(tgi, gpio)),
533 tegra_gpio_readl(tgi, GPIO_OUT(tgi, gpio)),
534 tegra_gpio_readl(tgi, GPIO_IN(tgi, gpio)),
535 tegra_gpio_readl(tgi, GPIO_INT_STA(tgi, gpio)),
536 tegra_gpio_readl(tgi, GPIO_INT_ENB(tgi, gpio)),
537 tegra_gpio_readl(tgi, GPIO_INT_LVL(tgi, gpio)));
Suzuki K. Pouloseb59d5fb2015-11-16 16:07:10 +0000538 }
539 }
540 return 0;
541}
542
Axel Lin2773eb22018-02-12 22:01:57 +0800543DEFINE_SHOW_ATTRIBUTE(tegra_dbg_gpio);
Suzuki K. Pouloseb59d5fb2015-11-16 16:07:10 +0000544
Laxman Dewanganb546be02016-04-25 16:08:33 +0530545static void tegra_gpio_debuginit(struct tegra_gpio_info *tgi)
Suzuki K. Pouloseb59d5fb2015-11-16 16:07:10 +0000546{
Linus Walleij9b3b6232019-07-06 20:15:54 +0200547 debugfs_create_file("tegra_gpio", 0444, NULL, tgi,
548 &tegra_dbg_gpio_fops);
Suzuki K. Pouloseb59d5fb2015-11-16 16:07:10 +0000549}
550
551#else
552
Laxman Dewanganb546be02016-04-25 16:08:33 +0530553static inline void tegra_gpio_debuginit(struct tegra_gpio_info *tgi)
Suzuki K. Pouloseb59d5fb2015-11-16 16:07:10 +0000554{
555}
556
557#endif
558
Laxman Dewangan8939ddc2012-11-07 20:31:32 +0530559static const struct dev_pm_ops tegra_gpio_pm_ops = {
Dmitry Osipenko9ccaf102019-12-15 21:30:47 +0300560 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(tegra_gpio_suspend, tegra_gpio_resume)
Laxman Dewangan8939ddc2012-11-07 20:31:32 +0530561};
562
Bill Pemberton38363092012-11-19 13:22:34 -0500563static int tegra_gpio_probe(struct platform_device *pdev)
Erik Gilling3c92db92010-03-15 19:40:06 -0700564{
Laxman Dewanganb546be02016-04-25 16:08:33 +0530565 struct tegra_gpio_info *tgi;
Erik Gilling3c92db92010-03-15 19:40:06 -0700566 struct tegra_gpio_bank *bank;
Thierry Reding539b7a32017-07-24 16:55:08 +0200567 unsigned int gpio, i, j;
Stephen Warrenf57f98a2013-12-06 13:36:11 -0700568 int ret;
Erik Gilling3c92db92010-03-15 19:40:06 -0700569
Laxman Dewanganb546be02016-04-25 16:08:33 +0530570 tgi = devm_kzalloc(&pdev->dev, sizeof(*tgi), GFP_KERNEL);
571 if (!tgi)
572 return -ENODEV;
573
Thierry Reding20133bd2017-07-24 16:55:05 +0200574 tgi->soc = of_device_get_match_data(&pdev->dev);
Laxman Dewanganb546be02016-04-25 16:08:33 +0530575 tgi->dev = &pdev->dev;
Stephen Warren5c1e2c92012-03-16 17:35:08 -0600576
Thierry Reding56420902017-07-20 18:00:56 +0200577 ret = platform_irq_count(pdev);
578 if (ret < 0)
579 return ret;
580
581 tgi->bank_count = ret;
582
Laxman Dewanganb546be02016-04-25 16:08:33 +0530583 if (!tgi->bank_count) {
Stephen Warren33918112012-01-19 08:16:35 +0000584 dev_err(&pdev->dev, "Missing IRQ resource\n");
585 return -ENODEV;
586 }
587
Laxman Dewanganb546be02016-04-25 16:08:33 +0530588 tgi->gc.label = "tegra-gpio";
589 tgi->gc.request = tegra_gpio_request;
590 tgi->gc.free = tegra_gpio_free;
591 tgi->gc.direction_input = tegra_gpio_direction_input;
592 tgi->gc.get = tegra_gpio_get;
593 tgi->gc.direction_output = tegra_gpio_direction_output;
594 tgi->gc.set = tegra_gpio_set;
Laxman Dewanganf002d072016-04-29 21:55:23 +0530595 tgi->gc.get_direction = tegra_gpio_get_direction;
Laxman Dewanganb546be02016-04-25 16:08:33 +0530596 tgi->gc.to_irq = tegra_gpio_to_irq;
597 tgi->gc.base = 0;
598 tgi->gc.ngpio = tgi->bank_count * 32;
599 tgi->gc.parent = &pdev->dev;
600 tgi->gc.of_node = pdev->dev.of_node;
Stephen Warren33918112012-01-19 08:16:35 +0000601
Laxman Dewanganb546be02016-04-25 16:08:33 +0530602 tgi->ic.name = "GPIO";
603 tgi->ic.irq_ack = tegra_gpio_irq_ack;
604 tgi->ic.irq_mask = tegra_gpio_irq_mask;
605 tgi->ic.irq_unmask = tegra_gpio_irq_unmask;
606 tgi->ic.irq_set_type = tegra_gpio_irq_set_type;
607 tgi->ic.irq_shutdown = tegra_gpio_irq_shutdown;
608#ifdef CONFIG_PM_SLEEP
609 tgi->ic.irq_set_wake = tegra_gpio_irq_set_wake;
610#endif
611
612 platform_set_drvdata(pdev, tgi);
613
Thierry Reding20133bd2017-07-24 16:55:05 +0200614 if (tgi->soc->debounce_supported)
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300615 tgi->gc.set_config = tegra_gpio_set_config;
Laxman Dewangan3737de42016-04-25 16:08:34 +0530616
Thierry Reding9b882262017-07-24 16:55:06 +0200617 tgi->bank_info = devm_kcalloc(&pdev->dev, tgi->bank_count,
Laxman Dewanganb546be02016-04-25 16:08:33 +0530618 sizeof(*tgi->bank_info), GFP_KERNEL);
619 if (!tgi->bank_info)
Thierry Reding9b882262017-07-24 16:55:06 +0200620 return -ENOMEM;
Stephen Warren33918112012-01-19 08:16:35 +0000621
Laxman Dewanganb546be02016-04-25 16:08:33 +0530622 tgi->irq_domain = irq_domain_add_linear(pdev->dev.of_node,
623 tgi->gc.ngpio,
624 &irq_domain_simple_ops, NULL);
625 if (!tgi->irq_domain)
Linus Walleijd0235672012-10-16 21:00:09 +0200626 return -ENODEV;
Stephen Warren6f74dc92012-01-04 08:39:37 +0000627
Laxman Dewanganb546be02016-04-25 16:08:33 +0530628 for (i = 0; i < tgi->bank_count; i++) {
Thierry Reding9c074092017-07-20 18:00:57 +0200629 ret = platform_get_irq(pdev, i);
Stephen Boyd15bddb72019-07-30 11:15:15 -0700630 if (ret < 0)
Thierry Reding9c074092017-07-20 18:00:57 +0200631 return ret;
Stephen Warren88d89512011-10-11 16:16:14 -0600632
Laxman Dewanganb546be02016-04-25 16:08:33 +0530633 bank = &tgi->bank_info[i];
Stephen Warren88d89512011-10-11 16:16:14 -0600634 bank->bank = i;
Thierry Reding9c074092017-07-20 18:00:57 +0200635 bank->irq = ret;
Laxman Dewanganb546be02016-04-25 16:08:33 +0530636 bank->tgi = tgi;
Stephen Warren88d89512011-10-11 16:16:14 -0600637 }
638
Enrico Weigelt, metux IT consulta0b81f12019-03-11 19:55:12 +0100639 tgi->regs = devm_platform_ioremap_resource(pdev, 0);
Laxman Dewanganb546be02016-04-25 16:08:33 +0530640 if (IS_ERR(tgi->regs))
641 return PTR_ERR(tgi->regs);
Stephen Warren88d89512011-10-11 16:16:14 -0600642
Laxman Dewanganb546be02016-04-25 16:08:33 +0530643 for (i = 0; i < tgi->bank_count; i++) {
Erik Gilling3c92db92010-03-15 19:40:06 -0700644 for (j = 0; j < 4; j++) {
645 int gpio = tegra_gpio_compose(i, j, 0);
Thierry Reding4bc17862017-07-24 16:55:07 +0200646
Laxman Dewanganb546be02016-04-25 16:08:33 +0530647 tegra_gpio_writel(tgi, 0x00, GPIO_INT_ENB(tgi, gpio));
Erik Gilling3c92db92010-03-15 19:40:06 -0700648 }
649 }
650
Laxman Dewanganb546be02016-04-25 16:08:33 +0530651 ret = devm_gpiochip_add_data(&pdev->dev, &tgi->gc, tgi);
Stephen Warrenf57f98a2013-12-06 13:36:11 -0700652 if (ret < 0) {
Laxman Dewanganb546be02016-04-25 16:08:33 +0530653 irq_domain_remove(tgi->irq_domain);
Stephen Warrenf57f98a2013-12-06 13:36:11 -0700654 return ret;
655 }
Erik Gilling3c92db92010-03-15 19:40:06 -0700656
Laxman Dewanganb546be02016-04-25 16:08:33 +0530657 for (gpio = 0; gpio < tgi->gc.ngpio; gpio++) {
658 int irq = irq_create_mapping(tgi->irq_domain, gpio);
Stephen Warren47008002011-08-23 00:39:55 +0100659 /* No validity check; all Tegra GPIOs are valid IRQs */
Erik Gilling3c92db92010-03-15 19:40:06 -0700660
Laxman Dewanganb546be02016-04-25 16:08:33 +0530661 bank = &tgi->bank_info[GPIO_BANK(gpio)];
Stephen Warren47008002011-08-23 00:39:55 +0100662
Stephen Warren47008002011-08-23 00:39:55 +0100663 irq_set_chip_data(irq, bank);
Laxman Dewanganb546be02016-04-25 16:08:33 +0530664 irq_set_chip_and_handler(irq, &tgi->ic, handle_simple_irq);
Erik Gilling3c92db92010-03-15 19:40:06 -0700665 }
666
Laxman Dewanganb546be02016-04-25 16:08:33 +0530667 for (i = 0; i < tgi->bank_count; i++) {
668 bank = &tgi->bank_info[i];
Erik Gilling3c92db92010-03-15 19:40:06 -0700669
Russell Kinge88d2512015-06-16 23:06:50 +0100670 irq_set_chained_handler_and_data(bank->irq,
671 tegra_gpio_irq_handler, bank);
Erik Gilling3c92db92010-03-15 19:40:06 -0700672
Laxman Dewangan3737de42016-04-25 16:08:34 +0530673 for (j = 0; j < 4; j++) {
Erik Gilling3c92db92010-03-15 19:40:06 -0700674 spin_lock_init(&bank->lvl_lock[j]);
Laxman Dewangan3737de42016-04-25 16:08:34 +0530675 spin_lock_init(&bank->dbc_lock[j]);
676 }
Erik Gilling3c92db92010-03-15 19:40:06 -0700677 }
678
Laxman Dewanganb546be02016-04-25 16:08:33 +0530679 tegra_gpio_debuginit(tgi);
Suzuki K. Pouloseb59d5fb2015-11-16 16:07:10 +0000680
Erik Gilling3c92db92010-03-15 19:40:06 -0700681 return 0;
682}
683
Laxman Dewangan804f5682016-04-25 16:08:32 +0530684static const struct tegra_gpio_soc_config tegra20_gpio_config = {
Laxman Dewangan171b92c2016-04-25 16:08:31 +0530685 .bank_stride = 0x80,
686 .upper_offset = 0x800,
687};
688
Laxman Dewangan804f5682016-04-25 16:08:32 +0530689static const struct tegra_gpio_soc_config tegra30_gpio_config = {
Laxman Dewangan171b92c2016-04-25 16:08:31 +0530690 .bank_stride = 0x100,
691 .upper_offset = 0x80,
692};
693
Laxman Dewangan3737de42016-04-25 16:08:34 +0530694static const struct tegra_gpio_soc_config tegra210_gpio_config = {
695 .debounce_supported = true,
696 .bank_stride = 0x100,
697 .upper_offset = 0x80,
698};
699
Laxman Dewangan171b92c2016-04-25 16:08:31 +0530700static const struct of_device_id tegra_gpio_of_match[] = {
Laxman Dewangan3737de42016-04-25 16:08:34 +0530701 { .compatible = "nvidia,tegra210-gpio", .data = &tegra210_gpio_config },
Laxman Dewangan171b92c2016-04-25 16:08:31 +0530702 { .compatible = "nvidia,tegra30-gpio", .data = &tegra30_gpio_config },
703 { .compatible = "nvidia,tegra20-gpio", .data = &tegra20_gpio_config },
704 { },
705};
706
Stephen Warren88d89512011-10-11 16:16:14 -0600707static struct platform_driver tegra_gpio_driver = {
708 .driver = {
709 .name = "tegra-gpio",
Laxman Dewangan8939ddc2012-11-07 20:31:32 +0530710 .pm = &tegra_gpio_pm_ops,
Stephen Warren88d89512011-10-11 16:16:14 -0600711 .of_match_table = tegra_gpio_of_match,
712 },
713 .probe = tegra_gpio_probe,
714};
715
716static int __init tegra_gpio_init(void)
717{
718 return platform_driver_register(&tegra_gpio_driver);
719}
Dmitry Osipenko40b25bc2018-08-02 14:11:44 +0300720subsys_initcall(tegra_gpio_init);