blob: a19eeef6cf1ecb883bdc063b1514f266cb8fc0b5 [file] [log] [blame]
Andy Shevchenkofd30b722018-11-06 14:11:42 +02001// SPDX-License-Identifier: GPL-2.0
Bin Gao0ba19cf2016-07-25 14:59:38 -07002/*
3 * Intel Whiskey Cove PMIC GPIO Driver
4 *
5 * This driver is written based on gpio-crystalcove.c
6 *
7 * Copyright (C) 2016 Intel Corporation. All rights reserved.
Bin Gao0ba19cf2016-07-25 14:59:38 -07008 */
9
10#include <linux/bitops.h>
Bin Gao0ba19cf2016-07-25 14:59:38 -070011#include <linux/gpio/driver.h>
Andy Shevchenko39684802018-09-04 14:26:25 +030012#include <linux/interrupt.h>
Bin Gao0ba19cf2016-07-25 14:59:38 -070013#include <linux/mfd/intel_soc_pmic.h>
Andy Shevchenko39684802018-09-04 14:26:25 +030014#include <linux/module.h>
Bin Gao0ba19cf2016-07-25 14:59:38 -070015#include <linux/platform_device.h>
16#include <linux/regmap.h>
17#include <linux/seq_file.h>
18
19/*
20 * Whiskey Cove PMIC has 13 physical GPIO pins divided into 3 banks:
Andy Shevchenkocb19c7f2019-01-29 20:40:58 +020021 * Bank 0: Pin 0 - 6
22 * Bank 1: Pin 7 - 10
23 * Bank 2: Pin 11 - 12
Bin Gao0ba19cf2016-07-25 14:59:38 -070024 * Each pin has one output control register and one input control register.
25 */
26#define BANK0_NR_PINS 7
27#define BANK1_NR_PINS 4
28#define BANK2_NR_PINS 2
29#define WCOVE_GPIO_NUM (BANK0_NR_PINS + BANK1_NR_PINS + BANK2_NR_PINS)
30#define WCOVE_VGPIO_NUM 94
31/* GPIO output control registers (one per pin): 0x4e44 - 0x4e50 */
32#define GPIO_OUT_CTRL_BASE 0x4e44
33/* GPIO input control registers (one per pin): 0x4e51 - 0x4e5d */
34#define GPIO_IN_CTRL_BASE 0x4e51
35
36/*
37 * GPIO interrupts are organized in two groups:
38 * Group 0: Bank 0 pins (Pin 0 - 6)
39 * Group 1: Bank 1 and Bank 2 pins (Pin 7 - 12)
40 * Each group has two registers (one bit per pin): status and mask.
41 */
42#define GROUP0_NR_IRQS 7
43#define GROUP1_NR_IRQS 6
44#define IRQ_MASK_BASE 0x4e19
45#define IRQ_STATUS_BASE 0x4e0b
Kuppuswamy Sathyanarayanan881ebd22017-04-24 12:15:04 -070046#define GPIO_IRQ0_MASK GENMASK(6, 0)
47#define GPIO_IRQ1_MASK GENMASK(5, 0)
Bin Gao0ba19cf2016-07-25 14:59:38 -070048#define UPDATE_IRQ_TYPE BIT(0)
49#define UPDATE_IRQ_MASK BIT(1)
50
51#define CTLI_INTCNT_DIS (0 << 1)
52#define CTLI_INTCNT_NE (1 << 1)
53#define CTLI_INTCNT_PE (2 << 1)
54#define CTLI_INTCNT_BE (3 << 1)
55
56#define CTLO_DIR_IN (0 << 5)
57#define CTLO_DIR_OUT (1 << 5)
58
59#define CTLO_DRV_MASK (1 << 4)
60#define CTLO_DRV_OD (0 << 4)
61#define CTLO_DRV_CMOS (1 << 4)
62
63#define CTLO_DRV_REN (1 << 3)
64
65#define CTLO_RVAL_2KDOWN (0 << 1)
66#define CTLO_RVAL_2KUP (1 << 1)
67#define CTLO_RVAL_50KDOWN (2 << 1)
68#define CTLO_RVAL_50KUP (3 << 1)
69
Andy Shevchenkocb19c7f2019-01-29 20:40:58 +020070#define CTLO_INPUT_SET (CTLO_DRV_CMOS | CTLO_DRV_REN | CTLO_RVAL_2KUP)
71#define CTLO_OUTPUT_SET (CTLO_DIR_OUT | CTLO_INPUT_SET)
Bin Gao0ba19cf2016-07-25 14:59:38 -070072
73enum ctrl_register {
74 CTRL_IN,
75 CTRL_OUT,
Andy Shevchenko5a2a46a2020-10-14 17:13:23 +030076 IRQ_STATUS,
77 IRQ_MASK,
Bin Gao0ba19cf2016-07-25 14:59:38 -070078};
79
80/*
81 * struct wcove_gpio - Whiskey Cove GPIO controller
82 * @buslock: for bus lock/sync and unlock.
83 * @chip: the abstract gpio_chip structure.
84 * @dev: the gpio device
85 * @regmap: the regmap from the parent device.
86 * @regmap_irq_chip: the regmap of the gpio irq chip.
87 * @update: pending IRQ setting update, to be written to the chip upon unlock.
88 * @intcnt: the Interrupt Detect value to be written.
89 * @set_irq_mask: true if the IRQ mask needs to be set, false to clear.
90 */
91struct wcove_gpio {
92 struct mutex buslock;
93 struct gpio_chip chip;
94 struct device *dev;
95 struct regmap *regmap;
96 struct regmap_irq_chip_data *regmap_irq_chip;
97 int update;
98 int intcnt;
99 bool set_irq_mask;
100};
101
Andy Shevchenko282db902019-01-29 20:37:28 +0200102static inline int to_reg(int gpio, enum ctrl_register reg_type)
Bin Gao0ba19cf2016-07-25 14:59:38 -0700103{
104 unsigned int reg;
Bin Gao0ba19cf2016-07-25 14:59:38 -0700105
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700106 if (gpio >= WCOVE_GPIO_NUM)
107 return -EOPNOTSUPP;
Bin Gao0ba19cf2016-07-25 14:59:38 -0700108
109 if (reg_type == CTRL_IN)
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700110 reg = GPIO_IN_CTRL_BASE + gpio;
Bin Gao0ba19cf2016-07-25 14:59:38 -0700111 else
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700112 reg = GPIO_OUT_CTRL_BASE + gpio;
Bin Gao0ba19cf2016-07-25 14:59:38 -0700113
114 return reg;
115}
116
Andy Shevchenko5a2a46a2020-10-14 17:13:23 +0300117static inline int to_ireg(int gpio, enum ctrl_register type, unsigned int *mask)
Bin Gao0ba19cf2016-07-25 14:59:38 -0700118{
Andy Shevchenko5a2a46a2020-10-14 17:13:23 +0300119 unsigned int reg = type == IRQ_STATUS ? IRQ_STATUS_BASE : IRQ_MASK_BASE;
Bin Gao0ba19cf2016-07-25 14:59:38 -0700120
121 if (gpio < GROUP0_NR_IRQS) {
Andy Shevchenko5a2a46a2020-10-14 17:13:23 +0300122 reg += 0;
123 *mask = BIT(gpio);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700124 } else {
Andy Shevchenko5a2a46a2020-10-14 17:13:23 +0300125 reg += 1;
126 *mask = BIT(gpio - GROUP0_NR_IRQS);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700127 }
128
Andy Shevchenko5a2a46a2020-10-14 17:13:23 +0300129 return reg;
130}
131
132static void wcove_update_irq_mask(struct wcove_gpio *wg, int gpio)
133{
134 unsigned int mask, reg = to_ireg(gpio, IRQ_MASK, &mask);
135
Bin Gao0ba19cf2016-07-25 14:59:38 -0700136 if (wg->set_irq_mask)
Andy Shevchenko9fe5fcd62021-01-29 18:24:28 +0200137 regmap_set_bits(wg->regmap, reg, mask);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700138 else
Andy Shevchenko9fe5fcd62021-01-29 18:24:28 +0200139 regmap_clear_bits(wg->regmap, reg, mask);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700140}
141
142static void wcove_update_irq_ctrl(struct wcove_gpio *wg, int gpio)
143{
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700144 int reg = to_reg(gpio, CTRL_IN);
145
146 if (reg < 0)
147 return;
Bin Gao0ba19cf2016-07-25 14:59:38 -0700148
149 regmap_update_bits(wg->regmap, reg, CTLI_INTCNT_BE, wg->intcnt);
150}
151
152static int wcove_gpio_dir_in(struct gpio_chip *chip, unsigned int gpio)
153{
154 struct wcove_gpio *wg = gpiochip_get_data(chip);
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700155 int reg = to_reg(gpio, CTRL_OUT);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700156
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700157 if (reg < 0)
158 return 0;
159
160 return regmap_write(wg->regmap, reg, CTLO_INPUT_SET);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700161}
162
163static int wcove_gpio_dir_out(struct gpio_chip *chip, unsigned int gpio,
164 int value)
165{
166 struct wcove_gpio *wg = gpiochip_get_data(chip);
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700167 int reg = to_reg(gpio, CTRL_OUT);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700168
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700169 if (reg < 0)
170 return 0;
171
172 return regmap_write(wg->regmap, reg, CTLO_OUTPUT_SET | value);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700173}
174
Bin Gao7d9e59c2016-08-15 11:03:23 -0700175static int wcove_gpio_get_direction(struct gpio_chip *chip, unsigned int gpio)
176{
177 struct wcove_gpio *wg = gpiochip_get_data(chip);
178 unsigned int val;
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700179 int ret, reg = to_reg(gpio, CTRL_OUT);
Bin Gao7d9e59c2016-08-15 11:03:23 -0700180
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700181 if (reg < 0)
Matti Vaittinene42615e2019-11-06 10:54:12 +0200182 return GPIO_LINE_DIRECTION_OUT;
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700183
184 ret = regmap_read(wg->regmap, reg, &val);
Bin Gao7d9e59c2016-08-15 11:03:23 -0700185 if (ret)
186 return ret;
187
Matti Vaittinene42615e2019-11-06 10:54:12 +0200188 if (val & CTLO_DIR_OUT)
189 return GPIO_LINE_DIRECTION_OUT;
190
191 return GPIO_LINE_DIRECTION_IN;
Bin Gao7d9e59c2016-08-15 11:03:23 -0700192}
193
Bin Gao0ba19cf2016-07-25 14:59:38 -0700194static int wcove_gpio_get(struct gpio_chip *chip, unsigned int gpio)
195{
196 struct wcove_gpio *wg = gpiochip_get_data(chip);
197 unsigned int val;
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700198 int ret, reg = to_reg(gpio, CTRL_IN);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700199
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700200 if (reg < 0)
201 return 0;
202
203 ret = regmap_read(wg->regmap, reg, &val);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700204 if (ret)
205 return ret;
206
207 return val & 0x1;
208}
209
Andy Shevchenkocb19c7f2019-01-29 20:40:58 +0200210static void wcove_gpio_set(struct gpio_chip *chip, unsigned int gpio, int value)
Bin Gao0ba19cf2016-07-25 14:59:38 -0700211{
212 struct wcove_gpio *wg = gpiochip_get_data(chip);
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700213 int reg = to_reg(gpio, CTRL_OUT);
214
215 if (reg < 0)
216 return;
Bin Gao0ba19cf2016-07-25 14:59:38 -0700217
218 if (value)
Andy Shevchenko9fe5fcd62021-01-29 18:24:28 +0200219 regmap_set_bits(wg->regmap, reg, 1);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700220 else
Andy Shevchenko9fe5fcd62021-01-29 18:24:28 +0200221 regmap_clear_bits(wg->regmap, reg, 1);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700222}
223
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300224static int wcove_gpio_set_config(struct gpio_chip *chip, unsigned int gpio,
225 unsigned long config)
Bin Gao0ba19cf2016-07-25 14:59:38 -0700226{
227 struct wcove_gpio *wg = gpiochip_get_data(chip);
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700228 int reg = to_reg(gpio, CTRL_OUT);
229
230 if (reg < 0)
231 return 0;
Bin Gao0ba19cf2016-07-25 14:59:38 -0700232
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300233 switch (pinconf_to_config_param(config)) {
234 case PIN_CONFIG_DRIVE_OPEN_DRAIN:
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700235 return regmap_update_bits(wg->regmap, reg, CTLO_DRV_MASK,
236 CTLO_DRV_OD);
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300237 case PIN_CONFIG_DRIVE_PUSH_PULL:
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700238 return regmap_update_bits(wg->regmap, reg, CTLO_DRV_MASK,
239 CTLO_DRV_CMOS);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700240 default:
241 break;
242 }
243
244 return -ENOTSUPP;
245}
246
247static int wcove_irq_type(struct irq_data *data, unsigned int type)
248{
249 struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
250 struct wcove_gpio *wg = gpiochip_get_data(chip);
251
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700252 if (data->hwirq >= WCOVE_GPIO_NUM)
253 return 0;
254
Bin Gao0ba19cf2016-07-25 14:59:38 -0700255 switch (type) {
256 case IRQ_TYPE_NONE:
257 wg->intcnt = CTLI_INTCNT_DIS;
258 break;
259 case IRQ_TYPE_EDGE_BOTH:
260 wg->intcnt = CTLI_INTCNT_BE;
261 break;
262 case IRQ_TYPE_EDGE_RISING:
263 wg->intcnt = CTLI_INTCNT_PE;
264 break;
265 case IRQ_TYPE_EDGE_FALLING:
266 wg->intcnt = CTLI_INTCNT_NE;
267 break;
268 default:
269 return -EINVAL;
270 }
271
272 wg->update |= UPDATE_IRQ_TYPE;
273
274 return 0;
275}
276
277static void wcove_bus_lock(struct irq_data *data)
278{
279 struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
280 struct wcove_gpio *wg = gpiochip_get_data(chip);
281
282 mutex_lock(&wg->buslock);
283}
284
285static void wcove_bus_sync_unlock(struct irq_data *data)
286{
287 struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
288 struct wcove_gpio *wg = gpiochip_get_data(chip);
289 int gpio = data->hwirq;
290
291 if (wg->update & UPDATE_IRQ_TYPE)
292 wcove_update_irq_ctrl(wg, gpio);
293 if (wg->update & UPDATE_IRQ_MASK)
294 wcove_update_irq_mask(wg, gpio);
295 wg->update = 0;
296
297 mutex_unlock(&wg->buslock);
298}
299
300static void wcove_irq_unmask(struct irq_data *data)
301{
302 struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
303 struct wcove_gpio *wg = gpiochip_get_data(chip);
304
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700305 if (data->hwirq >= WCOVE_GPIO_NUM)
306 return;
307
Bin Gao0ba19cf2016-07-25 14:59:38 -0700308 wg->set_irq_mask = false;
309 wg->update |= UPDATE_IRQ_MASK;
310}
311
312static void wcove_irq_mask(struct irq_data *data)
313{
314 struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
315 struct wcove_gpio *wg = gpiochip_get_data(chip);
316
Kuppuswamy Sathyanarayanan3a02dc92017-06-26 10:37:04 -0700317 if (data->hwirq >= WCOVE_GPIO_NUM)
318 return;
319
Bin Gao0ba19cf2016-07-25 14:59:38 -0700320 wg->set_irq_mask = true;
321 wg->update |= UPDATE_IRQ_MASK;
322}
323
324static struct irq_chip wcove_irqchip = {
325 .name = "Whiskey Cove",
326 .irq_mask = wcove_irq_mask,
327 .irq_unmask = wcove_irq_unmask,
328 .irq_set_type = wcove_irq_type,
329 .irq_bus_lock = wcove_bus_lock,
330 .irq_bus_sync_unlock = wcove_bus_sync_unlock,
331};
332
333static irqreturn_t wcove_gpio_irq_handler(int irq, void *data)
334{
335 struct wcove_gpio *wg = (struct wcove_gpio *)data;
Andy Shevchenko5a2a46a2020-10-14 17:13:23 +0300336 unsigned int virq, gpio;
Andy Shevchenko2edba742019-01-29 16:40:50 +0200337 unsigned long pending;
Bin Gao0ba19cf2016-07-25 14:59:38 -0700338 u8 p[2];
339
340 if (regmap_bulk_read(wg->regmap, IRQ_STATUS_BASE, p, 2)) {
341 dev_err(wg->dev, "Failed to read irq status register\n");
342 return IRQ_NONE;
343 }
344
Kuppuswamy Sathyanarayanan881ebd22017-04-24 12:15:04 -0700345 pending = (p[0] & GPIO_IRQ0_MASK) | ((p[1] & GPIO_IRQ1_MASK) << 7);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700346 if (!pending)
347 return IRQ_NONE;
348
349 /* Iterate until no interrupt is pending */
350 while (pending) {
351 /* One iteration is for all pending bits */
Andy Shevchenko2edba742019-01-29 16:40:50 +0200352 for_each_set_bit(gpio, &pending, WCOVE_GPIO_NUM) {
Andy Shevchenko5a2a46a2020-10-14 17:13:23 +0300353 unsigned int mask, reg = to_ireg(gpio, IRQ_STATUS, &mask);
354
Thierry Redingf0fbe7b2017-11-07 19:15:47 +0100355 virq = irq_find_mapping(wg->chip.irq.domain, gpio);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700356 handle_nested_irq(virq);
Andy Shevchenko5a2a46a2020-10-14 17:13:23 +0300357 regmap_set_bits(wg->regmap, reg, mask);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700358 }
359
360 /* Next iteration */
361 if (regmap_bulk_read(wg->regmap, IRQ_STATUS_BASE, p, 2)) {
362 dev_err(wg->dev, "Failed to read irq status\n");
363 break;
364 }
365
Kuppuswamy Sathyanarayanan881ebd22017-04-24 12:15:04 -0700366 pending = (p[0] & GPIO_IRQ0_MASK) | ((p[1] & GPIO_IRQ1_MASK) << 7);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700367 }
368
369 return IRQ_HANDLED;
370}
371
372static void wcove_gpio_dbg_show(struct seq_file *s,
373 struct gpio_chip *chip)
374{
375 unsigned int ctlo, ctli, irq_mask, irq_status;
376 struct wcove_gpio *wg = gpiochip_get_data(chip);
Andy Shevchenko5a2a46a2020-10-14 17:13:23 +0300377 int gpio, mask, ret = 0;
Bin Gao0ba19cf2016-07-25 14:59:38 -0700378
379 for (gpio = 0; gpio < WCOVE_GPIO_NUM; gpio++) {
Bin Gao0ba19cf2016-07-25 14:59:38 -0700380 ret += regmap_read(wg->regmap, to_reg(gpio, CTRL_OUT), &ctlo);
381 ret += regmap_read(wg->regmap, to_reg(gpio, CTRL_IN), &ctli);
Andy Shevchenko5a2a46a2020-10-14 17:13:23 +0300382 ret += regmap_read(wg->regmap, to_ireg(gpio, IRQ_MASK, &mask), &irq_mask);
383 ret += regmap_read(wg->regmap, to_ireg(gpio, IRQ_STATUS, &mask), &irq_status);
Bin Gao0ba19cf2016-07-25 14:59:38 -0700384 if (ret) {
385 pr_err("Failed to read registers: ctrl out/in or irq status/mask\n");
386 break;
387 }
388
Bin Gao0ba19cf2016-07-25 14:59:38 -0700389 seq_printf(s, " gpio-%-2d %s %s %s %s ctlo=%2x,%s %s\n",
390 gpio, ctlo & CTLO_DIR_OUT ? "out" : "in ",
391 ctli & 0x1 ? "hi" : "lo",
392 ctli & CTLI_INTCNT_NE ? "fall" : " ",
393 ctli & CTLI_INTCNT_PE ? "rise" : " ",
394 ctlo,
Andy Shevchenko5a2a46a2020-10-14 17:13:23 +0300395 irq_mask & mask ? "mask " : "unmask",
396 irq_status & mask ? "pending" : " ");
Bin Gao0ba19cf2016-07-25 14:59:38 -0700397 }
398}
399
400static int wcove_gpio_probe(struct platform_device *pdev)
401{
402 struct intel_soc_pmic *pmic;
403 struct wcove_gpio *wg;
404 int virq, ret, irq;
405 struct device *dev;
Linus Walleij22f61d42020-07-17 17:19:55 +0200406 struct gpio_irq_chip *girq;
Bin Gao0ba19cf2016-07-25 14:59:38 -0700407
408 /*
409 * This gpio platform device is created by a mfd device (see
410 * drivers/mfd/intel_soc_pmic_bxtwc.c for details). Information
411 * shared by all sub-devices created by the mfd device, the regmap
412 * pointer for instance, is stored as driver data of the mfd device
413 * driver.
414 */
415 pmic = dev_get_drvdata(pdev->dev.parent);
416 if (!pmic)
417 return -ENODEV;
418
419 irq = platform_get_irq(pdev, 0);
420 if (irq < 0)
421 return irq;
422
423 dev = &pdev->dev;
424
425 wg = devm_kzalloc(dev, sizeof(*wg), GFP_KERNEL);
426 if (!wg)
427 return -ENOMEM;
428
Kuppuswamy Sathyanarayanana1d28c592017-06-05 12:08:03 -0700429 wg->regmap_irq_chip = pmic->irq_chip_data;
Bin Gao0ba19cf2016-07-25 14:59:38 -0700430
431 platform_set_drvdata(pdev, wg);
432
433 mutex_init(&wg->buslock);
434 wg->chip.label = KBUILD_MODNAME;
435 wg->chip.direction_input = wcove_gpio_dir_in;
436 wg->chip.direction_output = wcove_gpio_dir_out;
Bin Gao7d9e59c2016-08-15 11:03:23 -0700437 wg->chip.get_direction = wcove_gpio_get_direction;
Bin Gao0ba19cf2016-07-25 14:59:38 -0700438 wg->chip.get = wcove_gpio_get;
439 wg->chip.set = wcove_gpio_set;
Zheng Yongjun481a4202021-01-08 17:24:13 +0800440 wg->chip.set_config = wcove_gpio_set_config;
Bin Gao0ba19cf2016-07-25 14:59:38 -0700441 wg->chip.base = -1;
442 wg->chip.ngpio = WCOVE_VGPIO_NUM;
443 wg->chip.can_sleep = true;
444 wg->chip.parent = pdev->dev.parent;
445 wg->chip.dbg_show = wcove_gpio_dbg_show;
446 wg->dev = dev;
447 wg->regmap = pmic->regmap;
448
Bin Gao0ba19cf2016-07-25 14:59:38 -0700449 virq = regmap_irq_get_virq(wg->regmap_irq_chip, irq);
450 if (virq < 0) {
451 dev_err(dev, "Failed to get virq by irq %d\n", irq);
452 return virq;
453 }
454
Linus Walleij22f61d42020-07-17 17:19:55 +0200455 girq = &wg->chip.irq;
456 girq->chip = &wcove_irqchip;
457 /* This will let us handle the parent IRQ in the driver */
458 girq->parent_handler = NULL;
459 girq->num_parents = 0;
460 girq->parents = NULL;
461 girq->default_type = IRQ_TYPE_NONE;
462 girq->handler = handle_simple_irq;
463 girq->threaded = true;
464
Andy Shevchenko22cc4222020-07-28 15:55:04 +0300465 ret = devm_request_threaded_irq(dev, virq, NULL, wcove_gpio_irq_handler,
466 IRQF_ONESHOT, pdev->name, wg);
467 if (ret) {
468 dev_err(dev, "Failed to request irq %d\n", virq);
469 return ret;
470 }
471
Linus Walleij22f61d42020-07-17 17:19:55 +0200472 ret = devm_gpiochip_add_data(dev, &wg->chip, wg);
473 if (ret) {
474 dev_err(dev, "Failed to add gpiochip: %d\n", ret);
475 return ret;
476 }
Linus Walleij35ca3f62016-11-24 13:27:54 +0100477
Kuppuswamy Sathyanarayanana1d28c592017-06-05 12:08:03 -0700478 /* Enable GPIO0 interrupts */
Andy Shevchenko9fe5fcd62021-01-29 18:24:28 +0200479 ret = regmap_clear_bits(wg->regmap, IRQ_MASK_BASE + 0, GPIO_IRQ0_MASK);
Kuppuswamy Sathyanarayanana1d28c592017-06-05 12:08:03 -0700480 if (ret)
481 return ret;
482
483 /* Enable GPIO1 interrupts */
Andy Shevchenko9fe5fcd62021-01-29 18:24:28 +0200484 ret = regmap_clear_bits(wg->regmap, IRQ_MASK_BASE + 1, GPIO_IRQ1_MASK);
Kuppuswamy Sathyanarayanana1d28c592017-06-05 12:08:03 -0700485 if (ret)
486 return ret;
487
Bin Gao0ba19cf2016-07-25 14:59:38 -0700488 return 0;
489}
490
491/*
492 * Whiskey Cove PMIC itself is a analog device(but with digital control
493 * interface) providing power management support for other devices in
494 * the accompanied SoC, so we have no .pm for Whiskey Cove GPIO driver.
495 */
496static struct platform_driver wcove_gpio_driver = {
497 .driver = {
498 .name = "bxt_wcove_gpio",
499 },
500 .probe = wcove_gpio_probe,
501};
502
503module_platform_driver(wcove_gpio_driver);
504
505MODULE_AUTHOR("Ajay Thomas <ajay.thomas.david.rajamanickam@intel.com>");
506MODULE_AUTHOR("Bin Gao <bin.gao@intel.com>");
507MODULE_DESCRIPTION("Intel Whiskey Cove GPIO Driver");
508MODULE_LICENSE("GPL v2");
509MODULE_ALIAS("platform:bxt_wcove_gpio");