blob: 6bb9741ad036affb084a47937dfaa73a5f691b37 [file] [log] [blame]
Andy Shevchenko7fa07b62018-11-06 14:11:42 +02001// SPDX-License-Identifier: GPL-2.0
Mathias Nyman1d09aaa2012-12-12 17:42:38 +02002/*
3 * GPIO controller driver for Intel Lynxpoint PCH chipset>
4 * Copyright (c) 2012, Intel Corporation.
5 *
6 * Author: Mathias Nyman <mathias.nyman@linux.intel.com>
Mathias Nyman1d09aaa2012-12-12 17:42:38 +02007 */
8
Andy Shevchenko92c28622018-09-04 14:26:25 +03009#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>
Mathias Nyman1d09aaa2012-12-12 17:42:38 +020014#include <linux/kernel.h>
15#include <linux/module.h>
Mathias Nyman1d09aaa2012-12-12 17:42:38 +020016#include <linux/platform_device.h>
17#include <linux/pm_runtime.h>
Andy Shevchenko92c28622018-09-04 14:26:25 +030018#include <linux/slab.h>
19#include <linux/types.h>
Mathias Nyman1d09aaa2012-12-12 17:42:38 +020020
21/* LynxPoint chipset has support for 94 gpio pins */
22
23#define LP_NUM_GPIO 94
24
25/* Bitmapped register offsets */
26#define LP_ACPI_OWNED 0x00 /* Bitmap, set by bios, 0: pin reserved for ACPI */
27#define LP_GC 0x7C /* set APIC IRQ to IRQ14 or IRQ15 for all pins */
28#define LP_INT_STAT 0x80
29#define LP_INT_ENABLE 0x90
30
31/* Each pin has two 32 bit config registers, starting at 0x100 */
32#define LP_CONFIG1 0x100
33#define LP_CONFIG2 0x104
34
35/* LP_CONFIG1 reg bits */
36#define OUT_LVL_BIT BIT(31)
37#define IN_LVL_BIT BIT(30)
38#define TRIG_SEL_BIT BIT(4) /* 0: Edge, 1: Level */
39#define INT_INV_BIT BIT(3) /* Invert interrupt triggering */
40#define DIR_BIT BIT(2) /* 0: Output, 1: Input */
41#define USE_SEL_BIT BIT(0) /* 0: Native, 1: GPIO */
42
43/* LP_CONFIG2 reg bits */
44#define GPINDIS_BIT BIT(2) /* disable input sensing */
45#define GPIWP_BIT (BIT(0) | BIT(1)) /* weak pull options */
46
47struct lp_gpio {
48 struct gpio_chip chip;
Mathias Nyman1d09aaa2012-12-12 17:42:38 +020049 struct platform_device *pdev;
50 spinlock_t lock;
51 unsigned long reg_base;
52};
53
54/*
55 * Lynxpoint gpios are controlled through both bitmapped registers and
56 * per gpio specific registers. The bitmapped registers are in chunks of
57 * 3 x 32bit registers to cover all 94 gpios
58 *
59 * per gpio specific registers consist of two 32bit registers per gpio
60 * (LP_CONFIG1 and LP_CONFIG2), with 94 gpios there's a total of
Colin Cronin20a8a962015-05-18 11:41:43 -070061 * 188 config registers.
Mathias Nyman1d09aaa2012-12-12 17:42:38 +020062 *
63 * A simplified view of the register layout look like this:
64 *
65 * LP_ACPI_OWNED[31:0] gpio ownerships for gpios 0-31 (bitmapped registers)
66 * LP_ACPI_OWNED[63:32] gpio ownerships for gpios 32-63
67 * LP_ACPI_OWNED[94:64] gpio ownerships for gpios 63-94
68 * ...
69 * LP_INT_ENABLE[31:0] ...
70 * LP_INT_ENABLE[63:31] ...
71 * LP_INT_ENABLE[94:64] ...
72 * LP0_CONFIG1 (gpio 0) config1 reg for gpio 0 (per gpio registers)
73 * LP0_CONFIG2 (gpio 0) config2 reg for gpio 0
74 * LP1_CONFIG1 (gpio 1) config1 reg for gpio 1
75 * LP1_CONFIG2 (gpio 1) config2 reg for gpio 1
76 * LP2_CONFIG1 (gpio 2) ...
77 * LP2_CONFIG2 (gpio 2) ...
78 * ...
79 * LP94_CONFIG1 (gpio 94) ...
80 * LP94_CONFIG2 (gpio 94) ...
81 */
82
83static unsigned long lp_gpio_reg(struct gpio_chip *chip, unsigned offset,
84 int reg)
85{
Linus Walleijf291e002015-12-07 09:21:55 +010086 struct lp_gpio *lg = gpiochip_get_data(chip);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +020087 int reg_offset;
88
89 if (reg == LP_CONFIG1 || reg == LP_CONFIG2)
90 /* per gpio specific config registers */
91 reg_offset = offset * 8;
92 else
93 /* bitmapped registers */
94 reg_offset = (offset / 32) * 4;
95
96 return lg->reg_base + reg + reg_offset;
97}
98
99static int lp_gpio_request(struct gpio_chip *chip, unsigned offset)
100{
Linus Walleijf291e002015-12-07 09:21:55 +0100101 struct lp_gpio *lg = gpiochip_get_data(chip);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200102 unsigned long reg = lp_gpio_reg(chip, offset, LP_CONFIG1);
103 unsigned long conf2 = lp_gpio_reg(chip, offset, LP_CONFIG2);
104 unsigned long acpi_use = lp_gpio_reg(chip, offset, LP_ACPI_OWNED);
105
106 pm_runtime_get(&lg->pdev->dev); /* should we put if failed */
107
108 /* Fail if BIOS reserved pin for ACPI use */
109 if (!(inl(acpi_use) & BIT(offset % 32))) {
110 dev_err(&lg->pdev->dev, "gpio %d reserved for ACPI\n", offset);
111 return -EBUSY;
112 }
113 /* Fail if pin is in alternate function mode (not GPIO mode) */
114 if (!(inl(reg) & USE_SEL_BIT))
115 return -ENODEV;
116
117 /* enable input sensing */
118 outl(inl(conf2) & ~GPINDIS_BIT, conf2);
119
120
121 return 0;
122}
123
124static void lp_gpio_free(struct gpio_chip *chip, unsigned offset)
125{
Linus Walleijf291e002015-12-07 09:21:55 +0100126 struct lp_gpio *lg = gpiochip_get_data(chip);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200127 unsigned long conf2 = lp_gpio_reg(chip, offset, LP_CONFIG2);
128
129 /* disable input sensing */
130 outl(inl(conf2) | GPINDIS_BIT, conf2);
131
132 pm_runtime_put(&lg->pdev->dev);
133}
134
135static int lp_irq_type(struct irq_data *d, unsigned type)
136{
Mika Westerberg7f872102014-07-25 09:54:46 +0300137 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijf291e002015-12-07 09:21:55 +0100138 struct lp_gpio *lg = gpiochip_get_data(gc);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200139 u32 hwirq = irqd_to_hwirq(d);
140 unsigned long flags;
141 u32 value;
142 unsigned long reg = lp_gpio_reg(&lg->chip, hwirq, LP_CONFIG1);
143
144 if (hwirq >= lg->chip.ngpio)
145 return -EINVAL;
146
147 spin_lock_irqsave(&lg->lock, flags);
148 value = inl(reg);
149
150 /* set both TRIG_SEL and INV bits to 0 for rising edge */
151 if (type & IRQ_TYPE_EDGE_RISING)
152 value &= ~(TRIG_SEL_BIT | INT_INV_BIT);
153
154 /* TRIG_SEL bit 0, INV bit 1 for falling edge */
155 if (type & IRQ_TYPE_EDGE_FALLING)
156 value = (value | INT_INV_BIT) & ~TRIG_SEL_BIT;
157
158 /* TRIG_SEL bit 1, INV bit 0 for level low */
159 if (type & IRQ_TYPE_LEVEL_LOW)
160 value = (value | TRIG_SEL_BIT) & ~INT_INV_BIT;
161
162 /* TRIG_SEL bit 1, INV bit 1 for level high */
163 if (type & IRQ_TYPE_LEVEL_HIGH)
164 value |= TRIG_SEL_BIT | INT_INV_BIT;
165
166 outl(value, reg);
167 spin_unlock_irqrestore(&lg->lock, flags);
168
169 return 0;
170}
171
172static int lp_gpio_get(struct gpio_chip *chip, unsigned offset)
173{
174 unsigned long reg = lp_gpio_reg(chip, offset, LP_CONFIG1);
Mathias Nyman8650ea12014-03-27 15:02:08 +0200175 return !!(inl(reg) & IN_LVL_BIT);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200176}
177
178static void lp_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
179{
Linus Walleijf291e002015-12-07 09:21:55 +0100180 struct lp_gpio *lg = gpiochip_get_data(chip);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200181 unsigned long reg = lp_gpio_reg(chip, offset, LP_CONFIG1);
182 unsigned long flags;
183
184 spin_lock_irqsave(&lg->lock, flags);
185
186 if (value)
187 outl(inl(reg) | OUT_LVL_BIT, reg);
188 else
189 outl(inl(reg) & ~OUT_LVL_BIT, reg);
190
191 spin_unlock_irqrestore(&lg->lock, flags);
192}
193
194static int lp_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
195{
Linus Walleijf291e002015-12-07 09:21:55 +0100196 struct lp_gpio *lg = gpiochip_get_data(chip);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200197 unsigned long reg = lp_gpio_reg(chip, offset, LP_CONFIG1);
198 unsigned long flags;
199
200 spin_lock_irqsave(&lg->lock, flags);
201 outl(inl(reg) | DIR_BIT, reg);
202 spin_unlock_irqrestore(&lg->lock, flags);
203
204 return 0;
205}
206
207static int lp_gpio_direction_output(struct gpio_chip *chip,
208 unsigned offset, int value)
209{
Linus Walleijf291e002015-12-07 09:21:55 +0100210 struct lp_gpio *lg = gpiochip_get_data(chip);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200211 unsigned long reg = lp_gpio_reg(chip, offset, LP_CONFIG1);
212 unsigned long flags;
213
214 lp_gpio_set(chip, offset, value);
215
216 spin_lock_irqsave(&lg->lock, flags);
217 outl(inl(reg) & ~DIR_BIT, reg);
218 spin_unlock_irqrestore(&lg->lock, flags);
219
220 return 0;
221}
222
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200223static void lp_gpio_irq_handler(struct irq_desc *desc)
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200224{
225 struct irq_data *data = irq_desc_get_irq_data(desc);
Mika Westerberg7f872102014-07-25 09:54:46 +0300226 struct gpio_chip *gc = irq_desc_get_handler_data(desc);
Linus Walleijf291e002015-12-07 09:21:55 +0100227 struct lp_gpio *lg = gpiochip_get_data(gc);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200228 struct irq_chip *chip = irq_data_get_irq_chip(data);
Mika Westerberg03d152d2013-10-01 17:35:43 +0300229 unsigned long reg, ena, pending;
Andy Shevchenko502ae422018-11-06 14:38:55 +0200230 u32 base, pin;
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200231
232 /* check from GPIO controller which pin triggered the interrupt */
233 for (base = 0; base < lg->chip.ngpio; base += 32) {
234 reg = lp_gpio_reg(&lg->chip, base, LP_INT_STAT);
Mika Westerberg03d152d2013-10-01 17:35:43 +0300235 ena = lp_gpio_reg(&lg->chip, base, LP_INT_ENABLE);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200236
Andy Shevchenko502ae422018-11-06 14:38:55 +0200237 /* Only interrupts that are enabled */
238 pending = inl(reg) & inl(ena);
239
240 for_each_set_bit(pin, &pending, 32) {
Linus Walleijb551b022013-10-11 19:32:16 +0200241 unsigned irq;
242
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200243 /* Clear before handling so we don't lose an edge */
Andy Shevchenko502ae422018-11-06 14:38:55 +0200244 outl(BIT(pin), reg);
245
Thierry Redingf0fbe7b2017-11-07 19:15:47 +0100246 irq = irq_find_mapping(lg->chip.irq.domain, base + pin);
Linus Walleijb551b022013-10-11 19:32:16 +0200247 generic_handle_irq(irq);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200248 }
249 }
250 chip->irq_eoi(data);
251}
252
253static void lp_irq_unmask(struct irq_data *d)
254{
255}
256
257static void lp_irq_mask(struct irq_data *d)
258{
259}
260
261static void lp_irq_enable(struct irq_data *d)
262{
Mika Westerberg7f872102014-07-25 09:54:46 +0300263 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijf291e002015-12-07 09:21:55 +0100264 struct lp_gpio *lg = gpiochip_get_data(gc);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200265 u32 hwirq = irqd_to_hwirq(d);
266 unsigned long reg = lp_gpio_reg(&lg->chip, hwirq, LP_INT_ENABLE);
267 unsigned long flags;
268
269 spin_lock_irqsave(&lg->lock, flags);
270 outl(inl(reg) | BIT(hwirq % 32), reg);
271 spin_unlock_irqrestore(&lg->lock, flags);
272}
273
274static void lp_irq_disable(struct irq_data *d)
275{
Mika Westerberg7f872102014-07-25 09:54:46 +0300276 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijf291e002015-12-07 09:21:55 +0100277 struct lp_gpio *lg = gpiochip_get_data(gc);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200278 u32 hwirq = irqd_to_hwirq(d);
279 unsigned long reg = lp_gpio_reg(&lg->chip, hwirq, LP_INT_ENABLE);
280 unsigned long flags;
281
282 spin_lock_irqsave(&lg->lock, flags);
283 outl(inl(reg) & ~BIT(hwirq % 32), reg);
284 spin_unlock_irqrestore(&lg->lock, flags);
285}
286
287static struct irq_chip lp_irqchip = {
288 .name = "LP-GPIO",
289 .irq_mask = lp_irq_mask,
290 .irq_unmask = lp_irq_unmask,
291 .irq_enable = lp_irq_enable,
292 .irq_disable = lp_irq_disable,
293 .irq_set_type = lp_irq_type,
294 .flags = IRQCHIP_SKIP_SET_WAKE,
295};
296
297static void lp_gpio_irq_init_hw(struct lp_gpio *lg)
298{
299 unsigned long reg;
300 unsigned base;
301
302 for (base = 0; base < lg->chip.ngpio; base += 32) {
303 /* disable gpio pin interrupts */
304 reg = lp_gpio_reg(&lg->chip, base, LP_INT_ENABLE);
305 outl(0, reg);
306 /* Clear interrupt status register */
307 reg = lp_gpio_reg(&lg->chip, base, LP_INT_STAT);
308 outl(0xffffffff, reg);
309 }
310}
311
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200312static int lp_gpio_probe(struct platform_device *pdev)
313{
314 struct lp_gpio *lg;
315 struct gpio_chip *gc;
316 struct resource *io_rc, *irq_rc;
317 struct device *dev = &pdev->dev;
318 unsigned long reg_len;
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200319 int ret = -ENODEV;
320
321 lg = devm_kzalloc(dev, sizeof(struct lp_gpio), GFP_KERNEL);
Jingoo Han1981d082014-04-29 17:36:26 +0900322 if (!lg)
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200323 return -ENOMEM;
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200324
325 lg->pdev = pdev;
326 platform_set_drvdata(pdev, lg);
327
328 io_rc = platform_get_resource(pdev, IORESOURCE_IO, 0);
329 irq_rc = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
330
331 if (!io_rc) {
332 dev_err(dev, "missing IO resources\n");
333 return -EINVAL;
334 }
335
336 lg->reg_base = io_rc->start;
337 reg_len = resource_size(io_rc);
338
339 if (!devm_request_region(dev, lg->reg_base, reg_len, "lp-gpio")) {
340 dev_err(dev, "failed requesting IO region 0x%x\n",
341 (unsigned int)lg->reg_base);
342 return -EBUSY;
343 }
344
345 spin_lock_init(&lg->lock);
346
347 gc = &lg->chip;
348 gc->label = dev_name(dev);
349 gc->owner = THIS_MODULE;
350 gc->request = lp_gpio_request;
351 gc->free = lp_gpio_free;
352 gc->direction_input = lp_gpio_direction_input;
353 gc->direction_output = lp_gpio_direction_output;
354 gc->get = lp_gpio_get;
355 gc->set = lp_gpio_set;
356 gc->base = -1;
357 gc->ngpio = LP_NUM_GPIO;
Linus Walleij9fb1f392013-12-04 14:42:46 +0100358 gc->can_sleep = false;
Linus Walleij58383c782015-11-04 09:56:26 +0100359 gc->parent = dev;
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200360
Linus Walleij7b1e8892019-08-12 10:13:51 +0200361 /* set up interrupts */
362 if (irq_rc && irq_rc->start) {
363 struct gpio_irq_chip *girq;
364
365 girq = &gc->irq;
366 girq->chip = &lp_irqchip;
367 girq->parent_handler = lp_gpio_irq_handler;
368 girq->num_parents = 1;
369 girq->parents = devm_kcalloc(&pdev->dev, girq->num_parents,
370 sizeof(*girq->parents),
371 GFP_KERNEL);
372 if (!girq->parents)
373 return -ENOMEM;
374 girq->parents[0] = (unsigned)irq_rc->start;
375 girq->default_type = IRQ_TYPE_NONE;
376 girq->handler = handle_simple_irq;
377
378 lp_gpio_irq_init_hw(lg);
379 }
380
Laxman Dewanganefa3ffc2016-02-22 17:43:28 +0530381 ret = devm_gpiochip_add_data(dev, gc, lg);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200382 if (ret) {
383 dev_err(dev, "failed adding lp-gpio chip\n");
384 return ret;
385 }
Mika Westerberg7f872102014-07-25 09:54:46 +0300386
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200387 pm_runtime_enable(dev);
388
389 return 0;
390}
391
392static int lp_gpio_runtime_suspend(struct device *dev)
393{
394 return 0;
395}
396
397static int lp_gpio_runtime_resume(struct device *dev)
398{
399 return 0;
400}
401
Mathias Nyman8117bd52014-08-19 14:00:01 +0300402static int lp_gpio_resume(struct device *dev)
403{
Wolfram Sangea5ec5e2018-10-21 21:59:57 +0200404 struct lp_gpio *lg = dev_get_drvdata(dev);
Mathias Nyman8117bd52014-08-19 14:00:01 +0300405 unsigned long reg;
406 int i;
407
408 /* on some hardware suspend clears input sensing, re-enable it here */
409 for (i = 0; i < lg->chip.ngpio; i++) {
410 if (gpiochip_is_requested(&lg->chip, i) != NULL) {
411 reg = lp_gpio_reg(&lg->chip, i, LP_CONFIG2);
412 outl(inl(reg) & ~GPINDIS_BIT, reg);
413 }
414 }
415 return 0;
416}
417
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200418static const struct dev_pm_ops lp_gpio_pm_ops = {
419 .runtime_suspend = lp_gpio_runtime_suspend,
420 .runtime_resume = lp_gpio_runtime_resume,
Mathias Nyman8117bd52014-08-19 14:00:01 +0300421 .resume = lp_gpio_resume,
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200422};
423
424static const struct acpi_device_id lynxpoint_gpio_acpi_match[] = {
425 { "INT33C7", 0 },
Mika Westerberg4edd7902013-11-12 11:52:32 +0200426 { "INT3437", 0 },
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200427 { }
428};
429MODULE_DEVICE_TABLE(acpi, lynxpoint_gpio_acpi_match);
430
431static int lp_gpio_remove(struct platform_device *pdev)
432{
Mathias Nymanb1683862013-08-12 14:05:41 +0300433 pm_runtime_disable(&pdev->dev);
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200434 return 0;
435}
436
437static struct platform_driver lp_gpio_driver = {
438 .probe = lp_gpio_probe,
439 .remove = lp_gpio_remove,
440 .driver = {
441 .name = "lp_gpio",
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200442 .pm = &lp_gpio_pm_ops,
443 .acpi_match_table = ACPI_PTR(lynxpoint_gpio_acpi_match),
444 },
445};
446
447static int __init lp_gpio_init(void)
448{
449 return platform_driver_register(&lp_gpio_driver);
450}
451
Jean Delvared463c6f2013-11-27 15:46:06 +0100452static void __exit lp_gpio_exit(void)
453{
454 platform_driver_unregister(&lp_gpio_driver);
455}
456
Mathias Nyman1d09aaa2012-12-12 17:42:38 +0200457subsys_initcall(lp_gpio_init);
Jean Delvared463c6f2013-11-27 15:46:06 +0100458module_exit(lp_gpio_exit);
459
460MODULE_AUTHOR("Mathias Nyman (Intel)");
461MODULE_DESCRIPTION("GPIO interface for Intel Lynxpoint");
Andy Shevchenko7fa07b62018-11-06 14:11:42 +0200462MODULE_LICENSE("GPL v2");
Jean Delvared463c6f2013-11-27 15:46:06 +0100463MODULE_ALIAS("platform:lp_gpio");