Linux Audio

Check our new training course

Loading...
v4.10.11
  1/*
  2 * Intel Whiskey Cove PMIC GPIO Driver
  3 *
  4 * This driver is written based on gpio-crystalcove.c
  5 *
  6 * Copyright (C) 2016 Intel Corporation. All rights reserved.
  7 *
  8 * This program is free software; you can redistribute it and/or
  9 * modify it under the terms of the GNU General Public License version
 10 * 2 as published by the Free Software Foundation.
 11 *
 12 * This program is distributed in the hope that it will be useful,
 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 15 * GNU General Public License for more details.
 16 */
 17
 18#include <linux/bitops.h>
 19#include <linux/module.h>
 20#include <linux/interrupt.h>
 21#include <linux/gpio/driver.h>
 22#include <linux/mfd/intel_soc_pmic.h>
 23#include <linux/platform_device.h>
 24#include <linux/regmap.h>
 25#include <linux/seq_file.h>
 26
 27/*
 28 * Whiskey Cove PMIC has 13 physical GPIO pins divided into 3 banks:
 29 * Bank 0: Pin 0 - 6
 30 * Bank 1: Pin 7 - 10
 31 * Bank 2: Pin 11 -12
 32 * Each pin has one output control register and one input control register.
 33 */
 34#define BANK0_NR_PINS		7
 35#define BANK1_NR_PINS		4
 36#define BANK2_NR_PINS		2
 37#define WCOVE_GPIO_NUM		(BANK0_NR_PINS + BANK1_NR_PINS + BANK2_NR_PINS)
 38#define WCOVE_VGPIO_NUM		94
 39/* GPIO output control registers (one per pin): 0x4e44 - 0x4e50 */
 40#define GPIO_OUT_CTRL_BASE	0x4e44
 41/* GPIO input control registers (one per pin): 0x4e51 - 0x4e5d */
 42#define GPIO_IN_CTRL_BASE	0x4e51
 43
 44/*
 45 * GPIO interrupts are organized in two groups:
 46 * Group 0: Bank 0 pins (Pin 0 - 6)
 47 * Group 1: Bank 1 and Bank 2 pins (Pin 7 - 12)
 48 * Each group has two registers (one bit per pin): status and mask.
 49 */
 50#define GROUP0_NR_IRQS		7
 51#define GROUP1_NR_IRQS		6
 52#define IRQ_MASK_BASE		0x4e19
 53#define IRQ_STATUS_BASE		0x4e0b
 
 
 54#define UPDATE_IRQ_TYPE		BIT(0)
 55#define UPDATE_IRQ_MASK		BIT(1)
 56
 57#define CTLI_INTCNT_DIS		(0 << 1)
 58#define CTLI_INTCNT_NE		(1 << 1)
 59#define CTLI_INTCNT_PE		(2 << 1)
 60#define CTLI_INTCNT_BE		(3 << 1)
 61
 62#define CTLO_DIR_IN		(0 << 5)
 63#define CTLO_DIR_OUT		(1 << 5)
 64
 65#define CTLO_DRV_MASK		(1 << 4)
 66#define CTLO_DRV_OD		(0 << 4)
 67#define CTLO_DRV_CMOS		(1 << 4)
 68
 69#define CTLO_DRV_REN		(1 << 3)
 70
 71#define CTLO_RVAL_2KDOWN	(0 << 1)
 72#define CTLO_RVAL_2KUP		(1 << 1)
 73#define CTLO_RVAL_50KDOWN	(2 << 1)
 74#define CTLO_RVAL_50KUP		(3 << 1)
 75
 76#define CTLO_INPUT_SET	(CTLO_DRV_CMOS | CTLO_DRV_REN | CTLO_RVAL_2KUP)
 77#define CTLO_OUTPUT_SET	(CTLO_DIR_OUT | CTLO_INPUT_SET)
 78
 79enum ctrl_register {
 80	CTRL_IN,
 81	CTRL_OUT,
 82};
 83
 84/*
 85 * struct wcove_gpio - Whiskey Cove GPIO controller
 86 * @buslock: for bus lock/sync and unlock.
 87 * @chip: the abstract gpio_chip structure.
 88 * @dev: the gpio device
 89 * @regmap: the regmap from the parent device.
 90 * @regmap_irq_chip: the regmap of the gpio irq chip.
 91 * @update: pending IRQ setting update, to be written to the chip upon unlock.
 92 * @intcnt: the Interrupt Detect value to be written.
 93 * @set_irq_mask: true if the IRQ mask needs to be set, false to clear.
 94 */
 95struct wcove_gpio {
 96	struct mutex buslock;
 97	struct gpio_chip chip;
 98	struct device *dev;
 99	struct regmap *regmap;
100	struct regmap_irq_chip_data *regmap_irq_chip;
101	int update;
102	int intcnt;
103	bool set_irq_mask;
104};
105
106static inline unsigned int to_reg(int gpio, enum ctrl_register reg_type)
107{
108	unsigned int reg;
109	int bank;
110
111	if (gpio < BANK0_NR_PINS)
112		bank = 0;
113	else if (gpio < BANK0_NR_PINS + BANK1_NR_PINS)
114		bank = 1;
115	else
116		bank = 2;
117
118	if (reg_type == CTRL_IN)
119		reg = GPIO_IN_CTRL_BASE + bank;
120	else
121		reg = GPIO_OUT_CTRL_BASE + bank;
122
123	return reg;
124}
125
126static void wcove_update_irq_mask(struct wcove_gpio *wg, int gpio)
127{
128	unsigned int reg, mask;
129
130	if (gpio < GROUP0_NR_IRQS) {
131		reg = IRQ_MASK_BASE;
132		mask = BIT(gpio % GROUP0_NR_IRQS);
133	} else {
134		reg = IRQ_MASK_BASE + 1;
135		mask = BIT((gpio - GROUP0_NR_IRQS) % GROUP1_NR_IRQS);
136	}
137
138	if (wg->set_irq_mask)
139		regmap_update_bits(wg->regmap, reg, mask, mask);
140	else
141		regmap_update_bits(wg->regmap, reg, mask, 0);
142}
143
144static void wcove_update_irq_ctrl(struct wcove_gpio *wg, int gpio)
145{
146	unsigned int reg = to_reg(gpio, CTRL_IN);
 
 
 
147
148	regmap_update_bits(wg->regmap, reg, CTLI_INTCNT_BE, wg->intcnt);
149}
150
151static int wcove_gpio_dir_in(struct gpio_chip *chip, unsigned int gpio)
152{
153	struct wcove_gpio *wg = gpiochip_get_data(chip);
 
 
 
 
154
155	return regmap_write(wg->regmap, to_reg(gpio, CTRL_OUT),
156			    CTLO_INPUT_SET);
157}
158
159static int wcove_gpio_dir_out(struct gpio_chip *chip, unsigned int gpio,
160				    int value)
161{
162	struct wcove_gpio *wg = gpiochip_get_data(chip);
 
163
164	return regmap_write(wg->regmap, to_reg(gpio, CTRL_OUT),
165			    CTLO_OUTPUT_SET | value);
 
 
166}
167
168static int wcove_gpio_get_direction(struct gpio_chip *chip, unsigned int gpio)
169{
170	struct wcove_gpio *wg = gpiochip_get_data(chip);
171	unsigned int val;
172	int ret;
 
 
 
173
174	ret = regmap_read(wg->regmap, to_reg(gpio, CTRL_OUT), &val);
175	if (ret)
176		return ret;
177
178	return !(val & CTLO_DIR_OUT);
179}
180
181static int wcove_gpio_get(struct gpio_chip *chip, unsigned int gpio)
182{
183	struct wcove_gpio *wg = gpiochip_get_data(chip);
184	unsigned int val;
185	int ret;
186
187	ret = regmap_read(wg->regmap, to_reg(gpio, CTRL_IN), &val);
 
 
 
188	if (ret)
189		return ret;
190
191	return val & 0x1;
192}
193
194static void wcove_gpio_set(struct gpio_chip *chip,
195				 unsigned int gpio, int value)
196{
197	struct wcove_gpio *wg = gpiochip_get_data(chip);
 
 
 
 
198
199	if (value)
200		regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT), 1, 1);
201	else
202		regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT), 1, 0);
203}
204
205static int wcove_gpio_set_single_ended(struct gpio_chip *chip,
206					unsigned int gpio,
207					enum single_ended_mode mode)
208{
209	struct wcove_gpio *wg = gpiochip_get_data(chip);
 
210
211	switch (mode) {
212	case LINE_MODE_OPEN_DRAIN:
213		return regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT),
214						CTLO_DRV_MASK, CTLO_DRV_OD);
215	case LINE_MODE_PUSH_PULL:
216		return regmap_update_bits(wg->regmap, to_reg(gpio, CTRL_OUT),
217						CTLO_DRV_MASK, CTLO_DRV_CMOS);
 
 
 
218	default:
219		break;
220	}
221
222	return -ENOTSUPP;
223}
224
225static int wcove_irq_type(struct irq_data *data, unsigned int type)
226{
227	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
228	struct wcove_gpio *wg = gpiochip_get_data(chip);
229
 
 
 
230	switch (type) {
231	case IRQ_TYPE_NONE:
232		wg->intcnt = CTLI_INTCNT_DIS;
233		break;
234	case IRQ_TYPE_EDGE_BOTH:
235		wg->intcnt = CTLI_INTCNT_BE;
236		break;
237	case IRQ_TYPE_EDGE_RISING:
238		wg->intcnt = CTLI_INTCNT_PE;
239		break;
240	case IRQ_TYPE_EDGE_FALLING:
241		wg->intcnt = CTLI_INTCNT_NE;
242		break;
243	default:
244		return -EINVAL;
245	}
246
247	wg->update |= UPDATE_IRQ_TYPE;
248
249	return 0;
250}
251
252static void wcove_bus_lock(struct irq_data *data)
253{
254	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
255	struct wcove_gpio *wg = gpiochip_get_data(chip);
256
257	mutex_lock(&wg->buslock);
258}
259
260static void wcove_bus_sync_unlock(struct irq_data *data)
261{
262	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
263	struct wcove_gpio *wg = gpiochip_get_data(chip);
264	int gpio = data->hwirq;
265
266	if (wg->update & UPDATE_IRQ_TYPE)
267		wcove_update_irq_ctrl(wg, gpio);
268	if (wg->update & UPDATE_IRQ_MASK)
269		wcove_update_irq_mask(wg, gpio);
270	wg->update = 0;
271
272	mutex_unlock(&wg->buslock);
273}
274
275static void wcove_irq_unmask(struct irq_data *data)
276{
277	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
278	struct wcove_gpio *wg = gpiochip_get_data(chip);
279
 
 
 
280	wg->set_irq_mask = false;
281	wg->update |= UPDATE_IRQ_MASK;
282}
283
284static void wcove_irq_mask(struct irq_data *data)
285{
286	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
287	struct wcove_gpio *wg = gpiochip_get_data(chip);
288
 
 
 
289	wg->set_irq_mask = true;
290	wg->update |= UPDATE_IRQ_MASK;
291}
292
293static struct irq_chip wcove_irqchip = {
294	.name			= "Whiskey Cove",
295	.irq_mask		= wcove_irq_mask,
296	.irq_unmask		= wcove_irq_unmask,
297	.irq_set_type		= wcove_irq_type,
298	.irq_bus_lock		= wcove_bus_lock,
299	.irq_bus_sync_unlock	= wcove_bus_sync_unlock,
300};
301
302static irqreturn_t wcove_gpio_irq_handler(int irq, void *data)
303{
304	struct wcove_gpio *wg = (struct wcove_gpio *)data;
305	unsigned int pending, virq, gpio, mask, offset;
306	u8 p[2];
307
308	if (regmap_bulk_read(wg->regmap, IRQ_STATUS_BASE, p, 2)) {
309		dev_err(wg->dev, "Failed to read irq status register\n");
310		return IRQ_NONE;
311	}
312
313	pending = p[0] | (p[1] << 8);
314	if (!pending)
315		return IRQ_NONE;
316
317	/* Iterate until no interrupt is pending */
318	while (pending) {
319		/* One iteration is for all pending bits */
320		for_each_set_bit(gpio, (const unsigned long *)&pending,
321						 GROUP0_NR_IRQS) {
322			offset = (gpio > GROUP0_NR_IRQS) ? 1 : 0;
323			mask = (offset == 1) ? BIT(gpio - GROUP0_NR_IRQS) :
324								BIT(gpio);
325			virq = irq_find_mapping(wg->chip.irqdomain, gpio);
326			handle_nested_irq(virq);
327			regmap_update_bits(wg->regmap, IRQ_STATUS_BASE + offset,
328								mask, mask);
329		}
330
331		/* Next iteration */
332		if (regmap_bulk_read(wg->regmap, IRQ_STATUS_BASE, p, 2)) {
333			dev_err(wg->dev, "Failed to read irq status\n");
334			break;
335		}
336
337		pending = p[0] | (p[1] << 8);
338	}
339
340	return IRQ_HANDLED;
341}
342
343static void wcove_gpio_dbg_show(struct seq_file *s,
344				      struct gpio_chip *chip)
345{
346	unsigned int ctlo, ctli, irq_mask, irq_status;
347	struct wcove_gpio *wg = gpiochip_get_data(chip);
348	int gpio, offset, group, ret = 0;
349
350	for (gpio = 0; gpio < WCOVE_GPIO_NUM; gpio++) {
351		group = gpio < GROUP0_NR_IRQS ? 0 : 1;
352		ret += regmap_read(wg->regmap, to_reg(gpio, CTRL_OUT), &ctlo);
353		ret += regmap_read(wg->regmap, to_reg(gpio, CTRL_IN), &ctli);
354		ret += regmap_read(wg->regmap, IRQ_MASK_BASE + group,
355							&irq_mask);
356		ret += regmap_read(wg->regmap, IRQ_STATUS_BASE + group,
357							&irq_status);
358		if (ret) {
359			pr_err("Failed to read registers: ctrl out/in or irq status/mask\n");
360			break;
361		}
362
363		offset = gpio % 8;
364		seq_printf(s, " gpio-%-2d %s %s %s %s ctlo=%2x,%s %s\n",
365			   gpio, ctlo & CTLO_DIR_OUT ? "out" : "in ",
366			   ctli & 0x1 ? "hi" : "lo",
367			   ctli & CTLI_INTCNT_NE ? "fall" : "    ",
368			   ctli & CTLI_INTCNT_PE ? "rise" : "    ",
369			   ctlo,
370			   irq_mask & BIT(offset) ? "mask  " : "unmask",
371			   irq_status & BIT(offset) ? "pending" : "       ");
372	}
373}
374
375static int wcove_gpio_probe(struct platform_device *pdev)
376{
377	struct intel_soc_pmic *pmic;
378	struct wcove_gpio *wg;
379	int virq, ret, irq;
380	struct device *dev;
381
382	/*
383	 * This gpio platform device is created by a mfd device (see
384	 * drivers/mfd/intel_soc_pmic_bxtwc.c for details). Information
385	 * shared by all sub-devices created by the mfd device, the regmap
386	 * pointer for instance, is stored as driver data of the mfd device
387	 * driver.
388	 */
389	pmic = dev_get_drvdata(pdev->dev.parent);
390	if (!pmic)
391		return -ENODEV;
392
393	irq = platform_get_irq(pdev, 0);
394	if (irq < 0)
395		return irq;
396
397	dev = &pdev->dev;
398
399	wg = devm_kzalloc(dev, sizeof(*wg), GFP_KERNEL);
400	if (!wg)
401		return -ENOMEM;
402
403	wg->regmap_irq_chip = pmic->irq_chip_data_level2;
404
405	platform_set_drvdata(pdev, wg);
406
407	mutex_init(&wg->buslock);
408	wg->chip.label = KBUILD_MODNAME;
409	wg->chip.direction_input = wcove_gpio_dir_in;
410	wg->chip.direction_output = wcove_gpio_dir_out;
411	wg->chip.get_direction = wcove_gpio_get_direction;
412	wg->chip.get = wcove_gpio_get;
413	wg->chip.set = wcove_gpio_set;
414	wg->chip.set_single_ended = wcove_gpio_set_single_ended,
415	wg->chip.base = -1;
416	wg->chip.ngpio = WCOVE_VGPIO_NUM;
417	wg->chip.can_sleep = true;
418	wg->chip.parent = pdev->dev.parent;
419	wg->chip.dbg_show = wcove_gpio_dbg_show;
420	wg->dev = dev;
421	wg->regmap = pmic->regmap;
422
423	ret = devm_gpiochip_add_data(dev, &wg->chip, wg);
424	if (ret) {
425		dev_err(dev, "Failed to add gpiochip: %d\n", ret);
426		return ret;
427	}
428
429	ret = gpiochip_irqchip_add_nested(&wg->chip, &wcove_irqchip, 0,
430					  handle_simple_irq, IRQ_TYPE_NONE);
431	if (ret) {
432		dev_err(dev, "Failed to add irqchip: %d\n", ret);
433		return ret;
434	}
435
436	virq = regmap_irq_get_virq(wg->regmap_irq_chip, irq);
437	if (virq < 0) {
438		dev_err(dev, "Failed to get virq by irq %d\n", irq);
439		return virq;
440	}
441
442	ret = devm_request_threaded_irq(dev, virq, NULL,
443		wcove_gpio_irq_handler, IRQF_ONESHOT, pdev->name, wg);
444	if (ret) {
445		dev_err(dev, "Failed to request irq %d\n", virq);
446		return ret;
447	}
448
449	gpiochip_set_nested_irqchip(&wg->chip, &wcove_irqchip, virq);
 
 
 
 
 
 
 
 
 
 
 
 
450
451	return 0;
452}
453
454/*
455 * Whiskey Cove PMIC itself is a analog device(but with digital control
456 * interface) providing power management support for other devices in
457 * the accompanied SoC, so we have no .pm for Whiskey Cove GPIO driver.
458 */
459static struct platform_driver wcove_gpio_driver = {
460	.driver = {
461		.name = "bxt_wcove_gpio",
462	},
463	.probe = wcove_gpio_probe,
464};
465
466module_platform_driver(wcove_gpio_driver);
467
468MODULE_AUTHOR("Ajay Thomas <ajay.thomas.david.rajamanickam@intel.com>");
469MODULE_AUTHOR("Bin Gao <bin.gao@intel.com>");
470MODULE_DESCRIPTION("Intel Whiskey Cove GPIO Driver");
471MODULE_LICENSE("GPL v2");
472MODULE_ALIAS("platform:bxt_wcove_gpio");
v4.17
  1/*
  2 * Intel Whiskey Cove PMIC GPIO Driver
  3 *
  4 * This driver is written based on gpio-crystalcove.c
  5 *
  6 * Copyright (C) 2016 Intel Corporation. All rights reserved.
  7 *
  8 * This program is free software; you can redistribute it and/or
  9 * modify it under the terms of the GNU General Public License version
 10 * 2 as published by the Free Software Foundation.
 11 *
 12 * This program is distributed in the hope that it will be useful,
 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 15 * GNU General Public License for more details.
 16 */
 17
 18#include <linux/bitops.h>
 19#include <linux/module.h>
 20#include <linux/interrupt.h>
 21#include <linux/gpio/driver.h>
 22#include <linux/mfd/intel_soc_pmic.h>
 23#include <linux/platform_device.h>
 24#include <linux/regmap.h>
 25#include <linux/seq_file.h>
 26
 27/*
 28 * Whiskey Cove PMIC has 13 physical GPIO pins divided into 3 banks:
 29 * Bank 0: Pin 0 - 6
 30 * Bank 1: Pin 7 - 10
 31 * Bank 2: Pin 11 -12
 32 * Each pin has one output control register and one input control register.
 33 */
 34#define BANK0_NR_PINS		7
 35#define BANK1_NR_PINS		4
 36#define BANK2_NR_PINS		2
 37#define WCOVE_GPIO_NUM		(BANK0_NR_PINS + BANK1_NR_PINS + BANK2_NR_PINS)
 38#define WCOVE_VGPIO_NUM		94
 39/* GPIO output control registers (one per pin): 0x4e44 - 0x4e50 */
 40#define GPIO_OUT_CTRL_BASE	0x4e44
 41/* GPIO input control registers (one per pin): 0x4e51 - 0x4e5d */
 42#define GPIO_IN_CTRL_BASE	0x4e51
 43
 44/*
 45 * GPIO interrupts are organized in two groups:
 46 * Group 0: Bank 0 pins (Pin 0 - 6)
 47 * Group 1: Bank 1 and Bank 2 pins (Pin 7 - 12)
 48 * Each group has two registers (one bit per pin): status and mask.
 49 */
 50#define GROUP0_NR_IRQS		7
 51#define GROUP1_NR_IRQS		6
 52#define IRQ_MASK_BASE		0x4e19
 53#define IRQ_STATUS_BASE		0x4e0b
 54#define GPIO_IRQ0_MASK		GENMASK(6, 0)
 55#define GPIO_IRQ1_MASK		GENMASK(5, 0)
 56#define UPDATE_IRQ_TYPE		BIT(0)
 57#define UPDATE_IRQ_MASK		BIT(1)
 58
 59#define CTLI_INTCNT_DIS		(0 << 1)
 60#define CTLI_INTCNT_NE		(1 << 1)
 61#define CTLI_INTCNT_PE		(2 << 1)
 62#define CTLI_INTCNT_BE		(3 << 1)
 63
 64#define CTLO_DIR_IN		(0 << 5)
 65#define CTLO_DIR_OUT		(1 << 5)
 66
 67#define CTLO_DRV_MASK		(1 << 4)
 68#define CTLO_DRV_OD		(0 << 4)
 69#define CTLO_DRV_CMOS		(1 << 4)
 70
 71#define CTLO_DRV_REN		(1 << 3)
 72
 73#define CTLO_RVAL_2KDOWN	(0 << 1)
 74#define CTLO_RVAL_2KUP		(1 << 1)
 75#define CTLO_RVAL_50KDOWN	(2 << 1)
 76#define CTLO_RVAL_50KUP		(3 << 1)
 77
 78#define CTLO_INPUT_SET	(CTLO_DRV_CMOS | CTLO_DRV_REN | CTLO_RVAL_2KUP)
 79#define CTLO_OUTPUT_SET	(CTLO_DIR_OUT | CTLO_INPUT_SET)
 80
 81enum ctrl_register {
 82	CTRL_IN,
 83	CTRL_OUT,
 84};
 85
 86/*
 87 * struct wcove_gpio - Whiskey Cove GPIO controller
 88 * @buslock: for bus lock/sync and unlock.
 89 * @chip: the abstract gpio_chip structure.
 90 * @dev: the gpio device
 91 * @regmap: the regmap from the parent device.
 92 * @regmap_irq_chip: the regmap of the gpio irq chip.
 93 * @update: pending IRQ setting update, to be written to the chip upon unlock.
 94 * @intcnt: the Interrupt Detect value to be written.
 95 * @set_irq_mask: true if the IRQ mask needs to be set, false to clear.
 96 */
 97struct wcove_gpio {
 98	struct mutex buslock;
 99	struct gpio_chip chip;
100	struct device *dev;
101	struct regmap *regmap;
102	struct regmap_irq_chip_data *regmap_irq_chip;
103	int update;
104	int intcnt;
105	bool set_irq_mask;
106};
107
108static inline unsigned int to_reg(int gpio, enum ctrl_register reg_type)
109{
110	unsigned int reg;
 
111
112	if (gpio >= WCOVE_GPIO_NUM)
113		return -EOPNOTSUPP;
 
 
 
 
114
115	if (reg_type == CTRL_IN)
116		reg = GPIO_IN_CTRL_BASE + gpio;
117	else
118		reg = GPIO_OUT_CTRL_BASE + gpio;
119
120	return reg;
121}
122
123static void wcove_update_irq_mask(struct wcove_gpio *wg, int gpio)
124{
125	unsigned int reg, mask;
126
127	if (gpio < GROUP0_NR_IRQS) {
128		reg = IRQ_MASK_BASE;
129		mask = BIT(gpio % GROUP0_NR_IRQS);
130	} else {
131		reg = IRQ_MASK_BASE + 1;
132		mask = BIT((gpio - GROUP0_NR_IRQS) % GROUP1_NR_IRQS);
133	}
134
135	if (wg->set_irq_mask)
136		regmap_update_bits(wg->regmap, reg, mask, mask);
137	else
138		regmap_update_bits(wg->regmap, reg, mask, 0);
139}
140
141static void wcove_update_irq_ctrl(struct wcove_gpio *wg, int gpio)
142{
143	int reg = to_reg(gpio, CTRL_IN);
144
145	if (reg < 0)
146		return;
147
148	regmap_update_bits(wg->regmap, reg, CTLI_INTCNT_BE, wg->intcnt);
149}
150
151static int wcove_gpio_dir_in(struct gpio_chip *chip, unsigned int gpio)
152{
153	struct wcove_gpio *wg = gpiochip_get_data(chip);
154	int reg = to_reg(gpio, CTRL_OUT);
155
156	if (reg < 0)
157		return 0;
158
159	return regmap_write(wg->regmap, reg, CTLO_INPUT_SET);
 
160}
161
162static int wcove_gpio_dir_out(struct gpio_chip *chip, unsigned int gpio,
163				    int value)
164{
165	struct wcove_gpio *wg = gpiochip_get_data(chip);
166	int reg = to_reg(gpio, CTRL_OUT);
167
168	if (reg < 0)
169		return 0;
170
171	return regmap_write(wg->regmap, reg, CTLO_OUTPUT_SET | value);
172}
173
174static int wcove_gpio_get_direction(struct gpio_chip *chip, unsigned int gpio)
175{
176	struct wcove_gpio *wg = gpiochip_get_data(chip);
177	unsigned int val;
178	int ret, reg = to_reg(gpio, CTRL_OUT);
179
180	if (reg < 0)
181		return 0;
182
183	ret = regmap_read(wg->regmap, reg, &val);
184	if (ret)
185		return ret;
186
187	return !(val & CTLO_DIR_OUT);
188}
189
190static int wcove_gpio_get(struct gpio_chip *chip, unsigned int gpio)
191{
192	struct wcove_gpio *wg = gpiochip_get_data(chip);
193	unsigned int val;
194	int ret, reg = to_reg(gpio, CTRL_IN);
195
196	if (reg < 0)
197		return 0;
198
199	ret = regmap_read(wg->regmap, reg, &val);
200	if (ret)
201		return ret;
202
203	return val & 0x1;
204}
205
206static void wcove_gpio_set(struct gpio_chip *chip,
207				 unsigned int gpio, int value)
208{
209	struct wcove_gpio *wg = gpiochip_get_data(chip);
210	int reg = to_reg(gpio, CTRL_OUT);
211
212	if (reg < 0)
213		return;
214
215	if (value)
216		regmap_update_bits(wg->regmap, reg, 1, 1);
217	else
218		regmap_update_bits(wg->regmap, reg, 1, 0);
219}
220
221static int wcove_gpio_set_config(struct gpio_chip *chip, unsigned int gpio,
222				 unsigned long config)
 
223{
224	struct wcove_gpio *wg = gpiochip_get_data(chip);
225	int reg = to_reg(gpio, CTRL_OUT);
226
227	if (reg < 0)
228		return 0;
229
230	switch (pinconf_to_config_param(config)) {
231	case PIN_CONFIG_DRIVE_OPEN_DRAIN:
232		return regmap_update_bits(wg->regmap, reg, CTLO_DRV_MASK,
233					  CTLO_DRV_OD);
234	case PIN_CONFIG_DRIVE_PUSH_PULL:
235		return regmap_update_bits(wg->regmap, reg, CTLO_DRV_MASK,
236					  CTLO_DRV_CMOS);
237	default:
238		break;
239	}
240
241	return -ENOTSUPP;
242}
243
244static int wcove_irq_type(struct irq_data *data, unsigned int type)
245{
246	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
247	struct wcove_gpio *wg = gpiochip_get_data(chip);
248
249	if (data->hwirq >= WCOVE_GPIO_NUM)
250		return 0;
251
252	switch (type) {
253	case IRQ_TYPE_NONE:
254		wg->intcnt = CTLI_INTCNT_DIS;
255		break;
256	case IRQ_TYPE_EDGE_BOTH:
257		wg->intcnt = CTLI_INTCNT_BE;
258		break;
259	case IRQ_TYPE_EDGE_RISING:
260		wg->intcnt = CTLI_INTCNT_PE;
261		break;
262	case IRQ_TYPE_EDGE_FALLING:
263		wg->intcnt = CTLI_INTCNT_NE;
264		break;
265	default:
266		return -EINVAL;
267	}
268
269	wg->update |= UPDATE_IRQ_TYPE;
270
271	return 0;
272}
273
274static void wcove_bus_lock(struct irq_data *data)
275{
276	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
277	struct wcove_gpio *wg = gpiochip_get_data(chip);
278
279	mutex_lock(&wg->buslock);
280}
281
282static void wcove_bus_sync_unlock(struct irq_data *data)
283{
284	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
285	struct wcove_gpio *wg = gpiochip_get_data(chip);
286	int gpio = data->hwirq;
287
288	if (wg->update & UPDATE_IRQ_TYPE)
289		wcove_update_irq_ctrl(wg, gpio);
290	if (wg->update & UPDATE_IRQ_MASK)
291		wcove_update_irq_mask(wg, gpio);
292	wg->update = 0;
293
294	mutex_unlock(&wg->buslock);
295}
296
297static void wcove_irq_unmask(struct irq_data *data)
298{
299	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
300	struct wcove_gpio *wg = gpiochip_get_data(chip);
301
302	if (data->hwirq >= WCOVE_GPIO_NUM)
303		return;
304
305	wg->set_irq_mask = false;
306	wg->update |= UPDATE_IRQ_MASK;
307}
308
309static void wcove_irq_mask(struct irq_data *data)
310{
311	struct gpio_chip *chip = irq_data_get_irq_chip_data(data);
312	struct wcove_gpio *wg = gpiochip_get_data(chip);
313
314	if (data->hwirq >= WCOVE_GPIO_NUM)
315		return;
316
317	wg->set_irq_mask = true;
318	wg->update |= UPDATE_IRQ_MASK;
319}
320
321static struct irq_chip wcove_irqchip = {
322	.name			= "Whiskey Cove",
323	.irq_mask		= wcove_irq_mask,
324	.irq_unmask		= wcove_irq_unmask,
325	.irq_set_type		= wcove_irq_type,
326	.irq_bus_lock		= wcove_bus_lock,
327	.irq_bus_sync_unlock	= wcove_bus_sync_unlock,
328};
329
330static irqreturn_t wcove_gpio_irq_handler(int irq, void *data)
331{
332	struct wcove_gpio *wg = (struct wcove_gpio *)data;
333	unsigned int pending, virq, gpio, mask, offset;
334	u8 p[2];
335
336	if (regmap_bulk_read(wg->regmap, IRQ_STATUS_BASE, p, 2)) {
337		dev_err(wg->dev, "Failed to read irq status register\n");
338		return IRQ_NONE;
339	}
340
341	pending = (p[0] & GPIO_IRQ0_MASK) | ((p[1] & GPIO_IRQ1_MASK) << 7);
342	if (!pending)
343		return IRQ_NONE;
344
345	/* Iterate until no interrupt is pending */
346	while (pending) {
347		/* One iteration is for all pending bits */
348		for_each_set_bit(gpio, (const unsigned long *)&pending,
349						 WCOVE_GPIO_NUM) {
350			offset = (gpio > GROUP0_NR_IRQS) ? 1 : 0;
351			mask = (offset == 1) ? BIT(gpio - GROUP0_NR_IRQS) :
352								BIT(gpio);
353			virq = irq_find_mapping(wg->chip.irq.domain, gpio);
354			handle_nested_irq(virq);
355			regmap_update_bits(wg->regmap, IRQ_STATUS_BASE + offset,
356								mask, mask);
357		}
358
359		/* Next iteration */
360		if (regmap_bulk_read(wg->regmap, IRQ_STATUS_BASE, p, 2)) {
361			dev_err(wg->dev, "Failed to read irq status\n");
362			break;
363		}
364
365		pending = (p[0] & GPIO_IRQ0_MASK) | ((p[1] & GPIO_IRQ1_MASK) << 7);
366	}
367
368	return IRQ_HANDLED;
369}
370
371static void wcove_gpio_dbg_show(struct seq_file *s,
372				      struct gpio_chip *chip)
373{
374	unsigned int ctlo, ctli, irq_mask, irq_status;
375	struct wcove_gpio *wg = gpiochip_get_data(chip);
376	int gpio, offset, group, ret = 0;
377
378	for (gpio = 0; gpio < WCOVE_GPIO_NUM; gpio++) {
379		group = gpio < GROUP0_NR_IRQS ? 0 : 1;
380		ret += regmap_read(wg->regmap, to_reg(gpio, CTRL_OUT), &ctlo);
381		ret += regmap_read(wg->regmap, to_reg(gpio, CTRL_IN), &ctli);
382		ret += regmap_read(wg->regmap, IRQ_MASK_BASE + group,
383							&irq_mask);
384		ret += regmap_read(wg->regmap, IRQ_STATUS_BASE + group,
385							&irq_status);
386		if (ret) {
387			pr_err("Failed to read registers: ctrl out/in or irq status/mask\n");
388			break;
389		}
390
391		offset = gpio % 8;
392		seq_printf(s, " gpio-%-2d %s %s %s %s ctlo=%2x,%s %s\n",
393			   gpio, ctlo & CTLO_DIR_OUT ? "out" : "in ",
394			   ctli & 0x1 ? "hi" : "lo",
395			   ctli & CTLI_INTCNT_NE ? "fall" : "    ",
396			   ctli & CTLI_INTCNT_PE ? "rise" : "    ",
397			   ctlo,
398			   irq_mask & BIT(offset) ? "mask  " : "unmask",
399			   irq_status & BIT(offset) ? "pending" : "       ");
400	}
401}
402
403static int wcove_gpio_probe(struct platform_device *pdev)
404{
405	struct intel_soc_pmic *pmic;
406	struct wcove_gpio *wg;
407	int virq, ret, irq;
408	struct device *dev;
409
410	/*
411	 * This gpio platform device is created by a mfd device (see
412	 * drivers/mfd/intel_soc_pmic_bxtwc.c for details). Information
413	 * shared by all sub-devices created by the mfd device, the regmap
414	 * pointer for instance, is stored as driver data of the mfd device
415	 * driver.
416	 */
417	pmic = dev_get_drvdata(pdev->dev.parent);
418	if (!pmic)
419		return -ENODEV;
420
421	irq = platform_get_irq(pdev, 0);
422	if (irq < 0)
423		return irq;
424
425	dev = &pdev->dev;
426
427	wg = devm_kzalloc(dev, sizeof(*wg), GFP_KERNEL);
428	if (!wg)
429		return -ENOMEM;
430
431	wg->regmap_irq_chip = pmic->irq_chip_data;
432
433	platform_set_drvdata(pdev, wg);
434
435	mutex_init(&wg->buslock);
436	wg->chip.label = KBUILD_MODNAME;
437	wg->chip.direction_input = wcove_gpio_dir_in;
438	wg->chip.direction_output = wcove_gpio_dir_out;
439	wg->chip.get_direction = wcove_gpio_get_direction;
440	wg->chip.get = wcove_gpio_get;
441	wg->chip.set = wcove_gpio_set;
442	wg->chip.set_config = wcove_gpio_set_config,
443	wg->chip.base = -1;
444	wg->chip.ngpio = WCOVE_VGPIO_NUM;
445	wg->chip.can_sleep = true;
446	wg->chip.parent = pdev->dev.parent;
447	wg->chip.dbg_show = wcove_gpio_dbg_show;
448	wg->dev = dev;
449	wg->regmap = pmic->regmap;
450
451	ret = devm_gpiochip_add_data(dev, &wg->chip, wg);
452	if (ret) {
453		dev_err(dev, "Failed to add gpiochip: %d\n", ret);
454		return ret;
455	}
456
457	ret = gpiochip_irqchip_add_nested(&wg->chip, &wcove_irqchip, 0,
458					  handle_simple_irq, IRQ_TYPE_NONE);
459	if (ret) {
460		dev_err(dev, "Failed to add irqchip: %d\n", ret);
461		return ret;
462	}
463
464	virq = regmap_irq_get_virq(wg->regmap_irq_chip, irq);
465	if (virq < 0) {
466		dev_err(dev, "Failed to get virq by irq %d\n", irq);
467		return virq;
468	}
469
470	ret = devm_request_threaded_irq(dev, virq, NULL,
471		wcove_gpio_irq_handler, IRQF_ONESHOT, pdev->name, wg);
472	if (ret) {
473		dev_err(dev, "Failed to request irq %d\n", virq);
474		return ret;
475	}
476
477	gpiochip_set_nested_irqchip(&wg->chip, &wcove_irqchip, virq);
478
479	/* Enable GPIO0 interrupts */
480	ret = regmap_update_bits(wg->regmap, IRQ_MASK_BASE, GPIO_IRQ0_MASK,
481				 0x00);
482	if (ret)
483		return ret;
484
485	/* Enable GPIO1 interrupts */
486	ret = regmap_update_bits(wg->regmap, IRQ_MASK_BASE + 1, GPIO_IRQ1_MASK,
487				 0x00);
488	if (ret)
489		return ret;
490
491	return 0;
492}
493
494/*
495 * Whiskey Cove PMIC itself is a analog device(but with digital control
496 * interface) providing power management support for other devices in
497 * the accompanied SoC, so we have no .pm for Whiskey Cove GPIO driver.
498 */
499static struct platform_driver wcove_gpio_driver = {
500	.driver = {
501		.name = "bxt_wcove_gpio",
502	},
503	.probe = wcove_gpio_probe,
504};
505
506module_platform_driver(wcove_gpio_driver);
507
508MODULE_AUTHOR("Ajay Thomas <ajay.thomas.david.rajamanickam@intel.com>");
509MODULE_AUTHOR("Bin Gao <bin.gao@intel.com>");
510MODULE_DESCRIPTION("Intel Whiskey Cove GPIO Driver");
511MODULE_LICENSE("GPL v2");
512MODULE_ALIAS("platform:bxt_wcove_gpio");