Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Intel pinctrl/GPIO core driver.
4 *
5 * Copyright (C) 2015, Intel Corporation
6 * Authors: Mathias Nyman <mathias.nyman@linux.intel.com>
7 * Mika Westerberg <mika.westerberg@linux.intel.com>
8 */
9
10#include <linux/acpi.h>
11#include <linux/gpio/driver.h>
12#include <linux/interrupt.h>
13#include <linux/log2.h>
14#include <linux/module.h>
15#include <linux/platform_device.h>
16#include <linux/property.h>
17#include <linux/time.h>
18
19#include <linux/pinctrl/pinctrl.h>
20#include <linux/pinctrl/pinmux.h>
21#include <linux/pinctrl/pinconf.h>
22#include <linux/pinctrl/pinconf-generic.h>
23
24#include "../core.h"
25#include "pinctrl-intel.h"
26
27/* Offset from regs */
28#define REVID 0x000
29#define REVID_SHIFT 16
30#define REVID_MASK GENMASK(31, 16)
31
32#define CAPLIST 0x004
33#define CAPLIST_ID_SHIFT 16
34#define CAPLIST_ID_MASK GENMASK(23, 16)
35#define CAPLIST_ID_GPIO_HW_INFO 1
36#define CAPLIST_ID_PWM 2
37#define CAPLIST_ID_BLINK 3
38#define CAPLIST_ID_EXP 4
39#define CAPLIST_NEXT_SHIFT 0
40#define CAPLIST_NEXT_MASK GENMASK(15, 0)
41
42#define PADBAR 0x00c
43
44#define PADOWN_BITS 4
45#define PADOWN_SHIFT(p) ((p) % 8 * PADOWN_BITS)
46#define PADOWN_MASK(p) (GENMASK(3, 0) << PADOWN_SHIFT(p))
47#define PADOWN_GPP(p) ((p) / 8)
48
49/* Offset from pad_regs */
50#define PADCFG0 0x000
51#define PADCFG0_RXEVCFG_SHIFT 25
52#define PADCFG0_RXEVCFG_MASK GENMASK(26, 25)
53#define PADCFG0_RXEVCFG_LEVEL 0
54#define PADCFG0_RXEVCFG_EDGE 1
55#define PADCFG0_RXEVCFG_DISABLED 2
56#define PADCFG0_RXEVCFG_EDGE_BOTH 3
57#define PADCFG0_PREGFRXSEL BIT(24)
58#define PADCFG0_RXINV BIT(23)
59#define PADCFG0_GPIROUTIOXAPIC BIT(20)
60#define PADCFG0_GPIROUTSCI BIT(19)
61#define PADCFG0_GPIROUTSMI BIT(18)
62#define PADCFG0_GPIROUTNMI BIT(17)
63#define PADCFG0_PMODE_SHIFT 10
64#define PADCFG0_PMODE_MASK GENMASK(13, 10)
65#define PADCFG0_PMODE_GPIO 0
66#define PADCFG0_GPIORXDIS BIT(9)
67#define PADCFG0_GPIOTXDIS BIT(8)
68#define PADCFG0_GPIORXSTATE BIT(1)
69#define PADCFG0_GPIOTXSTATE BIT(0)
70
71#define PADCFG1 0x004
72#define PADCFG1_TERM_UP BIT(13)
73#define PADCFG1_TERM_SHIFT 10
74#define PADCFG1_TERM_MASK GENMASK(12, 10)
75#define PADCFG1_TERM_20K BIT(2)
76#define PADCFG1_TERM_5K BIT(1)
77#define PADCFG1_TERM_1K BIT(0)
78#define PADCFG1_TERM_833 (BIT(1) | BIT(0))
79
80#define PADCFG2 0x008
81#define PADCFG2_DEBEN BIT(0)
82#define PADCFG2_DEBOUNCE_SHIFT 1
83#define PADCFG2_DEBOUNCE_MASK GENMASK(4, 1)
84
85#define DEBOUNCE_PERIOD_NSEC 31250
86
87struct intel_pad_context {
88 u32 padcfg0;
89 u32 padcfg1;
90 u32 padcfg2;
91};
92
93struct intel_community_context {
94 u32 *intmask;
95 u32 *hostown;
96};
97
98#define pin_to_padno(c, p) ((p) - (c)->pin_base)
99#define padgroup_offset(g, p) ((p) - (g)->base)
100
101static struct intel_community *intel_get_community(struct intel_pinctrl *pctrl,
102 unsigned int pin)
103{
104 struct intel_community *community;
105 int i;
106
107 for (i = 0; i < pctrl->ncommunities; i++) {
108 community = &pctrl->communities[i];
109 if (pin >= community->pin_base &&
110 pin < community->pin_base + community->npins)
111 return community;
112 }
113
114 dev_warn(pctrl->dev, "failed to find community for pin %u\n", pin);
115 return NULL;
116}
117
118static const struct intel_padgroup *
119intel_community_get_padgroup(const struct intel_community *community,
120 unsigned int pin)
121{
122 int i;
123
124 for (i = 0; i < community->ngpps; i++) {
125 const struct intel_padgroup *padgrp = &community->gpps[i];
126
127 if (pin >= padgrp->base && pin < padgrp->base + padgrp->size)
128 return padgrp;
129 }
130
131 return NULL;
132}
133
134static void __iomem *intel_get_padcfg(struct intel_pinctrl *pctrl,
135 unsigned int pin, unsigned int reg)
136{
137 const struct intel_community *community;
138 unsigned int padno;
139 size_t nregs;
140
141 community = intel_get_community(pctrl, pin);
142 if (!community)
143 return NULL;
144
145 padno = pin_to_padno(community, pin);
146 nregs = (community->features & PINCTRL_FEATURE_DEBOUNCE) ? 4 : 2;
147
148 if (reg >= nregs * 4)
149 return NULL;
150
151 return community->pad_regs + reg + padno * nregs * 4;
152}
153
154static bool intel_pad_owned_by_host(struct intel_pinctrl *pctrl, unsigned int pin)
155{
156 const struct intel_community *community;
157 const struct intel_padgroup *padgrp;
158 unsigned int gpp, offset, gpp_offset;
159 void __iomem *padown;
160
161 community = intel_get_community(pctrl, pin);
162 if (!community)
163 return false;
164 if (!community->padown_offset)
165 return true;
166
167 padgrp = intel_community_get_padgroup(community, pin);
168 if (!padgrp)
169 return false;
170
171 gpp_offset = padgroup_offset(padgrp, pin);
172 gpp = PADOWN_GPP(gpp_offset);
173 offset = community->padown_offset + padgrp->padown_num * 4 + gpp * 4;
174 padown = community->regs + offset;
175
176 return !(readl(padown) & PADOWN_MASK(gpp_offset));
177}
178
179static bool intel_pad_acpi_mode(struct intel_pinctrl *pctrl, unsigned int pin)
180{
181 const struct intel_community *community;
182 const struct intel_padgroup *padgrp;
183 unsigned int offset, gpp_offset;
184 void __iomem *hostown;
185
186 community = intel_get_community(pctrl, pin);
187 if (!community)
188 return true;
189 if (!community->hostown_offset)
190 return false;
191
192 padgrp = intel_community_get_padgroup(community, pin);
193 if (!padgrp)
194 return true;
195
196 gpp_offset = padgroup_offset(padgrp, pin);
197 offset = community->hostown_offset + padgrp->reg_num * 4;
198 hostown = community->regs + offset;
199
200 return !(readl(hostown) & BIT(gpp_offset));
201}
202
203/**
204 * enum - Locking variants of the pad configuration
205 *
206 * @PAD_UNLOCKED: pad is fully controlled by the configuration registers
207 * @PAD_LOCKED: pad configuration registers, except TX state, are locked
208 * @PAD_LOCKED_TX: pad configuration TX state is locked
209 * @PAD_LOCKED_FULL: pad configuration registers are locked completely
210 *
211 * Locking is considered as read-only mode for corresponding registers and
212 * their respective fields. That said, TX state bit is locked separately from
213 * the main locking scheme.
214 */
215enum {
216 PAD_UNLOCKED = 0,
217 PAD_LOCKED = 1,
218 PAD_LOCKED_TX = 2,
219 PAD_LOCKED_FULL = PAD_LOCKED | PAD_LOCKED_TX,
220};
221
222static int intel_pad_locked(struct intel_pinctrl *pctrl, unsigned int pin)
223{
224 struct intel_community *community;
225 const struct intel_padgroup *padgrp;
226 unsigned int offset, gpp_offset;
227 u32 value;
228 int ret = PAD_UNLOCKED;
229
230 community = intel_get_community(pctrl, pin);
231 if (!community)
232 return PAD_LOCKED_FULL;
233 if (!community->padcfglock_offset)
234 return PAD_UNLOCKED;
235
236 padgrp = intel_community_get_padgroup(community, pin);
237 if (!padgrp)
238 return PAD_LOCKED_FULL;
239
240 gpp_offset = padgroup_offset(padgrp, pin);
241
242 /*
243 * If PADCFGLOCK and PADCFGLOCKTX bits are both clear for this pad,
244 * the pad is considered unlocked. Any other case means that it is
245 * either fully or partially locked.
246 */
247 offset = community->padcfglock_offset + 0 + padgrp->reg_num * 8;
248 value = readl(community->regs + offset);
249 if (value & BIT(gpp_offset))
250 ret |= PAD_LOCKED;
251
252 offset = community->padcfglock_offset + 4 + padgrp->reg_num * 8;
253 value = readl(community->regs + offset);
254 if (value & BIT(gpp_offset))
255 ret |= PAD_LOCKED_TX;
256
257 return ret;
258}
259
260static bool intel_pad_is_unlocked(struct intel_pinctrl *pctrl, unsigned int pin)
261{
262 return (intel_pad_locked(pctrl, pin) & PAD_LOCKED) == PAD_UNLOCKED;
263}
264
265static bool intel_pad_usable(struct intel_pinctrl *pctrl, unsigned int pin)
266{
267 return intel_pad_owned_by_host(pctrl, pin) && intel_pad_is_unlocked(pctrl, pin);
268}
269
270static int intel_get_groups_count(struct pinctrl_dev *pctldev)
271{
272 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
273
274 return pctrl->soc->ngroups;
275}
276
277static const char *intel_get_group_name(struct pinctrl_dev *pctldev,
278 unsigned int group)
279{
280 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
281
282 return pctrl->soc->groups[group].name;
283}
284
285static int intel_get_group_pins(struct pinctrl_dev *pctldev, unsigned int group,
286 const unsigned int **pins, unsigned int *npins)
287{
288 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
289
290 *pins = pctrl->soc->groups[group].pins;
291 *npins = pctrl->soc->groups[group].npins;
292 return 0;
293}
294
295static void intel_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
296 unsigned int pin)
297{
298 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
299 void __iomem *padcfg;
300 u32 cfg0, cfg1, mode;
301 int locked;
302 bool acpi;
303
304 if (!intel_pad_owned_by_host(pctrl, pin)) {
305 seq_puts(s, "not available");
306 return;
307 }
308
309 cfg0 = readl(intel_get_padcfg(pctrl, pin, PADCFG0));
310 cfg1 = readl(intel_get_padcfg(pctrl, pin, PADCFG1));
311
312 mode = (cfg0 & PADCFG0_PMODE_MASK) >> PADCFG0_PMODE_SHIFT;
313 if (mode == PADCFG0_PMODE_GPIO)
314 seq_puts(s, "GPIO ");
315 else
316 seq_printf(s, "mode %d ", mode);
317
318 seq_printf(s, "0x%08x 0x%08x", cfg0, cfg1);
319
320 /* Dump the additional PADCFG registers if available */
321 padcfg = intel_get_padcfg(pctrl, pin, PADCFG2);
322 if (padcfg)
323 seq_printf(s, " 0x%08x", readl(padcfg));
324
325 locked = intel_pad_locked(pctrl, pin);
326 acpi = intel_pad_acpi_mode(pctrl, pin);
327
328 if (locked || acpi) {
329 seq_puts(s, " [");
330 if (locked)
331 seq_puts(s, "LOCKED");
332 if ((locked & PAD_LOCKED_FULL) == PAD_LOCKED_TX)
333 seq_puts(s, " tx");
334 else if ((locked & PAD_LOCKED_FULL) == PAD_LOCKED_FULL)
335 seq_puts(s, " full");
336
337 if (locked && acpi)
338 seq_puts(s, ", ");
339
340 if (acpi)
341 seq_puts(s, "ACPI");
342 seq_puts(s, "]");
343 }
344}
345
346static const struct pinctrl_ops intel_pinctrl_ops = {
347 .get_groups_count = intel_get_groups_count,
348 .get_group_name = intel_get_group_name,
349 .get_group_pins = intel_get_group_pins,
350 .pin_dbg_show = intel_pin_dbg_show,
351};
352
353static int intel_get_functions_count(struct pinctrl_dev *pctldev)
354{
355 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
356
357 return pctrl->soc->nfunctions;
358}
359
360static const char *intel_get_function_name(struct pinctrl_dev *pctldev,
361 unsigned int function)
362{
363 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
364
365 return pctrl->soc->functions[function].name;
366}
367
368static int intel_get_function_groups(struct pinctrl_dev *pctldev,
369 unsigned int function,
370 const char * const **groups,
371 unsigned int * const ngroups)
372{
373 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
374
375 *groups = pctrl->soc->functions[function].groups;
376 *ngroups = pctrl->soc->functions[function].ngroups;
377 return 0;
378}
379
380static int intel_pinmux_set_mux(struct pinctrl_dev *pctldev,
381 unsigned int function, unsigned int group)
382{
383 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
384 const struct intel_pingroup *grp = &pctrl->soc->groups[group];
385 unsigned long flags;
386 int i;
387
388 raw_spin_lock_irqsave(&pctrl->lock, flags);
389
390 /*
391 * All pins in the groups needs to be accessible and writable
392 * before we can enable the mux for this group.
393 */
394 for (i = 0; i < grp->npins; i++) {
395 if (!intel_pad_usable(pctrl, grp->pins[i])) {
396 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
397 return -EBUSY;
398 }
399 }
400
401 /* Now enable the mux setting for each pin in the group */
402 for (i = 0; i < grp->npins; i++) {
403 void __iomem *padcfg0;
404 u32 value;
405
406 padcfg0 = intel_get_padcfg(pctrl, grp->pins[i], PADCFG0);
407 value = readl(padcfg0);
408
409 value &= ~PADCFG0_PMODE_MASK;
410
411 if (grp->modes)
412 value |= grp->modes[i] << PADCFG0_PMODE_SHIFT;
413 else
414 value |= grp->mode << PADCFG0_PMODE_SHIFT;
415
416 writel(value, padcfg0);
417 }
418
419 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
420
421 return 0;
422}
423
424static void __intel_gpio_set_direction(void __iomem *padcfg0, bool input)
425{
426 u32 value;
427
428 value = readl(padcfg0);
429 if (input) {
430 value &= ~PADCFG0_GPIORXDIS;
431 value |= PADCFG0_GPIOTXDIS;
432 } else {
433 value &= ~PADCFG0_GPIOTXDIS;
434 value |= PADCFG0_GPIORXDIS;
435 }
436 writel(value, padcfg0);
437}
438
439static int intel_gpio_get_gpio_mode(void __iomem *padcfg0)
440{
441 return (readl(padcfg0) & PADCFG0_PMODE_MASK) >> PADCFG0_PMODE_SHIFT;
442}
443
444static void intel_gpio_set_gpio_mode(void __iomem *padcfg0)
445{
446 u32 value;
447
448 value = readl(padcfg0);
449
450 /* Put the pad into GPIO mode */
451 value &= ~PADCFG0_PMODE_MASK;
452 value |= PADCFG0_PMODE_GPIO;
453
454 /* Disable TX buffer and enable RX (this will be input) */
455 value &= ~PADCFG0_GPIORXDIS;
456 value |= PADCFG0_GPIOTXDIS;
457
458 /* Disable SCI/SMI/NMI generation */
459 value &= ~(PADCFG0_GPIROUTIOXAPIC | PADCFG0_GPIROUTSCI);
460 value &= ~(PADCFG0_GPIROUTSMI | PADCFG0_GPIROUTNMI);
461
462 writel(value, padcfg0);
463}
464
465static int intel_gpio_request_enable(struct pinctrl_dev *pctldev,
466 struct pinctrl_gpio_range *range,
467 unsigned int pin)
468{
469 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
470 void __iomem *padcfg0;
471 unsigned long flags;
472
473 padcfg0 = intel_get_padcfg(pctrl, pin, PADCFG0);
474
475 raw_spin_lock_irqsave(&pctrl->lock, flags);
476
477 if (!intel_pad_owned_by_host(pctrl, pin)) {
478 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
479 return -EBUSY;
480 }
481
482 if (!intel_pad_is_unlocked(pctrl, pin)) {
483 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
484 return 0;
485 }
486
487 /*
488 * If pin is already configured in GPIO mode, we assume that
489 * firmware provides correct settings. In such case we avoid
490 * potential glitches on the pin. Otherwise, for the pin in
491 * alternative mode, consumer has to supply respective flags.
492 */
493 if (intel_gpio_get_gpio_mode(padcfg0) == PADCFG0_PMODE_GPIO) {
494 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
495 return 0;
496 }
497
498 intel_gpio_set_gpio_mode(padcfg0);
499
500 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
501
502 return 0;
503}
504
505static int intel_gpio_set_direction(struct pinctrl_dev *pctldev,
506 struct pinctrl_gpio_range *range,
507 unsigned int pin, bool input)
508{
509 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
510 void __iomem *padcfg0;
511 unsigned long flags;
512
513 padcfg0 = intel_get_padcfg(pctrl, pin, PADCFG0);
514
515 raw_spin_lock_irqsave(&pctrl->lock, flags);
516 __intel_gpio_set_direction(padcfg0, input);
517 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
518
519 return 0;
520}
521
522static const struct pinmux_ops intel_pinmux_ops = {
523 .get_functions_count = intel_get_functions_count,
524 .get_function_name = intel_get_function_name,
525 .get_function_groups = intel_get_function_groups,
526 .set_mux = intel_pinmux_set_mux,
527 .gpio_request_enable = intel_gpio_request_enable,
528 .gpio_set_direction = intel_gpio_set_direction,
529};
530
531static int intel_config_get_pull(struct intel_pinctrl *pctrl, unsigned int pin,
532 enum pin_config_param param, u32 *arg)
533{
534 const struct intel_community *community;
535 void __iomem *padcfg1;
536 unsigned long flags;
537 u32 value, term;
538
539 community = intel_get_community(pctrl, pin);
540 padcfg1 = intel_get_padcfg(pctrl, pin, PADCFG1);
541
542 raw_spin_lock_irqsave(&pctrl->lock, flags);
543 value = readl(padcfg1);
544 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
545
546 term = (value & PADCFG1_TERM_MASK) >> PADCFG1_TERM_SHIFT;
547
548 switch (param) {
549 case PIN_CONFIG_BIAS_DISABLE:
550 if (term)
551 return -EINVAL;
552 break;
553
554 case PIN_CONFIG_BIAS_PULL_UP:
555 if (!term || !(value & PADCFG1_TERM_UP))
556 return -EINVAL;
557
558 switch (term) {
559 case PADCFG1_TERM_833:
560 *arg = 833;
561 break;
562 case PADCFG1_TERM_1K:
563 *arg = 1000;
564 break;
565 case PADCFG1_TERM_5K:
566 *arg = 5000;
567 break;
568 case PADCFG1_TERM_20K:
569 *arg = 20000;
570 break;
571 }
572
573 break;
574
575 case PIN_CONFIG_BIAS_PULL_DOWN:
576 if (!term || value & PADCFG1_TERM_UP)
577 return -EINVAL;
578
579 switch (term) {
580 case PADCFG1_TERM_833:
581 if (!(community->features & PINCTRL_FEATURE_1K_PD))
582 return -EINVAL;
583 *arg = 833;
584 break;
585 case PADCFG1_TERM_1K:
586 if (!(community->features & PINCTRL_FEATURE_1K_PD))
587 return -EINVAL;
588 *arg = 1000;
589 break;
590 case PADCFG1_TERM_5K:
591 *arg = 5000;
592 break;
593 case PADCFG1_TERM_20K:
594 *arg = 20000;
595 break;
596 }
597
598 break;
599
600 default:
601 return -EINVAL;
602 }
603
604 return 0;
605}
606
607static int intel_config_get_debounce(struct intel_pinctrl *pctrl, unsigned int pin,
608 enum pin_config_param param, u32 *arg)
609{
610 void __iomem *padcfg2;
611 unsigned long flags;
612 unsigned long v;
613 u32 value2;
614
615 padcfg2 = intel_get_padcfg(pctrl, pin, PADCFG2);
616 if (!padcfg2)
617 return -ENOTSUPP;
618
619 raw_spin_lock_irqsave(&pctrl->lock, flags);
620 value2 = readl(padcfg2);
621 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
622 if (!(value2 & PADCFG2_DEBEN))
623 return -EINVAL;
624
625 v = (value2 & PADCFG2_DEBOUNCE_MASK) >> PADCFG2_DEBOUNCE_SHIFT;
626 *arg = BIT(v) * DEBOUNCE_PERIOD_NSEC / NSEC_PER_USEC;
627
628 return 0;
629}
630
631static int intel_config_get(struct pinctrl_dev *pctldev, unsigned int pin,
632 unsigned long *config)
633{
634 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
635 enum pin_config_param param = pinconf_to_config_param(*config);
636 u32 arg = 0;
637 int ret;
638
639 if (!intel_pad_owned_by_host(pctrl, pin))
640 return -ENOTSUPP;
641
642 switch (param) {
643 case PIN_CONFIG_BIAS_DISABLE:
644 case PIN_CONFIG_BIAS_PULL_UP:
645 case PIN_CONFIG_BIAS_PULL_DOWN:
646 ret = intel_config_get_pull(pctrl, pin, param, &arg);
647 if (ret)
648 return ret;
649 break;
650
651 case PIN_CONFIG_INPUT_DEBOUNCE:
652 ret = intel_config_get_debounce(pctrl, pin, param, &arg);
653 if (ret)
654 return ret;
655 break;
656
657 default:
658 return -ENOTSUPP;
659 }
660
661 *config = pinconf_to_config_packed(param, arg);
662 return 0;
663}
664
665static int intel_config_set_pull(struct intel_pinctrl *pctrl, unsigned int pin,
666 unsigned long config)
667{
668 unsigned int param = pinconf_to_config_param(config);
669 unsigned int arg = pinconf_to_config_argument(config);
670 const struct intel_community *community;
671 void __iomem *padcfg1;
672 unsigned long flags;
673 int ret = 0;
674 u32 value;
675
676 community = intel_get_community(pctrl, pin);
677 padcfg1 = intel_get_padcfg(pctrl, pin, PADCFG1);
678
679 raw_spin_lock_irqsave(&pctrl->lock, flags);
680
681 value = readl(padcfg1);
682
683 switch (param) {
684 case PIN_CONFIG_BIAS_DISABLE:
685 value &= ~(PADCFG1_TERM_MASK | PADCFG1_TERM_UP);
686 break;
687
688 case PIN_CONFIG_BIAS_PULL_UP:
689 value &= ~PADCFG1_TERM_MASK;
690
691 value |= PADCFG1_TERM_UP;
692
693 /* Set default strength value in case none is given */
694 if (arg == 1)
695 arg = 5000;
696
697 switch (arg) {
698 case 20000:
699 value |= PADCFG1_TERM_20K << PADCFG1_TERM_SHIFT;
700 break;
701 case 5000:
702 value |= PADCFG1_TERM_5K << PADCFG1_TERM_SHIFT;
703 break;
704 case 1000:
705 value |= PADCFG1_TERM_1K << PADCFG1_TERM_SHIFT;
706 break;
707 case 833:
708 value |= PADCFG1_TERM_833 << PADCFG1_TERM_SHIFT;
709 break;
710 default:
711 ret = -EINVAL;
712 }
713
714 break;
715
716 case PIN_CONFIG_BIAS_PULL_DOWN:
717 value &= ~(PADCFG1_TERM_UP | PADCFG1_TERM_MASK);
718
719 /* Set default strength value in case none is given */
720 if (arg == 1)
721 arg = 5000;
722
723 switch (arg) {
724 case 20000:
725 value |= PADCFG1_TERM_20K << PADCFG1_TERM_SHIFT;
726 break;
727 case 5000:
728 value |= PADCFG1_TERM_5K << PADCFG1_TERM_SHIFT;
729 break;
730 case 1000:
731 if (!(community->features & PINCTRL_FEATURE_1K_PD)) {
732 ret = -EINVAL;
733 break;
734 }
735 value |= PADCFG1_TERM_1K << PADCFG1_TERM_SHIFT;
736 break;
737 case 833:
738 if (!(community->features & PINCTRL_FEATURE_1K_PD)) {
739 ret = -EINVAL;
740 break;
741 }
742 value |= PADCFG1_TERM_833 << PADCFG1_TERM_SHIFT;
743 break;
744 default:
745 ret = -EINVAL;
746 }
747
748 break;
749 }
750
751 if (!ret)
752 writel(value, padcfg1);
753
754 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
755
756 return ret;
757}
758
759static int intel_config_set_debounce(struct intel_pinctrl *pctrl,
760 unsigned int pin, unsigned int debounce)
761{
762 void __iomem *padcfg0, *padcfg2;
763 unsigned long flags;
764 u32 value0, value2;
765
766 padcfg2 = intel_get_padcfg(pctrl, pin, PADCFG2);
767 if (!padcfg2)
768 return -ENOTSUPP;
769
770 padcfg0 = intel_get_padcfg(pctrl, pin, PADCFG0);
771
772 raw_spin_lock_irqsave(&pctrl->lock, flags);
773
774 value0 = readl(padcfg0);
775 value2 = readl(padcfg2);
776
777 /* Disable glitch filter and debouncer */
778 value0 &= ~PADCFG0_PREGFRXSEL;
779 value2 &= ~(PADCFG2_DEBEN | PADCFG2_DEBOUNCE_MASK);
780
781 if (debounce) {
782 unsigned long v;
783
784 v = order_base_2(debounce * NSEC_PER_USEC / DEBOUNCE_PERIOD_NSEC);
785 if (v < 3 || v > 15) {
786 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
787 return -EINVAL;
788 }
789
790 /* Enable glitch filter and debouncer */
791 value0 |= PADCFG0_PREGFRXSEL;
792 value2 |= v << PADCFG2_DEBOUNCE_SHIFT;
793 value2 |= PADCFG2_DEBEN;
794 }
795
796 writel(value0, padcfg0);
797 writel(value2, padcfg2);
798
799 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
800
801 return 0;
802}
803
804static int intel_config_set(struct pinctrl_dev *pctldev, unsigned int pin,
805 unsigned long *configs, unsigned int nconfigs)
806{
807 struct intel_pinctrl *pctrl = pinctrl_dev_get_drvdata(pctldev);
808 int i, ret;
809
810 if (!intel_pad_usable(pctrl, pin))
811 return -ENOTSUPP;
812
813 for (i = 0; i < nconfigs; i++) {
814 switch (pinconf_to_config_param(configs[i])) {
815 case PIN_CONFIG_BIAS_DISABLE:
816 case PIN_CONFIG_BIAS_PULL_UP:
817 case PIN_CONFIG_BIAS_PULL_DOWN:
818 ret = intel_config_set_pull(pctrl, pin, configs[i]);
819 if (ret)
820 return ret;
821 break;
822
823 case PIN_CONFIG_INPUT_DEBOUNCE:
824 ret = intel_config_set_debounce(pctrl, pin,
825 pinconf_to_config_argument(configs[i]));
826 if (ret)
827 return ret;
828 break;
829
830 default:
831 return -ENOTSUPP;
832 }
833 }
834
835 return 0;
836}
837
838static const struct pinconf_ops intel_pinconf_ops = {
839 .is_generic = true,
840 .pin_config_get = intel_config_get,
841 .pin_config_set = intel_config_set,
842};
843
844static const struct pinctrl_desc intel_pinctrl_desc = {
845 .pctlops = &intel_pinctrl_ops,
846 .pmxops = &intel_pinmux_ops,
847 .confops = &intel_pinconf_ops,
848 .owner = THIS_MODULE,
849};
850
851/**
852 * intel_gpio_to_pin() - Translate from GPIO offset to pin number
853 * @pctrl: Pinctrl structure
854 * @offset: GPIO offset from gpiolib
855 * @community: Community is filled here if not %NULL
856 * @padgrp: Pad group is filled here if not %NULL
857 *
858 * When coming through gpiolib irqchip, the GPIO offset is not
859 * automatically translated to pinctrl pin number. This function can be
860 * used to find out the corresponding pinctrl pin.
861 */
862static int intel_gpio_to_pin(struct intel_pinctrl *pctrl, unsigned int offset,
863 const struct intel_community **community,
864 const struct intel_padgroup **padgrp)
865{
866 int i;
867
868 for (i = 0; i < pctrl->ncommunities; i++) {
869 const struct intel_community *comm = &pctrl->communities[i];
870 int j;
871
872 for (j = 0; j < comm->ngpps; j++) {
873 const struct intel_padgroup *pgrp = &comm->gpps[j];
874
875 if (pgrp->gpio_base == INTEL_GPIO_BASE_NOMAP)
876 continue;
877
878 if (offset >= pgrp->gpio_base &&
879 offset < pgrp->gpio_base + pgrp->size) {
880 int pin;
881
882 pin = pgrp->base + offset - pgrp->gpio_base;
883 if (community)
884 *community = comm;
885 if (padgrp)
886 *padgrp = pgrp;
887
888 return pin;
889 }
890 }
891 }
892
893 return -EINVAL;
894}
895
896/**
897 * intel_pin_to_gpio() - Translate from pin number to GPIO offset
898 * @pctrl: Pinctrl structure
899 * @pin: pin number
900 *
901 * Translate the pin number of pinctrl to GPIO offset
902 */
903static __maybe_unused int intel_pin_to_gpio(struct intel_pinctrl *pctrl, int pin)
904{
905 const struct intel_community *community;
906 const struct intel_padgroup *padgrp;
907
908 community = intel_get_community(pctrl, pin);
909 if (!community)
910 return -EINVAL;
911
912 padgrp = intel_community_get_padgroup(community, pin);
913 if (!padgrp)
914 return -EINVAL;
915
916 return pin - padgrp->base + padgrp->gpio_base;
917}
918
919static int intel_gpio_get(struct gpio_chip *chip, unsigned int offset)
920{
921 struct intel_pinctrl *pctrl = gpiochip_get_data(chip);
922 void __iomem *reg;
923 u32 padcfg0;
924 int pin;
925
926 pin = intel_gpio_to_pin(pctrl, offset, NULL, NULL);
927 if (pin < 0)
928 return -EINVAL;
929
930 reg = intel_get_padcfg(pctrl, pin, PADCFG0);
931 if (!reg)
932 return -EINVAL;
933
934 padcfg0 = readl(reg);
935 if (!(padcfg0 & PADCFG0_GPIOTXDIS))
936 return !!(padcfg0 & PADCFG0_GPIOTXSTATE);
937
938 return !!(padcfg0 & PADCFG0_GPIORXSTATE);
939}
940
941static void intel_gpio_set(struct gpio_chip *chip, unsigned int offset,
942 int value)
943{
944 struct intel_pinctrl *pctrl = gpiochip_get_data(chip);
945 unsigned long flags;
946 void __iomem *reg;
947 u32 padcfg0;
948 int pin;
949
950 pin = intel_gpio_to_pin(pctrl, offset, NULL, NULL);
951 if (pin < 0)
952 return;
953
954 reg = intel_get_padcfg(pctrl, pin, PADCFG0);
955 if (!reg)
956 return;
957
958 raw_spin_lock_irqsave(&pctrl->lock, flags);
959 padcfg0 = readl(reg);
960 if (value)
961 padcfg0 |= PADCFG0_GPIOTXSTATE;
962 else
963 padcfg0 &= ~PADCFG0_GPIOTXSTATE;
964 writel(padcfg0, reg);
965 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
966}
967
968static int intel_gpio_get_direction(struct gpio_chip *chip, unsigned int offset)
969{
970 struct intel_pinctrl *pctrl = gpiochip_get_data(chip);
971 unsigned long flags;
972 void __iomem *reg;
973 u32 padcfg0;
974 int pin;
975
976 pin = intel_gpio_to_pin(pctrl, offset, NULL, NULL);
977 if (pin < 0)
978 return -EINVAL;
979
980 reg = intel_get_padcfg(pctrl, pin, PADCFG0);
981 if (!reg)
982 return -EINVAL;
983
984 raw_spin_lock_irqsave(&pctrl->lock, flags);
985 padcfg0 = readl(reg);
986 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
987 if (padcfg0 & PADCFG0_PMODE_MASK)
988 return -EINVAL;
989
990 if (padcfg0 & PADCFG0_GPIOTXDIS)
991 return GPIO_LINE_DIRECTION_IN;
992
993 return GPIO_LINE_DIRECTION_OUT;
994}
995
996static int intel_gpio_direction_input(struct gpio_chip *chip, unsigned int offset)
997{
998 return pinctrl_gpio_direction_input(chip->base + offset);
999}
1000
1001static int intel_gpio_direction_output(struct gpio_chip *chip, unsigned int offset,
1002 int value)
1003{
1004 intel_gpio_set(chip, offset, value);
1005 return pinctrl_gpio_direction_output(chip->base + offset);
1006}
1007
1008static const struct gpio_chip intel_gpio_chip = {
1009 .owner = THIS_MODULE,
1010 .request = gpiochip_generic_request,
1011 .free = gpiochip_generic_free,
1012 .get_direction = intel_gpio_get_direction,
1013 .direction_input = intel_gpio_direction_input,
1014 .direction_output = intel_gpio_direction_output,
1015 .get = intel_gpio_get,
1016 .set = intel_gpio_set,
1017 .set_config = gpiochip_generic_config,
1018};
1019
1020static void intel_gpio_irq_ack(struct irq_data *d)
1021{
1022 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1023 struct intel_pinctrl *pctrl = gpiochip_get_data(gc);
1024 const struct intel_community *community;
1025 const struct intel_padgroup *padgrp;
1026 int pin;
1027
1028 pin = intel_gpio_to_pin(pctrl, irqd_to_hwirq(d), &community, &padgrp);
1029 if (pin >= 0) {
1030 unsigned int gpp, gpp_offset, is_offset;
1031
1032 gpp = padgrp->reg_num;
1033 gpp_offset = padgroup_offset(padgrp, pin);
1034 is_offset = community->is_offset + gpp * 4;
1035
1036 raw_spin_lock(&pctrl->lock);
1037 writel(BIT(gpp_offset), community->regs + is_offset);
1038 raw_spin_unlock(&pctrl->lock);
1039 }
1040}
1041
1042static void intel_gpio_irq_mask_unmask(struct irq_data *d, bool mask)
1043{
1044 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1045 struct intel_pinctrl *pctrl = gpiochip_get_data(gc);
1046 const struct intel_community *community;
1047 const struct intel_padgroup *padgrp;
1048 int pin;
1049
1050 pin = intel_gpio_to_pin(pctrl, irqd_to_hwirq(d), &community, &padgrp);
1051 if (pin >= 0) {
1052 unsigned int gpp, gpp_offset;
1053 unsigned long flags;
1054 void __iomem *reg, *is;
1055 u32 value;
1056
1057 gpp = padgrp->reg_num;
1058 gpp_offset = padgroup_offset(padgrp, pin);
1059
1060 reg = community->regs + community->ie_offset + gpp * 4;
1061 is = community->regs + community->is_offset + gpp * 4;
1062
1063 raw_spin_lock_irqsave(&pctrl->lock, flags);
1064
1065 /* Clear interrupt status first to avoid unexpected interrupt */
1066 writel(BIT(gpp_offset), is);
1067
1068 value = readl(reg);
1069 if (mask)
1070 value &= ~BIT(gpp_offset);
1071 else
1072 value |= BIT(gpp_offset);
1073 writel(value, reg);
1074 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
1075 }
1076}
1077
1078static void intel_gpio_irq_mask(struct irq_data *d)
1079{
1080 intel_gpio_irq_mask_unmask(d, true);
1081}
1082
1083static void intel_gpio_irq_unmask(struct irq_data *d)
1084{
1085 intel_gpio_irq_mask_unmask(d, false);
1086}
1087
1088static int intel_gpio_irq_type(struct irq_data *d, unsigned int type)
1089{
1090 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1091 struct intel_pinctrl *pctrl = gpiochip_get_data(gc);
1092 unsigned int pin = intel_gpio_to_pin(pctrl, irqd_to_hwirq(d), NULL, NULL);
1093 unsigned long flags;
1094 void __iomem *reg;
1095 u32 value;
1096
1097 reg = intel_get_padcfg(pctrl, pin, PADCFG0);
1098 if (!reg)
1099 return -EINVAL;
1100
1101 /*
1102 * If the pin is in ACPI mode it is still usable as a GPIO but it
1103 * cannot be used as IRQ because GPI_IS status bit will not be
1104 * updated by the host controller hardware.
1105 */
1106 if (intel_pad_acpi_mode(pctrl, pin)) {
1107 dev_warn(pctrl->dev, "pin %u cannot be used as IRQ\n", pin);
1108 return -EPERM;
1109 }
1110
1111 raw_spin_lock_irqsave(&pctrl->lock, flags);
1112
1113 intel_gpio_set_gpio_mode(reg);
1114
1115 value = readl(reg);
1116
1117 value &= ~(PADCFG0_RXEVCFG_MASK | PADCFG0_RXINV);
1118
1119 if ((type & IRQ_TYPE_EDGE_BOTH) == IRQ_TYPE_EDGE_BOTH) {
1120 value |= PADCFG0_RXEVCFG_EDGE_BOTH << PADCFG0_RXEVCFG_SHIFT;
1121 } else if (type & IRQ_TYPE_EDGE_FALLING) {
1122 value |= PADCFG0_RXEVCFG_EDGE << PADCFG0_RXEVCFG_SHIFT;
1123 value |= PADCFG0_RXINV;
1124 } else if (type & IRQ_TYPE_EDGE_RISING) {
1125 value |= PADCFG0_RXEVCFG_EDGE << PADCFG0_RXEVCFG_SHIFT;
1126 } else if (type & IRQ_TYPE_LEVEL_MASK) {
1127 if (type & IRQ_TYPE_LEVEL_LOW)
1128 value |= PADCFG0_RXINV;
1129 } else {
1130 value |= PADCFG0_RXEVCFG_DISABLED << PADCFG0_RXEVCFG_SHIFT;
1131 }
1132
1133 writel(value, reg);
1134
1135 if (type & IRQ_TYPE_EDGE_BOTH)
1136 irq_set_handler_locked(d, handle_edge_irq);
1137 else if (type & IRQ_TYPE_LEVEL_MASK)
1138 irq_set_handler_locked(d, handle_level_irq);
1139
1140 raw_spin_unlock_irqrestore(&pctrl->lock, flags);
1141
1142 return 0;
1143}
1144
1145static int intel_gpio_irq_wake(struct irq_data *d, unsigned int on)
1146{
1147 struct gpio_chip *gc = irq_data_get_irq_chip_data(d);
1148 struct intel_pinctrl *pctrl = gpiochip_get_data(gc);
1149 unsigned int pin = intel_gpio_to_pin(pctrl, irqd_to_hwirq(d), NULL, NULL);
1150
1151 if (on)
1152 enable_irq_wake(pctrl->irq);
1153 else
1154 disable_irq_wake(pctrl->irq);
1155
1156 dev_dbg(pctrl->dev, "%sable wake for pin %u\n", on ? "en" : "dis", pin);
1157 return 0;
1158}
1159
1160static int intel_gpio_community_irq_handler(struct intel_pinctrl *pctrl,
1161 const struct intel_community *community)
1162{
1163 struct gpio_chip *gc = &pctrl->chip;
1164 unsigned int gpp;
1165 int ret = 0;
1166
1167 for (gpp = 0; gpp < community->ngpps; gpp++) {
1168 const struct intel_padgroup *padgrp = &community->gpps[gpp];
1169 unsigned long pending, enabled, gpp_offset;
1170
1171 raw_spin_lock(&pctrl->lock);
1172
1173 pending = readl(community->regs + community->is_offset +
1174 padgrp->reg_num * 4);
1175 enabled = readl(community->regs + community->ie_offset +
1176 padgrp->reg_num * 4);
1177
1178 raw_spin_unlock(&pctrl->lock);
1179
1180 /* Only interrupts that are enabled */
1181 pending &= enabled;
1182
1183 for_each_set_bit(gpp_offset, &pending, padgrp->size) {
1184 unsigned int irq;
1185
1186 irq = irq_find_mapping(gc->irq.domain,
1187 padgrp->gpio_base + gpp_offset);
1188 generic_handle_irq(irq);
1189 }
1190
1191 ret += pending ? 1 : 0;
1192 }
1193
1194 return ret;
1195}
1196
1197static irqreturn_t intel_gpio_irq(int irq, void *data)
1198{
1199 const struct intel_community *community;
1200 struct intel_pinctrl *pctrl = data;
1201 unsigned int i;
1202 int ret = 0;
1203
1204 /* Need to check all communities for pending interrupts */
1205 for (i = 0; i < pctrl->ncommunities; i++) {
1206 community = &pctrl->communities[i];
1207 ret += intel_gpio_community_irq_handler(pctrl, community);
1208 }
1209
1210 return IRQ_RETVAL(ret);
1211}
1212
1213static void intel_gpio_irq_init(struct intel_pinctrl *pctrl)
1214{
1215 int i;
1216
1217 for (i = 0; i < pctrl->ncommunities; i++) {
1218 const struct intel_community *community;
1219 void __iomem *base;
1220 unsigned int gpp;
1221
1222 community = &pctrl->communities[i];
1223 base = community->regs;
1224
1225 for (gpp = 0; gpp < community->ngpps; gpp++) {
1226 /* Mask and clear all interrupts */
1227 writel(0, base + community->ie_offset + gpp * 4);
1228 writel(0xffff, base + community->is_offset + gpp * 4);
1229 }
1230 }
1231}
1232
1233static int intel_gpio_irq_init_hw(struct gpio_chip *gc)
1234{
1235 struct intel_pinctrl *pctrl = gpiochip_get_data(gc);
1236
1237 /*
1238 * Make sure the interrupt lines are in a proper state before
1239 * further configuration.
1240 */
1241 intel_gpio_irq_init(pctrl);
1242
1243 return 0;
1244}
1245
1246static int intel_gpio_add_community_ranges(struct intel_pinctrl *pctrl,
1247 const struct intel_community *community)
1248{
1249 int ret = 0, i;
1250
1251 for (i = 0; i < community->ngpps; i++) {
1252 const struct intel_padgroup *gpp = &community->gpps[i];
1253
1254 if (gpp->gpio_base == INTEL_GPIO_BASE_NOMAP)
1255 continue;
1256
1257 ret = gpiochip_add_pin_range(&pctrl->chip, dev_name(pctrl->dev),
1258 gpp->gpio_base, gpp->base,
1259 gpp->size);
1260 if (ret)
1261 return ret;
1262 }
1263
1264 return ret;
1265}
1266
1267static int intel_gpio_add_pin_ranges(struct gpio_chip *gc)
1268{
1269 struct intel_pinctrl *pctrl = gpiochip_get_data(gc);
1270 int ret, i;
1271
1272 for (i = 0; i < pctrl->ncommunities; i++) {
1273 struct intel_community *community = &pctrl->communities[i];
1274
1275 ret = intel_gpio_add_community_ranges(pctrl, community);
1276 if (ret) {
1277 dev_err(pctrl->dev, "failed to add GPIO pin range\n");
1278 return ret;
1279 }
1280 }
1281
1282 return 0;
1283}
1284
1285static unsigned int intel_gpio_ngpio(const struct intel_pinctrl *pctrl)
1286{
1287 const struct intel_community *community;
1288 unsigned int ngpio = 0;
1289 int i, j;
1290
1291 for (i = 0; i < pctrl->ncommunities; i++) {
1292 community = &pctrl->communities[i];
1293 for (j = 0; j < community->ngpps; j++) {
1294 const struct intel_padgroup *gpp = &community->gpps[j];
1295
1296 if (gpp->gpio_base == INTEL_GPIO_BASE_NOMAP)
1297 continue;
1298
1299 if (gpp->gpio_base + gpp->size > ngpio)
1300 ngpio = gpp->gpio_base + gpp->size;
1301 }
1302 }
1303
1304 return ngpio;
1305}
1306
1307static int intel_gpio_probe(struct intel_pinctrl *pctrl, int irq)
1308{
1309 int ret;
1310 struct gpio_irq_chip *girq;
1311
1312 pctrl->chip = intel_gpio_chip;
1313
1314 /* Setup GPIO chip */
1315 pctrl->chip.ngpio = intel_gpio_ngpio(pctrl);
1316 pctrl->chip.label = dev_name(pctrl->dev);
1317 pctrl->chip.parent = pctrl->dev;
1318 pctrl->chip.base = -1;
1319 pctrl->chip.add_pin_ranges = intel_gpio_add_pin_ranges;
1320 pctrl->irq = irq;
1321
1322 /* Setup IRQ chip */
1323 pctrl->irqchip.name = dev_name(pctrl->dev);
1324 pctrl->irqchip.irq_ack = intel_gpio_irq_ack;
1325 pctrl->irqchip.irq_mask = intel_gpio_irq_mask;
1326 pctrl->irqchip.irq_unmask = intel_gpio_irq_unmask;
1327 pctrl->irqchip.irq_set_type = intel_gpio_irq_type;
1328 pctrl->irqchip.irq_set_wake = intel_gpio_irq_wake;
1329 pctrl->irqchip.flags = IRQCHIP_MASK_ON_SUSPEND;
1330
1331 /*
1332 * On some platforms several GPIO controllers share the same interrupt
1333 * line.
1334 */
1335 ret = devm_request_irq(pctrl->dev, irq, intel_gpio_irq,
1336 IRQF_SHARED | IRQF_NO_THREAD,
1337 dev_name(pctrl->dev), pctrl);
1338 if (ret) {
1339 dev_err(pctrl->dev, "failed to request interrupt\n");
1340 return ret;
1341 }
1342
1343 girq = &pctrl->chip.irq;
1344 girq->chip = &pctrl->irqchip;
1345 /* This will let us handle the IRQ in the driver */
1346 girq->parent_handler = NULL;
1347 girq->num_parents = 0;
1348 girq->default_type = IRQ_TYPE_NONE;
1349 girq->handler = handle_bad_irq;
1350 girq->init_hw = intel_gpio_irq_init_hw;
1351
1352 ret = devm_gpiochip_add_data(pctrl->dev, &pctrl->chip, pctrl);
1353 if (ret) {
1354 dev_err(pctrl->dev, "failed to register gpiochip\n");
1355 return ret;
1356 }
1357
1358 return 0;
1359}
1360
1361static int intel_pinctrl_add_padgroups_by_gpps(struct intel_pinctrl *pctrl,
1362 struct intel_community *community)
1363{
1364 struct intel_padgroup *gpps;
1365 unsigned int padown_num = 0;
1366 size_t i, ngpps = community->ngpps;
1367
1368 gpps = devm_kcalloc(pctrl->dev, ngpps, sizeof(*gpps), GFP_KERNEL);
1369 if (!gpps)
1370 return -ENOMEM;
1371
1372 for (i = 0; i < ngpps; i++) {
1373 gpps[i] = community->gpps[i];
1374
1375 if (gpps[i].size > 32)
1376 return -EINVAL;
1377
1378 /* Special treatment for GPIO base */
1379 switch (gpps[i].gpio_base) {
1380 case INTEL_GPIO_BASE_MATCH:
1381 gpps[i].gpio_base = gpps[i].base;
1382 break;
1383 case INTEL_GPIO_BASE_ZERO:
1384 gpps[i].gpio_base = 0;
1385 break;
1386 case INTEL_GPIO_BASE_NOMAP:
1387 break;
1388 default:
1389 break;
1390 }
1391
1392 gpps[i].padown_num = padown_num;
1393 padown_num += DIV_ROUND_UP(gpps[i].size * 4, 32);
1394 }
1395
1396 community->gpps = gpps;
1397
1398 return 0;
1399}
1400
1401static int intel_pinctrl_add_padgroups_by_size(struct intel_pinctrl *pctrl,
1402 struct intel_community *community)
1403{
1404 struct intel_padgroup *gpps;
1405 unsigned int npins = community->npins;
1406 unsigned int padown_num = 0;
1407 size_t i, ngpps = DIV_ROUND_UP(npins, community->gpp_size);
1408
1409 if (community->gpp_size > 32)
1410 return -EINVAL;
1411
1412 gpps = devm_kcalloc(pctrl->dev, ngpps, sizeof(*gpps), GFP_KERNEL);
1413 if (!gpps)
1414 return -ENOMEM;
1415
1416 for (i = 0; i < ngpps; i++) {
1417 unsigned int gpp_size = community->gpp_size;
1418
1419 gpps[i].reg_num = i;
1420 gpps[i].base = community->pin_base + i * gpp_size;
1421 gpps[i].size = min(gpp_size, npins);
1422 npins -= gpps[i].size;
1423
1424 gpps[i].gpio_base = gpps[i].base;
1425 gpps[i].padown_num = padown_num;
1426
1427 /*
1428 * In older hardware the number of padown registers per
1429 * group is fixed regardless of the group size.
1430 */
1431 if (community->gpp_num_padown_regs)
1432 padown_num += community->gpp_num_padown_regs;
1433 else
1434 padown_num += DIV_ROUND_UP(gpps[i].size * 4, 32);
1435 }
1436
1437 community->ngpps = ngpps;
1438 community->gpps = gpps;
1439
1440 return 0;
1441}
1442
1443static int intel_pinctrl_pm_init(struct intel_pinctrl *pctrl)
1444{
1445#ifdef CONFIG_PM_SLEEP
1446 const struct intel_pinctrl_soc_data *soc = pctrl->soc;
1447 struct intel_community_context *communities;
1448 struct intel_pad_context *pads;
1449 int i;
1450
1451 pads = devm_kcalloc(pctrl->dev, soc->npins, sizeof(*pads), GFP_KERNEL);
1452 if (!pads)
1453 return -ENOMEM;
1454
1455 communities = devm_kcalloc(pctrl->dev, pctrl->ncommunities,
1456 sizeof(*communities), GFP_KERNEL);
1457 if (!communities)
1458 return -ENOMEM;
1459
1460
1461 for (i = 0; i < pctrl->ncommunities; i++) {
1462 struct intel_community *community = &pctrl->communities[i];
1463 u32 *intmask, *hostown;
1464
1465 intmask = devm_kcalloc(pctrl->dev, community->ngpps,
1466 sizeof(*intmask), GFP_KERNEL);
1467 if (!intmask)
1468 return -ENOMEM;
1469
1470 communities[i].intmask = intmask;
1471
1472 hostown = devm_kcalloc(pctrl->dev, community->ngpps,
1473 sizeof(*hostown), GFP_KERNEL);
1474 if (!hostown)
1475 return -ENOMEM;
1476
1477 communities[i].hostown = hostown;
1478 }
1479
1480 pctrl->context.pads = pads;
1481 pctrl->context.communities = communities;
1482#endif
1483
1484 return 0;
1485}
1486
1487static int intel_pinctrl_probe(struct platform_device *pdev,
1488 const struct intel_pinctrl_soc_data *soc_data)
1489{
1490 struct intel_pinctrl *pctrl;
1491 int i, ret, irq;
1492
1493 pctrl = devm_kzalloc(&pdev->dev, sizeof(*pctrl), GFP_KERNEL);
1494 if (!pctrl)
1495 return -ENOMEM;
1496
1497 pctrl->dev = &pdev->dev;
1498 pctrl->soc = soc_data;
1499 raw_spin_lock_init(&pctrl->lock);
1500
1501 /*
1502 * Make a copy of the communities which we can use to hold pointers
1503 * to the registers.
1504 */
1505 pctrl->ncommunities = pctrl->soc->ncommunities;
1506 pctrl->communities = devm_kcalloc(&pdev->dev, pctrl->ncommunities,
1507 sizeof(*pctrl->communities), GFP_KERNEL);
1508 if (!pctrl->communities)
1509 return -ENOMEM;
1510
1511 for (i = 0; i < pctrl->ncommunities; i++) {
1512 struct intel_community *community = &pctrl->communities[i];
1513 void __iomem *regs;
1514 u32 offset;
1515 u32 value;
1516
1517 *community = pctrl->soc->communities[i];
1518
1519 regs = devm_platform_ioremap_resource(pdev, community->barno);
1520 if (IS_ERR(regs))
1521 return PTR_ERR(regs);
1522
1523 /*
1524 * Determine community features based on the revision.
1525 * A value of all ones means the device is not present.
1526 */
1527 value = readl(regs + REVID);
1528 if (value == ~0u)
1529 return -ENODEV;
1530 if (((value & REVID_MASK) >> REVID_SHIFT) >= 0x94) {
1531 community->features |= PINCTRL_FEATURE_DEBOUNCE;
1532 community->features |= PINCTRL_FEATURE_1K_PD;
1533 }
1534
1535 /* Determine community features based on the capabilities */
1536 offset = CAPLIST;
1537 do {
1538 value = readl(regs + offset);
1539 switch ((value & CAPLIST_ID_MASK) >> CAPLIST_ID_SHIFT) {
1540 case CAPLIST_ID_GPIO_HW_INFO:
1541 community->features |= PINCTRL_FEATURE_GPIO_HW_INFO;
1542 break;
1543 case CAPLIST_ID_PWM:
1544 community->features |= PINCTRL_FEATURE_PWM;
1545 break;
1546 case CAPLIST_ID_BLINK:
1547 community->features |= PINCTRL_FEATURE_BLINK;
1548 break;
1549 case CAPLIST_ID_EXP:
1550 community->features |= PINCTRL_FEATURE_EXP;
1551 break;
1552 default:
1553 break;
1554 }
1555 offset = (value & CAPLIST_NEXT_MASK) >> CAPLIST_NEXT_SHIFT;
1556 } while (offset);
1557
1558 dev_dbg(&pdev->dev, "Community%d features: %#08x\n", i, community->features);
1559
1560 /* Read offset of the pad configuration registers */
1561 offset = readl(regs + PADBAR);
1562
1563 community->regs = regs;
1564 community->pad_regs = regs + offset;
1565
1566 if (community->gpps)
1567 ret = intel_pinctrl_add_padgroups_by_gpps(pctrl, community);
1568 else
1569 ret = intel_pinctrl_add_padgroups_by_size(pctrl, community);
1570 if (ret)
1571 return ret;
1572 }
1573
1574 irq = platform_get_irq(pdev, 0);
1575 if (irq < 0)
1576 return irq;
1577
1578 ret = intel_pinctrl_pm_init(pctrl);
1579 if (ret)
1580 return ret;
1581
1582 pctrl->pctldesc = intel_pinctrl_desc;
1583 pctrl->pctldesc.name = dev_name(&pdev->dev);
1584 pctrl->pctldesc.pins = pctrl->soc->pins;
1585 pctrl->pctldesc.npins = pctrl->soc->npins;
1586
1587 pctrl->pctldev = devm_pinctrl_register(&pdev->dev, &pctrl->pctldesc,
1588 pctrl);
1589 if (IS_ERR(pctrl->pctldev)) {
1590 dev_err(&pdev->dev, "failed to register pinctrl driver\n");
1591 return PTR_ERR(pctrl->pctldev);
1592 }
1593
1594 ret = intel_gpio_probe(pctrl, irq);
1595 if (ret)
1596 return ret;
1597
1598 platform_set_drvdata(pdev, pctrl);
1599
1600 return 0;
1601}
1602
1603int intel_pinctrl_probe_by_hid(struct platform_device *pdev)
1604{
1605 const struct intel_pinctrl_soc_data *data;
1606
1607 data = device_get_match_data(&pdev->dev);
1608 if (!data)
1609 return -ENODATA;
1610
1611 return intel_pinctrl_probe(pdev, data);
1612}
1613EXPORT_SYMBOL_GPL(intel_pinctrl_probe_by_hid);
1614
1615int intel_pinctrl_probe_by_uid(struct platform_device *pdev)
1616{
1617 const struct intel_pinctrl_soc_data *data;
1618
1619 data = intel_pinctrl_get_soc_data(pdev);
1620 if (IS_ERR(data))
1621 return PTR_ERR(data);
1622
1623 return intel_pinctrl_probe(pdev, data);
1624}
1625EXPORT_SYMBOL_GPL(intel_pinctrl_probe_by_uid);
1626
1627const struct intel_pinctrl_soc_data *intel_pinctrl_get_soc_data(struct platform_device *pdev)
1628{
1629 const struct intel_pinctrl_soc_data *data = NULL;
1630 const struct intel_pinctrl_soc_data **table;
1631 struct acpi_device *adev;
1632 unsigned int i;
1633
1634 adev = ACPI_COMPANION(&pdev->dev);
1635 if (adev) {
1636 const void *match = device_get_match_data(&pdev->dev);
1637
1638 table = (const struct intel_pinctrl_soc_data **)match;
1639 for (i = 0; table[i]; i++) {
1640 if (!strcmp(adev->pnp.unique_id, table[i]->uid)) {
1641 data = table[i];
1642 break;
1643 }
1644 }
1645 } else {
1646 const struct platform_device_id *id;
1647
1648 id = platform_get_device_id(pdev);
1649 if (!id)
1650 return ERR_PTR(-ENODEV);
1651
1652 table = (const struct intel_pinctrl_soc_data **)id->driver_data;
1653 data = table[pdev->id];
1654 }
1655
1656 return data ?: ERR_PTR(-ENODATA);
1657}
1658EXPORT_SYMBOL_GPL(intel_pinctrl_get_soc_data);
1659
1660#ifdef CONFIG_PM_SLEEP
1661static bool intel_pinctrl_should_save(struct intel_pinctrl *pctrl, unsigned int pin)
1662{
1663 const struct pin_desc *pd = pin_desc_get(pctrl->pctldev, pin);
1664
1665 if (!pd || !intel_pad_usable(pctrl, pin))
1666 return false;
1667
1668 /*
1669 * Only restore the pin if it is actually in use by the kernel (or
1670 * by userspace). It is possible that some pins are used by the
1671 * BIOS during resume and those are not always locked down so leave
1672 * them alone.
1673 */
1674 if (pd->mux_owner || pd->gpio_owner ||
1675 gpiochip_line_is_irq(&pctrl->chip, intel_pin_to_gpio(pctrl, pin)))
1676 return true;
1677
1678 return false;
1679}
1680
1681int intel_pinctrl_suspend_noirq(struct device *dev)
1682{
1683 struct intel_pinctrl *pctrl = dev_get_drvdata(dev);
1684 struct intel_community_context *communities;
1685 struct intel_pad_context *pads;
1686 int i;
1687
1688 pads = pctrl->context.pads;
1689 for (i = 0; i < pctrl->soc->npins; i++) {
1690 const struct pinctrl_pin_desc *desc = &pctrl->soc->pins[i];
1691 void __iomem *padcfg;
1692 u32 val;
1693
1694 if (!intel_pinctrl_should_save(pctrl, desc->number))
1695 continue;
1696
1697 val = readl(intel_get_padcfg(pctrl, desc->number, PADCFG0));
1698 pads[i].padcfg0 = val & ~PADCFG0_GPIORXSTATE;
1699 val = readl(intel_get_padcfg(pctrl, desc->number, PADCFG1));
1700 pads[i].padcfg1 = val;
1701
1702 padcfg = intel_get_padcfg(pctrl, desc->number, PADCFG2);
1703 if (padcfg)
1704 pads[i].padcfg2 = readl(padcfg);
1705 }
1706
1707 communities = pctrl->context.communities;
1708 for (i = 0; i < pctrl->ncommunities; i++) {
1709 struct intel_community *community = &pctrl->communities[i];
1710 void __iomem *base;
1711 unsigned int gpp;
1712
1713 base = community->regs + community->ie_offset;
1714 for (gpp = 0; gpp < community->ngpps; gpp++)
1715 communities[i].intmask[gpp] = readl(base + gpp * 4);
1716
1717 base = community->regs + community->hostown_offset;
1718 for (gpp = 0; gpp < community->ngpps; gpp++)
1719 communities[i].hostown[gpp] = readl(base + gpp * 4);
1720 }
1721
1722 return 0;
1723}
1724EXPORT_SYMBOL_GPL(intel_pinctrl_suspend_noirq);
1725
1726static bool intel_gpio_update_reg(void __iomem *reg, u32 mask, u32 value)
1727{
1728 u32 curr, updated;
1729
1730 curr = readl(reg);
1731
1732 updated = (curr & ~mask) | (value & mask);
1733 if (curr == updated)
1734 return false;
1735
1736 writel(updated, reg);
1737 return true;
1738}
1739
1740static void intel_restore_hostown(struct intel_pinctrl *pctrl, unsigned int c,
1741 void __iomem *base, unsigned int gpp, u32 saved)
1742{
1743 const struct intel_community *community = &pctrl->communities[c];
1744 const struct intel_padgroup *padgrp = &community->gpps[gpp];
1745 struct device *dev = pctrl->dev;
1746 const char *dummy;
1747 u32 requested = 0;
1748 unsigned int i;
1749
1750 if (padgrp->gpio_base == INTEL_GPIO_BASE_NOMAP)
1751 return;
1752
1753 for_each_requested_gpio_in_range(&pctrl->chip, i, padgrp->gpio_base, padgrp->size, dummy)
1754 requested |= BIT(i);
1755
1756 if (!intel_gpio_update_reg(base + gpp * 4, requested, saved))
1757 return;
1758
1759 dev_dbg(dev, "restored hostown %u/%u %#08x\n", c, gpp, readl(base + gpp * 4));
1760}
1761
1762static void intel_restore_intmask(struct intel_pinctrl *pctrl, unsigned int c,
1763 void __iomem *base, unsigned int gpp, u32 saved)
1764{
1765 struct device *dev = pctrl->dev;
1766
1767 if (!intel_gpio_update_reg(base + gpp * 4, ~0U, saved))
1768 return;
1769
1770 dev_dbg(dev, "restored mask %u/%u %#08x\n", c, gpp, readl(base + gpp * 4));
1771}
1772
1773static void intel_restore_padcfg(struct intel_pinctrl *pctrl, unsigned int pin,
1774 unsigned int reg, u32 saved)
1775{
1776 u32 mask = (reg == PADCFG0) ? PADCFG0_GPIORXSTATE : 0;
1777 unsigned int n = reg / sizeof(u32);
1778 struct device *dev = pctrl->dev;
1779 void __iomem *padcfg;
1780
1781 padcfg = intel_get_padcfg(pctrl, pin, reg);
1782 if (!padcfg)
1783 return;
1784
1785 if (!intel_gpio_update_reg(padcfg, ~mask, saved))
1786 return;
1787
1788 dev_dbg(dev, "restored pin %u padcfg%u %#08x\n", pin, n, readl(padcfg));
1789}
1790
1791int intel_pinctrl_resume_noirq(struct device *dev)
1792{
1793 struct intel_pinctrl *pctrl = dev_get_drvdata(dev);
1794 const struct intel_community_context *communities;
1795 const struct intel_pad_context *pads;
1796 int i;
1797
1798 /* Mask all interrupts */
1799 intel_gpio_irq_init(pctrl);
1800
1801 pads = pctrl->context.pads;
1802 for (i = 0; i < pctrl->soc->npins; i++) {
1803 const struct pinctrl_pin_desc *desc = &pctrl->soc->pins[i];
1804
1805 if (!intel_pinctrl_should_save(pctrl, desc->number))
1806 continue;
1807
1808 intel_restore_padcfg(pctrl, desc->number, PADCFG0, pads[i].padcfg0);
1809 intel_restore_padcfg(pctrl, desc->number, PADCFG1, pads[i].padcfg1);
1810 intel_restore_padcfg(pctrl, desc->number, PADCFG2, pads[i].padcfg2);
1811 }
1812
1813 communities = pctrl->context.communities;
1814 for (i = 0; i < pctrl->ncommunities; i++) {
1815 struct intel_community *community = &pctrl->communities[i];
1816 void __iomem *base;
1817 unsigned int gpp;
1818
1819 base = community->regs + community->ie_offset;
1820 for (gpp = 0; gpp < community->ngpps; gpp++)
1821 intel_restore_intmask(pctrl, i, base, gpp, communities[i].intmask[gpp]);
1822
1823 base = community->regs + community->hostown_offset;
1824 for (gpp = 0; gpp < community->ngpps; gpp++)
1825 intel_restore_hostown(pctrl, i, base, gpp, communities[i].hostown[gpp]);
1826 }
1827
1828 return 0;
1829}
1830EXPORT_SYMBOL_GPL(intel_pinctrl_resume_noirq);
1831#endif
1832
1833MODULE_AUTHOR("Mathias Nyman <mathias.nyman@linux.intel.com>");
1834MODULE_AUTHOR("Mika Westerberg <mika.westerberg@linux.intel.com>");
1835MODULE_DESCRIPTION("Intel pinctrl/GPIO core driver");
1836MODULE_LICENSE("GPL v2");