2 * Generic device tree based pinctrl driver for one register per pin
3 * type pinmux controllers
5 * Copyright (C) 2012 Texas Instruments, Inc.
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.
12 #include <linux/init.h>
13 #include <linux/module.h>
15 #include <linux/slab.h>
16 #include <linux/err.h>
17 #include <linux/list.h>
18 #include <linux/interrupt.h>
20 #include <linux/irqchip/chained_irq.h>
23 #include <linux/of_device.h>
24 #include <linux/of_address.h>
25 #include <linux/of_irq.h>
27 #include <linux/pinctrl/pinctrl.h>
28 #include <linux/pinctrl/pinmux.h>
29 #include <linux/pinctrl/pinconf-generic.h>
31 #include <linux/platform_data/pinctrl-single.h>
34 #include "devicetree.h"
38 #define DRIVER_NAME "pinctrl-single"
39 #define PCS_OFF_DISABLED ~0U
42 * struct pcs_func_vals - mux function register offset and value pair
43 * @reg: register virtual address
44 * @val: register value
46 struct pcs_func_vals
{
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
61 struct pcs_conf_vals
{
62 enum pin_config_param param
;
70 * struct pcs_conf_type - pinconf property name, pinconf param pair
71 * @name: property name in DTS file
72 * @param: config parameter
74 struct pcs_conf_type
{
76 enum pin_config_param param
;
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 * @pgnames: array of pingroup names the function uses
85 * @npgnames: number of pingroup names the function uses
90 struct pcs_func_vals
*vals
;
94 struct pcs_conf_vals
*conf
;
96 struct list_head node
;
100 * struct pcs_gpiofunc_range - pin ranges with same mux value of gpio function
101 * @offset: offset base of pins
102 * @npins: number pins with the same mux value of gpio function
103 * @gpiofunc: mux value of gpio function
106 struct pcs_gpiofunc_range
{
110 struct list_head node
;
114 * struct pcs_data - wrapper for data needed by pinctrl framework
116 * @cur: index to current element
118 * REVISIT: We should be able to drop this eventually by adding
119 * support for registering pins individually in the pinctrl
120 * framework for those drivers that don't need a static array.
123 struct pinctrl_pin_desc
*pa
;
128 * struct pcs_soc_data - SoC specific settings
129 * @flags: initial SoC specific PCS_FEAT_xxx values
130 * @irq: optional interrupt for the controller
131 * @irq_enable_mask: optional SoC specific interrupt enable mask
132 * @irq_status_mask: optional SoC specific interrupt status mask
133 * @rearm: optional SoC specific wake-up rearm function
135 struct pcs_soc_data
{
138 unsigned irq_enable_mask
;
139 unsigned irq_status_mask
;
144 * struct pcs_device - pinctrl device instance
146 * @base: virtual address of the controller
147 * @saved_vals: saved values for the controller
148 * @size: size of the ioremapped area
150 * @np: device tree node
151 * @pctl: pin controller device
152 * @flags: mask of PCS_FEAT_xxx values
153 * @missing_nr_pinctrl_cells: for legacy binding, may go away
154 * @socdata: soc specific data
155 * @lock: spinlock for register access
156 * @mutex: mutex protecting the lists
157 * @width: bits per mux register
158 * @fmask: function register mask
159 * @fshift: function register shift
160 * @foff: value to turn mux off
161 * @fmax: max number of functions in fmask
162 * @bits_per_mux: number of bits per mux
163 * @bits_per_pin: number of bits per pin
164 * @pins: physical pins on the SoC
165 * @gpiofuncs: list of gpio functions
166 * @irqs: list of interrupt registers
167 * @chip: chip container for this instance
168 * @domain: IRQ domain for this instance
169 * @desc: pin controller descriptor
170 * @read: register read function to use
171 * @write: register write function to use
174 struct resource
*res
;
179 struct device_node
*np
;
180 struct pinctrl_dev
*pctl
;
182 #define PCS_CONTEXT_LOSS_OFF (1 << 3)
183 #define PCS_QUIRK_SHARED_IRQ (1 << 2)
184 #define PCS_FEAT_IRQ (1 << 1)
185 #define PCS_FEAT_PINCONF (1 << 0)
186 struct property
*missing_nr_pinctrl_cells
;
187 struct pcs_soc_data socdata
;
196 unsigned bits_per_pin
;
197 struct pcs_data pins
;
198 struct list_head gpiofuncs
;
199 struct list_head irqs
;
200 struct irq_chip chip
;
201 struct irq_domain
*domain
;
202 struct pinctrl_desc desc
;
203 unsigned (*read
)(void __iomem
*reg
);
204 void (*write
)(unsigned val
, void __iomem
*reg
);
207 #define PCS_QUIRK_HAS_SHARED_IRQ (pcs->flags & PCS_QUIRK_SHARED_IRQ)
208 #define PCS_HAS_IRQ (pcs->flags & PCS_FEAT_IRQ)
209 #define PCS_HAS_PINCONF (pcs->flags & PCS_FEAT_PINCONF)
211 static int pcs_pinconf_get(struct pinctrl_dev
*pctldev
, unsigned pin
,
212 unsigned long *config
);
213 static int pcs_pinconf_set(struct pinctrl_dev
*pctldev
, unsigned pin
,
214 unsigned long *configs
, unsigned num_configs
);
216 static enum pin_config_param pcs_bias
[] = {
217 PIN_CONFIG_BIAS_PULL_DOWN
,
218 PIN_CONFIG_BIAS_PULL_UP
,
222 * This lock class tells lockdep that irqchip core that this single
223 * pinctrl can be in a different category than its parents, so it won't
224 * report false recursion.
226 static struct lock_class_key pcs_lock_class
;
228 /* Class for the IRQ request mutex */
229 static struct lock_class_key pcs_request_class
;
232 * REVISIT: Reads and writes could eventually use regmap or something
233 * generic. But at least on omaps, some mux registers are performance
234 * critical as they may need to be remuxed every time before and after
235 * idle. Adding tests for register access width for every read and
236 * write like regmap is doing is not desired, and caching the registers
237 * does not help in this case.
240 static unsigned __maybe_unused
pcs_readb(void __iomem
*reg
)
245 static unsigned __maybe_unused
pcs_readw(void __iomem
*reg
)
250 static unsigned __maybe_unused
pcs_readl(void __iomem
*reg
)
255 static void __maybe_unused
pcs_writeb(unsigned val
, void __iomem
*reg
)
260 static void __maybe_unused
pcs_writew(unsigned val
, void __iomem
*reg
)
265 static void __maybe_unused
pcs_writel(unsigned val
, void __iomem
*reg
)
270 static void pcs_pin_dbg_show(struct pinctrl_dev
*pctldev
,
274 struct pcs_device
*pcs
;
275 unsigned val
, mux_bytes
;
276 unsigned long offset
;
279 pcs
= pinctrl_dev_get_drvdata(pctldev
);
281 mux_bytes
= pcs
->width
/ BITS_PER_BYTE
;
282 offset
= pin
* mux_bytes
;
283 val
= pcs
->read(pcs
->base
+ offset
);
284 pa
= pcs
->res
->start
+ offset
;
286 seq_printf(s
, "%zx %08x %s ", pa
, val
, DRIVER_NAME
);
289 static void pcs_dt_free_map(struct pinctrl_dev
*pctldev
,
290 struct pinctrl_map
*map
, unsigned num_maps
)
292 struct pcs_device
*pcs
;
294 pcs
= pinctrl_dev_get_drvdata(pctldev
);
295 devm_kfree(pcs
->dev
, map
);
298 static int pcs_dt_node_to_map(struct pinctrl_dev
*pctldev
,
299 struct device_node
*np_config
,
300 struct pinctrl_map
**map
, unsigned *num_maps
);
302 static const struct pinctrl_ops pcs_pinctrl_ops
= {
303 .get_groups_count
= pinctrl_generic_get_group_count
,
304 .get_group_name
= pinctrl_generic_get_group_name
,
305 .get_group_pins
= pinctrl_generic_get_group_pins
,
306 .pin_dbg_show
= pcs_pin_dbg_show
,
307 .dt_node_to_map
= pcs_dt_node_to_map
,
308 .dt_free_map
= pcs_dt_free_map
,
311 static int pcs_get_function(struct pinctrl_dev
*pctldev
, unsigned pin
,
312 struct pcs_function
**func
)
314 struct pcs_device
*pcs
= pinctrl_dev_get_drvdata(pctldev
);
315 struct pin_desc
*pdesc
= pin_desc_get(pctldev
, pin
);
316 const struct pinctrl_setting_mux
*setting
;
317 struct function_desc
*function
;
320 /* If pin is not described in DTS & enabled, mux_setting is NULL. */
321 setting
= pdesc
->mux_setting
;
324 fselector
= setting
->func
;
325 function
= pinmux_generic_get_function(pctldev
, fselector
);
326 *func
= function
->data
;
328 dev_err(pcs
->dev
, "%s could not find function%i\n",
329 __func__
, fselector
);
335 static int pcs_set_mux(struct pinctrl_dev
*pctldev
, unsigned fselector
,
338 struct pcs_device
*pcs
;
339 struct function_desc
*function
;
340 struct pcs_function
*func
;
343 pcs
= pinctrl_dev_get_drvdata(pctldev
);
344 /* If function mask is null, needn't enable it. */
347 function
= pinmux_generic_get_function(pctldev
, fselector
);
348 func
= function
->data
;
352 dev_dbg(pcs
->dev
, "enabling %s function%i\n",
353 func
->name
, fselector
);
355 for (i
= 0; i
< func
->nvals
; i
++) {
356 struct pcs_func_vals
*vals
;
360 vals
= &func
->vals
[i
];
361 raw_spin_lock_irqsave(&pcs
->lock
, flags
);
362 val
= pcs
->read(vals
->reg
);
364 if (pcs
->bits_per_mux
)
370 val
|= (vals
->val
& mask
);
371 pcs
->write(val
, vals
->reg
);
372 raw_spin_unlock_irqrestore(&pcs
->lock
, flags
);
378 static int pcs_request_gpio(struct pinctrl_dev
*pctldev
,
379 struct pinctrl_gpio_range
*range
, unsigned pin
)
381 struct pcs_device
*pcs
= pinctrl_dev_get_drvdata(pctldev
);
382 struct pcs_gpiofunc_range
*frange
= NULL
;
383 struct list_head
*pos
, *tmp
;
387 /* If function mask is null, return directly. */
391 list_for_each_safe(pos
, tmp
, &pcs
->gpiofuncs
) {
392 frange
= list_entry(pos
, struct pcs_gpiofunc_range
, node
);
393 if (pin
>= frange
->offset
+ frange
->npins
394 || pin
< frange
->offset
)
396 mux_bytes
= pcs
->width
/ BITS_PER_BYTE
;
398 if (pcs
->bits_per_mux
) {
399 int byte_num
, offset
, pin_shift
;
401 byte_num
= (pcs
->bits_per_pin
* pin
) / BITS_PER_BYTE
;
402 offset
= (byte_num
/ mux_bytes
) * mux_bytes
;
403 pin_shift
= pin
% (pcs
->width
/ pcs
->bits_per_pin
) *
406 data
= pcs
->read(pcs
->base
+ offset
);
407 data
&= ~(pcs
->fmask
<< pin_shift
);
408 data
|= frange
->gpiofunc
<< pin_shift
;
409 pcs
->write(data
, pcs
->base
+ offset
);
411 data
= pcs
->read(pcs
->base
+ pin
* mux_bytes
);
413 data
|= frange
->gpiofunc
;
414 pcs
->write(data
, pcs
->base
+ pin
* mux_bytes
);
421 static const struct pinmux_ops pcs_pinmux_ops
= {
422 .get_functions_count
= pinmux_generic_get_function_count
,
423 .get_function_name
= pinmux_generic_get_function_name
,
424 .get_function_groups
= pinmux_generic_get_function_groups
,
425 .set_mux
= pcs_set_mux
,
426 .gpio_request_enable
= pcs_request_gpio
,
429 /* Clear BIAS value */
430 static void pcs_pinconf_clear_bias(struct pinctrl_dev
*pctldev
, unsigned pin
)
432 unsigned long config
;
434 for (i
= 0; i
< ARRAY_SIZE(pcs_bias
); i
++) {
435 config
= pinconf_to_config_packed(pcs_bias
[i
], 0);
436 pcs_pinconf_set(pctldev
, pin
, &config
, 1);
441 * Check whether PIN_CONFIG_BIAS_DISABLE is valid.
442 * It's depend on that PULL_DOWN & PULL_UP configs are all invalid.
444 static bool pcs_pinconf_bias_disable(struct pinctrl_dev
*pctldev
, unsigned pin
)
446 unsigned long config
;
449 for (i
= 0; i
< ARRAY_SIZE(pcs_bias
); i
++) {
450 config
= pinconf_to_config_packed(pcs_bias
[i
], 0);
451 if (!pcs_pinconf_get(pctldev
, pin
, &config
))
459 static int pcs_pinconf_get(struct pinctrl_dev
*pctldev
,
460 unsigned pin
, unsigned long *config
)
462 struct pcs_device
*pcs
= pinctrl_dev_get_drvdata(pctldev
);
463 struct pcs_function
*func
;
464 enum pin_config_param param
;
465 unsigned offset
= 0, data
= 0, i
, j
, ret
;
467 ret
= pcs_get_function(pctldev
, pin
, &func
);
471 for (i
= 0; i
< func
->nconfs
; i
++) {
472 param
= pinconf_to_config_param(*config
);
473 if (param
== PIN_CONFIG_BIAS_DISABLE
) {
474 if (pcs_pinconf_bias_disable(pctldev
, pin
)) {
480 } else if (param
!= func
->conf
[i
].param
) {
484 offset
= pin
* (pcs
->width
/ BITS_PER_BYTE
);
485 data
= pcs
->read(pcs
->base
+ offset
) & func
->conf
[i
].mask
;
486 switch (func
->conf
[i
].param
) {
488 case PIN_CONFIG_BIAS_PULL_DOWN
:
489 case PIN_CONFIG_BIAS_PULL_UP
:
490 case PIN_CONFIG_INPUT_SCHMITT_ENABLE
:
491 if ((data
!= func
->conf
[i
].enable
) ||
492 (data
== func
->conf
[i
].disable
))
497 case PIN_CONFIG_INPUT_SCHMITT
:
498 for (j
= 0; j
< func
->nconfs
; j
++) {
499 switch (func
->conf
[j
].param
) {
500 case PIN_CONFIG_INPUT_SCHMITT_ENABLE
:
501 if (data
!= func
->conf
[j
].enable
)
510 case PIN_CONFIG_DRIVE_STRENGTH
:
511 case PIN_CONFIG_SLEW_RATE
:
512 case PIN_CONFIG_LOW_POWER_MODE
:
522 static int pcs_pinconf_set(struct pinctrl_dev
*pctldev
,
523 unsigned pin
, unsigned long *configs
,
524 unsigned num_configs
)
526 struct pcs_device
*pcs
= pinctrl_dev_get_drvdata(pctldev
);
527 struct pcs_function
*func
;
528 unsigned offset
= 0, shift
= 0, i
, data
, ret
;
532 ret
= pcs_get_function(pctldev
, pin
, &func
);
536 for (j
= 0; j
< num_configs
; j
++) {
537 for (i
= 0; i
< func
->nconfs
; i
++) {
538 if (pinconf_to_config_param(configs
[j
])
539 != func
->conf
[i
].param
)
542 offset
= pin
* (pcs
->width
/ BITS_PER_BYTE
);
543 data
= pcs
->read(pcs
->base
+ offset
);
544 arg
= pinconf_to_config_argument(configs
[j
]);
545 switch (func
->conf
[i
].param
) {
547 case PIN_CONFIG_INPUT_SCHMITT
:
548 case PIN_CONFIG_DRIVE_STRENGTH
:
549 case PIN_CONFIG_SLEW_RATE
:
550 case PIN_CONFIG_LOW_POWER_MODE
:
551 shift
= ffs(func
->conf
[i
].mask
) - 1;
552 data
&= ~func
->conf
[i
].mask
;
553 data
|= (arg
<< shift
) & func
->conf
[i
].mask
;
556 case PIN_CONFIG_BIAS_DISABLE
:
557 pcs_pinconf_clear_bias(pctldev
, pin
);
559 case PIN_CONFIG_BIAS_PULL_DOWN
:
560 case PIN_CONFIG_BIAS_PULL_UP
:
562 pcs_pinconf_clear_bias(pctldev
, pin
);
564 case PIN_CONFIG_INPUT_SCHMITT_ENABLE
:
565 data
&= ~func
->conf
[i
].mask
;
567 data
|= func
->conf
[i
].enable
;
569 data
|= func
->conf
[i
].disable
;
574 pcs
->write(data
, pcs
->base
+ offset
);
578 if (i
>= func
->nconfs
)
580 } /* for each config */
585 static int pcs_pinconf_group_get(struct pinctrl_dev
*pctldev
,
586 unsigned group
, unsigned long *config
)
588 const unsigned *pins
;
589 unsigned npins
, old
= 0;
592 ret
= pinctrl_generic_get_group_pins(pctldev
, group
, &pins
, &npins
);
595 for (i
= 0; i
< npins
; i
++) {
596 if (pcs_pinconf_get(pctldev
, pins
[i
], config
))
598 /* configs do not match between two pins */
599 if (i
&& (old
!= *config
))
606 static int pcs_pinconf_group_set(struct pinctrl_dev
*pctldev
,
607 unsigned group
, unsigned long *configs
,
608 unsigned num_configs
)
610 const unsigned *pins
;
614 ret
= pinctrl_generic_get_group_pins(pctldev
, group
, &pins
, &npins
);
617 for (i
= 0; i
< npins
; i
++) {
618 if (pcs_pinconf_set(pctldev
, pins
[i
], configs
, num_configs
))
624 static void pcs_pinconf_dbg_show(struct pinctrl_dev
*pctldev
,
625 struct seq_file
*s
, unsigned pin
)
629 static void pcs_pinconf_group_dbg_show(struct pinctrl_dev
*pctldev
,
630 struct seq_file
*s
, unsigned selector
)
634 static void pcs_pinconf_config_dbg_show(struct pinctrl_dev
*pctldev
,
636 unsigned long config
)
638 pinconf_generic_dump_config(pctldev
, s
, config
);
641 static const struct pinconf_ops pcs_pinconf_ops
= {
642 .pin_config_get
= pcs_pinconf_get
,
643 .pin_config_set
= pcs_pinconf_set
,
644 .pin_config_group_get
= pcs_pinconf_group_get
,
645 .pin_config_group_set
= pcs_pinconf_group_set
,
646 .pin_config_dbg_show
= pcs_pinconf_dbg_show
,
647 .pin_config_group_dbg_show
= pcs_pinconf_group_dbg_show
,
648 .pin_config_config_dbg_show
= pcs_pinconf_config_dbg_show
,
653 * pcs_add_pin() - add a pin to the static per controller pin array
654 * @pcs: pcs driver instance
655 * @offset: register offset from base
657 static int pcs_add_pin(struct pcs_device
*pcs
, unsigned offset
,
660 struct pcs_soc_data
*pcs_soc
= &pcs
->socdata
;
661 struct pinctrl_pin_desc
*pin
;
665 if (i
>= pcs
->desc
.npins
) {
666 dev_err(pcs
->dev
, "too many pins, max %i\n",
671 if (pcs_soc
->irq_enable_mask
) {
674 val
= pcs
->read(pcs
->base
+ offset
);
675 if (val
& pcs_soc
->irq_enable_mask
) {
676 dev_dbg(pcs
->dev
, "irq enabled at boot for pin at %lx (%x), clearing\n",
677 (unsigned long)pcs
->res
->start
+ offset
, val
);
678 val
&= ~pcs_soc
->irq_enable_mask
;
679 pcs
->write(val
, pcs
->base
+ offset
);
683 pin
= &pcs
->pins
.pa
[i
];
691 * pcs_allocate_pin_table() - adds all the pins for the pinctrl driver
692 * @pcs: pcs driver instance
694 * In case of errors, resources are freed in pcs_free_resources.
696 * If your hardware needs holes in the address space, then just set
697 * up multiple driver instances.
699 static int pcs_allocate_pin_table(struct pcs_device
*pcs
)
701 int mux_bytes
, nr_pins
, i
;
702 int num_pins_in_register
= 0;
704 mux_bytes
= pcs
->width
/ BITS_PER_BYTE
;
706 if (pcs
->bits_per_mux
) {
707 pcs
->bits_per_pin
= fls(pcs
->fmask
);
708 nr_pins
= (pcs
->size
* BITS_PER_BYTE
) / pcs
->bits_per_pin
;
709 num_pins_in_register
= pcs
->width
/ pcs
->bits_per_pin
;
711 nr_pins
= pcs
->size
/ mux_bytes
;
714 dev_dbg(pcs
->dev
, "allocating %i pins\n", nr_pins
);
715 pcs
->pins
.pa
= devm_kcalloc(pcs
->dev
,
716 nr_pins
, sizeof(*pcs
->pins
.pa
),
721 pcs
->desc
.pins
= pcs
->pins
.pa
;
722 pcs
->desc
.npins
= nr_pins
;
724 for (i
= 0; i
< pcs
->desc
.npins
; i
++) {
730 if (pcs
->bits_per_mux
) {
731 byte_num
= (pcs
->bits_per_pin
* i
) / BITS_PER_BYTE
;
732 offset
= (byte_num
/ mux_bytes
) * mux_bytes
;
733 pin_pos
= i
% num_pins_in_register
;
735 offset
= i
* mux_bytes
;
737 res
= pcs_add_pin(pcs
, offset
, pin_pos
);
739 dev_err(pcs
->dev
, "error adding pins: %i\n", res
);
748 * pcs_add_function() - adds a new function to the function list
749 * @pcs: pcs driver instance
750 * @np: device node of the mux entry
751 * @name: name of the function
752 * @vals: array of mux register value pairs used by the function
753 * @nvals: number of mux register value pairs
754 * @pgnames: array of pingroup names for the function
755 * @npgnames: number of pingroup names
757 static struct pcs_function
*pcs_add_function(struct pcs_device
*pcs
,
758 struct device_node
*np
,
760 struct pcs_func_vals
*vals
,
762 const char **pgnames
,
765 struct pcs_function
*function
;
768 function
= devm_kzalloc(pcs
->dev
, sizeof(*function
), GFP_KERNEL
);
772 function
->vals
= vals
;
773 function
->nvals
= nvals
;
775 res
= pinmux_generic_add_function(pcs
->pctl
, name
,
785 * pcs_get_pin_by_offset() - get a pin index based on the register offset
786 * @pcs: pcs driver instance
787 * @offset: register offset from the base
789 * Note that this is OK as long as the pins are in a static array.
791 static int pcs_get_pin_by_offset(struct pcs_device
*pcs
, unsigned offset
)
795 if (offset
>= pcs
->size
) {
796 dev_err(pcs
->dev
, "mux offset out of range: 0x%x (0x%x)\n",
801 if (pcs
->bits_per_mux
)
802 index
= (offset
* BITS_PER_BYTE
) / pcs
->bits_per_pin
;
804 index
= offset
/ (pcs
->width
/ BITS_PER_BYTE
);
810 * check whether data matches enable bits or disable bits
811 * Return value: 1 for matching enable bits, 0 for matching disable bits,
812 * and negative value for matching failure.
814 static int pcs_config_match(unsigned data
, unsigned enable
, unsigned disable
)
820 else if (data
== disable
)
825 static void add_config(struct pcs_conf_vals
**conf
, enum pin_config_param param
,
826 unsigned value
, unsigned enable
, unsigned disable
,
829 (*conf
)->param
= param
;
830 (*conf
)->val
= value
;
831 (*conf
)->enable
= enable
;
832 (*conf
)->disable
= disable
;
833 (*conf
)->mask
= mask
;
837 static void add_setting(unsigned long **setting
, enum pin_config_param param
,
840 **setting
= pinconf_to_config_packed(param
, arg
);
844 /* add pinconf setting with 2 parameters */
845 static void pcs_add_conf2(struct pcs_device
*pcs
, struct device_node
*np
,
846 const char *name
, enum pin_config_param param
,
847 struct pcs_conf_vals
**conf
, unsigned long **settings
)
849 unsigned value
[2], shift
;
852 ret
= of_property_read_u32_array(np
, name
, value
, 2);
855 /* set value & mask */
856 value
[0] &= value
[1];
857 shift
= ffs(value
[1]) - 1;
858 /* skip enable & disable */
859 add_config(conf
, param
, value
[0], 0, 0, value
[1]);
860 add_setting(settings
, param
, value
[0] >> shift
);
863 /* add pinconf setting with 4 parameters */
864 static void pcs_add_conf4(struct pcs_device
*pcs
, struct device_node
*np
,
865 const char *name
, enum pin_config_param param
,
866 struct pcs_conf_vals
**conf
, unsigned long **settings
)
871 /* value to set, enable, disable, mask */
872 ret
= of_property_read_u32_array(np
, name
, value
, 4);
876 dev_err(pcs
->dev
, "mask field of the property can't be 0\n");
879 value
[0] &= value
[3];
880 value
[1] &= value
[3];
881 value
[2] &= value
[3];
882 ret
= pcs_config_match(value
[0], value
[1], value
[2]);
884 dev_dbg(pcs
->dev
, "failed to match enable or disable bits\n");
885 add_config(conf
, param
, value
[0], value
[1], value
[2], value
[3]);
886 add_setting(settings
, param
, ret
);
889 static int pcs_parse_pinconf(struct pcs_device
*pcs
, struct device_node
*np
,
890 struct pcs_function
*func
,
891 struct pinctrl_map
**map
)
894 struct pinctrl_map
*m
= *map
;
895 int i
= 0, nconfs
= 0;
896 unsigned long *settings
= NULL
, *s
= NULL
;
897 struct pcs_conf_vals
*conf
= NULL
;
898 static const struct pcs_conf_type prop2
[] = {
899 { "pinctrl-single,drive-strength", PIN_CONFIG_DRIVE_STRENGTH
, },
900 { "pinctrl-single,slew-rate", PIN_CONFIG_SLEW_RATE
, },
901 { "pinctrl-single,input-schmitt", PIN_CONFIG_INPUT_SCHMITT
, },
902 { "pinctrl-single,low-power-mode", PIN_CONFIG_LOW_POWER_MODE
, },
904 static const struct pcs_conf_type prop4
[] = {
905 { "pinctrl-single,bias-pullup", PIN_CONFIG_BIAS_PULL_UP
, },
906 { "pinctrl-single,bias-pulldown", PIN_CONFIG_BIAS_PULL_DOWN
, },
907 { "pinctrl-single,input-schmitt-enable",
908 PIN_CONFIG_INPUT_SCHMITT_ENABLE
, },
911 /* If pinconf isn't supported, don't parse properties in below. */
912 if (!PCS_HAS_PINCONF
)
915 /* cacluate how much properties are supported in current node */
916 for (i
= 0; i
< ARRAY_SIZE(prop2
); i
++) {
917 if (of_find_property(np
, prop2
[i
].name
, NULL
))
920 for (i
= 0; i
< ARRAY_SIZE(prop4
); i
++) {
921 if (of_find_property(np
, prop4
[i
].name
, NULL
))
927 func
->conf
= devm_kcalloc(pcs
->dev
,
928 nconfs
, sizeof(struct pcs_conf_vals
),
932 func
->nconfs
= nconfs
;
933 conf
= &(func
->conf
[0]);
935 settings
= devm_kcalloc(pcs
->dev
, nconfs
, sizeof(unsigned long),
941 for (i
= 0; i
< ARRAY_SIZE(prop2
); i
++)
942 pcs_add_conf2(pcs
, np
, prop2
[i
].name
, prop2
[i
].param
,
944 for (i
= 0; i
< ARRAY_SIZE(prop4
); i
++)
945 pcs_add_conf4(pcs
, np
, prop4
[i
].name
, prop4
[i
].param
,
947 m
->type
= PIN_MAP_TYPE_CONFIGS_GROUP
;
948 m
->data
.configs
.group_or_pin
= np
->name
;
949 m
->data
.configs
.configs
= settings
;
950 m
->data
.configs
.num_configs
= nconfs
;
955 * smux_parse_one_pinctrl_entry() - parses a device tree mux entry
956 * @pctldev: pin controller device
957 * @pcs: pinctrl driver instance
958 * @np: device node of the mux entry
960 * @num_maps: number of map
961 * @pgnames: pingroup names
963 * Note that this binding currently supports only sets of one register + value.
965 * Also note that this driver tries to avoid understanding pin and function
966 * names because of the extra bloat they would cause especially in the case of
967 * a large number of pins. This driver just sets what is specified for the board
968 * in the .dts file. Further user space debugging tools can be developed to
969 * decipher the pin and function names using debugfs.
971 * If you are concerned about the boot time, set up the static pins in
972 * the bootloader, and only set up selected pins as device tree entries.
974 static int pcs_parse_one_pinctrl_entry(struct pcs_device
*pcs
,
975 struct device_node
*np
,
976 struct pinctrl_map
**map
,
978 const char **pgnames
)
980 const char *name
= "pinctrl-single,pins";
981 struct pcs_func_vals
*vals
;
982 int rows
, *pins
, found
= 0, res
= -ENOMEM
, i
;
983 struct pcs_function
*function
;
985 rows
= pinctrl_count_index_with_args(np
, name
);
987 dev_err(pcs
->dev
, "Invalid number of rows: %d\n", rows
);
991 vals
= devm_kcalloc(pcs
->dev
, rows
, sizeof(*vals
), GFP_KERNEL
);
995 pins
= devm_kcalloc(pcs
->dev
, rows
, sizeof(*pins
), GFP_KERNEL
);
999 for (i
= 0; i
< rows
; i
++) {
1000 struct of_phandle_args pinctrl_spec
;
1001 unsigned int offset
;
1004 res
= pinctrl_parse_index_with_args(np
, name
, i
, &pinctrl_spec
);
1008 if (pinctrl_spec
.args_count
< 2) {
1009 dev_err(pcs
->dev
, "invalid args_count for spec: %i\n",
1010 pinctrl_spec
.args_count
);
1014 /* Index plus one value cell */
1015 offset
= pinctrl_spec
.args
[0];
1016 vals
[found
].reg
= pcs
->base
+ offset
;
1017 vals
[found
].val
= pinctrl_spec
.args
[1];
1019 dev_dbg(pcs
->dev
, "%s index: 0x%x value: 0x%x\n",
1020 pinctrl_spec
.np
->name
, offset
, pinctrl_spec
.args
[1]);
1022 pin
= pcs_get_pin_by_offset(pcs
, offset
);
1025 "could not add functions for %s %ux\n",
1029 pins
[found
++] = pin
;
1032 pgnames
[0] = np
->name
;
1033 function
= pcs_add_function(pcs
, np
, np
->name
, vals
, found
, pgnames
, 1);
1039 res
= pinctrl_generic_add_group(pcs
->pctl
, np
->name
, pins
, found
, pcs
);
1043 (*map
)->type
= PIN_MAP_TYPE_MUX_GROUP
;
1044 (*map
)->data
.mux
.group
= np
->name
;
1045 (*map
)->data
.mux
.function
= np
->name
;
1047 if (PCS_HAS_PINCONF
) {
1048 res
= pcs_parse_pinconf(pcs
, np
, function
, map
);
1050 goto free_pingroups
;
1058 pinctrl_generic_remove_last_group(pcs
->pctl
);
1061 pinmux_generic_remove_last_function(pcs
->pctl
);
1064 devm_kfree(pcs
->dev
, pins
);
1067 devm_kfree(pcs
->dev
, vals
);
1072 static int pcs_parse_bits_in_pinctrl_entry(struct pcs_device
*pcs
,
1073 struct device_node
*np
,
1074 struct pinctrl_map
**map
,
1076 const char **pgnames
)
1078 const char *name
= "pinctrl-single,bits";
1079 struct pcs_func_vals
*vals
;
1080 int rows
, *pins
, found
= 0, res
= -ENOMEM
, i
;
1082 struct pcs_function
*function
;
1084 rows
= pinctrl_count_index_with_args(np
, name
);
1086 dev_err(pcs
->dev
, "Invalid number of rows: %d\n", rows
);
1090 npins_in_row
= pcs
->width
/ pcs
->bits_per_pin
;
1092 vals
= devm_kzalloc(pcs
->dev
,
1093 array3_size(rows
, npins_in_row
, sizeof(*vals
)),
1098 pins
= devm_kzalloc(pcs
->dev
,
1099 array3_size(rows
, npins_in_row
, sizeof(*pins
)),
1104 for (i
= 0; i
< rows
; i
++) {
1105 struct of_phandle_args pinctrl_spec
;
1106 unsigned offset
, val
;
1107 unsigned mask
, bit_pos
, val_pos
, mask_pos
, submask
;
1108 unsigned pin_num_from_lsb
;
1111 res
= pinctrl_parse_index_with_args(np
, name
, i
, &pinctrl_spec
);
1115 if (pinctrl_spec
.args_count
< 3) {
1116 dev_err(pcs
->dev
, "invalid args_count for spec: %i\n",
1117 pinctrl_spec
.args_count
);
1121 /* Index plus two value cells */
1122 offset
= pinctrl_spec
.args
[0];
1123 val
= pinctrl_spec
.args
[1];
1124 mask
= pinctrl_spec
.args
[2];
1126 dev_dbg(pcs
->dev
, "%s index: 0x%x value: 0x%x mask: 0x%x\n",
1127 pinctrl_spec
.np
->name
, offset
, val
, mask
);
1129 /* Parse pins in each row from LSB */
1131 bit_pos
= __ffs(mask
);
1132 pin_num_from_lsb
= bit_pos
/ pcs
->bits_per_pin
;
1133 mask_pos
= ((pcs
->fmask
) << bit_pos
);
1134 val_pos
= val
& mask_pos
;
1135 submask
= mask
& mask_pos
;
1137 if ((mask
& mask_pos
) == 0) {
1139 "Invalid mask for %s at 0x%x\n",
1146 if (submask
!= mask_pos
) {
1148 "Invalid submask 0x%x for %s at 0x%x\n",
1149 submask
, np
->name
, offset
);
1153 vals
[found
].mask
= submask
;
1154 vals
[found
].reg
= pcs
->base
+ offset
;
1155 vals
[found
].val
= val_pos
;
1157 pin
= pcs_get_pin_by_offset(pcs
, offset
);
1160 "could not add functions for %s %ux\n",
1164 pins
[found
++] = pin
+ pin_num_from_lsb
;
1168 pgnames
[0] = np
->name
;
1169 function
= pcs_add_function(pcs
, np
, np
->name
, vals
, found
, pgnames
, 1);
1175 res
= pinctrl_generic_add_group(pcs
->pctl
, np
->name
, pins
, found
, pcs
);
1179 (*map
)->type
= PIN_MAP_TYPE_MUX_GROUP
;
1180 (*map
)->data
.mux
.group
= np
->name
;
1181 (*map
)->data
.mux
.function
= np
->name
;
1183 if (PCS_HAS_PINCONF
) {
1184 dev_err(pcs
->dev
, "pinconf not supported\n");
1185 goto free_pingroups
;
1192 pinctrl_generic_remove_last_group(pcs
->pctl
);
1195 pinmux_generic_remove_last_function(pcs
->pctl
);
1197 devm_kfree(pcs
->dev
, pins
);
1200 devm_kfree(pcs
->dev
, vals
);
1205 * pcs_dt_node_to_map() - allocates and parses pinctrl maps
1206 * @pctldev: pinctrl instance
1207 * @np_config: device tree pinmux entry
1208 * @map: array of map entries
1209 * @num_maps: number of maps
1211 static int pcs_dt_node_to_map(struct pinctrl_dev
*pctldev
,
1212 struct device_node
*np_config
,
1213 struct pinctrl_map
**map
, unsigned *num_maps
)
1215 struct pcs_device
*pcs
;
1216 const char **pgnames
;
1219 pcs
= pinctrl_dev_get_drvdata(pctldev
);
1221 /* create 2 maps. One is for pinmux, and the other is for pinconf. */
1222 *map
= devm_kcalloc(pcs
->dev
, 2, sizeof(**map
), GFP_KERNEL
);
1228 pgnames
= devm_kzalloc(pcs
->dev
, sizeof(*pgnames
), GFP_KERNEL
);
1234 if (pcs
->bits_per_mux
) {
1235 ret
= pcs_parse_bits_in_pinctrl_entry(pcs
, np_config
, map
,
1238 dev_err(pcs
->dev
, "no pins entries for %s\n",
1243 ret
= pcs_parse_one_pinctrl_entry(pcs
, np_config
, map
,
1246 dev_err(pcs
->dev
, "no pins entries for %s\n",
1255 devm_kfree(pcs
->dev
, pgnames
);
1257 devm_kfree(pcs
->dev
, *map
);
1263 * pcs_irq_free() - free interrupt
1264 * @pcs: pcs driver instance
1266 static void pcs_irq_free(struct pcs_device
*pcs
)
1268 struct pcs_soc_data
*pcs_soc
= &pcs
->socdata
;
1270 if (pcs_soc
->irq
< 0)
1274 irq_domain_remove(pcs
->domain
);
1276 if (PCS_QUIRK_HAS_SHARED_IRQ
)
1277 free_irq(pcs_soc
->irq
, pcs_soc
);
1279 irq_set_chained_handler(pcs_soc
->irq
, NULL
);
1283 * pcs_free_resources() - free memory used by this driver
1284 * @pcs: pcs driver instance
1286 static void pcs_free_resources(struct pcs_device
*pcs
)
1289 pinctrl_unregister(pcs
->pctl
);
1291 #if IS_BUILTIN(CONFIG_PINCTRL_SINGLE)
1292 if (pcs
->missing_nr_pinctrl_cells
)
1293 of_remove_property(pcs
->np
, pcs
->missing_nr_pinctrl_cells
);
1297 static int pcs_add_gpio_func(struct device_node
*node
, struct pcs_device
*pcs
)
1299 const char *propname
= "pinctrl-single,gpio-range";
1300 const char *cellname
= "#pinctrl-single,gpio-range-cells";
1301 struct of_phandle_args gpiospec
;
1302 struct pcs_gpiofunc_range
*range
;
1305 for (i
= 0; ; i
++) {
1306 ret
= of_parse_phandle_with_args(node
, propname
, cellname
,
1308 /* Do not treat it as error. Only treat it as end condition. */
1313 range
= devm_kzalloc(pcs
->dev
, sizeof(*range
), GFP_KERNEL
);
1318 range
->offset
= gpiospec
.args
[0];
1319 range
->npins
= gpiospec
.args
[1];
1320 range
->gpiofunc
= gpiospec
.args
[2];
1321 mutex_lock(&pcs
->mutex
);
1322 list_add_tail(&range
->node
, &pcs
->gpiofuncs
);
1323 mutex_unlock(&pcs
->mutex
);
1328 * @reg: virtual address of interrupt register
1329 * @hwirq: hardware irq number
1330 * @irq: virtual irq number
1333 struct pcs_interrupt
{
1335 irq_hw_number_t hwirq
;
1337 struct list_head node
;
1341 * pcs_irq_set() - enables or disables an interrupt
1343 * Note that this currently assumes one interrupt per pinctrl
1344 * register that is typically used for wake-up events.
1346 static inline void pcs_irq_set(struct pcs_soc_data
*pcs_soc
,
1347 int irq
, const bool enable
)
1349 struct pcs_device
*pcs
;
1350 struct list_head
*pos
;
1353 pcs
= container_of(pcs_soc
, struct pcs_device
, socdata
);
1354 list_for_each(pos
, &pcs
->irqs
) {
1355 struct pcs_interrupt
*pcswi
;
1358 pcswi
= list_entry(pos
, struct pcs_interrupt
, node
);
1359 if (irq
!= pcswi
->irq
)
1362 soc_mask
= pcs_soc
->irq_enable_mask
;
1363 raw_spin_lock(&pcs
->lock
);
1364 mask
= pcs
->read(pcswi
->reg
);
1369 pcs
->write(mask
, pcswi
->reg
);
1371 /* flush posted write */
1372 mask
= pcs
->read(pcswi
->reg
);
1373 raw_spin_unlock(&pcs
->lock
);
1381 * pcs_irq_mask() - mask pinctrl interrupt
1382 * @d: interrupt data
1384 static void pcs_irq_mask(struct irq_data
*d
)
1386 struct pcs_soc_data
*pcs_soc
= irq_data_get_irq_chip_data(d
);
1388 pcs_irq_set(pcs_soc
, d
->irq
, false);
1392 * pcs_irq_unmask() - unmask pinctrl interrupt
1393 * @d: interrupt data
1395 static void pcs_irq_unmask(struct irq_data
*d
)
1397 struct pcs_soc_data
*pcs_soc
= irq_data_get_irq_chip_data(d
);
1399 pcs_irq_set(pcs_soc
, d
->irq
, true);
1403 * pcs_irq_set_wake() - toggle the suspend and resume wake up
1404 * @d: interrupt data
1405 * @state: wake-up state
1407 * Note that this should be called only for suspend and resume.
1408 * For runtime PM, the wake-up events should be enabled by default.
1410 static int pcs_irq_set_wake(struct irq_data
*d
, unsigned int state
)
1421 * pcs_irq_handle() - common interrupt handler
1422 * @pcs_irq: interrupt data
1424 * Note that this currently assumes we have one interrupt bit per
1425 * mux register. This interrupt is typically used for wake-up events.
1426 * For more complex interrupts different handlers can be specified.
1428 static int pcs_irq_handle(struct pcs_soc_data
*pcs_soc
)
1430 struct pcs_device
*pcs
;
1431 struct list_head
*pos
;
1434 pcs
= container_of(pcs_soc
, struct pcs_device
, socdata
);
1435 list_for_each(pos
, &pcs
->irqs
) {
1436 struct pcs_interrupt
*pcswi
;
1439 pcswi
= list_entry(pos
, struct pcs_interrupt
, node
);
1440 raw_spin_lock(&pcs
->lock
);
1441 mask
= pcs
->read(pcswi
->reg
);
1442 raw_spin_unlock(&pcs
->lock
);
1443 if (mask
& pcs_soc
->irq_status_mask
) {
1444 generic_handle_irq(irq_find_mapping(pcs
->domain
,
1454 * pcs_irq_handler() - handler for the shared interrupt case
1458 * Use this for cases where multiple instances of
1459 * pinctrl-single share a single interrupt like on omaps.
1461 static irqreturn_t
pcs_irq_handler(int irq
, void *d
)
1463 struct pcs_soc_data
*pcs_soc
= d
;
1465 return pcs_irq_handle(pcs_soc
) ? IRQ_HANDLED
: IRQ_NONE
;
1469 * pcs_irq_handle() - handler for the dedicated chained interrupt case
1471 * @desc: interrupt descriptor
1473 * Use this if you have a separate interrupt for each
1474 * pinctrl-single instance.
1476 static void pcs_irq_chain_handler(struct irq_desc
*desc
)
1478 struct pcs_soc_data
*pcs_soc
= irq_desc_get_handler_data(desc
);
1479 struct irq_chip
*chip
;
1481 chip
= irq_desc_get_chip(desc
);
1482 chained_irq_enter(chip
, desc
);
1483 pcs_irq_handle(pcs_soc
);
1484 /* REVISIT: export and add handle_bad_irq(irq, desc)? */
1485 chained_irq_exit(chip
, desc
);
1488 static int pcs_irqdomain_map(struct irq_domain
*d
, unsigned int irq
,
1489 irq_hw_number_t hwirq
)
1491 struct pcs_soc_data
*pcs_soc
= d
->host_data
;
1492 struct pcs_device
*pcs
;
1493 struct pcs_interrupt
*pcswi
;
1495 pcs
= container_of(pcs_soc
, struct pcs_device
, socdata
);
1496 pcswi
= devm_kzalloc(pcs
->dev
, sizeof(*pcswi
), GFP_KERNEL
);
1500 pcswi
->reg
= pcs
->base
+ hwirq
;
1501 pcswi
->hwirq
= hwirq
;
1504 mutex_lock(&pcs
->mutex
);
1505 list_add_tail(&pcswi
->node
, &pcs
->irqs
);
1506 mutex_unlock(&pcs
->mutex
);
1508 irq_set_chip_data(irq
, pcs_soc
);
1509 irq_set_chip_and_handler(irq
, &pcs
->chip
,
1511 irq_set_lockdep_class(irq
, &pcs_lock_class
, &pcs_request_class
);
1512 irq_set_noprobe(irq
);
1517 static const struct irq_domain_ops pcs_irqdomain_ops
= {
1518 .map
= pcs_irqdomain_map
,
1519 .xlate
= irq_domain_xlate_onecell
,
1523 * pcs_irq_init_chained_handler() - set up a chained interrupt handler
1524 * @pcs: pcs driver instance
1525 * @np: device node pointer
1527 static int pcs_irq_init_chained_handler(struct pcs_device
*pcs
,
1528 struct device_node
*np
)
1530 struct pcs_soc_data
*pcs_soc
= &pcs
->socdata
;
1531 const char *name
= "pinctrl";
1534 if (!pcs_soc
->irq_enable_mask
||
1535 !pcs_soc
->irq_status_mask
) {
1540 INIT_LIST_HEAD(&pcs
->irqs
);
1541 pcs
->chip
.name
= name
;
1542 pcs
->chip
.irq_ack
= pcs_irq_mask
;
1543 pcs
->chip
.irq_mask
= pcs_irq_mask
;
1544 pcs
->chip
.irq_unmask
= pcs_irq_unmask
;
1545 pcs
->chip
.irq_set_wake
= pcs_irq_set_wake
;
1547 if (PCS_QUIRK_HAS_SHARED_IRQ
) {
1550 res
= request_irq(pcs_soc
->irq
, pcs_irq_handler
,
1551 IRQF_SHARED
| IRQF_NO_SUSPEND
|
1559 irq_set_chained_handler_and_data(pcs_soc
->irq
,
1560 pcs_irq_chain_handler
,
1565 * We can use the register offset as the hardirq
1566 * number as irq_domain_add_simple maps them lazily.
1567 * This way we can easily support more than one
1568 * interrupt per function if needed.
1570 num_irqs
= pcs
->size
;
1572 pcs
->domain
= irq_domain_add_simple(np
, num_irqs
, 0,
1576 irq_set_chained_handler(pcs_soc
->irq
, NULL
);
1584 static int pcs_save_context(struct pcs_device
*pcs
)
1591 mux_bytes
= pcs
->width
/ BITS_PER_BYTE
;
1593 if (!pcs
->saved_vals
) {
1594 pcs
->saved_vals
= devm_kzalloc(pcs
->dev
, pcs
->size
, GFP_ATOMIC
);
1595 if (!pcs
->saved_vals
)
1599 switch (pcs
->width
) {
1601 regsl
= (u64
*)pcs
->saved_vals
;
1602 for (i
= 0; i
< pcs
->size
/ mux_bytes
; i
++)
1603 regsl
[i
] = pcs
->read(pcs
->base
+ i
* mux_bytes
);
1606 regsw
= (u32
*)pcs
->saved_vals
;
1607 for (i
= 0; i
< pcs
->size
/ mux_bytes
; i
++)
1608 regsw
[i
] = pcs
->read(pcs
->base
+ i
* mux_bytes
);
1611 regshw
= (u16
*)pcs
->saved_vals
;
1612 for (i
= 0; i
< pcs
->size
/ mux_bytes
; i
++)
1613 regshw
[i
] = pcs
->read(pcs
->base
+ i
* mux_bytes
);
1620 static void pcs_restore_context(struct pcs_device
*pcs
)
1627 mux_bytes
= pcs
->width
/ BITS_PER_BYTE
;
1629 switch (pcs
->width
) {
1631 regsl
= (u64
*)pcs
->saved_vals
;
1632 for (i
= 0; i
< pcs
->size
/ mux_bytes
; i
++)
1633 pcs
->write(regsl
[i
], pcs
->base
+ i
* mux_bytes
);
1636 regsw
= (u32
*)pcs
->saved_vals
;
1637 for (i
= 0; i
< pcs
->size
/ mux_bytes
; i
++)
1638 pcs
->write(regsw
[i
], pcs
->base
+ i
* mux_bytes
);
1641 regshw
= (u16
*)pcs
->saved_vals
;
1642 for (i
= 0; i
< pcs
->size
/ mux_bytes
; i
++)
1643 pcs
->write(regshw
[i
], pcs
->base
+ i
* mux_bytes
);
1648 static int pinctrl_single_suspend(struct platform_device
*pdev
,
1651 struct pcs_device
*pcs
;
1653 pcs
= platform_get_drvdata(pdev
);
1657 if (pcs
->flags
& PCS_CONTEXT_LOSS_OFF
) {
1660 ret
= pcs_save_context(pcs
);
1665 return pinctrl_force_sleep(pcs
->pctl
);
1668 static int pinctrl_single_resume(struct platform_device
*pdev
)
1670 struct pcs_device
*pcs
;
1672 pcs
= platform_get_drvdata(pdev
);
1676 if (pcs
->flags
& PCS_CONTEXT_LOSS_OFF
)
1677 pcs_restore_context(pcs
);
1679 return pinctrl_force_default(pcs
->pctl
);
1684 * pcs_quirk_missing_pinctrl_cells - handle legacy binding
1685 * @pcs: pinctrl driver instance
1686 * @np: device tree node
1687 * @cells: number of cells
1689 * Handle legacy binding with no #pinctrl-cells. This should be
1690 * always two pinctrl-single,bit-per-mux and one for others.
1691 * At some point we may want to consider removing this.
1693 static int pcs_quirk_missing_pinctrl_cells(struct pcs_device
*pcs
,
1694 struct device_node
*np
,
1698 const char *name
= "#pinctrl-cells";
1702 error
= of_property_read_u32(np
, name
, &val
);
1706 dev_warn(pcs
->dev
, "please update dts to use %s = <%i>\n",
1709 p
= devm_kzalloc(pcs
->dev
, sizeof(*p
), GFP_KERNEL
);
1713 p
->length
= sizeof(__be32
);
1714 p
->value
= devm_kzalloc(pcs
->dev
, sizeof(__be32
), GFP_KERNEL
);
1717 *(__be32
*)p
->value
= cpu_to_be32(cells
);
1719 p
->name
= devm_kstrdup(pcs
->dev
, name
, GFP_KERNEL
);
1723 pcs
->missing_nr_pinctrl_cells
= p
;
1725 #if IS_BUILTIN(CONFIG_PINCTRL_SINGLE)
1726 error
= of_add_property(np
, pcs
->missing_nr_pinctrl_cells
);
1732 static int pcs_probe(struct platform_device
*pdev
)
1734 struct device_node
*np
= pdev
->dev
.of_node
;
1735 struct pcs_pdata
*pdata
;
1736 struct resource
*res
;
1737 struct pcs_device
*pcs
;
1738 const struct pcs_soc_data
*soc
;
1741 soc
= of_device_get_match_data(&pdev
->dev
);
1745 pcs
= devm_kzalloc(&pdev
->dev
, sizeof(*pcs
), GFP_KERNEL
);
1749 pcs
->dev
= &pdev
->dev
;
1751 raw_spin_lock_init(&pcs
->lock
);
1752 mutex_init(&pcs
->mutex
);
1753 INIT_LIST_HEAD(&pcs
->gpiofuncs
);
1754 pcs
->flags
= soc
->flags
;
1755 memcpy(&pcs
->socdata
, soc
, sizeof(*soc
));
1757 ret
= of_property_read_u32(np
, "pinctrl-single,register-width",
1760 dev_err(pcs
->dev
, "register width not specified\n");
1765 ret
= of_property_read_u32(np
, "pinctrl-single,function-mask",
1768 pcs
->fshift
= __ffs(pcs
->fmask
);
1769 pcs
->fmax
= pcs
->fmask
>> pcs
->fshift
;
1771 /* If mask property doesn't exist, function mux is invalid. */
1777 ret
= of_property_read_u32(np
, "pinctrl-single,function-off",
1780 pcs
->foff
= PCS_OFF_DISABLED
;
1782 pcs
->bits_per_mux
= of_property_read_bool(np
,
1783 "pinctrl-single,bit-per-mux");
1784 ret
= pcs_quirk_missing_pinctrl_cells(pcs
, np
,
1785 pcs
->bits_per_mux
? 2 : 1);
1787 dev_err(&pdev
->dev
, "unable to patch #pinctrl-cells\n");
1792 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1794 dev_err(pcs
->dev
, "could not get resource\n");
1798 pcs
->res
= devm_request_mem_region(pcs
->dev
, res
->start
,
1799 resource_size(res
), DRIVER_NAME
);
1801 dev_err(pcs
->dev
, "could not get mem_region\n");
1805 pcs
->size
= resource_size(pcs
->res
);
1806 pcs
->base
= devm_ioremap(pcs
->dev
, pcs
->res
->start
, pcs
->size
);
1808 dev_err(pcs
->dev
, "could not ioremap\n");
1812 platform_set_drvdata(pdev
, pcs
);
1814 switch (pcs
->width
) {
1816 pcs
->read
= pcs_readb
;
1817 pcs
->write
= pcs_writeb
;
1820 pcs
->read
= pcs_readw
;
1821 pcs
->write
= pcs_writew
;
1824 pcs
->read
= pcs_readl
;
1825 pcs
->write
= pcs_writel
;
1831 pcs
->desc
.name
= DRIVER_NAME
;
1832 pcs
->desc
.pctlops
= &pcs_pinctrl_ops
;
1833 pcs
->desc
.pmxops
= &pcs_pinmux_ops
;
1834 if (PCS_HAS_PINCONF
)
1835 pcs
->desc
.confops
= &pcs_pinconf_ops
;
1836 pcs
->desc
.owner
= THIS_MODULE
;
1838 ret
= pcs_allocate_pin_table(pcs
);
1842 ret
= pinctrl_register_and_init(&pcs
->desc
, pcs
->dev
, pcs
, &pcs
->pctl
);
1844 dev_err(pcs
->dev
, "could not register single pinctrl driver\n");
1848 ret
= pcs_add_gpio_func(np
, pcs
);
1852 pcs
->socdata
.irq
= irq_of_parse_and_map(np
, 0);
1853 if (pcs
->socdata
.irq
)
1854 pcs
->flags
|= PCS_FEAT_IRQ
;
1856 /* We still need auxdata for some omaps for PRM interrupts */
1857 pdata
= dev_get_platdata(&pdev
->dev
);
1860 pcs
->socdata
.rearm
= pdata
->rearm
;
1862 pcs
->socdata
.irq
= pdata
->irq
;
1863 pcs
->flags
|= PCS_FEAT_IRQ
;
1868 ret
= pcs_irq_init_chained_handler(pcs
, np
);
1870 dev_warn(pcs
->dev
, "initialized with no interrupts\n");
1873 dev_info(pcs
->dev
, "%i pins, size %u\n", pcs
->desc
.npins
, pcs
->size
);
1875 return pinctrl_enable(pcs
->pctl
);
1878 pcs_free_resources(pcs
);
1883 static int pcs_remove(struct platform_device
*pdev
)
1885 struct pcs_device
*pcs
= platform_get_drvdata(pdev
);
1890 pcs_free_resources(pcs
);
1895 static const struct pcs_soc_data pinctrl_single_omap_wkup
= {
1896 .flags
= PCS_QUIRK_SHARED_IRQ
,
1897 .irq_enable_mask
= (1 << 14), /* OMAP_WAKEUP_EN */
1898 .irq_status_mask
= (1 << 15), /* OMAP_WAKEUP_EVENT */
1901 static const struct pcs_soc_data pinctrl_single_dra7
= {
1902 .irq_enable_mask
= (1 << 24), /* WAKEUPENABLE */
1903 .irq_status_mask
= (1 << 25), /* WAKEUPEVENT */
1906 static const struct pcs_soc_data pinctrl_single_am437x
= {
1907 .flags
= PCS_QUIRK_SHARED_IRQ
| PCS_CONTEXT_LOSS_OFF
,
1908 .irq_enable_mask
= (1 << 29), /* OMAP_WAKEUP_EN */
1909 .irq_status_mask
= (1 << 30), /* OMAP_WAKEUP_EVENT */
1912 static const struct pcs_soc_data pinctrl_single
= {
1915 static const struct pcs_soc_data pinconf_single
= {
1916 .flags
= PCS_FEAT_PINCONF
,
1919 static const struct of_device_id pcs_of_match
[] = {
1920 { .compatible
= "ti,omap3-padconf", .data
= &pinctrl_single_omap_wkup
},
1921 { .compatible
= "ti,omap4-padconf", .data
= &pinctrl_single_omap_wkup
},
1922 { .compatible
= "ti,omap5-padconf", .data
= &pinctrl_single_omap_wkup
},
1923 { .compatible
= "ti,dra7-padconf", .data
= &pinctrl_single_dra7
},
1924 { .compatible
= "ti,am437-padconf", .data
= &pinctrl_single_am437x
},
1925 { .compatible
= "pinctrl-single", .data
= &pinctrl_single
},
1926 { .compatible
= "pinconf-single", .data
= &pinconf_single
},
1929 MODULE_DEVICE_TABLE(of
, pcs_of_match
);
1931 static struct platform_driver pcs_driver
= {
1933 .remove
= pcs_remove
,
1935 .name
= DRIVER_NAME
,
1936 .of_match_table
= pcs_of_match
,
1939 .suspend
= pinctrl_single_suspend
,
1940 .resume
= pinctrl_single_resume
,
1944 module_platform_driver(pcs_driver
);
1946 MODULE_AUTHOR("Tony Lindgren <tony@atomide.com>");
1947 MODULE_DESCRIPTION("One-register-per-pin type device tree based pinctrl driver");
1948 MODULE_LICENSE("GPL v2");