Linux Audio

Check our new training course

Linux kernel drivers training

May 6-19, 2025
Register
Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Intel Merrifield SoC GPIO driver
  4 *
  5 * Copyright (c) 2016 Intel Corporation.
  6 * Author: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
 
 
 
 
  7 */
  8
  9#include <linux/acpi.h>
 10#include <linux/bitops.h>
 11#include <linux/gpio/driver.h>
 
 
 12#include <linux/interrupt.h>
 13#include <linux/io.h>
 14#include <linux/module.h>
 15#include <linux/pci.h>
 16#include <linux/pinctrl/consumer.h>
 17#include <linux/string_helpers.h>
 18
 19#define GCCR		0x000	/* controller configuration */
 20#define GPLR		0x004	/* pin level r/o */
 21#define GPDR		0x01c	/* pin direction */
 22#define GPSR		0x034	/* pin set w/o */
 23#define GPCR		0x04c	/* pin clear w/o */
 24#define GRER		0x064	/* rising edge detect */
 25#define GFER		0x07c	/* falling edge detect */
 26#define GFBR		0x094	/* glitch filter bypass */
 27#define GIMR		0x0ac	/* interrupt mask */
 28#define GISR		0x0c4	/* interrupt source */
 29#define GITR		0x300	/* input type */
 30#define GLPR		0x318	/* level input polarity */
 31#define GWMR		0x400	/* wake mask */
 32#define GWSR		0x418	/* wake source */
 33#define GSIR		0xc00	/* secure input */
 34
 35/* Intel Merrifield has 192 GPIO pins */
 36#define MRFLD_NGPIO	192
 37
 38struct mrfld_gpio_pinrange {
 39	unsigned int gpio_base;
 40	unsigned int pin_base;
 41	unsigned int npins;
 42};
 43
 44#define GPIO_PINRANGE(gstart, gend, pstart)		\
 45	{						\
 46		.gpio_base = (gstart),			\
 47		.pin_base = (pstart),			\
 48		.npins = (gend) - (gstart) + 1,		\
 49	}
 50
 51struct mrfld_gpio {
 52	struct gpio_chip	chip;
 53	void __iomem		*reg_base;
 54	raw_spinlock_t		lock;
 55	struct device		*dev;
 56};
 57
 58static const struct mrfld_gpio_pinrange mrfld_gpio_ranges[] = {
 59	GPIO_PINRANGE(0, 11, 146),
 60	GPIO_PINRANGE(12, 13, 144),
 61	GPIO_PINRANGE(14, 15, 35),
 62	GPIO_PINRANGE(16, 16, 164),
 63	GPIO_PINRANGE(17, 18, 105),
 64	GPIO_PINRANGE(19, 22, 101),
 65	GPIO_PINRANGE(23, 30, 107),
 66	GPIO_PINRANGE(32, 43, 67),
 67	GPIO_PINRANGE(44, 63, 195),
 68	GPIO_PINRANGE(64, 67, 140),
 69	GPIO_PINRANGE(68, 69, 165),
 70	GPIO_PINRANGE(70, 71, 65),
 71	GPIO_PINRANGE(72, 76, 228),
 72	GPIO_PINRANGE(77, 86, 37),
 73	GPIO_PINRANGE(87, 87, 48),
 74	GPIO_PINRANGE(88, 88, 47),
 75	GPIO_PINRANGE(89, 96, 49),
 76	GPIO_PINRANGE(97, 97, 34),
 77	GPIO_PINRANGE(102, 119, 83),
 78	GPIO_PINRANGE(120, 123, 79),
 79	GPIO_PINRANGE(124, 135, 115),
 80	GPIO_PINRANGE(137, 142, 158),
 81	GPIO_PINRANGE(154, 163, 24),
 82	GPIO_PINRANGE(164, 176, 215),
 83	GPIO_PINRANGE(177, 189, 127),
 84	GPIO_PINRANGE(190, 191, 178),
 85};
 86
 87static void __iomem *gpio_reg(struct gpio_chip *chip, unsigned int offset,
 88			      unsigned int reg_type_offset)
 89{
 90	struct mrfld_gpio *priv = gpiochip_get_data(chip);
 91	u8 reg = offset / 32;
 92
 93	return priv->reg_base + reg_type_offset + reg * 4;
 94}
 95
 96static int mrfld_gpio_get(struct gpio_chip *chip, unsigned int offset)
 97{
 98	void __iomem *gplr = gpio_reg(chip, offset, GPLR);
 99
100	return !!(readl(gplr) & BIT(offset % 32));
101}
102
103static void mrfld_gpio_set(struct gpio_chip *chip, unsigned int offset,
104			   int value)
105{
106	struct mrfld_gpio *priv = gpiochip_get_data(chip);
107	void __iomem *gpsr, *gpcr;
108	unsigned long flags;
109
110	raw_spin_lock_irqsave(&priv->lock, flags);
111
112	if (value) {
113		gpsr = gpio_reg(chip, offset, GPSR);
114		writel(BIT(offset % 32), gpsr);
115	} else {
116		gpcr = gpio_reg(chip, offset, GPCR);
117		writel(BIT(offset % 32), gpcr);
118	}
119
120	raw_spin_unlock_irqrestore(&priv->lock, flags);
121}
122
123static int mrfld_gpio_direction_input(struct gpio_chip *chip,
124				      unsigned int offset)
125{
126	struct mrfld_gpio *priv = gpiochip_get_data(chip);
127	void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
128	unsigned long flags;
129	u32 value;
130
131	raw_spin_lock_irqsave(&priv->lock, flags);
132
133	value = readl(gpdr);
134	value &= ~BIT(offset % 32);
135	writel(value, gpdr);
136
137	raw_spin_unlock_irqrestore(&priv->lock, flags);
138
139	return 0;
140}
141
142static int mrfld_gpio_direction_output(struct gpio_chip *chip,
143				       unsigned int offset, int value)
144{
145	struct mrfld_gpio *priv = gpiochip_get_data(chip);
146	void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
147	unsigned long flags;
148
149	mrfld_gpio_set(chip, offset, value);
150
151	raw_spin_lock_irqsave(&priv->lock, flags);
152
153	value = readl(gpdr);
154	value |= BIT(offset % 32);
155	writel(value, gpdr);
156
157	raw_spin_unlock_irqrestore(&priv->lock, flags);
158
159	return 0;
160}
161
162static int mrfld_gpio_get_direction(struct gpio_chip *chip, unsigned int offset)
163{
164	void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
165
166	if (readl(gpdr) & BIT(offset % 32))
167		return GPIO_LINE_DIRECTION_OUT;
168
169	return GPIO_LINE_DIRECTION_IN;
170}
171
172static int mrfld_gpio_set_debounce(struct gpio_chip *chip, unsigned int offset,
173				   unsigned int debounce)
174{
175	struct mrfld_gpio *priv = gpiochip_get_data(chip);
176	void __iomem *gfbr = gpio_reg(chip, offset, GFBR);
177	unsigned long flags;
178	u32 value;
179
180	raw_spin_lock_irqsave(&priv->lock, flags);
181
182	if (debounce)
183		value = readl(gfbr) & ~BIT(offset % 32);
184	else
185		value = readl(gfbr) | BIT(offset % 32);
186	writel(value, gfbr);
187
188	raw_spin_unlock_irqrestore(&priv->lock, flags);
189
190	return 0;
191}
192
193static int mrfld_gpio_set_config(struct gpio_chip *chip, unsigned int offset,
194				 unsigned long config)
195{
196	u32 debounce;
197
198	if ((pinconf_to_config_param(config) == PIN_CONFIG_BIAS_DISABLE) ||
199	    (pinconf_to_config_param(config) == PIN_CONFIG_BIAS_PULL_UP) ||
200	    (pinconf_to_config_param(config) == PIN_CONFIG_BIAS_PULL_DOWN))
201		return gpiochip_generic_config(chip, offset, config);
202
203	if (pinconf_to_config_param(config) != PIN_CONFIG_INPUT_DEBOUNCE)
204		return -ENOTSUPP;
205
206	debounce = pinconf_to_config_argument(config);
207	return mrfld_gpio_set_debounce(chip, offset, debounce);
208}
209
210static void mrfld_irq_ack(struct irq_data *d)
211{
212	struct mrfld_gpio *priv = irq_data_get_irq_chip_data(d);
213	u32 gpio = irqd_to_hwirq(d);
214	void __iomem *gisr = gpio_reg(&priv->chip, gpio, GISR);
215	unsigned long flags;
216
217	raw_spin_lock_irqsave(&priv->lock, flags);
218
219	writel(BIT(gpio % 32), gisr);
220
221	raw_spin_unlock_irqrestore(&priv->lock, flags);
222}
223
224static void mrfld_irq_unmask_mask(struct mrfld_gpio *priv, u32 gpio, bool unmask)
225{
 
 
226	void __iomem *gimr = gpio_reg(&priv->chip, gpio, GIMR);
227	unsigned long flags;
228	u32 value;
229
230	raw_spin_lock_irqsave(&priv->lock, flags);
231
232	if (unmask)
233		value = readl(gimr) | BIT(gpio % 32);
234	else
235		value = readl(gimr) & ~BIT(gpio % 32);
236	writel(value, gimr);
237
238	raw_spin_unlock_irqrestore(&priv->lock, flags);
239}
240
241static void mrfld_irq_mask(struct irq_data *d)
242{
243	struct mrfld_gpio *priv = irq_data_get_irq_chip_data(d);
244	u32 gpio = irqd_to_hwirq(d);
245
246	mrfld_irq_unmask_mask(priv, gpio, false);
247	gpiochip_disable_irq(&priv->chip, gpio);
248}
249
250static void mrfld_irq_unmask(struct irq_data *d)
251{
252	struct mrfld_gpio *priv = irq_data_get_irq_chip_data(d);
253	u32 gpio = irqd_to_hwirq(d);
254
255	gpiochip_enable_irq(&priv->chip, gpio);
256	mrfld_irq_unmask_mask(priv, gpio, true);
257}
258
259static int mrfld_irq_set_type(struct irq_data *d, unsigned int type)
260{
261	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
262	struct mrfld_gpio *priv = gpiochip_get_data(gc);
263	u32 gpio = irqd_to_hwirq(d);
264	void __iomem *grer = gpio_reg(&priv->chip, gpio, GRER);
265	void __iomem *gfer = gpio_reg(&priv->chip, gpio, GFER);
266	void __iomem *gitr = gpio_reg(&priv->chip, gpio, GITR);
267	void __iomem *glpr = gpio_reg(&priv->chip, gpio, GLPR);
268	unsigned long flags;
269	u32 value;
270
271	raw_spin_lock_irqsave(&priv->lock, flags);
272
273	if (type & IRQ_TYPE_EDGE_RISING)
274		value = readl(grer) | BIT(gpio % 32);
275	else
276		value = readl(grer) & ~BIT(gpio % 32);
277	writel(value, grer);
278
279	if (type & IRQ_TYPE_EDGE_FALLING)
280		value = readl(gfer) | BIT(gpio % 32);
281	else
282		value = readl(gfer) & ~BIT(gpio % 32);
283	writel(value, gfer);
284
285	/*
286	 * To prevent glitches from triggering an unintended level interrupt,
287	 * configure GLPR register first and then configure GITR.
288	 */
289	if (type & IRQ_TYPE_LEVEL_LOW)
290		value = readl(glpr) | BIT(gpio % 32);
291	else
292		value = readl(glpr) & ~BIT(gpio % 32);
293	writel(value, glpr);
294
295	if (type & IRQ_TYPE_LEVEL_MASK) {
296		value = readl(gitr) | BIT(gpio % 32);
297		writel(value, gitr);
298
299		irq_set_handler_locked(d, handle_level_irq);
300	} else if (type & IRQ_TYPE_EDGE_BOTH) {
301		value = readl(gitr) & ~BIT(gpio % 32);
302		writel(value, gitr);
303
304		irq_set_handler_locked(d, handle_edge_irq);
305	}
306
307	raw_spin_unlock_irqrestore(&priv->lock, flags);
308
309	return 0;
310}
311
312static int mrfld_irq_set_wake(struct irq_data *d, unsigned int on)
313{
314	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
315	struct mrfld_gpio *priv = gpiochip_get_data(gc);
316	u32 gpio = irqd_to_hwirq(d);
317	void __iomem *gwmr = gpio_reg(&priv->chip, gpio, GWMR);
318	void __iomem *gwsr = gpio_reg(&priv->chip, gpio, GWSR);
319	unsigned long flags;
320	u32 value;
321
322	raw_spin_lock_irqsave(&priv->lock, flags);
323
324	/* Clear the existing wake status */
325	writel(BIT(gpio % 32), gwsr);
326
327	if (on)
328		value = readl(gwmr) | BIT(gpio % 32);
329	else
330		value = readl(gwmr) & ~BIT(gpio % 32);
331	writel(value, gwmr);
332
333	raw_spin_unlock_irqrestore(&priv->lock, flags);
334
335	dev_dbg(priv->dev, "%s wake for gpio %u\n", str_enable_disable(on), gpio);
336	return 0;
337}
338
339static const struct irq_chip mrfld_irqchip = {
340	.name		= "gpio-merrifield",
341	.irq_ack	= mrfld_irq_ack,
342	.irq_mask	= mrfld_irq_mask,
343	.irq_unmask	= mrfld_irq_unmask,
344	.irq_set_type	= mrfld_irq_set_type,
345	.irq_set_wake	= mrfld_irq_set_wake,
346	.flags		= IRQCHIP_IMMUTABLE,
347	GPIOCHIP_IRQ_RESOURCE_HELPERS,
348};
349
350static void mrfld_irq_handler(struct irq_desc *desc)
351{
352	struct gpio_chip *gc = irq_desc_get_handler_data(desc);
353	struct mrfld_gpio *priv = gpiochip_get_data(gc);
354	struct irq_chip *irqchip = irq_desc_get_chip(desc);
355	unsigned long base, gpio;
356
357	chained_irq_enter(irqchip, desc);
358
359	/* Check GPIO controller to check which pin triggered the interrupt */
360	for (base = 0; base < priv->chip.ngpio; base += 32) {
361		void __iomem *gisr = gpio_reg(&priv->chip, base, GISR);
362		void __iomem *gimr = gpio_reg(&priv->chip, base, GIMR);
363		unsigned long pending, enabled;
364
365		pending = readl(gisr);
366		enabled = readl(gimr);
367
368		/* Only interrupts that are enabled */
369		pending &= enabled;
370
371		for_each_set_bit(gpio, &pending, 32)
372			generic_handle_domain_irq(gc->irq.domain, base + gpio);
 
 
 
 
373	}
374
375	chained_irq_exit(irqchip, desc);
376}
377
378static int mrfld_irq_init_hw(struct gpio_chip *chip)
379{
380	struct mrfld_gpio *priv = gpiochip_get_data(chip);
381	void __iomem *reg;
382	unsigned int base;
383
384	for (base = 0; base < priv->chip.ngpio; base += 32) {
385		/* Clear the rising-edge detect register */
386		reg = gpio_reg(&priv->chip, base, GRER);
387		writel(0, reg);
388		/* Clear the falling-edge detect register */
389		reg = gpio_reg(&priv->chip, base, GFER);
390		writel(0, reg);
391	}
392
393	return 0;
394}
395
396static const char *mrfld_gpio_get_pinctrl_dev_name(struct mrfld_gpio *priv)
397{
398	struct acpi_device *adev;
399	const char *name;
400
401	adev = acpi_dev_get_first_match_dev("INTC1002", NULL, -1);
402	if (adev) {
403		name = devm_kstrdup(priv->dev, acpi_dev_name(adev), GFP_KERNEL);
404		acpi_dev_put(adev);
405	} else {
406		name = "pinctrl-merrifield";
407	}
408
409	return name;
410}
411
412static int mrfld_gpio_add_pin_ranges(struct gpio_chip *chip)
413{
414	struct mrfld_gpio *priv = gpiochip_get_data(chip);
415	const struct mrfld_gpio_pinrange *range;
416	const char *pinctrl_dev_name;
417	unsigned int i;
418	int retval;
419
420	pinctrl_dev_name = mrfld_gpio_get_pinctrl_dev_name(priv);
421	if (!pinctrl_dev_name)
422		return -ENOMEM;
423
424	for (i = 0; i < ARRAY_SIZE(mrfld_gpio_ranges); i++) {
425		range = &mrfld_gpio_ranges[i];
426		retval = gpiochip_add_pin_range(&priv->chip, pinctrl_dev_name,
427						range->gpio_base,
428						range->pin_base,
429						range->npins);
430		if (retval) {
431			dev_err(priv->dev, "failed to add GPIO pin range\n");
432			return retval;
433		}
434	}
435
436	return 0;
437}
438
439static int mrfld_gpio_probe(struct pci_dev *pdev, const struct pci_device_id *id)
440{
441	struct gpio_irq_chip *girq;
442	struct mrfld_gpio *priv;
443	u32 gpio_base, irq_base;
444	void __iomem *base;
 
445	int retval;
446
447	retval = pcim_enable_device(pdev);
448	if (retval)
449		return retval;
450
451	retval = pcim_iomap_regions(pdev, BIT(1) | BIT(0), pci_name(pdev));
452	if (retval) {
453		dev_err(&pdev->dev, "I/O memory mapping error\n");
454		return retval;
455	}
456
457	base = pcim_iomap_table(pdev)[1];
458
459	irq_base = readl(base + 0 * sizeof(u32));
460	gpio_base = readl(base + 1 * sizeof(u32));
461
462	/* Release the IO mapping, since we already get the info from BAR1 */
463	pcim_iounmap_regions(pdev, BIT(1));
464
465	priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
466	if (!priv)
 
467		return -ENOMEM;
 
468
469	priv->dev = &pdev->dev;
470	priv->reg_base = pcim_iomap_table(pdev)[0];
471
472	priv->chip.label = dev_name(&pdev->dev);
473	priv->chip.parent = &pdev->dev;
474	priv->chip.request = gpiochip_generic_request;
475	priv->chip.free = gpiochip_generic_free;
476	priv->chip.direction_input = mrfld_gpio_direction_input;
477	priv->chip.direction_output = mrfld_gpio_direction_output;
478	priv->chip.get = mrfld_gpio_get;
479	priv->chip.set = mrfld_gpio_set;
480	priv->chip.get_direction = mrfld_gpio_get_direction;
481	priv->chip.set_config = mrfld_gpio_set_config;
482	priv->chip.base = gpio_base;
483	priv->chip.ngpio = MRFLD_NGPIO;
484	priv->chip.can_sleep = false;
485	priv->chip.add_pin_ranges = mrfld_gpio_add_pin_ranges;
486
487	raw_spin_lock_init(&priv->lock);
488
489	retval = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_ALL_TYPES);
490	if (retval < 0)
 
 
491		return retval;
 
492
493	girq = &priv->chip.irq;
494	gpio_irq_chip_set_chip(girq, &mrfld_irqchip);
495	girq->init_hw = mrfld_irq_init_hw;
496	girq->parent_handler = mrfld_irq_handler;
497	girq->num_parents = 1;
498	girq->parents = devm_kcalloc(&pdev->dev, girq->num_parents,
499				     sizeof(*girq->parents), GFP_KERNEL);
500	if (!girq->parents)
501		return -ENOMEM;
502	girq->parents[0] = pci_irq_vector(pdev, 0);
503	girq->first = irq_base;
504	girq->default_type = IRQ_TYPE_NONE;
505	girq->handler = handle_bad_irq;
506
507	retval = devm_gpiochip_add_data(&pdev->dev, &priv->chip, priv);
 
508	if (retval) {
509		dev_err(&pdev->dev, "gpiochip_add error %d\n", retval);
510		return retval;
511	}
512
513	pci_set_drvdata(pdev, priv);
 
 
 
 
514	return 0;
515}
516
517static const struct pci_device_id mrfld_gpio_ids[] = {
518	{ PCI_VDEVICE(INTEL, 0x1199) },
519	{ }
520};
521MODULE_DEVICE_TABLE(pci, mrfld_gpio_ids);
522
523static struct pci_driver mrfld_gpio_driver = {
524	.name		= "gpio-merrifield",
525	.id_table	= mrfld_gpio_ids,
526	.probe		= mrfld_gpio_probe,
527};
528
529module_pci_driver(mrfld_gpio_driver);
530
531MODULE_AUTHOR("Andy Shevchenko <andriy.shevchenko@linux.intel.com>");
532MODULE_DESCRIPTION("Intel Merrifield SoC GPIO driver");
533MODULE_LICENSE("GPL v2");
v4.10.11
 
  1/*
  2 * Intel Merrifield SoC GPIO driver
  3 *
  4 * Copyright (c) 2016 Intel Corporation.
  5 * Author: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
  6 *
  7 * This program is free software; you can redistribute it and/or modify
  8 * it under the terms of the GNU General Public License version 2 as
  9 * published by the Free Software Foundation.
 10 */
 11
 
 12#include <linux/bitops.h>
 13#include <linux/gpio/driver.h>
 14#include <linux/gpio.h>
 15#include <linux/init.h>
 16#include <linux/interrupt.h>
 17#include <linux/io.h>
 18#include <linux/module.h>
 19#include <linux/pci.h>
 20#include <linux/pinctrl/consumer.h>
 
 21
 22#define GCCR		0x000	/* controller configuration */
 23#define GPLR		0x004	/* pin level r/o */
 24#define GPDR		0x01c	/* pin direction */
 25#define GPSR		0x034	/* pin set w/o */
 26#define GPCR		0x04c	/* pin clear w/o */
 27#define GRER		0x064	/* rising edge detect */
 28#define GFER		0x07c	/* falling edge detect */
 29#define GFBR		0x094	/* glitch filter bypass */
 30#define GIMR		0x0ac	/* interrupt mask */
 31#define GISR		0x0c4	/* interrupt source */
 32#define GITR		0x300	/* input type */
 33#define GLPR		0x318	/* level input polarity */
 34#define GWMR		0x400	/* wake mask */
 35#define GWSR		0x418	/* wake source */
 36#define GSIR		0xc00	/* secure input */
 37
 38/* Intel Merrifield has 192 GPIO pins */
 39#define MRFLD_NGPIO	192
 40
 41struct mrfld_gpio_pinrange {
 42	unsigned int gpio_base;
 43	unsigned int pin_base;
 44	unsigned int npins;
 45};
 46
 47#define GPIO_PINRANGE(gstart, gend, pstart)		\
 48	{						\
 49		.gpio_base = (gstart),			\
 50		.pin_base = (pstart),			\
 51		.npins = (gend) - (gstart) + 1,		\
 52	}
 53
 54struct mrfld_gpio {
 55	struct gpio_chip	chip;
 56	void __iomem		*reg_base;
 57	raw_spinlock_t		lock;
 58	struct device		*dev;
 59};
 60
 61static const struct mrfld_gpio_pinrange mrfld_gpio_ranges[] = {
 62	GPIO_PINRANGE(0, 11, 146),
 63	GPIO_PINRANGE(12, 13, 144),
 64	GPIO_PINRANGE(14, 15, 35),
 65	GPIO_PINRANGE(16, 16, 164),
 66	GPIO_PINRANGE(17, 18, 105),
 67	GPIO_PINRANGE(19, 22, 101),
 68	GPIO_PINRANGE(23, 30, 107),
 69	GPIO_PINRANGE(32, 43, 67),
 70	GPIO_PINRANGE(44, 63, 195),
 71	GPIO_PINRANGE(64, 67, 140),
 72	GPIO_PINRANGE(68, 69, 165),
 73	GPIO_PINRANGE(70, 71, 65),
 74	GPIO_PINRANGE(72, 76, 228),
 75	GPIO_PINRANGE(77, 86, 37),
 76	GPIO_PINRANGE(87, 87, 48),
 77	GPIO_PINRANGE(88, 88, 47),
 78	GPIO_PINRANGE(89, 96, 49),
 79	GPIO_PINRANGE(97, 97, 34),
 80	GPIO_PINRANGE(102, 119, 83),
 81	GPIO_PINRANGE(120, 123, 79),
 82	GPIO_PINRANGE(124, 135, 115),
 83	GPIO_PINRANGE(137, 142, 158),
 84	GPIO_PINRANGE(154, 163, 24),
 85	GPIO_PINRANGE(164, 176, 215),
 86	GPIO_PINRANGE(177, 189, 127),
 87	GPIO_PINRANGE(190, 191, 178),
 88};
 89
 90static void __iomem *gpio_reg(struct gpio_chip *chip, unsigned int offset,
 91			      unsigned int reg_type_offset)
 92{
 93	struct mrfld_gpio *priv = gpiochip_get_data(chip);
 94	u8 reg = offset / 32;
 95
 96	return priv->reg_base + reg_type_offset + reg * 4;
 97}
 98
 99static int mrfld_gpio_get(struct gpio_chip *chip, unsigned int offset)
100{
101	void __iomem *gplr = gpio_reg(chip, offset, GPLR);
102
103	return !!(readl(gplr) & BIT(offset % 32));
104}
105
106static void mrfld_gpio_set(struct gpio_chip *chip, unsigned int offset,
107			   int value)
108{
109	struct mrfld_gpio *priv = gpiochip_get_data(chip);
110	void __iomem *gpsr, *gpcr;
111	unsigned long flags;
112
113	raw_spin_lock_irqsave(&priv->lock, flags);
114
115	if (value) {
116		gpsr = gpio_reg(chip, offset, GPSR);
117		writel(BIT(offset % 32), gpsr);
118	} else {
119		gpcr = gpio_reg(chip, offset, GPCR);
120		writel(BIT(offset % 32), gpcr);
121	}
122
123	raw_spin_unlock_irqrestore(&priv->lock, flags);
124}
125
126static int mrfld_gpio_direction_input(struct gpio_chip *chip,
127				      unsigned int offset)
128{
129	struct mrfld_gpio *priv = gpiochip_get_data(chip);
130	void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
131	unsigned long flags;
132	u32 value;
133
134	raw_spin_lock_irqsave(&priv->lock, flags);
135
136	value = readl(gpdr);
137	value &= ~BIT(offset % 32);
138	writel(value, gpdr);
139
140	raw_spin_unlock_irqrestore(&priv->lock, flags);
141
142	return 0;
143}
144
145static int mrfld_gpio_direction_output(struct gpio_chip *chip,
146				       unsigned int offset, int value)
147{
148	struct mrfld_gpio *priv = gpiochip_get_data(chip);
149	void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
150	unsigned long flags;
151
152	mrfld_gpio_set(chip, offset, value);
153
154	raw_spin_lock_irqsave(&priv->lock, flags);
155
156	value = readl(gpdr);
157	value |= BIT(offset % 32);
158	writel(value, gpdr);
159
160	raw_spin_unlock_irqrestore(&priv->lock, flags);
161
162	return 0;
163}
164
165static int mrfld_gpio_get_direction(struct gpio_chip *chip, unsigned int offset)
166{
167	void __iomem *gpdr = gpio_reg(chip, offset, GPDR);
168
169	return (readl(gpdr) & BIT(offset % 32)) ? GPIOF_DIR_OUT : GPIOF_DIR_IN;
 
 
 
170}
171
172static int mrfld_gpio_set_debounce(struct gpio_chip *chip, unsigned int offset,
173				   unsigned int debounce)
174{
175	struct mrfld_gpio *priv = gpiochip_get_data(chip);
176	void __iomem *gfbr = gpio_reg(chip, offset, GFBR);
177	unsigned long flags;
178	u32 value;
179
180	raw_spin_lock_irqsave(&priv->lock, flags);
181
182	if (debounce)
183		value = readl(gfbr) & ~BIT(offset % 32);
184	else
185		value = readl(gfbr) | BIT(offset % 32);
186	writel(value, gfbr);
187
188	raw_spin_unlock_irqrestore(&priv->lock, flags);
189
190	return 0;
191}
192
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193static void mrfld_irq_ack(struct irq_data *d)
194{
195	struct mrfld_gpio *priv = irq_data_get_irq_chip_data(d);
196	u32 gpio = irqd_to_hwirq(d);
197	void __iomem *gisr = gpio_reg(&priv->chip, gpio, GISR);
198	unsigned long flags;
199
200	raw_spin_lock_irqsave(&priv->lock, flags);
201
202	writel(BIT(gpio % 32), gisr);
203
204	raw_spin_unlock_irqrestore(&priv->lock, flags);
205}
206
207static void mrfld_irq_unmask_mask(struct irq_data *d, bool unmask)
208{
209	struct mrfld_gpio *priv = irq_data_get_irq_chip_data(d);
210	u32 gpio = irqd_to_hwirq(d);
211	void __iomem *gimr = gpio_reg(&priv->chip, gpio, GIMR);
212	unsigned long flags;
213	u32 value;
214
215	raw_spin_lock_irqsave(&priv->lock, flags);
216
217	if (unmask)
218		value = readl(gimr) | BIT(gpio % 32);
219	else
220		value = readl(gimr) & ~BIT(gpio % 32);
221	writel(value, gimr);
222
223	raw_spin_unlock_irqrestore(&priv->lock, flags);
224}
225
226static void mrfld_irq_mask(struct irq_data *d)
227{
228	mrfld_irq_unmask_mask(d, false);
 
 
 
 
229}
230
231static void mrfld_irq_unmask(struct irq_data *d)
232{
233	mrfld_irq_unmask_mask(d, true);
 
 
 
 
234}
235
236static int mrfld_irq_set_type(struct irq_data *d, unsigned int type)
237{
238	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
239	struct mrfld_gpio *priv = gpiochip_get_data(gc);
240	u32 gpio = irqd_to_hwirq(d);
241	void __iomem *grer = gpio_reg(&priv->chip, gpio, GRER);
242	void __iomem *gfer = gpio_reg(&priv->chip, gpio, GFER);
243	void __iomem *gitr = gpio_reg(&priv->chip, gpio, GITR);
244	void __iomem *glpr = gpio_reg(&priv->chip, gpio, GLPR);
245	unsigned long flags;
246	u32 value;
247
248	raw_spin_lock_irqsave(&priv->lock, flags);
249
250	if (type & IRQ_TYPE_EDGE_RISING)
251		value = readl(grer) | BIT(gpio % 32);
252	else
253		value = readl(grer) & ~BIT(gpio % 32);
254	writel(value, grer);
255
256	if (type & IRQ_TYPE_EDGE_FALLING)
257		value = readl(gfer) | BIT(gpio % 32);
258	else
259		value = readl(gfer) & ~BIT(gpio % 32);
260	writel(value, gfer);
261
262	/*
263	 * To prevent glitches from triggering an unintended level interrupt,
264	 * configure GLPR register first and then configure GITR.
265	 */
266	if (type & IRQ_TYPE_LEVEL_LOW)
267		value = readl(glpr) | BIT(gpio % 32);
268	else
269		value = readl(glpr) & ~BIT(gpio % 32);
270	writel(value, glpr);
271
272	if (type & IRQ_TYPE_LEVEL_MASK) {
273		value = readl(gitr) | BIT(gpio % 32);
274		writel(value, gitr);
275
276		irq_set_handler_locked(d, handle_level_irq);
277	} else if (type & IRQ_TYPE_EDGE_BOTH) {
278		value = readl(gitr) & ~BIT(gpio % 32);
279		writel(value, gitr);
280
281		irq_set_handler_locked(d, handle_edge_irq);
282	}
283
284	raw_spin_unlock_irqrestore(&priv->lock, flags);
285
286	return 0;
287}
288
289static int mrfld_irq_set_wake(struct irq_data *d, unsigned int on)
290{
291	struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
292	struct mrfld_gpio *priv = gpiochip_get_data(gc);
293	u32 gpio = irqd_to_hwirq(d);
294	void __iomem *gwmr = gpio_reg(&priv->chip, gpio, GWMR);
295	void __iomem *gwsr = gpio_reg(&priv->chip, gpio, GWSR);
296	unsigned long flags;
297	u32 value;
298
299	raw_spin_lock_irqsave(&priv->lock, flags);
300
301	/* Clear the existing wake status */
302	writel(BIT(gpio % 32), gwsr);
303
304	if (on)
305		value = readl(gwmr) | BIT(gpio % 32);
306	else
307		value = readl(gwmr) & ~BIT(gpio % 32);
308	writel(value, gwmr);
309
310	raw_spin_unlock_irqrestore(&priv->lock, flags);
311
312	dev_dbg(priv->dev, "%sable wake for gpio %u\n", on ? "en" : "dis", gpio);
313	return 0;
314}
315
316static struct irq_chip mrfld_irqchip = {
317	.name		= "gpio-merrifield",
318	.irq_ack	= mrfld_irq_ack,
319	.irq_mask	= mrfld_irq_mask,
320	.irq_unmask	= mrfld_irq_unmask,
321	.irq_set_type	= mrfld_irq_set_type,
322	.irq_set_wake	= mrfld_irq_set_wake,
 
 
323};
324
325static void mrfld_irq_handler(struct irq_desc *desc)
326{
327	struct gpio_chip *gc = irq_desc_get_handler_data(desc);
328	struct mrfld_gpio *priv = gpiochip_get_data(gc);
329	struct irq_chip *irqchip = irq_desc_get_chip(desc);
330	unsigned long base, gpio;
331
332	chained_irq_enter(irqchip, desc);
333
334	/* Check GPIO controller to check which pin triggered the interrupt */
335	for (base = 0; base < priv->chip.ngpio; base += 32) {
336		void __iomem *gisr = gpio_reg(&priv->chip, base, GISR);
337		void __iomem *gimr = gpio_reg(&priv->chip, base, GIMR);
338		unsigned long pending, enabled;
339
340		pending = readl(gisr);
341		enabled = readl(gimr);
342
343		/* Only interrupts that are enabled */
344		pending &= enabled;
345
346		for_each_set_bit(gpio, &pending, 32) {
347			unsigned int irq;
348
349			irq = irq_find_mapping(gc->irqdomain, base + gpio);
350			generic_handle_irq(irq);
351		}
352	}
353
354	chained_irq_exit(irqchip, desc);
355}
356
357static void mrfld_irq_init_hw(struct mrfld_gpio *priv)
358{
 
359	void __iomem *reg;
360	unsigned int base;
361
362	for (base = 0; base < priv->chip.ngpio; base += 32) {
363		/* Clear the rising-edge detect register */
364		reg = gpio_reg(&priv->chip, base, GRER);
365		writel(0, reg);
366		/* Clear the falling-edge detect register */
367		reg = gpio_reg(&priv->chip, base, GFER);
368		writel(0, reg);
369	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
370}
371
372static int mrfld_gpio_probe(struct pci_dev *pdev, const struct pci_device_id *id)
373{
374	const struct mrfld_gpio_pinrange *range;
375	struct mrfld_gpio *priv;
376	u32 gpio_base, irq_base;
377	void __iomem *base;
378	unsigned int i;
379	int retval;
380
381	retval = pcim_enable_device(pdev);
382	if (retval)
383		return retval;
384
385	retval = pcim_iomap_regions(pdev, BIT(1) | BIT(0), pci_name(pdev));
386	if (retval) {
387		dev_err(&pdev->dev, "I/O memory mapping error\n");
388		return retval;
389	}
390
391	base = pcim_iomap_table(pdev)[1];
392
393	irq_base = readl(base);
394	gpio_base = readl(sizeof(u32) + base);
395
396	/* Release the IO mapping, since we already get the info from BAR1 */
397	pcim_iounmap_regions(pdev, BIT(1));
398
399	priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
400	if (!priv) {
401		dev_err(&pdev->dev, "can't allocate chip data\n");
402		return -ENOMEM;
403	}
404
405	priv->dev = &pdev->dev;
406	priv->reg_base = pcim_iomap_table(pdev)[0];
407
408	priv->chip.label = dev_name(&pdev->dev);
409	priv->chip.parent = &pdev->dev;
410	priv->chip.request = gpiochip_generic_request;
411	priv->chip.free = gpiochip_generic_free;
412	priv->chip.direction_input = mrfld_gpio_direction_input;
413	priv->chip.direction_output = mrfld_gpio_direction_output;
414	priv->chip.get = mrfld_gpio_get;
415	priv->chip.set = mrfld_gpio_set;
416	priv->chip.get_direction = mrfld_gpio_get_direction;
417	priv->chip.set_debounce = mrfld_gpio_set_debounce;
418	priv->chip.base = gpio_base;
419	priv->chip.ngpio = MRFLD_NGPIO;
420	priv->chip.can_sleep = false;
 
421
422	raw_spin_lock_init(&priv->lock);
423
424	pci_set_drvdata(pdev, priv);
425	retval = devm_gpiochip_add_data(&pdev->dev, &priv->chip, priv);
426	if (retval) {
427		dev_err(&pdev->dev, "gpiochip_add error %d\n", retval);
428		return retval;
429	}
430
431	for (i = 0; i < ARRAY_SIZE(mrfld_gpio_ranges); i++) {
432		range = &mrfld_gpio_ranges[i];
433		retval = gpiochip_add_pin_range(&priv->chip,
434						"pinctrl-merrifield",
435						range->gpio_base,
436						range->pin_base,
437						range->npins);
438		if (retval) {
439			dev_err(&pdev->dev, "failed to add GPIO pin range\n");
440			return retval;
441		}
442	}
 
443
444	retval = gpiochip_irqchip_add(&priv->chip, &mrfld_irqchip, irq_base,
445				      handle_bad_irq, IRQ_TYPE_NONE);
446	if (retval) {
447		dev_err(&pdev->dev, "could not connect irqchip to gpiochip\n");
448		return retval;
449	}
450
451	mrfld_irq_init_hw(priv);
452
453	gpiochip_set_chained_irqchip(&priv->chip, &mrfld_irqchip, pdev->irq,
454				     mrfld_irq_handler);
455
456	return 0;
457}
458
459static const struct pci_device_id mrfld_gpio_ids[] = {
460	{ PCI_VDEVICE(INTEL, 0x1199) },
461	{ }
462};
463MODULE_DEVICE_TABLE(pci, mrfld_gpio_ids);
464
465static struct pci_driver mrfld_gpio_driver = {
466	.name		= "gpio-merrifield",
467	.id_table	= mrfld_gpio_ids,
468	.probe		= mrfld_gpio_probe,
469};
470
471module_pci_driver(mrfld_gpio_driver);
472
473MODULE_AUTHOR("Andy Shevchenko <andriy.shevchenko@linux.intel.com>");
474MODULE_DESCRIPTION("Intel Merrifield SoC GPIO driver");
475MODULE_LICENSE("GPL v2");