blob: 6c2c816f8e5f49dfa8bee2727ccd5d115cfdd643 [file] [log] [blame]
Mika Westerberg7981c0012015-03-30 17:31:49 +03001/*
2 * Intel pinctrl/GPIO core driver.
3 *
4 * Copyright (C) 2015, Intel Corporation
5 * Authors: Mathias Nyman <mathias.nyman@linux.intel.com>
6 * Mika Westerberg <mika.westerberg@linux.intel.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/module.h>
Mika Westerberg193b40c2015-10-21 13:08:43 +030014#include <linux/interrupt.h>
Mika Westerberg7981c0012015-03-30 17:31:49 +030015#include <linux/gpio/driver.h>
16#include <linux/platform_device.h>
Mika Westerberg7981c0012015-03-30 17:31:49 +030017#include <linux/pinctrl/pinctrl.h>
18#include <linux/pinctrl/pinmux.h>
19#include <linux/pinctrl/pinconf.h>
20#include <linux/pinctrl/pinconf-generic.h>
21
22#include "pinctrl-intel.h"
23
Mika Westerberg7981c0012015-03-30 17:31:49 +030024/* Offset from regs */
25#define PADBAR 0x00c
26#define GPI_IS 0x100
27#define GPI_GPE_STS 0x140
28#define GPI_GPE_EN 0x160
29
30#define PADOWN_BITS 4
31#define PADOWN_SHIFT(p) ((p) % 8 * PADOWN_BITS)
32#define PADOWN_MASK(p) (0xf << PADOWN_SHIFT(p))
Qipeng Zha99a735b2015-11-30 19:20:16 +080033#define PADOWN_GPP(p) ((p) / 8)
Mika Westerberg7981c0012015-03-30 17:31:49 +030034
35/* Offset from pad_regs */
36#define PADCFG0 0x000
37#define PADCFG0_RXEVCFG_SHIFT 25
38#define PADCFG0_RXEVCFG_MASK (3 << PADCFG0_RXEVCFG_SHIFT)
39#define PADCFG0_RXEVCFG_LEVEL 0
40#define PADCFG0_RXEVCFG_EDGE 1
41#define PADCFG0_RXEVCFG_DISABLED 2
42#define PADCFG0_RXEVCFG_EDGE_BOTH 3
43#define PADCFG0_RXINV BIT(23)
44#define PADCFG0_GPIROUTIOXAPIC BIT(20)
45#define PADCFG0_GPIROUTSCI BIT(19)
46#define PADCFG0_GPIROUTSMI BIT(18)
47#define PADCFG0_GPIROUTNMI BIT(17)
48#define PADCFG0_PMODE_SHIFT 10
49#define PADCFG0_PMODE_MASK (0xf << PADCFG0_PMODE_SHIFT)
50#define PADCFG0_GPIORXDIS BIT(9)
51#define PADCFG0_GPIOTXDIS BIT(8)
52#define PADCFG0_GPIORXSTATE BIT(1)
53#define PADCFG0_GPIOTXSTATE BIT(0)
54
55#define PADCFG1 0x004
56#define PADCFG1_TERM_UP BIT(13)
57#define PADCFG1_TERM_SHIFT 10
58#define PADCFG1_TERM_MASK (7 << PADCFG1_TERM_SHIFT)
59#define PADCFG1_TERM_20K 4
60#define PADCFG1_TERM_2K 3
61#define PADCFG1_TERM_5K 2
62#define PADCFG1_TERM_1K 1
63
64struct intel_pad_context {
65 u32 padcfg0;
66 u32 padcfg1;
67};
68
69struct intel_community_context {
70 u32 *intmask;
71};
72
73struct intel_pinctrl_context {
74 struct intel_pad_context *pads;
75 struct intel_community_context *communities;
76};
77
78/**
79 * struct intel_pinctrl - Intel pinctrl private structure
80 * @dev: Pointer to the device structure
81 * @lock: Lock to serialize register access
82 * @pctldesc: Pin controller description
83 * @pctldev: Pointer to the pin controller device
84 * @chip: GPIO chip in this pin controller
85 * @soc: SoC/PCH specific pin configuration data
86 * @communities: All communities in this pin controller
87 * @ncommunities: Number of communities in this pin controller
88 * @context: Configuration saved over system sleep
89 */
90struct intel_pinctrl {
91 struct device *dev;
92 spinlock_t lock;
93 struct pinctrl_desc pctldesc;
94 struct pinctrl_dev *pctldev;
95 struct gpio_chip chip;
96 const struct intel_pinctrl_soc_data *soc;
97 struct intel_community *communities;
98 size_t ncommunities;
99 struct intel_pinctrl_context context;
100};
101
Mika Westerberg7981c0012015-03-30 17:31:49 +0300102#define pin_to_padno(c, p) ((p) - (c)->pin_base)
103
104static struct intel_community *intel_get_community(struct intel_pinctrl *pctrl,
105 unsigned pin)
106{
107 struct intel_community *community;
108 int i;
109
110 for (i = 0; i < pctrl->ncommunities; i++) {
111 community = &pctrl->communities[i];
112 if (pin >= community->pin_base &&
113 pin < community->pin_base + community->npins)
114 return community;
115 }
116
117 dev_warn(pctrl->dev, "failed to find community for pin %u\n", pin);
118 return NULL;
119}
120
121static void __iomem *intel_get_padcfg(struct intel_pinctrl *pctrl, unsigned pin,
122 unsigned reg)
123{
124 const struct intel_community *community;
125 unsigned padno;
126
127 community = intel_get_community(pctrl, pin);
128 if (!community)
129 return NULL;
130
131 padno = pin_to_padno(community, pin);
132 return community->pad_regs + reg + padno * 8;
133}
134
135static bool intel_pad_owned_by_host(struct intel_pinctrl *pctrl, unsigned pin)
136{
137 const struct intel_community *community;
Qipeng Zha99a735b2015-11-30 19:20:16 +0800138 unsigned padno, gpp, offset, group;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300139 void __iomem *padown;
140
141 community = intel_get_community(pctrl, pin);
142 if (!community)
143 return false;
144 if (!community->padown_offset)
145 return true;
146
147 padno = pin_to_padno(community, pin);
Qipeng Zha99a735b2015-11-30 19:20:16 +0800148 group = padno / community->gpp_size;
149 gpp = PADOWN_GPP(padno % community->gpp_size);
150 offset = community->padown_offset + 0x10 * group + gpp * 4;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300151 padown = community->regs + offset;
152
153 return !(readl(padown) & PADOWN_MASK(padno));
154}
155
Mika Westerberg4341e8a2015-10-21 13:08:44 +0300156static bool intel_pad_acpi_mode(struct intel_pinctrl *pctrl, unsigned pin)
Mika Westerberg7981c0012015-03-30 17:31:49 +0300157{
158 const struct intel_community *community;
159 unsigned padno, gpp, offset;
160 void __iomem *hostown;
161
162 community = intel_get_community(pctrl, pin);
163 if (!community)
164 return true;
165 if (!community->hostown_offset)
166 return false;
167
168 padno = pin_to_padno(community, pin);
Qipeng Zha618a919b2015-11-26 01:09:51 +0800169 gpp = padno / community->gpp_size;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300170 offset = community->hostown_offset + gpp * 4;
171 hostown = community->regs + offset;
172
Qipeng Zha618a919b2015-11-26 01:09:51 +0800173 return !(readl(hostown) & BIT(padno % community->gpp_size));
Mika Westerberg7981c0012015-03-30 17:31:49 +0300174}
175
176static bool intel_pad_locked(struct intel_pinctrl *pctrl, unsigned pin)
177{
178 struct intel_community *community;
179 unsigned padno, gpp, offset;
180 u32 value;
181
182 community = intel_get_community(pctrl, pin);
183 if (!community)
184 return true;
185 if (!community->padcfglock_offset)
186 return false;
187
188 padno = pin_to_padno(community, pin);
Qipeng Zha618a919b2015-11-26 01:09:51 +0800189 gpp = padno / community->gpp_size;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300190
191 /*
192 * If PADCFGLOCK and PADCFGLOCKTX bits are both clear for this pad,
193 * the pad is considered unlocked. Any other case means that it is
194 * either fully or partially locked and we don't touch it.
195 */
196 offset = community->padcfglock_offset + gpp * 8;
197 value = readl(community->regs + offset);
Qipeng Zha618a919b2015-11-26 01:09:51 +0800198 if (value & BIT(pin % community->gpp_size))
Mika Westerberg7981c0012015-03-30 17:31:49 +0300199 return true;
200
201 offset = community->padcfglock_offset + 4 + gpp * 8;
202 value = readl(community->regs + offset);
Qipeng Zha618a919b2015-11-26 01:09:51 +0800203 if (value & BIT(pin % community->gpp_size))
Mika Westerberg7981c0012015-03-30 17:31:49 +0300204 return true;
205
206 return false;
207}
208
209static bool intel_pad_usable(struct intel_pinctrl *pctrl, unsigned pin)
210{
211 return intel_pad_owned_by_host(pctrl, pin) &&
Mika Westerberg7981c0012015-03-30 17:31:49 +0300212 !intel_pad_locked(pctrl, pin);
213}
214
215static int intel_get_groups_count(struct pinctrl_dev *pctldev)
216{
217 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
218
219 return pctrl->soc->ngroups;
220}
221
222static const char *intel_get_group_name(struct pinctrl_dev *pctldev,
223 unsigned group)
224{
225 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
226
227 return pctrl->soc->groups[group].name;
228}
229
230static int intel_get_group_pins(struct pinctrl_dev *pctldev, unsigned group,
231 const unsigned **pins, unsigned *npins)
232{
233 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
234
235 *pins = pctrl->soc->groups[group].pins;
236 *npins = pctrl->soc->groups[group].npins;
237 return 0;
238}
239
240static void intel_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
241 unsigned pin)
242{
243 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
244 u32 cfg0, cfg1, mode;
245 bool locked, acpi;
246
247 if (!intel_pad_owned_by_host(pctrl, pin)) {
248 seq_puts(s, "not available");
249 return;
250 }
251
252 cfg0 = readl(intel_get_padcfg(pctrl, pin, PADCFG0));
253 cfg1 = readl(intel_get_padcfg(pctrl, pin, PADCFG1));
254
255 mode = (cfg0 & PADCFG0_PMODE_MASK) >> PADCFG0_PMODE_SHIFT;
256 if (!mode)
257 seq_puts(s, "GPIO ");
258 else
259 seq_printf(s, "mode %d ", mode);
260
261 seq_printf(s, "0x%08x 0x%08x", cfg0, cfg1);
262
263 locked = intel_pad_locked(pctrl, pin);
Mika Westerberg4341e8a2015-10-21 13:08:44 +0300264 acpi = intel_pad_acpi_mode(pctrl, pin);
Mika Westerberg7981c0012015-03-30 17:31:49 +0300265
266 if (locked || acpi) {
267 seq_puts(s, " [");
268 if (locked) {
269 seq_puts(s, "LOCKED");
270 if (acpi)
271 seq_puts(s, ", ");
272 }
273 if (acpi)
274 seq_puts(s, "ACPI");
275 seq_puts(s, "]");
276 }
277}
278
279static const struct pinctrl_ops intel_pinctrl_ops = {
280 .get_groups_count = intel_get_groups_count,
281 .get_group_name = intel_get_group_name,
282 .get_group_pins = intel_get_group_pins,
283 .pin_dbg_show = intel_pin_dbg_show,
284};
285
286static int intel_get_functions_count(struct pinctrl_dev *pctldev)
287{
288 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
289
290 return pctrl->soc->nfunctions;
291}
292
293static const char *intel_get_function_name(struct pinctrl_dev *pctldev,
294 unsigned function)
295{
296 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
297
298 return pctrl->soc->functions[function].name;
299}
300
301static int intel_get_function_groups(struct pinctrl_dev *pctldev,
302 unsigned function,
303 const char * const **groups,
304 unsigned * const ngroups)
305{
306 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
307
308 *groups = pctrl->soc->functions[function].groups;
309 *ngroups = pctrl->soc->functions[function].ngroups;
310 return 0;
311}
312
313static int intel_pinmux_set_mux(struct pinctrl_dev *pctldev, unsigned function,
314 unsigned group)
315{
316 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
317 const struct intel_pingroup *grp = &pctrl->soc->groups[group];
318 unsigned long flags;
319 int i;
320
321 spin_lock_irqsave(&pctrl->lock, flags);
322
323 /*
324 * All pins in the groups needs to be accessible and writable
325 * before we can enable the mux for this group.
326 */
327 for (i = 0; i < grp->npins; i++) {
328 if (!intel_pad_usable(pctrl, grp->pins[i])) {
329 spin_unlock_irqrestore(&pctrl->lock, flags);
330 return -EBUSY;
331 }
332 }
333
334 /* Now enable the mux setting for each pin in the group */
335 for (i = 0; i < grp->npins; i++) {
336 void __iomem *padcfg0;
337 u32 value;
338
339 padcfg0 = intel_get_padcfg(pctrl, grp->pins[i], PADCFG0);
340 value = readl(padcfg0);
341
342 value &= ~PADCFG0_PMODE_MASK;
343 value |= grp->mode << PADCFG0_PMODE_SHIFT;
344
345 writel(value, padcfg0);
346 }
347
348 spin_unlock_irqrestore(&pctrl->lock, flags);
349
350 return 0;
351}
352
353static int intel_gpio_request_enable(struct pinctrl_dev *pctldev,
354 struct pinctrl_gpio_range *range,
355 unsigned pin)
356{
357 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
358 void __iomem *padcfg0;
359 unsigned long flags;
360 u32 value;
361
362 spin_lock_irqsave(&pctrl->lock, flags);
363
364 if (!intel_pad_usable(pctrl, pin)) {
365 spin_unlock_irqrestore(&pctrl->lock, flags);
366 return -EBUSY;
367 }
368
369 padcfg0 = intel_get_padcfg(pctrl, pin, PADCFG0);
370 /* Put the pad into GPIO mode */
371 value = readl(padcfg0) & ~PADCFG0_PMODE_MASK;
372 /* Disable SCI/SMI/NMI generation */
373 value &= ~(PADCFG0_GPIROUTIOXAPIC | PADCFG0_GPIROUTSCI);
374 value &= ~(PADCFG0_GPIROUTSMI | PADCFG0_GPIROUTNMI);
375 /* Disable TX buffer and enable RX (this will be input) */
376 value &= ~PADCFG0_GPIORXDIS;
377 value |= PADCFG0_GPIOTXDIS;
378 writel(value, padcfg0);
379
380 spin_unlock_irqrestore(&pctrl->lock, flags);
381
382 return 0;
383}
384
385static int intel_gpio_set_direction(struct pinctrl_dev *pctldev,
386 struct pinctrl_gpio_range *range,
387 unsigned pin, bool input)
388{
389 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
390 void __iomem *padcfg0;
391 unsigned long flags;
392 u32 value;
393
394 spin_lock_irqsave(&pctrl->lock, flags);
395
396 padcfg0 = intel_get_padcfg(pctrl, pin, PADCFG0);
397
398 value = readl(padcfg0);
399 if (input)
400 value |= PADCFG0_GPIOTXDIS;
401 else
402 value &= ~PADCFG0_GPIOTXDIS;
403 writel(value, padcfg0);
404
405 spin_unlock_irqrestore(&pctrl->lock, flags);
406
407 return 0;
408}
409
410static const struct pinmux_ops intel_pinmux_ops = {
411 .get_functions_count = intel_get_functions_count,
412 .get_function_name = intel_get_function_name,
413 .get_function_groups = intel_get_function_groups,
414 .set_mux = intel_pinmux_set_mux,
415 .gpio_request_enable = intel_gpio_request_enable,
416 .gpio_set_direction = intel_gpio_set_direction,
417};
418
419static int intel_config_get(struct pinctrl_dev *pctldev, unsigned pin,
420 unsigned long *config)
421{
422 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
423 enum pin_config_param param = pinconf_to_config_param(*config);
424 u32 value, term;
425 u16 arg = 0;
426
427 if (!intel_pad_owned_by_host(pctrl, pin))
428 return -ENOTSUPP;
429
430 value = readl(intel_get_padcfg(pctrl, pin, PADCFG1));
431 term = (value & PADCFG1_TERM_MASK) >> PADCFG1_TERM_SHIFT;
432
433 switch (param) {
434 case PIN_CONFIG_BIAS_DISABLE:
435 if (term)
436 return -EINVAL;
437 break;
438
439 case PIN_CONFIG_BIAS_PULL_UP:
440 if (!term || !(value & PADCFG1_TERM_UP))
441 return -EINVAL;
442
443 switch (term) {
444 case PADCFG1_TERM_1K:
445 arg = 1000;
446 break;
447 case PADCFG1_TERM_2K:
448 arg = 2000;
449 break;
450 case PADCFG1_TERM_5K:
451 arg = 5000;
452 break;
453 case PADCFG1_TERM_20K:
454 arg = 20000;
455 break;
456 }
457
458 break;
459
460 case PIN_CONFIG_BIAS_PULL_DOWN:
461 if (!term || value & PADCFG1_TERM_UP)
462 return -EINVAL;
463
464 switch (term) {
465 case PADCFG1_TERM_5K:
466 arg = 5000;
467 break;
468 case PADCFG1_TERM_20K:
469 arg = 20000;
470 break;
471 }
472
473 break;
474
475 default:
476 return -ENOTSUPP;
477 }
478
479 *config = pinconf_to_config_packed(param, arg);
480 return 0;
481}
482
483static int intel_config_set_pull(struct intel_pinctrl *pctrl, unsigned pin,
484 unsigned long config)
485{
486 unsigned param = pinconf_to_config_param(config);
487 unsigned arg = pinconf_to_config_argument(config);
488 void __iomem *padcfg1;
489 unsigned long flags;
490 int ret = 0;
491 u32 value;
492
493 spin_lock_irqsave(&pctrl->lock, flags);
494
495 padcfg1 = intel_get_padcfg(pctrl, pin, PADCFG1);
496 value = readl(padcfg1);
497
498 switch (param) {
499 case PIN_CONFIG_BIAS_DISABLE:
500 value &= ~(PADCFG1_TERM_MASK | PADCFG1_TERM_UP);
501 break;
502
503 case PIN_CONFIG_BIAS_PULL_UP:
504 value &= ~PADCFG1_TERM_MASK;
505
506 value |= PADCFG1_TERM_UP;
507
508 switch (arg) {
509 case 20000:
510 value |= PADCFG1_TERM_20K << PADCFG1_TERM_SHIFT;
511 break;
512 case 5000:
513 value |= PADCFG1_TERM_5K << PADCFG1_TERM_SHIFT;
514 break;
515 case 2000:
516 value |= PADCFG1_TERM_2K << PADCFG1_TERM_SHIFT;
517 break;
518 case 1000:
519 value |= PADCFG1_TERM_1K << PADCFG1_TERM_SHIFT;
520 break;
521 default:
522 ret = -EINVAL;
523 }
524
525 break;
526
527 case PIN_CONFIG_BIAS_PULL_DOWN:
528 value &= ~(PADCFG1_TERM_UP | PADCFG1_TERM_MASK);
529
530 switch (arg) {
531 case 20000:
532 value |= PADCFG1_TERM_20K << PADCFG1_TERM_SHIFT;
533 break;
534 case 5000:
535 value |= PADCFG1_TERM_5K << PADCFG1_TERM_SHIFT;
536 break;
537 default:
538 ret = -EINVAL;
539 }
540
541 break;
542 }
543
544 if (!ret)
545 writel(value, padcfg1);
546
547 spin_unlock_irqrestore(&pctrl->lock, flags);
548
549 return ret;
550}
551
552static int intel_config_set(struct pinctrl_dev *pctldev, unsigned pin,
553 unsigned long *configs, unsigned nconfigs)
554{
555 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
556 int i, ret;
557
558 if (!intel_pad_usable(pctrl, pin))
559 return -ENOTSUPP;
560
561 for (i = 0; i < nconfigs; i++) {
562 switch (pinconf_to_config_param(configs[i])) {
563 case PIN_CONFIG_BIAS_DISABLE:
564 case PIN_CONFIG_BIAS_PULL_UP:
565 case PIN_CONFIG_BIAS_PULL_DOWN:
566 ret = intel_config_set_pull(pctrl, pin, configs[i]);
567 if (ret)
568 return ret;
569 break;
570
571 default:
572 return -ENOTSUPP;
573 }
574 }
575
576 return 0;
577}
578
579static const struct pinconf_ops intel_pinconf_ops = {
580 .is_generic = true,
581 .pin_config_get = intel_config_get,
582 .pin_config_set = intel_config_set,
583};
584
585static const struct pinctrl_desc intel_pinctrl_desc = {
586 .pctlops = &intel_pinctrl_ops,
587 .pmxops = &intel_pinmux_ops,
588 .confops = &intel_pinconf_ops,
589 .owner = THIS_MODULE,
590};
591
Mika Westerberg7981c0012015-03-30 17:31:49 +0300592static int intel_gpio_get(struct gpio_chip *chip, unsigned offset)
593{
Linus Walleijacfd4c62015-12-08 00:18:59 +0100594 struct intel_pinctrl *pctrl = gpiochip_get_data(chip);
Mika Westerberg7981c0012015-03-30 17:31:49 +0300595 void __iomem *reg;
596
597 reg = intel_get_padcfg(pctrl, offset, PADCFG0);
598 if (!reg)
599 return -EINVAL;
600
601 return !!(readl(reg) & PADCFG0_GPIORXSTATE);
602}
603
604static void intel_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
605{
Linus Walleijacfd4c62015-12-08 00:18:59 +0100606 struct intel_pinctrl *pctrl = gpiochip_get_data(chip);
Mika Westerberg7981c0012015-03-30 17:31:49 +0300607 void __iomem *reg;
608
609 reg = intel_get_padcfg(pctrl, offset, PADCFG0);
610 if (reg) {
611 unsigned long flags;
612 u32 padcfg0;
613
614 spin_lock_irqsave(&pctrl->lock, flags);
615 padcfg0 = readl(reg);
616 if (value)
617 padcfg0 |= PADCFG0_GPIOTXSTATE;
618 else
619 padcfg0 &= ~PADCFG0_GPIOTXSTATE;
620 writel(padcfg0, reg);
621 spin_unlock_irqrestore(&pctrl->lock, flags);
622 }
623}
624
625static int intel_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
626{
627 return pinctrl_gpio_direction_input(chip->base + offset);
628}
629
630static int intel_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
631 int value)
632{
633 intel_gpio_set(chip, offset, value);
634 return pinctrl_gpio_direction_output(chip->base + offset);
635}
636
637static const struct gpio_chip intel_gpio_chip = {
638 .owner = THIS_MODULE,
Jonas Gorski98c85d52015-10-11 17:34:19 +0200639 .request = gpiochip_generic_request,
640 .free = gpiochip_generic_free,
Mika Westerberg7981c0012015-03-30 17:31:49 +0300641 .direction_input = intel_gpio_direction_input,
642 .direction_output = intel_gpio_direction_output,
643 .get = intel_gpio_get,
644 .set = intel_gpio_set,
645};
646
647static void intel_gpio_irq_ack(struct irq_data *d)
648{
649 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijacfd4c62015-12-08 00:18:59 +0100650 struct intel_pinctrl *pctrl = gpiochip_get_data(gc);
Mika Westerberg7981c0012015-03-30 17:31:49 +0300651 const struct intel_community *community;
652 unsigned pin = irqd_to_hwirq(d);
653
654 spin_lock(&pctrl->lock);
655
656 community = intel_get_community(pctrl, pin);
657 if (community) {
658 unsigned padno = pin_to_padno(community, pin);
Qipeng Zha618a919b2015-11-26 01:09:51 +0800659 unsigned gpp_offset = padno % community->gpp_size;
660 unsigned gpp = padno / community->gpp_size;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300661
662 writel(BIT(gpp_offset), community->regs + GPI_IS + gpp * 4);
663 }
664
665 spin_unlock(&pctrl->lock);
666}
667
Qi Zhenga939bb52016-03-17 02:15:26 +0800668static void intel_gpio_irq_enable(struct irq_data *d)
669{
670 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
671 struct intel_pinctrl *pctrl = gpiochip_get_data(gc);
672 const struct intel_community *community;
673 unsigned pin = irqd_to_hwirq(d);
674 unsigned long flags;
675
676 spin_lock_irqsave(&pctrl->lock, flags);
677
678 community = intel_get_community(pctrl, pin);
679 if (community) {
680 unsigned padno = pin_to_padno(community, pin);
681 unsigned gpp_size = community->gpp_size;
682 unsigned gpp_offset = padno % gpp_size;
683 unsigned gpp = padno / gpp_size;
684 u32 value;
685
686 /* Clear interrupt status first to avoid unexpected interrupt */
687 writel(BIT(gpp_offset), community->regs + GPI_IS + gpp * 4);
688
689 value = readl(community->regs + community->ie_offset + gpp * 4);
690 value |= BIT(gpp_offset);
691 writel(value, community->regs + community->ie_offset + gpp * 4);
692 }
693
694 spin_unlock_irqrestore(&pctrl->lock, flags);
695}
696
Mika Westerberg7981c0012015-03-30 17:31:49 +0300697static void intel_gpio_irq_mask_unmask(struct irq_data *d, bool mask)
698{
699 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijacfd4c62015-12-08 00:18:59 +0100700 struct intel_pinctrl *pctrl = gpiochip_get_data(gc);
Mika Westerberg7981c0012015-03-30 17:31:49 +0300701 const struct intel_community *community;
702 unsigned pin = irqd_to_hwirq(d);
703 unsigned long flags;
704
705 spin_lock_irqsave(&pctrl->lock, flags);
706
707 community = intel_get_community(pctrl, pin);
708 if (community) {
709 unsigned padno = pin_to_padno(community, pin);
Qipeng Zha618a919b2015-11-26 01:09:51 +0800710 unsigned gpp_offset = padno % community->gpp_size;
711 unsigned gpp = padno / community->gpp_size;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300712 void __iomem *reg;
713 u32 value;
714
715 reg = community->regs + community->ie_offset + gpp * 4;
716 value = readl(reg);
717 if (mask)
718 value &= ~BIT(gpp_offset);
719 else
720 value |= BIT(gpp_offset);
721 writel(value, reg);
722 }
723
724 spin_unlock_irqrestore(&pctrl->lock, flags);
725}
726
727static void intel_gpio_irq_mask(struct irq_data *d)
728{
729 intel_gpio_irq_mask_unmask(d, true);
730}
731
732static void intel_gpio_irq_unmask(struct irq_data *d)
733{
734 intel_gpio_irq_mask_unmask(d, false);
735}
736
737static int intel_gpio_irq_type(struct irq_data *d, unsigned type)
738{
739 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijacfd4c62015-12-08 00:18:59 +0100740 struct intel_pinctrl *pctrl = gpiochip_get_data(gc);
Mika Westerberg7981c0012015-03-30 17:31:49 +0300741 unsigned pin = irqd_to_hwirq(d);
742 unsigned long flags;
743 void __iomem *reg;
744 u32 value;
745
746 reg = intel_get_padcfg(pctrl, pin, PADCFG0);
747 if (!reg)
748 return -EINVAL;
749
Mika Westerberg4341e8a2015-10-21 13:08:44 +0300750 /*
751 * If the pin is in ACPI mode it is still usable as a GPIO but it
752 * cannot be used as IRQ because GPI_IS status bit will not be
753 * updated by the host controller hardware.
754 */
755 if (intel_pad_acpi_mode(pctrl, pin)) {
756 dev_warn(pctrl->dev, "pin %u cannot be used as IRQ\n", pin);
757 return -EPERM;
758 }
759
Mika Westerberg7981c0012015-03-30 17:31:49 +0300760 spin_lock_irqsave(&pctrl->lock, flags);
761
762 value = readl(reg);
763
764 value &= ~(PADCFG0_RXEVCFG_MASK | PADCFG0_RXINV);
765
766 if ((type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) {
767 value |= PADCFG0_RXEVCFG_EDGE_BOTH << PADCFG0_RXEVCFG_SHIFT;
768 } else if (type & IRQ_TYPE_EDGE_FALLING) {
769 value |= PADCFG0_RXEVCFG_EDGE << PADCFG0_RXEVCFG_SHIFT;
770 value |= PADCFG0_RXINV;
771 } else if (type & IRQ_TYPE_EDGE_RISING) {
772 value |= PADCFG0_RXEVCFG_EDGE << PADCFG0_RXEVCFG_SHIFT;
Qipeng Zhabf380cf2016-03-17 02:15:25 +0800773 } else if (type & IRQ_TYPE_LEVEL_MASK) {
774 if (type & IRQ_TYPE_LEVEL_LOW)
775 value |= PADCFG0_RXINV;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300776 } else {
777 value |= PADCFG0_RXEVCFG_DISABLED << PADCFG0_RXEVCFG_SHIFT;
778 }
779
780 writel(value, reg);
781
782 if (type & IRQ_TYPE_EDGE_BOTH)
Thomas Gleixnerfc756bc2015-06-23 15:52:45 +0200783 irq_set_handler_locked(d, handle_edge_irq);
Mika Westerberg7981c0012015-03-30 17:31:49 +0300784 else if (type & IRQ_TYPE_LEVEL_MASK)
Thomas Gleixnerfc756bc2015-06-23 15:52:45 +0200785 irq_set_handler_locked(d, handle_level_irq);
Mika Westerberg7981c0012015-03-30 17:31:49 +0300786
787 spin_unlock_irqrestore(&pctrl->lock, flags);
788
789 return 0;
790}
791
792static int intel_gpio_irq_wake(struct irq_data *d, unsigned int on)
793{
794 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
Linus Walleijacfd4c62015-12-08 00:18:59 +0100795 struct intel_pinctrl *pctrl = gpiochip_get_data(gc);
Mika Westerberg7981c0012015-03-30 17:31:49 +0300796 const struct intel_community *community;
797 unsigned pin = irqd_to_hwirq(d);
798 unsigned padno, gpp, gpp_offset;
799 u32 gpe_en;
800
801 community = intel_get_community(pctrl, pin);
802 if (!community)
803 return -EINVAL;
804
805 padno = pin_to_padno(community, pin);
Qipeng Zha618a919b2015-11-26 01:09:51 +0800806 gpp = padno / community->gpp_size;
807 gpp_offset = padno % community->gpp_size;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300808
809 /* Clear the existing wake status */
810 writel(BIT(gpp_offset), community->regs + GPI_GPE_STS + gpp * 4);
811
812 /*
813 * The controller will generate wake when GPE of the corresponding
814 * pad is enabled and it is not routed to SCI (GPIROUTSCI is not
815 * set).
816 */
817 gpe_en = readl(community->regs + GPI_GPE_EN + gpp * 4);
818 if (on)
819 gpe_en |= BIT(gpp_offset);
820 else
821 gpe_en &= ~BIT(gpp_offset);
822 writel(gpe_en, community->regs + GPI_GPE_EN + gpp * 4);
823
824 dev_dbg(pctrl->dev, "%sable wake for pin %u\n", on ? "en" : "dis", pin);
825 return 0;
826}
827
Mika Westerberg193b40c2015-10-21 13:08:43 +0300828static irqreturn_t intel_gpio_community_irq_handler(struct intel_pinctrl *pctrl,
Mika Westerberg7981c0012015-03-30 17:31:49 +0300829 const struct intel_community *community)
830{
Mika Westerberg193b40c2015-10-21 13:08:43 +0300831 struct gpio_chip *gc = &pctrl->chip;
832 irqreturn_t ret = IRQ_NONE;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300833 int gpp;
834
835 for (gpp = 0; gpp < community->ngpps; gpp++) {
836 unsigned long pending, enabled, gpp_offset;
837
838 pending = readl(community->regs + GPI_IS + gpp * 4);
839 enabled = readl(community->regs + community->ie_offset +
840 gpp * 4);
841
842 /* Only interrupts that are enabled */
843 pending &= enabled;
844
Qipeng Zha618a919b2015-11-26 01:09:51 +0800845 for_each_set_bit(gpp_offset, &pending, community->gpp_size) {
Mika Westerberg7981c0012015-03-30 17:31:49 +0300846 unsigned padno, irq;
847
848 /*
849 * The last group in community can have less pins
850 * than NPADS_IN_GPP.
851 */
Qipeng Zha618a919b2015-11-26 01:09:51 +0800852 padno = gpp_offset + gpp * community->gpp_size;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300853 if (padno >= community->npins)
854 break;
855
856 irq = irq_find_mapping(gc->irqdomain,
857 community->pin_base + padno);
858 generic_handle_irq(irq);
Mika Westerberg193b40c2015-10-21 13:08:43 +0300859
860 ret |= IRQ_HANDLED;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300861 }
862 }
Mika Westerberg193b40c2015-10-21 13:08:43 +0300863
864 return ret;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300865}
866
Mika Westerberg193b40c2015-10-21 13:08:43 +0300867static irqreturn_t intel_gpio_irq(int irq, void *data)
Mika Westerberg7981c0012015-03-30 17:31:49 +0300868{
Mika Westerberg193b40c2015-10-21 13:08:43 +0300869 const struct intel_community *community;
870 struct intel_pinctrl *pctrl = data;
871 irqreturn_t ret = IRQ_NONE;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300872 int i;
873
Mika Westerberg7981c0012015-03-30 17:31:49 +0300874 /* Need to check all communities for pending interrupts */
Mika Westerberg193b40c2015-10-21 13:08:43 +0300875 for (i = 0; i < pctrl->ncommunities; i++) {
876 community = &pctrl->communities[i];
877 ret |= intel_gpio_community_irq_handler(pctrl, community);
878 }
Mika Westerberg7981c0012015-03-30 17:31:49 +0300879
Mika Westerberg193b40c2015-10-21 13:08:43 +0300880 return ret;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300881}
882
883static struct irq_chip intel_gpio_irqchip = {
884 .name = "intel-gpio",
Qi Zhenga939bb52016-03-17 02:15:26 +0800885 .irq_enable = intel_gpio_irq_enable,
Mika Westerberg7981c0012015-03-30 17:31:49 +0300886 .irq_ack = intel_gpio_irq_ack,
887 .irq_mask = intel_gpio_irq_mask,
888 .irq_unmask = intel_gpio_irq_unmask,
889 .irq_set_type = intel_gpio_irq_type,
890 .irq_set_wake = intel_gpio_irq_wake,
891};
892
Mika Westerberg7981c0012015-03-30 17:31:49 +0300893static int intel_gpio_probe(struct intel_pinctrl *pctrl, int irq)
894{
895 int ret;
896
897 pctrl->chip = intel_gpio_chip;
898
899 pctrl->chip.ngpio = pctrl->soc->npins;
900 pctrl->chip.label = dev_name(pctrl->dev);
Linus Walleij58383c72015-11-04 09:56:26 +0100901 pctrl->chip.parent = pctrl->dev;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300902 pctrl->chip.base = -1;
903
Linus Walleijacfd4c62015-12-08 00:18:59 +0100904 ret = gpiochip_add_data(&pctrl->chip, pctrl);
Mika Westerberg7981c0012015-03-30 17:31:49 +0300905 if (ret) {
906 dev_err(pctrl->dev, "failed to register gpiochip\n");
907 return ret;
908 }
909
910 ret = gpiochip_add_pin_range(&pctrl->chip, dev_name(pctrl->dev),
911 0, 0, pctrl->soc->npins);
912 if (ret) {
913 dev_err(pctrl->dev, "failed to add GPIO pin range\n");
Mika Westerberg193b40c2015-10-21 13:08:43 +0300914 goto fail;
915 }
916
917 /*
918 * We need to request the interrupt here (instead of providing chip
919 * to the irq directly) because on some platforms several GPIO
920 * controllers share the same interrupt line.
921 */
922 ret = devm_request_irq(pctrl->dev, irq, intel_gpio_irq, IRQF_SHARED,
923 dev_name(pctrl->dev), pctrl);
924 if (ret) {
925 dev_err(pctrl->dev, "failed to request interrupt\n");
926 goto fail;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300927 }
928
929 ret = gpiochip_irqchip_add(&pctrl->chip, &intel_gpio_irqchip, 0,
930 handle_simple_irq, IRQ_TYPE_NONE);
931 if (ret) {
932 dev_err(pctrl->dev, "failed to add irqchip\n");
Mika Westerberg193b40c2015-10-21 13:08:43 +0300933 goto fail;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300934 }
935
936 gpiochip_set_chained_irqchip(&pctrl->chip, &intel_gpio_irqchip, irq,
Mika Westerberg193b40c2015-10-21 13:08:43 +0300937 NULL);
Mika Westerberg7981c0012015-03-30 17:31:49 +0300938 return 0;
Mika Westerberg193b40c2015-10-21 13:08:43 +0300939
940fail:
941 gpiochip_remove(&pctrl->chip);
942
943 return ret;
Mika Westerberg7981c0012015-03-30 17:31:49 +0300944}
945
946static int intel_pinctrl_pm_init(struct intel_pinctrl *pctrl)
947{
948#ifdef CONFIG_PM_SLEEP
949 const struct intel_pinctrl_soc_data *soc = pctrl->soc;
950 struct intel_community_context *communities;
951 struct intel_pad_context *pads;
952 int i;
953
954 pads = devm_kcalloc(pctrl->dev, soc->npins, sizeof(*pads), GFP_KERNEL);
955 if (!pads)
956 return -ENOMEM;
957
958 communities = devm_kcalloc(pctrl->dev, pctrl->ncommunities,
959 sizeof(*communities), GFP_KERNEL);
960 if (!communities)
961 return -ENOMEM;
962
963
964 for (i = 0; i < pctrl->ncommunities; i++) {
965 struct intel_community *community = &pctrl->communities[i];
966 u32 *intmask;
967
968 intmask = devm_kcalloc(pctrl->dev, community->ngpps,
969 sizeof(*intmask), GFP_KERNEL);
970 if (!intmask)
971 return -ENOMEM;
972
973 communities[i].intmask = intmask;
974 }
975
976 pctrl->context.pads = pads;
977 pctrl->context.communities = communities;
978#endif
979
980 return 0;
981}
982
983int intel_pinctrl_probe(struct platform_device *pdev,
984 const struct intel_pinctrl_soc_data *soc_data)
985{
986 struct intel_pinctrl *pctrl;
987 int i, ret, irq;
988
989 if (!soc_data)
990 return -EINVAL;
991
992 pctrl = devm_kzalloc(&pdev->dev, sizeof(*pctrl), GFP_KERNEL);
993 if (!pctrl)
994 return -ENOMEM;
995
996 pctrl->dev = &pdev->dev;
997 pctrl->soc = soc_data;
998 spin_lock_init(&pctrl->lock);
999
1000 /*
1001 * Make a copy of the communities which we can use to hold pointers
1002 * to the registers.
1003 */
1004 pctrl->ncommunities = pctrl->soc->ncommunities;
1005 pctrl->communities = devm_kcalloc(&pdev->dev, pctrl->ncommunities,
1006 sizeof(*pctrl->communities), GFP_KERNEL);
1007 if (!pctrl->communities)
1008 return -ENOMEM;
1009
1010 for (i = 0; i < pctrl->ncommunities; i++) {
1011 struct intel_community *community = &pctrl->communities[i];
1012 struct resource *res;
1013 void __iomem *regs;
1014 u32 padbar;
1015
1016 *community = pctrl->soc->communities[i];
1017
1018 res = platform_get_resource(pdev, IORESOURCE_MEM,
1019 community->barno);
1020 regs = devm_ioremap_resource(&pdev->dev, res);
1021 if (IS_ERR(regs))
1022 return PTR_ERR(regs);
1023
1024 /* Read offset of the pad configuration registers */
1025 padbar = readl(regs + PADBAR);
1026
1027 community->regs = regs;
1028 community->pad_regs = regs + padbar;
Qipeng Zha618a919b2015-11-26 01:09:51 +08001029 community->ngpps = DIV_ROUND_UP(community->npins,
1030 community->gpp_size);
Mika Westerberg7981c0012015-03-30 17:31:49 +03001031 }
1032
1033 irq = platform_get_irq(pdev, 0);
1034 if (irq < 0) {
1035 dev_err(&pdev->dev, "failed to get interrupt number\n");
1036 return irq;
1037 }
1038
1039 ret = intel_pinctrl_pm_init(pctrl);
1040 if (ret)
1041 return ret;
1042
1043 pctrl->pctldesc = intel_pinctrl_desc;
1044 pctrl->pctldesc.name = dev_name(&pdev->dev);
1045 pctrl->pctldesc.pins = pctrl->soc->pins;
1046 pctrl->pctldesc.npins = pctrl->soc->npins;
1047
1048 pctrl->pctldev = pinctrl_register(&pctrl->pctldesc, &pdev->dev, pctrl);
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001049 if (IS_ERR(pctrl->pctldev)) {
Mika Westerberg7981c0012015-03-30 17:31:49 +03001050 dev_err(&pdev->dev, "failed to register pinctrl driver\n");
Masahiro Yamada323de9e2015-06-09 13:01:16 +09001051 return PTR_ERR(pctrl->pctldev);
Mika Westerberg7981c0012015-03-30 17:31:49 +03001052 }
1053
1054 ret = intel_gpio_probe(pctrl, irq);
1055 if (ret) {
1056 pinctrl_unregister(pctrl->pctldev);
1057 return ret;
1058 }
1059
1060 platform_set_drvdata(pdev, pctrl);
1061
1062 return 0;
1063}
1064EXPORT_SYMBOL_GPL(intel_pinctrl_probe);
1065
1066int intel_pinctrl_remove(struct platform_device *pdev)
1067{
1068 struct intel_pinctrl *pctrl = platform_get_drvdata(pdev);
1069
1070 gpiochip_remove(&pctrl->chip);
1071 pinctrl_unregister(pctrl->pctldev);
1072
1073 return 0;
1074}
1075EXPORT_SYMBOL_GPL(intel_pinctrl_remove);
1076
1077#ifdef CONFIG_PM_SLEEP
1078int intel_pinctrl_suspend(struct device *dev)
1079{
1080 struct platform_device *pdev = to_platform_device(dev);
1081 struct intel_pinctrl *pctrl = platform_get_drvdata(pdev);
1082 struct intel_community_context *communities;
1083 struct intel_pad_context *pads;
1084 int i;
1085
1086 pads = pctrl->context.pads;
1087 for (i = 0; i < pctrl->soc->npins; i++) {
1088 const struct pinctrl_pin_desc *desc = &pctrl->soc->pins[i];
1089 u32 val;
1090
1091 if (!intel_pad_usable(pctrl, desc->number))
1092 continue;
1093
1094 val = readl(intel_get_padcfg(pctrl, desc->number, PADCFG0));
1095 pads[i].padcfg0 = val & ~PADCFG0_GPIORXSTATE;
1096 val = readl(intel_get_padcfg(pctrl, desc->number, PADCFG1));
1097 pads[i].padcfg1 = val;
1098 }
1099
1100 communities = pctrl->context.communities;
1101 for (i = 0; i < pctrl->ncommunities; i++) {
1102 struct intel_community *community = &pctrl->communities[i];
1103 void __iomem *base;
1104 unsigned gpp;
1105
1106 base = community->regs + community->ie_offset;
1107 for (gpp = 0; gpp < community->ngpps; gpp++)
1108 communities[i].intmask[gpp] = readl(base + gpp * 4);
1109 }
1110
1111 return 0;
1112}
1113EXPORT_SYMBOL_GPL(intel_pinctrl_suspend);
1114
Mika Westerbergf487bbf2015-10-13 17:51:25 +03001115static void intel_gpio_irq_init(struct intel_pinctrl *pctrl)
1116{
1117 size_t i;
1118
1119 for (i = 0; i < pctrl->ncommunities; i++) {
1120 const struct intel_community *community;
1121 void __iomem *base;
1122 unsigned gpp;
1123
1124 community = &pctrl->communities[i];
1125 base = community->regs;
1126
1127 for (gpp = 0; gpp < community->ngpps; gpp++) {
1128 /* Mask and clear all interrupts */
1129 writel(0, base + community->ie_offset + gpp * 4);
1130 writel(0xffff, base + GPI_IS + gpp * 4);
1131 }
1132 }
1133}
1134
Mika Westerberg7981c0012015-03-30 17:31:49 +03001135int intel_pinctrl_resume(struct device *dev)
1136{
1137 struct platform_device *pdev = to_platform_device(dev);
1138 struct intel_pinctrl *pctrl = platform_get_drvdata(pdev);
1139 const struct intel_community_context *communities;
1140 const struct intel_pad_context *pads;
1141 int i;
1142
1143 /* Mask all interrupts */
1144 intel_gpio_irq_init(pctrl);
1145
1146 pads = pctrl->context.pads;
1147 for (i = 0; i < pctrl->soc->npins; i++) {
1148 const struct pinctrl_pin_desc *desc = &pctrl->soc->pins[i];
1149 void __iomem *padcfg;
1150 u32 val;
1151
1152 if (!intel_pad_usable(pctrl, desc->number))
1153 continue;
1154
1155 padcfg = intel_get_padcfg(pctrl, desc->number, PADCFG0);
1156 val = readl(padcfg) & ~PADCFG0_GPIORXSTATE;
1157 if (val != pads[i].padcfg0) {
1158 writel(pads[i].padcfg0, padcfg);
1159 dev_dbg(dev, "restored pin %u padcfg0 %#08x\n",
1160 desc->number, readl(padcfg));
1161 }
1162
1163 padcfg = intel_get_padcfg(pctrl, desc->number, PADCFG1);
1164 val = readl(padcfg);
1165 if (val != pads[i].padcfg1) {
1166 writel(pads[i].padcfg1, padcfg);
1167 dev_dbg(dev, "restored pin %u padcfg1 %#08x\n",
1168 desc->number, readl(padcfg));
1169 }
1170 }
1171
1172 communities = pctrl->context.communities;
1173 for (i = 0; i < pctrl->ncommunities; i++) {
1174 struct intel_community *community = &pctrl->communities[i];
1175 void __iomem *base;
1176 unsigned gpp;
1177
1178 base = community->regs + community->ie_offset;
1179 for (gpp = 0; gpp < community->ngpps; gpp++) {
1180 writel(communities[i].intmask[gpp], base + gpp * 4);
1181 dev_dbg(dev, "restored mask %d/%u %#08x\n", i, gpp,
1182 readl(base + gpp * 4));
1183 }
1184 }
1185
1186 return 0;
1187}
1188EXPORT_SYMBOL_GPL(intel_pinctrl_resume);
1189#endif
1190
1191MODULE_AUTHOR("Mathias Nyman <mathias.nyman@linux.intel.com>");
1192MODULE_AUTHOR("Mika Westerberg <mika.westerberg@linux.intel.com>");
1193MODULE_DESCRIPTION("Intel pinctrl/GPIO core driver");
1194MODULE_LICENSE("GPL v2");