1 /*
2 * Generic device tree based pinctrl driver for one register per pin
3 * type pinmux controllers
4 *
5 * Copyright (C) 2012 Texas Instruments, Inc.
6 *
7 * This file is licensed under the terms of the GNU General Public
8 * License version 2. This program is licensed "as is" without any
9 * warranty of any kind, whether express or implied.
10 */
11
12 #include <linux/init.h>
13 #include <linux/module.h>
14 #include <linux/io.h>
15 #include <linux/platform_device.h>
16 #include <linux/slab.h>
17 #include <linux/err.h>
18 #include <linux/list.h>
19 #include <linux/interrupt.h>
20 #include <linux/irqchip/chained_irq.h>
21 #include <linux/of.h>
22 #include <linux/of_irq.h>
23 #include <linux/seq_file.h>
24
25 #include <linux/pinctrl/pinconf-generic.h>
26 #include <linux/pinctrl/pinconf.h>
27 #include <linux/pinctrl/pinctrl.h>
28 #include <linux/pinctrl/pinmux.h>
29
30 #include <linux/platform_data/pinctrl-single.h>
31
32 #include "core.h"
33 #include "devicetree.h"
34 #include "pinconf.h"
35 #include "pinmux.h"
36
37 #define DRIVER_NAME "pinctrl-single"
38 #define PCS_OFF_DISABLED ~0U
39
40 /**
41 * struct pcs_func_vals - mux function register offset and value pair
42 * @reg: register virtual address
43 * @val: register value
44 * @mask: mask
45 */
46 struct pcs_func_vals {
47 void __iomem *reg;
48 unsigned val;
49 unsigned mask;
50 };
51
52 /**
53 * struct pcs_conf_vals - pinconf parameter, pinconf register offset
54 * and value, enable, disable, mask
55 * @param: config parameter
56 * @val: user input bits in the pinconf register
57 * @enable: enable bits in the pinconf register
58 * @disable: disable bits in the pinconf register
59 * @mask: mask bits in the register value
60 */
61 struct pcs_conf_vals {
62 enum pin_config_param param;
63 unsigned val;
64 unsigned enable;
65 unsigned disable;
66 unsigned mask;
67 };
68
69 /**
70 * struct pcs_conf_type - pinconf property name, pinconf param pair
71 * @name: property name in DTS file
72 * @param: config parameter
73 */
74 struct pcs_conf_type {
75 const char *name;
76 enum pin_config_param param;
77 };
78
79 /**
80 * struct pcs_function - pinctrl function
81 * @name: pinctrl function name
82 * @vals: register and vals array
83 * @nvals: number of entries in vals array
84 * @conf: array of pin configurations
85 * @nconfs: number of pin configurations available
86 * @node: list node
87 */
88 struct pcs_function {
89 const char *name;
90 struct pcs_func_vals *vals;
91 unsigned nvals;
92 struct pcs_conf_vals *conf;
93 int nconfs;
94 struct list_head node;
95 };
96
97 /**
98 * struct pcs_gpiofunc_range - pin ranges with same mux value of gpio function
99 * @offset: offset base of pins
100 * @npins: number pins with the same mux value of gpio function
101 * @gpiofunc: mux value of gpio function
102 * @node: list node
103 */
104 struct pcs_gpiofunc_range {
105 unsigned offset;
106 unsigned npins;
107 unsigned gpiofunc;
108 struct list_head node;
109 };
110
111 /**
112 * struct pcs_data - wrapper for data needed by pinctrl framework
113 * @pa: pindesc array
114 * @cur: index to current element
115 *
116 * REVISIT: We should be able to drop this eventually by adding
117 * support for registering pins individually in the pinctrl
118 * framework for those drivers that don't need a static array.
119 */
120 struct pcs_data {
121 struct pinctrl_pin_desc *pa;
122 int cur;
123 };
124
125 /**
126 * struct pcs_soc_data - SoC specific settings
127 * @flags: initial SoC specific PCS_FEAT_xxx values
128 * @irq: optional interrupt for the controller
129 * @irq_enable_mask: optional SoC specific interrupt enable mask
130 * @irq_status_mask: optional SoC specific interrupt status mask
131 * @rearm: optional SoC specific wake-up rearm function
132 */
133 struct pcs_soc_data {
134 unsigned flags;
135 int irq;
136 unsigned irq_enable_mask;
137 unsigned irq_status_mask;
138 void (*rearm)(void);
139 };
140
141 /**
142 * struct pcs_device - pinctrl device instance
143 * @res: resources
144 * @base: virtual address of the controller
145 * @saved_vals: saved values for the controller
146 * @size: size of the ioremapped area
147 * @dev: device entry
148 * @np: device tree node
149 * @pctl: pin controller device
150 * @flags: mask of PCS_FEAT_xxx values
151 * @missing_nr_pinctrl_cells: for legacy binding, may go away
152 * @socdata: soc specific data
153 * @lock: spinlock for register access
154 * @mutex: mutex protecting the lists
155 * @width: bits per mux register
156 * @fmask: function register mask
157 * @fshift: function register shift
158 * @foff: value to turn mux off
159 * @fmax: max number of functions in fmask
160 * @bits_per_mux: number of bits per mux
161 * @bits_per_pin: number of bits per pin
162 * @pins: physical pins on the SoC
163 * @gpiofuncs: list of gpio functions
164 * @irqs: list of interrupt registers
165 * @chip: chip container for this instance
166 * @domain: IRQ domain for this instance
167 * @desc: pin controller descriptor
168 * @read: register read function to use
169 * @write: register write function to use
170 */
171 struct pcs_device {
172 struct resource *res;
173 void __iomem *base;
174 void *saved_vals;
175 unsigned size;
176 struct device *dev;
177 struct device_node *np;
178 struct pinctrl_dev *pctl;
179 unsigned flags;
180 #define PCS_CONTEXT_LOSS_OFF (1 << 3)
181 #define PCS_QUIRK_SHARED_IRQ (1 << 2)
182 #define PCS_FEAT_IRQ (1 << 1)
183 #define PCS_FEAT_PINCONF (1 << 0)
184 struct property *missing_nr_pinctrl_cells;
185 struct pcs_soc_data socdata;
186 raw_spinlock_t lock;
187 struct mutex mutex;
188 unsigned width;
189 unsigned fmask;
190 unsigned fshift;
191 unsigned foff;
192 unsigned fmax;
193 bool bits_per_mux;
194 unsigned bits_per_pin;
195 struct pcs_data pins;
196 struct list_head gpiofuncs;
197 struct list_head irqs;
198 struct irq_chip chip;
199 struct irq_domain *domain;
200 struct pinctrl_desc desc;
201 unsigned (*read)(void __iomem *reg);
202 void (*write)(unsigned val, void __iomem *reg);
203 };
204
205 #define PCS_QUIRK_HAS_SHARED_IRQ (pcs->flags & PCS_QUIRK_SHARED_IRQ)
206 #define PCS_HAS_IRQ (pcs->flags & PCS_FEAT_IRQ)
207 #define PCS_HAS_PINCONF (pcs->flags & PCS_FEAT_PINCONF)
208
209 static int pcs_pinconf_get(struct pinctrl_dev *pctldev, unsigned pin,
210 unsigned long *config);
211 static int pcs_pinconf_set(struct pinctrl_dev *pctldev, unsigned pin,
212 unsigned long *configs, unsigned num_configs);
213
214 static enum pin_config_param pcs_bias[] = {
215 PIN_CONFIG_BIAS_PULL_DOWN,
216 PIN_CONFIG_BIAS_PULL_UP,
217 };
218
219 /*
220 * This lock class tells lockdep that irqchip core that this single
221 * pinctrl can be in a different category than its parents, so it won't
222 * report false recursion.
223 */
224 static struct lock_class_key pcs_lock_class;
225
226 /* Class for the IRQ request mutex */
227 static struct lock_class_key pcs_request_class;
228
229 /*
230 * REVISIT: Reads and writes could eventually use regmap or something
231 * generic. But at least on omaps, some mux registers are performance
232 * critical as they may need to be remuxed every time before and after
233 * idle. Adding tests for register access width for every read and
234 * write like regmap is doing is not desired, and caching the registers
235 * does not help in this case.
236 */
237
pcs_readb(void __iomem * reg)238 static unsigned int pcs_readb(void __iomem *reg)
239 {
240 return readb(reg);
241 }
242
pcs_readw(void __iomem * reg)243 static unsigned int pcs_readw(void __iomem *reg)
244 {
245 return readw(reg);
246 }
247
pcs_readl(void __iomem * reg)248 static unsigned int pcs_readl(void __iomem *reg)
249 {
250 return readl(reg);
251 }
252
pcs_writeb(unsigned int val,void __iomem * reg)253 static void pcs_writeb(unsigned int val, void __iomem *reg)
254 {
255 writeb(val, reg);
256 }
257
pcs_writew(unsigned int val,void __iomem * reg)258 static void pcs_writew(unsigned int val, void __iomem *reg)
259 {
260 writew(val, reg);
261 }
262
pcs_writel(unsigned int val,void __iomem * reg)263 static void pcs_writel(unsigned int val, void __iomem *reg)
264 {
265 writel(val, reg);
266 }
267
pcs_pin_reg_offset_get(struct pcs_device * pcs,unsigned int pin)268 static unsigned int pcs_pin_reg_offset_get(struct pcs_device *pcs,
269 unsigned int pin)
270 {
271 unsigned int mux_bytes = pcs->width / BITS_PER_BYTE;
272
273 if (pcs->bits_per_mux) {
274 unsigned int pin_offset_bytes;
275
276 pin_offset_bytes = (pcs->bits_per_pin * pin) / BITS_PER_BYTE;
277 return (pin_offset_bytes / mux_bytes) * mux_bytes;
278 }
279
280 return pin * mux_bytes;
281 }
282
pcs_pin_shift_reg_get(struct pcs_device * pcs,unsigned int pin)283 static unsigned int pcs_pin_shift_reg_get(struct pcs_device *pcs,
284 unsigned int pin)
285 {
286 return (pin % (pcs->width / pcs->bits_per_pin)) * pcs->bits_per_pin;
287 }
288
pcs_pin_dbg_show(struct pinctrl_dev * pctldev,struct seq_file * s,unsigned pin)289 static void pcs_pin_dbg_show(struct pinctrl_dev *pctldev,
290 struct seq_file *s,
291 unsigned pin)
292 {
293 struct pcs_device *pcs;
294 unsigned int val;
295 unsigned long offset;
296 size_t pa;
297
298 pcs = pinctrl_dev_get_drvdata(pctldev);
299
300 offset = pcs_pin_reg_offset_get(pcs, pin);
301 val = pcs->read(pcs->base + offset);
302
303 if (pcs->bits_per_mux)
304 val &= pcs->fmask << pcs_pin_shift_reg_get(pcs, pin);
305
306 pa = pcs->res->start + offset;
307
308 seq_printf(s, "%zx %08x %s ", pa, val, DRIVER_NAME);
309 }
310
pcs_dt_free_map(struct pinctrl_dev * pctldev,struct pinctrl_map * map,unsigned num_maps)311 static void pcs_dt_free_map(struct pinctrl_dev *pctldev,
312 struct pinctrl_map *map, unsigned num_maps)
313 {
314 struct pcs_device *pcs;
315
316 pcs = pinctrl_dev_get_drvdata(pctldev);
317 devm_kfree(pcs->dev, map);
318 }
319
320 static int pcs_dt_node_to_map(struct pinctrl_dev *pctldev,
321 struct device_node *np_config,
322 struct pinctrl_map **map, unsigned *num_maps);
323
324 static const struct pinctrl_ops pcs_pinctrl_ops = {
325 .get_groups_count = pinctrl_generic_get_group_count,
326 .get_group_name = pinctrl_generic_get_group_name,
327 .get_group_pins = pinctrl_generic_get_group_pins,
328 .pin_dbg_show = pcs_pin_dbg_show,
329 .dt_node_to_map = pcs_dt_node_to_map,
330 .dt_free_map = pcs_dt_free_map,
331 };
332
pcs_get_function(struct pinctrl_dev * pctldev,unsigned pin,struct pcs_function ** func)333 static int pcs_get_function(struct pinctrl_dev *pctldev, unsigned pin,
334 struct pcs_function **func)
335 {
336 struct pcs_device *pcs = pinctrl_dev_get_drvdata(pctldev);
337 struct pin_desc *pdesc = pin_desc_get(pctldev, pin);
338 const struct pinctrl_setting_mux *setting;
339 const struct function_desc *function;
340 unsigned fselector;
341
342 /* If pin is not described in DTS & enabled, mux_setting is NULL. */
343 setting = pdesc->mux_setting;
344 if (!setting)
345 return -ENOTSUPP;
346 fselector = setting->func;
347 function = pinmux_generic_get_function(pctldev, fselector);
348 if (!function)
349 return -EINVAL;
350 *func = function->data;
351 if (!(*func)) {
352 dev_err(pcs->dev, "%s could not find function%i\n",
353 __func__, fselector);
354 return -ENOTSUPP;
355 }
356 return 0;
357 }
358
pcs_set_mux(struct pinctrl_dev * pctldev,unsigned fselector,unsigned group)359 static int pcs_set_mux(struct pinctrl_dev *pctldev, unsigned fselector,
360 unsigned group)
361 {
362 struct pcs_device *pcs;
363 const struct function_desc *function;
364 struct pcs_function *func;
365 int i;
366
367 pcs = pinctrl_dev_get_drvdata(pctldev);
368 /* If function mask is null, needn't enable it. */
369 if (!pcs->fmask)
370 return 0;
371 function = pinmux_generic_get_function(pctldev, fselector);
372 if (!function)
373 return -EINVAL;
374 func = function->data;
375 if (!func)
376 return -EINVAL;
377
378 dev_dbg(pcs->dev, "enabling %s function%i\n",
379 func->name, fselector);
380
381 for (i = 0; i < func->nvals; i++) {
382 struct pcs_func_vals *vals;
383 unsigned long flags;
384 unsigned val, mask;
385
386 vals = &func->vals[i];
387 raw_spin_lock_irqsave(&pcs->lock, flags);
388 val = pcs->read(vals->reg);
389
390 if (pcs->bits_per_mux)
391 mask = vals->mask;
392 else
393 mask = pcs->fmask;
394
395 val &= ~mask;
396 val |= (vals->val & mask);
397 pcs->write(val, vals->reg);
398 raw_spin_unlock_irqrestore(&pcs->lock, flags);
399 }
400
401 return 0;
402 }
403
pcs_request_gpio(struct pinctrl_dev * pctldev,struct pinctrl_gpio_range * range,unsigned pin)404 static int pcs_request_gpio(struct pinctrl_dev *pctldev,
405 struct pinctrl_gpio_range *range, unsigned pin)
406 {
407 struct pcs_device *pcs = pinctrl_dev_get_drvdata(pctldev);
408 struct pcs_gpiofunc_range *frange = NULL;
409 struct list_head *pos, *tmp;
410 unsigned data;
411
412 /* If function mask is null, return directly. */
413 if (!pcs->fmask)
414 return -ENOTSUPP;
415
416 list_for_each_safe(pos, tmp, &pcs->gpiofuncs) {
417 u32 offset;
418
419 frange = list_entry(pos, struct pcs_gpiofunc_range, node);
420 if (pin >= frange->offset + frange->npins
421 || pin < frange->offset)
422 continue;
423
424 offset = pcs_pin_reg_offset_get(pcs, pin);
425
426 if (pcs->bits_per_mux) {
427 int pin_shift = pcs_pin_shift_reg_get(pcs, pin);
428
429 data = pcs->read(pcs->base + offset);
430 data &= ~(pcs->fmask << pin_shift);
431 data |= frange->gpiofunc << pin_shift;
432 pcs->write(data, pcs->base + offset);
433 } else {
434 data = pcs->read(pcs->base + offset);
435 data &= ~pcs->fmask;
436 data |= frange->gpiofunc;
437 pcs->write(data, pcs->base + offset);
438 }
439 break;
440 }
441 return 0;
442 }
443
444 static const struct pinmux_ops pcs_pinmux_ops = {
445 .get_functions_count = pinmux_generic_get_function_count,
446 .get_function_name = pinmux_generic_get_function_name,
447 .get_function_groups = pinmux_generic_get_function_groups,
448 .set_mux = pcs_set_mux,
449 .gpio_request_enable = pcs_request_gpio,
450 };
451
452 /* Clear BIAS value */
pcs_pinconf_clear_bias(struct pinctrl_dev * pctldev,unsigned pin)453 static void pcs_pinconf_clear_bias(struct pinctrl_dev *pctldev, unsigned pin)
454 {
455 unsigned long config;
456 int i;
457 for (i = 0; i < ARRAY_SIZE(pcs_bias); i++) {
458 config = pinconf_to_config_packed(pcs_bias[i], 0);
459 pcs_pinconf_set(pctldev, pin, &config, 1);
460 }
461 }
462
463 /*
464 * Check whether PIN_CONFIG_BIAS_DISABLE is valid.
465 * It's depend on that PULL_DOWN & PULL_UP configs are all invalid.
466 */
pcs_pinconf_bias_disable(struct pinctrl_dev * pctldev,unsigned pin)467 static bool pcs_pinconf_bias_disable(struct pinctrl_dev *pctldev, unsigned pin)
468 {
469 unsigned long config;
470 int i;
471
472 for (i = 0; i < ARRAY_SIZE(pcs_bias); i++) {
473 config = pinconf_to_config_packed(pcs_bias[i], 0);
474 if (!pcs_pinconf_get(pctldev, pin, &config))
475 goto out;
476 }
477 return true;
478 out:
479 return false;
480 }
481
pcs_pinconf_get(struct pinctrl_dev * pctldev,unsigned pin,unsigned long * config)482 static int pcs_pinconf_get(struct pinctrl_dev *pctldev,
483 unsigned pin, unsigned long *config)
484 {
485 struct pcs_device *pcs = pinctrl_dev_get_drvdata(pctldev);
486 struct pcs_function *func;
487 enum pin_config_param param;
488 unsigned offset = 0, data = 0, i, j, ret;
489
490 ret = pcs_get_function(pctldev, pin, &func);
491 if (ret)
492 return ret;
493
494 for (i = 0; i < func->nconfs; i++) {
495 param = pinconf_to_config_param(*config);
496 if (param == PIN_CONFIG_BIAS_DISABLE) {
497 if (pcs_pinconf_bias_disable(pctldev, pin)) {
498 *config = 0;
499 return 0;
500 } else {
501 return -ENOTSUPP;
502 }
503 } else if (param != func->conf[i].param) {
504 continue;
505 }
506
507 offset = pin * (pcs->width / BITS_PER_BYTE);
508 data = pcs->read(pcs->base + offset) & func->conf[i].mask;
509 switch (func->conf[i].param) {
510 /* 4 parameters */
511 case PIN_CONFIG_BIAS_PULL_DOWN:
512 case PIN_CONFIG_BIAS_PULL_UP:
513 case PIN_CONFIG_INPUT_SCHMITT_ENABLE:
514 if ((data != func->conf[i].enable) ||
515 (data == func->conf[i].disable))
516 return -ENOTSUPP;
517 *config = 0;
518 break;
519 /* 2 parameters */
520 case PIN_CONFIG_INPUT_SCHMITT:
521 for (j = 0; j < func->nconfs; j++) {
522 switch (func->conf[j].param) {
523 case PIN_CONFIG_INPUT_SCHMITT_ENABLE:
524 if (data != func->conf[j].enable)
525 return -ENOTSUPP;
526 break;
527 default:
528 break;
529 }
530 }
531 *config = data;
532 break;
533 case PIN_CONFIG_DRIVE_STRENGTH:
534 case PIN_CONFIG_SLEW_RATE:
535 case PIN_CONFIG_MODE_LOW_POWER:
536 case PIN_CONFIG_INPUT_ENABLE:
537 default:
538 *config = data;
539 break;
540 }
541 return 0;
542 }
543 return -ENOTSUPP;
544 }
545
pcs_pinconf_set(struct pinctrl_dev * pctldev,unsigned pin,unsigned long * configs,unsigned num_configs)546 static int pcs_pinconf_set(struct pinctrl_dev *pctldev,
547 unsigned pin, unsigned long *configs,
548 unsigned num_configs)
549 {
550 struct pcs_device *pcs = pinctrl_dev_get_drvdata(pctldev);
551 struct pcs_function *func;
552 unsigned offset = 0, shift = 0, i, data, ret;
553 u32 arg;
554 int j;
555 enum pin_config_param param;
556
557 ret = pcs_get_function(pctldev, pin, &func);
558 if (ret)
559 return ret;
560
561 for (j = 0; j < num_configs; j++) {
562 param = pinconf_to_config_param(configs[j]);
563
564 /* BIAS_DISABLE has no entry in the func->conf table */
565 if (param == PIN_CONFIG_BIAS_DISABLE) {
566 /* This just disables all bias entries */
567 pcs_pinconf_clear_bias(pctldev, pin);
568 continue;
569 }
570
571 for (i = 0; i < func->nconfs; i++) {
572 if (param != func->conf[i].param)
573 continue;
574
575 offset = pin * (pcs->width / BITS_PER_BYTE);
576 data = pcs->read(pcs->base + offset);
577 arg = pinconf_to_config_argument(configs[j]);
578 switch (param) {
579 /* 2 parameters */
580 case PIN_CONFIG_INPUT_SCHMITT:
581 case PIN_CONFIG_DRIVE_STRENGTH:
582 case PIN_CONFIG_SLEW_RATE:
583 case PIN_CONFIG_MODE_LOW_POWER:
584 case PIN_CONFIG_INPUT_ENABLE:
585 shift = ffs(func->conf[i].mask) - 1;
586 data &= ~func->conf[i].mask;
587 data |= (arg << shift) & func->conf[i].mask;
588 break;
589 /* 4 parameters */
590 case PIN_CONFIG_BIAS_PULL_DOWN:
591 case PIN_CONFIG_BIAS_PULL_UP:
592 if (arg) {
593 pcs_pinconf_clear_bias(pctldev, pin);
594 data = pcs->read(pcs->base + offset);
595 }
596 fallthrough;
597 case PIN_CONFIG_INPUT_SCHMITT_ENABLE:
598 data &= ~func->conf[i].mask;
599 if (arg)
600 data |= func->conf[i].enable;
601 else
602 data |= func->conf[i].disable;
603 break;
604 default:
605 return -ENOTSUPP;
606 }
607 pcs->write(data, pcs->base + offset);
608
609 break;
610 }
611 if (i >= func->nconfs)
612 return -ENOTSUPP;
613 } /* for each config */
614
615 return 0;
616 }
617
pcs_pinconf_group_get(struct pinctrl_dev * pctldev,unsigned group,unsigned long * config)618 static int pcs_pinconf_group_get(struct pinctrl_dev *pctldev,
619 unsigned group, unsigned long *config)
620 {
621 const unsigned *pins;
622 unsigned npins, old = 0;
623 int i, ret;
624
625 ret = pinctrl_generic_get_group_pins(pctldev, group, &pins, &npins);
626 if (ret)
627 return ret;
628 for (i = 0; i < npins; i++) {
629 if (pcs_pinconf_get(pctldev, pins[i], config))
630 return -ENOTSUPP;
631 /* configs do not match between two pins */
632 if (i && (old != *config))
633 return -ENOTSUPP;
634 old = *config;
635 }
636 return 0;
637 }
638
pcs_pinconf_group_set(struct pinctrl_dev * pctldev,unsigned group,unsigned long * configs,unsigned num_configs)639 static int pcs_pinconf_group_set(struct pinctrl_dev *pctldev,
640 unsigned group, unsigned long *configs,
641 unsigned num_configs)
642 {
643 const unsigned *pins;
644 unsigned npins;
645 int i, ret;
646
647 ret = pinctrl_generic_get_group_pins(pctldev, group, &pins, &npins);
648 if (ret)
649 return ret;
650 for (i = 0; i < npins; i++) {
651 if (pcs_pinconf_set(pctldev, pins[i], configs, num_configs))
652 return -ENOTSUPP;
653 }
654 return 0;
655 }
656
pcs_pinconf_dbg_show(struct pinctrl_dev * pctldev,struct seq_file * s,unsigned pin)657 static void pcs_pinconf_dbg_show(struct pinctrl_dev *pctldev,
658 struct seq_file *s, unsigned pin)
659 {
660 }
661
pcs_pinconf_group_dbg_show(struct pinctrl_dev * pctldev,struct seq_file * s,unsigned selector)662 static void pcs_pinconf_group_dbg_show(struct pinctrl_dev *pctldev,
663 struct seq_file *s, unsigned selector)
664 {
665 }
666
pcs_pinconf_config_dbg_show(struct pinctrl_dev * pctldev,struct seq_file * s,unsigned long config)667 static void pcs_pinconf_config_dbg_show(struct pinctrl_dev *pctldev,
668 struct seq_file *s,
669 unsigned long config)
670 {
671 pinconf_generic_dump_config(pctldev, s, config);
672 }
673
674 static const struct pinconf_ops pcs_pinconf_ops = {
675 .pin_config_get = pcs_pinconf_get,
676 .pin_config_set = pcs_pinconf_set,
677 .pin_config_group_get = pcs_pinconf_group_get,
678 .pin_config_group_set = pcs_pinconf_group_set,
679 .pin_config_dbg_show = pcs_pinconf_dbg_show,
680 .pin_config_group_dbg_show = pcs_pinconf_group_dbg_show,
681 .pin_config_config_dbg_show = pcs_pinconf_config_dbg_show,
682 .is_generic = true,
683 };
684
685 /**
686 * pcs_add_pin() - add a pin to the static per controller pin array
687 * @pcs: pcs driver instance
688 * @offset: register offset from base
689 */
pcs_add_pin(struct pcs_device * pcs,unsigned int offset)690 static int pcs_add_pin(struct pcs_device *pcs, unsigned int offset)
691 {
692 struct pcs_soc_data *pcs_soc = &pcs->socdata;
693 struct pinctrl_pin_desc *pin;
694 int i;
695
696 i = pcs->pins.cur;
697 if (i >= pcs->desc.npins) {
698 dev_err(pcs->dev, "too many pins, max %i\n",
699 pcs->desc.npins);
700 return -ENOMEM;
701 }
702
703 if (pcs_soc->irq_enable_mask) {
704 unsigned val;
705
706 val = pcs->read(pcs->base + offset);
707 if (val & pcs_soc->irq_enable_mask) {
708 dev_dbg(pcs->dev, "irq enabled at boot for pin at %lx (%x), clearing\n",
709 (unsigned long)pcs->res->start + offset, val);
710 val &= ~pcs_soc->irq_enable_mask;
711 pcs->write(val, pcs->base + offset);
712 }
713 }
714
715 pin = &pcs->pins.pa[i];
716 pin->number = i;
717 pcs->pins.cur++;
718
719 return i;
720 }
721
722 /**
723 * pcs_allocate_pin_table() - adds all the pins for the pinctrl driver
724 * @pcs: pcs driver instance
725 *
726 * In case of errors, resources are freed in pcs_free_resources.
727 *
728 * If your hardware needs holes in the address space, then just set
729 * up multiple driver instances.
730 */
pcs_allocate_pin_table(struct pcs_device * pcs)731 static int pcs_allocate_pin_table(struct pcs_device *pcs)
732 {
733 int mux_bytes, nr_pins, i;
734
735 mux_bytes = pcs->width / BITS_PER_BYTE;
736
737 if (pcs->bits_per_mux && pcs->fmask) {
738 pcs->bits_per_pin = fls(pcs->fmask);
739 nr_pins = (pcs->size * BITS_PER_BYTE) / pcs->bits_per_pin;
740 } else {
741 nr_pins = pcs->size / mux_bytes;
742 }
743
744 dev_dbg(pcs->dev, "allocating %i pins\n", nr_pins);
745 pcs->pins.pa = devm_kcalloc(pcs->dev,
746 nr_pins, sizeof(*pcs->pins.pa),
747 GFP_KERNEL);
748 if (!pcs->pins.pa)
749 return -ENOMEM;
750
751 pcs->desc.pins = pcs->pins.pa;
752 pcs->desc.npins = nr_pins;
753
754 for (i = 0; i < pcs->desc.npins; i++) {
755 unsigned offset;
756 int res;
757
758 offset = pcs_pin_reg_offset_get(pcs, i);
759 res = pcs_add_pin(pcs, offset);
760 if (res < 0) {
761 dev_err(pcs->dev, "error adding pins: %i\n", res);
762 return res;
763 }
764 }
765
766 return 0;
767 }
768
769 /**
770 * pcs_add_function() - adds a new function to the function list
771 * @pcs: pcs driver instance
772 * @fcn: new function allocated
773 * @name: name of the function
774 * @vals: array of mux register value pairs used by the function
775 * @nvals: number of mux register value pairs
776 * @pgnames: array of pingroup names for the function
777 * @npgnames: number of pingroup names
778 *
779 * Caller must take care of locking.
780 */
pcs_add_function(struct pcs_device * pcs,struct pcs_function ** fcn,const char * name,struct pcs_func_vals * vals,unsigned int nvals,const char ** pgnames,unsigned int npgnames)781 static int pcs_add_function(struct pcs_device *pcs,
782 struct pcs_function **fcn,
783 const char *name,
784 struct pcs_func_vals *vals,
785 unsigned int nvals,
786 const char **pgnames,
787 unsigned int npgnames)
788 {
789 struct pcs_function *function;
790 int selector;
791
792 function = devm_kzalloc(pcs->dev, sizeof(*function), GFP_KERNEL);
793 if (!function)
794 return -ENOMEM;
795
796 function->vals = vals;
797 function->nvals = nvals;
798 function->name = name;
799
800 selector = pinmux_generic_add_function(pcs->pctl, name,
801 pgnames, npgnames,
802 function);
803 if (selector < 0) {
804 devm_kfree(pcs->dev, function);
805 *fcn = NULL;
806 } else {
807 *fcn = function;
808 }
809
810 return selector;
811 }
812
813 /**
814 * pcs_get_pin_by_offset() - get a pin index based on the register offset
815 * @pcs: pcs driver instance
816 * @offset: register offset from the base
817 *
818 * Note that this is OK as long as the pins are in a static array.
819 */
pcs_get_pin_by_offset(struct pcs_device * pcs,unsigned offset)820 static int pcs_get_pin_by_offset(struct pcs_device *pcs, unsigned offset)
821 {
822 unsigned index;
823
824 if (offset >= pcs->size) {
825 dev_err(pcs->dev, "mux offset out of range: 0x%x (0x%x)\n",
826 offset, pcs->size);
827 return -EINVAL;
828 }
829
830 if (pcs->bits_per_mux)
831 index = (offset * BITS_PER_BYTE) / pcs->bits_per_pin;
832 else
833 index = offset / (pcs->width / BITS_PER_BYTE);
834
835 return index;
836 }
837
838 /*
839 * check whether data matches enable bits or disable bits
840 * Return value: 1 for matching enable bits, 0 for matching disable bits,
841 * and negative value for matching failure.
842 */
pcs_config_match(unsigned data,unsigned enable,unsigned disable)843 static int pcs_config_match(unsigned data, unsigned enable, unsigned disable)
844 {
845 int ret = -EINVAL;
846
847 if (data == enable)
848 ret = 1;
849 else if (data == disable)
850 ret = 0;
851 return ret;
852 }
853
add_config(struct pcs_conf_vals ** conf,enum pin_config_param param,unsigned value,unsigned enable,unsigned disable,unsigned mask)854 static void add_config(struct pcs_conf_vals **conf, enum pin_config_param param,
855 unsigned value, unsigned enable, unsigned disable,
856 unsigned mask)
857 {
858 (*conf)->param = param;
859 (*conf)->val = value;
860 (*conf)->enable = enable;
861 (*conf)->disable = disable;
862 (*conf)->mask = mask;
863 (*conf)++;
864 }
865
add_setting(unsigned long ** setting,enum pin_config_param param,unsigned arg)866 static void add_setting(unsigned long **setting, enum pin_config_param param,
867 unsigned arg)
868 {
869 **setting = pinconf_to_config_packed(param, arg);
870 (*setting)++;
871 }
872
873 /* add pinconf setting with 2 parameters */
pcs_add_conf2(struct pcs_device * pcs,struct device_node * np,const char * name,enum pin_config_param param,struct pcs_conf_vals ** conf,unsigned long ** settings)874 static void pcs_add_conf2(struct pcs_device *pcs, struct device_node *np,
875 const char *name, enum pin_config_param param,
876 struct pcs_conf_vals **conf, unsigned long **settings)
877 {
878 unsigned value[2], shift;
879 int ret;
880
881 ret = of_property_read_u32_array(np, name, value, 2);
882 if (ret)
883 return;
884 /* set value & mask */
885 value[0] &= value[1];
886 shift = ffs(value[1]) - 1;
887 /* skip enable & disable */
888 add_config(conf, param, value[0], 0, 0, value[1]);
889 add_setting(settings, param, value[0] >> shift);
890 }
891
892 /* add pinconf setting with 4 parameters */
pcs_add_conf4(struct pcs_device * pcs,struct device_node * np,const char * name,enum pin_config_param param,struct pcs_conf_vals ** conf,unsigned long ** settings)893 static void pcs_add_conf4(struct pcs_device *pcs, struct device_node *np,
894 const char *name, enum pin_config_param param,
895 struct pcs_conf_vals **conf, unsigned long **settings)
896 {
897 unsigned value[4];
898 int ret;
899
900 /* value to set, enable, disable, mask */
901 ret = of_property_read_u32_array(np, name, value, 4);
902 if (ret)
903 return;
904 if (!value[3]) {
905 dev_err(pcs->dev, "mask field of the property can't be 0\n");
906 return;
907 }
908 value[0] &= value[3];
909 value[1] &= value[3];
910 value[2] &= value[3];
911 ret = pcs_config_match(value[0], value[1], value[2]);
912 if (ret < 0)
913 dev_dbg(pcs->dev, "failed to match enable or disable bits\n");
914 add_config(conf, param, value[0], value[1], value[2], value[3]);
915 add_setting(settings, param, ret);
916 }
917
pcs_parse_pinconf(struct pcs_device * pcs,struct device_node * np,struct pcs_function * func,struct pinctrl_map ** map)918 static int pcs_parse_pinconf(struct pcs_device *pcs, struct device_node *np,
919 struct pcs_function *func,
920 struct pinctrl_map **map)
921
922 {
923 struct pinctrl_map *m = *map;
924 int i = 0, nconfs = 0;
925 unsigned long *settings = NULL, *s = NULL;
926 struct pcs_conf_vals *conf = NULL;
927 static const struct pcs_conf_type prop2[] = {
928 { "pinctrl-single,drive-strength", PIN_CONFIG_DRIVE_STRENGTH, },
929 { "pinctrl-single,slew-rate", PIN_CONFIG_SLEW_RATE, },
930 { "pinctrl-single,input-enable", PIN_CONFIG_INPUT_ENABLE, },
931 { "pinctrl-single,input-schmitt", PIN_CONFIG_INPUT_SCHMITT, },
932 { "pinctrl-single,low-power-mode", PIN_CONFIG_MODE_LOW_POWER, },
933 };
934 static const struct pcs_conf_type prop4[] = {
935 { "pinctrl-single,bias-pullup", PIN_CONFIG_BIAS_PULL_UP, },
936 { "pinctrl-single,bias-pulldown", PIN_CONFIG_BIAS_PULL_DOWN, },
937 { "pinctrl-single,input-schmitt-enable",
938 PIN_CONFIG_INPUT_SCHMITT_ENABLE, },
939 };
940
941 /* If pinconf isn't supported, don't parse properties in below. */
942 if (!PCS_HAS_PINCONF)
943 return -ENOTSUPP;
944
945 /* cacluate how much properties are supported in current node */
946 for (i = 0; i < ARRAY_SIZE(prop2); i++) {
947 if (of_property_present(np, prop2[i].name))
948 nconfs++;
949 }
950 for (i = 0; i < ARRAY_SIZE(prop4); i++) {
951 if (of_property_present(np, prop4[i].name))
952 nconfs++;
953 }
954 if (!nconfs)
955 return -ENOTSUPP;
956
957 func->conf = devm_kcalloc(pcs->dev,
958 nconfs, sizeof(struct pcs_conf_vals),
959 GFP_KERNEL);
960 if (!func->conf)
961 return -ENOMEM;
962 func->nconfs = nconfs;
963 conf = &(func->conf[0]);
964 m++;
965 settings = devm_kcalloc(pcs->dev, nconfs, sizeof(unsigned long),
966 GFP_KERNEL);
967 if (!settings)
968 return -ENOMEM;
969 s = &settings[0];
970
971 for (i = 0; i < ARRAY_SIZE(prop2); i++)
972 pcs_add_conf2(pcs, np, prop2[i].name, prop2[i].param,
973 &conf, &s);
974 for (i = 0; i < ARRAY_SIZE(prop4); i++)
975 pcs_add_conf4(pcs, np, prop4[i].name, prop4[i].param,
976 &conf, &s);
977 m->type = PIN_MAP_TYPE_CONFIGS_GROUP;
978 m->data.configs.group_or_pin = np->name;
979 m->data.configs.configs = settings;
980 m->data.configs.num_configs = nconfs;
981 return 0;
982 }
983
984 /**
985 * pcs_parse_one_pinctrl_entry() - parses a device tree mux entry
986 * @pcs: pinctrl driver instance
987 * @np: device node of the mux entry
988 * @map: map entry
989 * @num_maps: number of map
990 * @pgnames: pingroup names
991 *
992 * Note that this binding currently supports only sets of one register + value.
993 *
994 * Also note that this driver tries to avoid understanding pin and function
995 * names because of the extra bloat they would cause especially in the case of
996 * a large number of pins. This driver just sets what is specified for the board
997 * in the .dts file. Further user space debugging tools can be developed to
998 * decipher the pin and function names using debugfs.
999 *
1000 * If you are concerned about the boot time, set up the static pins in
1001 * the bootloader, and only set up selected pins as device tree entries.
1002 */
pcs_parse_one_pinctrl_entry(struct pcs_device * pcs,struct device_node * np,struct pinctrl_map ** map,unsigned * num_maps,const char ** pgnames)1003 static int pcs_parse_one_pinctrl_entry(struct pcs_device *pcs,
1004 struct device_node *np,
1005 struct pinctrl_map **map,
1006 unsigned *num_maps,
1007 const char **pgnames)
1008 {
1009 const char *name = "pinctrl-single,pins";
1010 struct pcs_func_vals *vals;
1011 int rows, *pins, found = 0, res = -ENOMEM, i, fsel, gsel;
1012 struct pcs_function *function = NULL;
1013
1014 rows = pinctrl_count_index_with_args(np, name);
1015 if (rows <= 0) {
1016 dev_err(pcs->dev, "Invalid number of rows: %d\n", rows);
1017 return -EINVAL;
1018 }
1019
1020 vals = devm_kcalloc(pcs->dev, rows, sizeof(*vals), GFP_KERNEL);
1021 if (!vals)
1022 return -ENOMEM;
1023
1024 pins = devm_kcalloc(pcs->dev, rows, sizeof(*pins), GFP_KERNEL);
1025 if (!pins)
1026 goto free_vals;
1027
1028 for (i = 0; i < rows; i++) {
1029 struct of_phandle_args pinctrl_spec;
1030 unsigned int offset;
1031 int pin;
1032
1033 res = pinctrl_parse_index_with_args(np, name, i, &pinctrl_spec);
1034 if (res)
1035 return res;
1036
1037 if (pinctrl_spec.args_count < 2 || pinctrl_spec.args_count > 3) {
1038 dev_err(pcs->dev, "invalid args_count for spec: %i\n",
1039 pinctrl_spec.args_count);
1040 break;
1041 }
1042
1043 offset = pinctrl_spec.args[0];
1044 vals[found].reg = pcs->base + offset;
1045
1046 switch (pinctrl_spec.args_count) {
1047 case 2:
1048 vals[found].val = pinctrl_spec.args[1];
1049 break;
1050 case 3:
1051 vals[found].val = (pinctrl_spec.args[1] | pinctrl_spec.args[2]);
1052 break;
1053 }
1054
1055 dev_dbg(pcs->dev, "%pOFn index: 0x%x value: 0x%x\n",
1056 pinctrl_spec.np, offset, vals[found].val);
1057
1058 pin = pcs_get_pin_by_offset(pcs, offset);
1059 if (pin < 0) {
1060 dev_err(pcs->dev,
1061 "could not add functions for %pOFn %ux\n",
1062 np, offset);
1063 break;
1064 }
1065 pins[found++] = pin;
1066 }
1067
1068 pgnames[0] = np->name;
1069 mutex_lock(&pcs->mutex);
1070 fsel = pcs_add_function(pcs, &function, np->name, vals, found,
1071 pgnames, 1);
1072 if (fsel < 0) {
1073 res = fsel;
1074 goto free_pins;
1075 }
1076
1077 gsel = pinctrl_generic_add_group(pcs->pctl, np->name, pins, found, pcs);
1078 if (gsel < 0) {
1079 res = gsel;
1080 goto free_function;
1081 }
1082
1083 (*map)->type = PIN_MAP_TYPE_MUX_GROUP;
1084 (*map)->data.mux.group = np->name;
1085 (*map)->data.mux.function = np->name;
1086
1087 if (PCS_HAS_PINCONF && function) {
1088 res = pcs_parse_pinconf(pcs, np, function, map);
1089 if (res == 0)
1090 *num_maps = 2;
1091 else if (res == -ENOTSUPP)
1092 *num_maps = 1;
1093 else
1094 goto free_pingroups;
1095 } else {
1096 *num_maps = 1;
1097 }
1098 mutex_unlock(&pcs->mutex);
1099
1100 return 0;
1101
1102 free_pingroups:
1103 pinctrl_generic_remove_group(pcs->pctl, gsel);
1104 *num_maps = 1;
1105 free_function:
1106 pinmux_generic_remove_function(pcs->pctl, fsel);
1107 free_pins:
1108 mutex_unlock(&pcs->mutex);
1109 devm_kfree(pcs->dev, pins);
1110
1111 free_vals:
1112 devm_kfree(pcs->dev, vals);
1113
1114 return res;
1115 }
1116
pcs_parse_bits_in_pinctrl_entry(struct pcs_device * pcs,struct device_node * np,struct pinctrl_map ** map,unsigned * num_maps,const char ** pgnames)1117 static int pcs_parse_bits_in_pinctrl_entry(struct pcs_device *pcs,
1118 struct device_node *np,
1119 struct pinctrl_map **map,
1120 unsigned *num_maps,
1121 const char **pgnames)
1122 {
1123 const char *name = "pinctrl-single,bits";
1124 struct pcs_func_vals *vals;
1125 int rows, *pins, found = 0, res = -ENOMEM, i, fsel;
1126 int npins_in_row;
1127 struct pcs_function *function = NULL;
1128
1129 rows = pinctrl_count_index_with_args(np, name);
1130 if (rows <= 0) {
1131 dev_err(pcs->dev, "Invalid number of rows: %d\n", rows);
1132 return -EINVAL;
1133 }
1134
1135 if (PCS_HAS_PINCONF) {
1136 dev_err(pcs->dev, "pinconf not supported\n");
1137 return -ENOTSUPP;
1138 }
1139
1140 npins_in_row = pcs->width / pcs->bits_per_pin;
1141
1142 vals = devm_kzalloc(pcs->dev,
1143 array3_size(rows, npins_in_row, sizeof(*vals)),
1144 GFP_KERNEL);
1145 if (!vals)
1146 return -ENOMEM;
1147
1148 pins = devm_kzalloc(pcs->dev,
1149 array3_size(rows, npins_in_row, sizeof(*pins)),
1150 GFP_KERNEL);
1151 if (!pins)
1152 goto free_vals;
1153
1154 for (i = 0; i < rows; i++) {
1155 struct of_phandle_args pinctrl_spec;
1156 unsigned offset, val;
1157 unsigned mask, bit_pos, val_pos, mask_pos, submask;
1158 unsigned pin_num_from_lsb;
1159 int pin;
1160
1161 res = pinctrl_parse_index_with_args(np, name, i, &pinctrl_spec);
1162 if (res)
1163 return res;
1164
1165 if (pinctrl_spec.args_count < 3) {
1166 dev_err(pcs->dev, "invalid args_count for spec: %i\n",
1167 pinctrl_spec.args_count);
1168 break;
1169 }
1170
1171 /* Index plus two value cells */
1172 offset = pinctrl_spec.args[0];
1173 val = pinctrl_spec.args[1];
1174 mask = pinctrl_spec.args[2];
1175
1176 dev_dbg(pcs->dev, "%pOFn index: 0x%x value: 0x%x mask: 0x%x\n",
1177 pinctrl_spec.np, offset, val, mask);
1178
1179 /* Parse pins in each row from LSB */
1180 while (mask) {
1181 bit_pos = __ffs(mask);
1182 pin_num_from_lsb = bit_pos / pcs->bits_per_pin;
1183 mask_pos = ((pcs->fmask) << bit_pos);
1184 val_pos = val & mask_pos;
1185 submask = mask & mask_pos;
1186
1187 if ((mask & mask_pos) == 0) {
1188 dev_err(pcs->dev,
1189 "Invalid mask for %pOFn at 0x%x\n",
1190 np, offset);
1191 break;
1192 }
1193
1194 mask &= ~mask_pos;
1195
1196 if (submask != mask_pos) {
1197 dev_warn(pcs->dev,
1198 "Invalid submask 0x%x for %pOFn at 0x%x\n",
1199 submask, np, offset);
1200 continue;
1201 }
1202
1203 vals[found].mask = submask;
1204 vals[found].reg = pcs->base + offset;
1205 vals[found].val = val_pos;
1206
1207 pin = pcs_get_pin_by_offset(pcs, offset);
1208 if (pin < 0) {
1209 dev_err(pcs->dev,
1210 "could not add functions for %pOFn %ux\n",
1211 np, offset);
1212 break;
1213 }
1214 pins[found++] = pin + pin_num_from_lsb;
1215 }
1216 }
1217
1218 pgnames[0] = np->name;
1219 mutex_lock(&pcs->mutex);
1220 fsel = pcs_add_function(pcs, &function, np->name, vals, found,
1221 pgnames, 1);
1222 if (fsel < 0) {
1223 res = fsel;
1224 goto free_pins;
1225 }
1226
1227 res = pinctrl_generic_add_group(pcs->pctl, np->name, pins, found, pcs);
1228 if (res < 0)
1229 goto free_function;
1230
1231 (*map)->type = PIN_MAP_TYPE_MUX_GROUP;
1232 (*map)->data.mux.group = np->name;
1233 (*map)->data.mux.function = np->name;
1234
1235 *num_maps = 1;
1236 mutex_unlock(&pcs->mutex);
1237
1238 return 0;
1239
1240 free_function:
1241 pinmux_generic_remove_function(pcs->pctl, fsel);
1242 free_pins:
1243 mutex_unlock(&pcs->mutex);
1244 devm_kfree(pcs->dev, pins);
1245
1246 free_vals:
1247 devm_kfree(pcs->dev, vals);
1248
1249 return res;
1250 }
1251 /**
1252 * pcs_dt_node_to_map() - allocates and parses pinctrl maps
1253 * @pctldev: pinctrl instance
1254 * @np_config: device tree pinmux entry
1255 * @map: array of map entries
1256 * @num_maps: number of maps
1257 */
pcs_dt_node_to_map(struct pinctrl_dev * pctldev,struct device_node * np_config,struct pinctrl_map ** map,unsigned * num_maps)1258 static int pcs_dt_node_to_map(struct pinctrl_dev *pctldev,
1259 struct device_node *np_config,
1260 struct pinctrl_map **map, unsigned *num_maps)
1261 {
1262 struct pcs_device *pcs;
1263 const char **pgnames;
1264 int ret;
1265
1266 pcs = pinctrl_dev_get_drvdata(pctldev);
1267
1268 /* create 2 maps. One is for pinmux, and the other is for pinconf. */
1269 *map = devm_kcalloc(pcs->dev, 2, sizeof(**map), GFP_KERNEL);
1270 if (!*map)
1271 return -ENOMEM;
1272
1273 *num_maps = 0;
1274
1275 pgnames = devm_kzalloc(pcs->dev, sizeof(*pgnames), GFP_KERNEL);
1276 if (!pgnames) {
1277 ret = -ENOMEM;
1278 goto free_map;
1279 }
1280
1281 if (pcs->bits_per_mux) {
1282 ret = pcs_parse_bits_in_pinctrl_entry(pcs, np_config, map,
1283 num_maps, pgnames);
1284 if (ret < 0) {
1285 dev_err(pcs->dev, "no pins entries for %pOFn\n",
1286 np_config);
1287 goto free_pgnames;
1288 }
1289 } else {
1290 ret = pcs_parse_one_pinctrl_entry(pcs, np_config, map,
1291 num_maps, pgnames);
1292 if (ret < 0) {
1293 dev_err(pcs->dev, "no pins entries for %pOFn\n",
1294 np_config);
1295 goto free_pgnames;
1296 }
1297 }
1298
1299 return 0;
1300
1301 free_pgnames:
1302 devm_kfree(pcs->dev, pgnames);
1303 free_map:
1304 devm_kfree(pcs->dev, *map);
1305
1306 return ret;
1307 }
1308
1309 /**
1310 * pcs_irq_free() - free interrupt
1311 * @pcs: pcs driver instance
1312 */
pcs_irq_free(struct pcs_device * pcs)1313 static void pcs_irq_free(struct pcs_device *pcs)
1314 {
1315 struct pcs_soc_data *pcs_soc = &pcs->socdata;
1316
1317 if (pcs_soc->irq < 0)
1318 return;
1319
1320 if (pcs->domain)
1321 irq_domain_remove(pcs->domain);
1322
1323 if (PCS_QUIRK_HAS_SHARED_IRQ)
1324 free_irq(pcs_soc->irq, pcs_soc);
1325 else
1326 irq_set_chained_handler(pcs_soc->irq, NULL);
1327 }
1328
1329 /**
1330 * pcs_free_resources() - free memory used by this driver
1331 * @pcs: pcs driver instance
1332 */
pcs_free_resources(struct pcs_device * pcs)1333 static void pcs_free_resources(struct pcs_device *pcs)
1334 {
1335 pcs_irq_free(pcs);
1336
1337 #if IS_BUILTIN(CONFIG_PINCTRL_SINGLE)
1338 if (pcs->missing_nr_pinctrl_cells)
1339 of_remove_property(pcs->np, pcs->missing_nr_pinctrl_cells);
1340 #endif
1341 }
1342
pcs_add_gpio_func(struct device_node * node,struct pcs_device * pcs)1343 static int pcs_add_gpio_func(struct device_node *node, struct pcs_device *pcs)
1344 {
1345 const char *propname = "pinctrl-single,gpio-range";
1346 const char *cellname = "#pinctrl-single,gpio-range-cells";
1347 struct of_phandle_args gpiospec;
1348 struct pcs_gpiofunc_range *range;
1349 int ret, i;
1350
1351 for (i = 0; ; i++) {
1352 ret = of_parse_phandle_with_args(node, propname, cellname,
1353 i, &gpiospec);
1354 /* Do not treat it as error. Only treat it as end condition. */
1355 if (ret) {
1356 ret = 0;
1357 break;
1358 }
1359 range = devm_kzalloc(pcs->dev, sizeof(*range), GFP_KERNEL);
1360 if (!range) {
1361 ret = -ENOMEM;
1362 break;
1363 }
1364 range->offset = gpiospec.args[0];
1365 range->npins = gpiospec.args[1];
1366 range->gpiofunc = gpiospec.args[2];
1367 mutex_lock(&pcs->mutex);
1368 list_add_tail(&range->node, &pcs->gpiofuncs);
1369 mutex_unlock(&pcs->mutex);
1370 }
1371 return ret;
1372 }
1373
1374 /**
1375 * struct pcs_interrupt
1376 * @reg: virtual address of interrupt register
1377 * @hwirq: hardware irq number
1378 * @irq: virtual irq number
1379 * @node: list node
1380 */
1381 struct pcs_interrupt {
1382 void __iomem *reg;
1383 irq_hw_number_t hwirq;
1384 unsigned int irq;
1385 struct list_head node;
1386 };
1387
1388 /**
1389 * pcs_irq_set() - enables or disables an interrupt
1390 * @pcs_soc: SoC specific settings
1391 * @irq: interrupt
1392 * @enable: enable or disable the interrupt
1393 *
1394 * Note that this currently assumes one interrupt per pinctrl
1395 * register that is typically used for wake-up events.
1396 */
pcs_irq_set(struct pcs_soc_data * pcs_soc,int irq,const bool enable)1397 static inline void pcs_irq_set(struct pcs_soc_data *pcs_soc,
1398 int irq, const bool enable)
1399 {
1400 struct pcs_device *pcs;
1401 struct list_head *pos;
1402 unsigned mask;
1403
1404 pcs = container_of(pcs_soc, struct pcs_device, socdata);
1405 list_for_each(pos, &pcs->irqs) {
1406 struct pcs_interrupt *pcswi;
1407 unsigned soc_mask;
1408
1409 pcswi = list_entry(pos, struct pcs_interrupt, node);
1410 if (irq != pcswi->irq)
1411 continue;
1412
1413 soc_mask = pcs_soc->irq_enable_mask;
1414 raw_spin_lock(&pcs->lock);
1415 mask = pcs->read(pcswi->reg);
1416 if (enable)
1417 mask |= soc_mask;
1418 else
1419 mask &= ~soc_mask;
1420 pcs->write(mask, pcswi->reg);
1421
1422 /* flush posted write */
1423 mask = pcs->read(pcswi->reg);
1424 raw_spin_unlock(&pcs->lock);
1425 }
1426
1427 if (pcs_soc->rearm)
1428 pcs_soc->rearm();
1429 }
1430
1431 /**
1432 * pcs_irq_mask() - mask pinctrl interrupt
1433 * @d: interrupt data
1434 */
pcs_irq_mask(struct irq_data * d)1435 static void pcs_irq_mask(struct irq_data *d)
1436 {
1437 struct pcs_soc_data *pcs_soc = irq_data_get_irq_chip_data(d);
1438
1439 pcs_irq_set(pcs_soc, d->irq, false);
1440 }
1441
1442 /**
1443 * pcs_irq_unmask() - unmask pinctrl interrupt
1444 * @d: interrupt data
1445 */
pcs_irq_unmask(struct irq_data * d)1446 static void pcs_irq_unmask(struct irq_data *d)
1447 {
1448 struct pcs_soc_data *pcs_soc = irq_data_get_irq_chip_data(d);
1449
1450 pcs_irq_set(pcs_soc, d->irq, true);
1451 }
1452
1453 /**
1454 * pcs_irq_set_wake() - toggle the suspend and resume wake up
1455 * @d: interrupt data
1456 * @state: wake-up state
1457 *
1458 * Note that this should be called only for suspend and resume.
1459 * For runtime PM, the wake-up events should be enabled by default.
1460 */
pcs_irq_set_wake(struct irq_data * d,unsigned int state)1461 static int pcs_irq_set_wake(struct irq_data *d, unsigned int state)
1462 {
1463 if (state)
1464 pcs_irq_unmask(d);
1465 else
1466 pcs_irq_mask(d);
1467
1468 return 0;
1469 }
1470
1471 /**
1472 * pcs_irq_handle() - common interrupt handler
1473 * @pcs_soc: SoC specific settings
1474 *
1475 * Note that this currently assumes we have one interrupt bit per
1476 * mux register. This interrupt is typically used for wake-up events.
1477 * For more complex interrupts different handlers can be specified.
1478 */
pcs_irq_handle(struct pcs_soc_data * pcs_soc)1479 static int pcs_irq_handle(struct pcs_soc_data *pcs_soc)
1480 {
1481 struct pcs_device *pcs;
1482 struct list_head *pos;
1483 int count = 0;
1484
1485 pcs = container_of(pcs_soc, struct pcs_device, socdata);
1486 list_for_each(pos, &pcs->irqs) {
1487 struct pcs_interrupt *pcswi;
1488 unsigned mask;
1489
1490 pcswi = list_entry(pos, struct pcs_interrupt, node);
1491 raw_spin_lock(&pcs->lock);
1492 mask = pcs->read(pcswi->reg);
1493 raw_spin_unlock(&pcs->lock);
1494 if (mask & pcs_soc->irq_status_mask) {
1495 generic_handle_domain_irq(pcs->domain,
1496 pcswi->hwirq);
1497 count++;
1498 }
1499 }
1500
1501 return count;
1502 }
1503
1504 /**
1505 * pcs_irq_handler() - handler for the shared interrupt case
1506 * @irq: interrupt
1507 * @d: data
1508 *
1509 * Use this for cases where multiple instances of
1510 * pinctrl-single share a single interrupt like on omaps.
1511 */
pcs_irq_handler(int irq,void * d)1512 static irqreturn_t pcs_irq_handler(int irq, void *d)
1513 {
1514 struct pcs_soc_data *pcs_soc = d;
1515
1516 return pcs_irq_handle(pcs_soc) ? IRQ_HANDLED : IRQ_NONE;
1517 }
1518
1519 /**
1520 * pcs_irq_chain_handler() - handler for the dedicated chained interrupt case
1521 * @desc: interrupt descriptor
1522 *
1523 * Use this if you have a separate interrupt for each
1524 * pinctrl-single instance.
1525 */
pcs_irq_chain_handler(struct irq_desc * desc)1526 static void pcs_irq_chain_handler(struct irq_desc *desc)
1527 {
1528 struct pcs_soc_data *pcs_soc = irq_desc_get_handler_data(desc);
1529 struct irq_chip *chip;
1530
1531 chip = irq_desc_get_chip(desc);
1532 chained_irq_enter(chip, desc);
1533 pcs_irq_handle(pcs_soc);
1534 /* REVISIT: export and add handle_bad_irq(irq, desc)? */
1535 chained_irq_exit(chip, desc);
1536 }
1537
pcs_irqdomain_map(struct irq_domain * d,unsigned int irq,irq_hw_number_t hwirq)1538 static int pcs_irqdomain_map(struct irq_domain *d, unsigned int irq,
1539 irq_hw_number_t hwirq)
1540 {
1541 struct pcs_soc_data *pcs_soc = d->host_data;
1542 struct pcs_device *pcs;
1543 struct pcs_interrupt *pcswi;
1544
1545 pcs = container_of(pcs_soc, struct pcs_device, socdata);
1546 pcswi = devm_kzalloc(pcs->dev, sizeof(*pcswi), GFP_KERNEL);
1547 if (!pcswi)
1548 return -ENOMEM;
1549
1550 pcswi->reg = pcs->base + hwirq;
1551 pcswi->hwirq = hwirq;
1552 pcswi->irq = irq;
1553
1554 mutex_lock(&pcs->mutex);
1555 list_add_tail(&pcswi->node, &pcs->irqs);
1556 mutex_unlock(&pcs->mutex);
1557
1558 irq_set_chip_data(irq, pcs_soc);
1559 irq_set_chip_and_handler(irq, &pcs->chip,
1560 handle_level_irq);
1561 irq_set_lockdep_class(irq, &pcs_lock_class, &pcs_request_class);
1562 irq_set_noprobe(irq);
1563
1564 return 0;
1565 }
1566
1567 static const struct irq_domain_ops pcs_irqdomain_ops = {
1568 .map = pcs_irqdomain_map,
1569 .xlate = irq_domain_xlate_onecell,
1570 };
1571
1572 /**
1573 * pcs_irq_init_chained_handler() - set up a chained interrupt handler
1574 * @pcs: pcs driver instance
1575 * @np: device node pointer
1576 */
pcs_irq_init_chained_handler(struct pcs_device * pcs,struct device_node * np)1577 static int pcs_irq_init_chained_handler(struct pcs_device *pcs,
1578 struct device_node *np)
1579 {
1580 struct pcs_soc_data *pcs_soc = &pcs->socdata;
1581 const char *name = "pinctrl";
1582 int num_irqs;
1583
1584 if (!pcs_soc->irq_enable_mask ||
1585 !pcs_soc->irq_status_mask) {
1586 pcs_soc->irq = -1;
1587 return -EINVAL;
1588 }
1589
1590 INIT_LIST_HEAD(&pcs->irqs);
1591 pcs->chip.name = name;
1592 pcs->chip.irq_ack = pcs_irq_mask;
1593 pcs->chip.irq_mask = pcs_irq_mask;
1594 pcs->chip.irq_unmask = pcs_irq_unmask;
1595 pcs->chip.irq_set_wake = pcs_irq_set_wake;
1596
1597 if (PCS_QUIRK_HAS_SHARED_IRQ) {
1598 int res;
1599
1600 res = request_irq(pcs_soc->irq, pcs_irq_handler,
1601 IRQF_SHARED | IRQF_NO_SUSPEND |
1602 IRQF_NO_THREAD,
1603 name, pcs_soc);
1604 if (res) {
1605 pcs_soc->irq = -1;
1606 return res;
1607 }
1608 } else {
1609 irq_set_chained_handler_and_data(pcs_soc->irq,
1610 pcs_irq_chain_handler,
1611 pcs_soc);
1612 }
1613
1614 /*
1615 * We can use the register offset as the hardirq
1616 * number as irq_domain_create_simple maps them lazily.
1617 * This way we can easily support more than one
1618 * interrupt per function if needed.
1619 */
1620 num_irqs = pcs->size;
1621
1622 pcs->domain = irq_domain_create_simple(of_fwnode_handle(np),
1623 num_irqs, 0,
1624 &pcs_irqdomain_ops,
1625 pcs_soc);
1626 if (!pcs->domain) {
1627 irq_set_chained_handler(pcs_soc->irq, NULL);
1628 return -EINVAL;
1629 }
1630
1631 return 0;
1632 }
1633
pcs_save_context(struct pcs_device * pcs)1634 static int pcs_save_context(struct pcs_device *pcs)
1635 {
1636 int i, mux_bytes;
1637 u64 *regsl;
1638 u32 *regsw;
1639 u16 *regshw;
1640
1641 mux_bytes = pcs->width / BITS_PER_BYTE;
1642
1643 if (!pcs->saved_vals) {
1644 pcs->saved_vals = devm_kzalloc(pcs->dev, pcs->size, GFP_ATOMIC);
1645 if (!pcs->saved_vals)
1646 return -ENOMEM;
1647 }
1648
1649 switch (pcs->width) {
1650 case 64:
1651 regsl = pcs->saved_vals;
1652 for (i = 0; i < pcs->size; i += mux_bytes)
1653 *regsl++ = pcs->read(pcs->base + i);
1654 break;
1655 case 32:
1656 regsw = pcs->saved_vals;
1657 for (i = 0; i < pcs->size; i += mux_bytes)
1658 *regsw++ = pcs->read(pcs->base + i);
1659 break;
1660 case 16:
1661 regshw = pcs->saved_vals;
1662 for (i = 0; i < pcs->size; i += mux_bytes)
1663 *regshw++ = pcs->read(pcs->base + i);
1664 break;
1665 }
1666
1667 return 0;
1668 }
1669
pcs_restore_context(struct pcs_device * pcs)1670 static void pcs_restore_context(struct pcs_device *pcs)
1671 {
1672 int i, mux_bytes;
1673 u64 *regsl;
1674 u32 *regsw;
1675 u16 *regshw;
1676
1677 mux_bytes = pcs->width / BITS_PER_BYTE;
1678
1679 switch (pcs->width) {
1680 case 64:
1681 regsl = pcs->saved_vals;
1682 for (i = 0; i < pcs->size; i += mux_bytes)
1683 pcs->write(*regsl++, pcs->base + i);
1684 break;
1685 case 32:
1686 regsw = pcs->saved_vals;
1687 for (i = 0; i < pcs->size; i += mux_bytes)
1688 pcs->write(*regsw++, pcs->base + i);
1689 break;
1690 case 16:
1691 regshw = pcs->saved_vals;
1692 for (i = 0; i < pcs->size; i += mux_bytes)
1693 pcs->write(*regshw++, pcs->base + i);
1694 break;
1695 }
1696 }
1697
pinctrl_single_suspend_noirq(struct device * dev)1698 static int pinctrl_single_suspend_noirq(struct device *dev)
1699 {
1700 struct pcs_device *pcs = dev_get_drvdata(dev);
1701
1702 if (pcs->flags & PCS_CONTEXT_LOSS_OFF) {
1703 int ret;
1704
1705 ret = pcs_save_context(pcs);
1706 if (ret < 0)
1707 return ret;
1708 }
1709
1710 return pinctrl_force_sleep(pcs->pctl);
1711 }
1712
pinctrl_single_resume_noirq(struct device * dev)1713 static int pinctrl_single_resume_noirq(struct device *dev)
1714 {
1715 struct pcs_device *pcs = dev_get_drvdata(dev);
1716
1717 if (pcs->flags & PCS_CONTEXT_LOSS_OFF)
1718 pcs_restore_context(pcs);
1719
1720 return pinctrl_force_default(pcs->pctl);
1721 }
1722
1723 static DEFINE_NOIRQ_DEV_PM_OPS(pinctrl_single_pm_ops,
1724 pinctrl_single_suspend_noirq,
1725 pinctrl_single_resume_noirq);
1726
1727 /**
1728 * pcs_quirk_missing_pinctrl_cells - handle legacy binding
1729 * @pcs: pinctrl driver instance
1730 * @np: device tree node
1731 * @cells: number of cells
1732 *
1733 * Handle legacy binding with no #pinctrl-cells. This should be
1734 * always two pinctrl-single,bit-per-mux and one for others.
1735 * At some point we may want to consider removing this.
1736 */
pcs_quirk_missing_pinctrl_cells(struct pcs_device * pcs,struct device_node * np,int cells)1737 static int pcs_quirk_missing_pinctrl_cells(struct pcs_device *pcs,
1738 struct device_node *np,
1739 int cells)
1740 {
1741 struct property *p;
1742 const char *name = "#pinctrl-cells";
1743 int error;
1744 u32 val;
1745
1746 error = of_property_read_u32(np, name, &val);
1747 if (!error)
1748 return 0;
1749
1750 dev_warn(pcs->dev, "please update dts to use %s = <%i>\n",
1751 name, cells);
1752
1753 p = devm_kzalloc(pcs->dev, sizeof(*p), GFP_KERNEL);
1754 if (!p)
1755 return -ENOMEM;
1756
1757 p->length = sizeof(__be32);
1758 p->value = devm_kzalloc(pcs->dev, sizeof(__be32), GFP_KERNEL);
1759 if (!p->value)
1760 return -ENOMEM;
1761 *(__be32 *)p->value = cpu_to_be32(cells);
1762
1763 p->name = devm_kstrdup(pcs->dev, name, GFP_KERNEL);
1764 if (!p->name)
1765 return -ENOMEM;
1766
1767 pcs->missing_nr_pinctrl_cells = p;
1768
1769 #if IS_BUILTIN(CONFIG_PINCTRL_SINGLE)
1770 error = of_add_property(np, pcs->missing_nr_pinctrl_cells);
1771 #endif
1772
1773 return error;
1774 }
1775
pcs_probe(struct platform_device * pdev)1776 static int pcs_probe(struct platform_device *pdev)
1777 {
1778 struct device_node *np = pdev->dev.of_node;
1779 struct pcs_pdata *pdata;
1780 struct resource *res;
1781 struct pcs_device *pcs;
1782 const struct pcs_soc_data *soc;
1783 int ret;
1784
1785 soc = of_device_get_match_data(&pdev->dev);
1786 if (WARN_ON(!soc))
1787 return -EINVAL;
1788
1789 pcs = devm_kzalloc(&pdev->dev, sizeof(*pcs), GFP_KERNEL);
1790 if (!pcs)
1791 return -ENOMEM;
1792
1793 pcs->dev = &pdev->dev;
1794 pcs->np = np;
1795 raw_spin_lock_init(&pcs->lock);
1796 mutex_init(&pcs->mutex);
1797 INIT_LIST_HEAD(&pcs->gpiofuncs);
1798 pcs->flags = soc->flags;
1799 memcpy(&pcs->socdata, soc, sizeof(*soc));
1800
1801 ret = of_property_read_u32(np, "pinctrl-single,register-width",
1802 &pcs->width);
1803 if (ret) {
1804 dev_err(pcs->dev, "register width not specified\n");
1805
1806 return ret;
1807 }
1808
1809 ret = of_property_read_u32(np, "pinctrl-single,function-mask",
1810 &pcs->fmask);
1811 if (!ret) {
1812 pcs->fshift = __ffs(pcs->fmask);
1813 pcs->fmax = pcs->fmask >> pcs->fshift;
1814 } else {
1815 /* If mask property doesn't exist, function mux is invalid. */
1816 pcs->fmask = 0;
1817 pcs->fshift = 0;
1818 pcs->fmax = 0;
1819 }
1820
1821 ret = of_property_read_u32(np, "pinctrl-single,function-off",
1822 &pcs->foff);
1823 if (ret)
1824 pcs->foff = PCS_OFF_DISABLED;
1825
1826 pcs->bits_per_mux = of_property_read_bool(np,
1827 "pinctrl-single,bit-per-mux");
1828 ret = pcs_quirk_missing_pinctrl_cells(pcs, np,
1829 pcs->bits_per_mux ? 2 : 1);
1830 if (ret) {
1831 dev_err(&pdev->dev, "unable to patch #pinctrl-cells\n");
1832
1833 return ret;
1834 }
1835
1836 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1837 if (!res) {
1838 dev_err(pcs->dev, "could not get resource\n");
1839 return -ENODEV;
1840 }
1841
1842 pcs->res = devm_request_mem_region(pcs->dev, res->start,
1843 resource_size(res), DRIVER_NAME);
1844 if (!pcs->res) {
1845 dev_err(pcs->dev, "could not get mem_region\n");
1846 return -EBUSY;
1847 }
1848
1849 pcs->size = resource_size(pcs->res);
1850 pcs->base = devm_ioremap(pcs->dev, pcs->res->start, pcs->size);
1851 if (!pcs->base) {
1852 dev_err(pcs->dev, "could not ioremap\n");
1853 return -ENODEV;
1854 }
1855
1856 platform_set_drvdata(pdev, pcs);
1857
1858 switch (pcs->width) {
1859 case 8:
1860 pcs->read = pcs_readb;
1861 pcs->write = pcs_writeb;
1862 break;
1863 case 16:
1864 pcs->read = pcs_readw;
1865 pcs->write = pcs_writew;
1866 break;
1867 case 32:
1868 pcs->read = pcs_readl;
1869 pcs->write = pcs_writel;
1870 break;
1871 default:
1872 break;
1873 }
1874
1875 pcs->desc.name = DRIVER_NAME;
1876 pcs->desc.pctlops = &pcs_pinctrl_ops;
1877 pcs->desc.pmxops = &pcs_pinmux_ops;
1878 if (PCS_HAS_PINCONF)
1879 pcs->desc.confops = &pcs_pinconf_ops;
1880 pcs->desc.owner = THIS_MODULE;
1881
1882 ret = pcs_allocate_pin_table(pcs);
1883 if (ret < 0)
1884 goto free;
1885
1886 ret = devm_pinctrl_register_and_init(pcs->dev, &pcs->desc, pcs, &pcs->pctl);
1887 if (ret) {
1888 dev_err(pcs->dev, "could not register single pinctrl driver\n");
1889 goto free;
1890 }
1891
1892 ret = pcs_add_gpio_func(np, pcs);
1893 if (ret < 0)
1894 goto free;
1895
1896 pcs->socdata.irq = irq_of_parse_and_map(np, 0);
1897 if (pcs->socdata.irq)
1898 pcs->flags |= PCS_FEAT_IRQ;
1899
1900 /* We still need auxdata for some omaps for PRM interrupts */
1901 pdata = dev_get_platdata(&pdev->dev);
1902 if (pdata) {
1903 if (pdata->rearm)
1904 pcs->socdata.rearm = pdata->rearm;
1905 if (pdata->irq) {
1906 pcs->socdata.irq = pdata->irq;
1907 pcs->flags |= PCS_FEAT_IRQ;
1908 }
1909 }
1910
1911 if (PCS_HAS_IRQ) {
1912 ret = pcs_irq_init_chained_handler(pcs, np);
1913 if (ret < 0)
1914 dev_warn(pcs->dev, "initialized with no interrupts\n");
1915 }
1916
1917 dev_info(pcs->dev, "%i pins, size %u\n", pcs->desc.npins, pcs->size);
1918
1919 ret = pinctrl_enable(pcs->pctl);
1920 if (ret)
1921 goto free;
1922
1923 return 0;
1924 free:
1925 pcs_free_resources(pcs);
1926
1927 return ret;
1928 }
1929
pcs_remove(struct platform_device * pdev)1930 static void pcs_remove(struct platform_device *pdev)
1931 {
1932 struct pcs_device *pcs = platform_get_drvdata(pdev);
1933
1934 pcs_free_resources(pcs);
1935 }
1936
1937 static const struct pcs_soc_data pinctrl_single_omap_wkup = {
1938 .flags = PCS_QUIRK_SHARED_IRQ,
1939 .irq_enable_mask = (1 << 14), /* OMAP_WAKEUP_EN */
1940 .irq_status_mask = (1 << 15), /* OMAP_WAKEUP_EVENT */
1941 };
1942
1943 static const struct pcs_soc_data pinctrl_single_dra7 = {
1944 .irq_enable_mask = (1 << 24), /* WAKEUPENABLE */
1945 .irq_status_mask = (1 << 25), /* WAKEUPEVENT */
1946 };
1947
1948 static const struct pcs_soc_data pinctrl_single_am437x = {
1949 .flags = PCS_QUIRK_SHARED_IRQ | PCS_CONTEXT_LOSS_OFF,
1950 .irq_enable_mask = (1 << 29), /* OMAP_WAKEUP_EN */
1951 .irq_status_mask = (1 << 30), /* OMAP_WAKEUP_EVENT */
1952 };
1953
1954 static const struct pcs_soc_data pinctrl_single_am654 = {
1955 .flags = PCS_QUIRK_SHARED_IRQ | PCS_CONTEXT_LOSS_OFF,
1956 .irq_enable_mask = (1 << 29), /* WKUP_EN */
1957 .irq_status_mask = (1 << 30), /* WKUP_EVT */
1958 };
1959
1960 static const struct pcs_soc_data pinctrl_single_j7200 = {
1961 .flags = PCS_CONTEXT_LOSS_OFF,
1962 };
1963
1964 static const struct pcs_soc_data pinctrl_single = {
1965 };
1966
1967 static const struct pcs_soc_data pinconf_single = {
1968 .flags = PCS_FEAT_PINCONF,
1969 };
1970
1971 static const struct of_device_id pcs_of_match[] = {
1972 { .compatible = "marvell,pxa1908-padconf", .data = &pinconf_single },
1973 { .compatible = "ti,am437-padconf", .data = &pinctrl_single_am437x },
1974 { .compatible = "ti,am654-padconf", .data = &pinctrl_single_am654 },
1975 { .compatible = "ti,dra7-padconf", .data = &pinctrl_single_dra7 },
1976 { .compatible = "ti,omap3-padconf", .data = &pinctrl_single_omap_wkup },
1977 { .compatible = "ti,omap4-padconf", .data = &pinctrl_single_omap_wkup },
1978 { .compatible = "ti,omap5-padconf", .data = &pinctrl_single_omap_wkup },
1979 { .compatible = "ti,j7200-padconf", .data = &pinctrl_single_j7200 },
1980 { .compatible = "pinctrl-single", .data = &pinctrl_single },
1981 { .compatible = "pinconf-single", .data = &pinconf_single },
1982 { },
1983 };
1984 MODULE_DEVICE_TABLE(of, pcs_of_match);
1985
1986 static struct platform_driver pcs_driver = {
1987 .probe = pcs_probe,
1988 .remove = pcs_remove,
1989 .driver = {
1990 .name = DRIVER_NAME,
1991 .of_match_table = pcs_of_match,
1992 .pm = pm_sleep_ptr(&pinctrl_single_pm_ops),
1993 },
1994 };
1995
1996 module_platform_driver(pcs_driver);
1997
1998 MODULE_AUTHOR("Tony Lindgren <tony@atomide.com>");
1999 MODULE_DESCRIPTION("One-register-per-pin type device tree based pinctrl driver");
2000 MODULE_LICENSE("GPL v2");
2001