2 * pin-controller/pin-mux/pin-config/gpio-driver for Samsung's SoC's.
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
6 * Copyright (c) 2012 Linaro Ltd
7 * http://www.linaro.org
9 * Author: Thomas Abraham <thomas.ab@samsung.com>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This driver implements the Samsung pinctrl driver. It supports setting up of
17 * pinmux and pinconf configurations. The gpiolib interface is also included.
18 * External interrupt (gpio and wakeup) support are not included in this driver
19 * but provides extensions to which platform specific implementation of the gpio
20 * and wakeup interrupts can be hooked to.
23 #include <linux/module.h>
24 #include <linux/platform_device.h>
26 #include <linux/slab.h>
27 #include <linux/err.h>
28 #include <linux/gpio.h>
29 #include <linux/irqdomain.h>
30 #include <linux/spinlock.h>
31 #include <linux/syscore_ops.h>
34 #include "pinctrl-samsung.h"
36 #define GROUP_SUFFIX "-grp"
37 #define GSUFFIX_LEN sizeof(GROUP_SUFFIX)
38 #define FUNCTION_SUFFIX "-mux"
39 #define FSUFFIX_LEN sizeof(FUNCTION_SUFFIX)
41 /* list of all possible config options supported */
42 static struct pin_config
{
44 unsigned int cfg_type
;
46 { "samsung,pin-pud", PINCFG_TYPE_PUD
},
47 { "samsung,pin-drv", PINCFG_TYPE_DRV
},
48 { "samsung,pin-con-pdn", PINCFG_TYPE_CON_PDN
},
49 { "samsung,pin-pud-pdn", PINCFG_TYPE_PUD_PDN
},
52 /* Global list of devices (struct samsung_pinctrl_drv_data) */
53 static LIST_HEAD(drvdata_list
);
55 static unsigned int pin_base
;
57 static inline struct samsung_pin_bank
*gc_to_pin_bank(struct gpio_chip
*gc
)
59 return container_of(gc
, struct samsung_pin_bank
, gpio_chip
);
62 /* check if the selector is a valid pin group selector */
63 static int samsung_get_group_count(struct pinctrl_dev
*pctldev
)
65 struct samsung_pinctrl_drv_data
*drvdata
;
67 drvdata
= pinctrl_dev_get_drvdata(pctldev
);
68 return drvdata
->nr_groups
;
71 /* return the name of the group selected by the group selector */
72 static const char *samsung_get_group_name(struct pinctrl_dev
*pctldev
,
75 struct samsung_pinctrl_drv_data
*drvdata
;
77 drvdata
= pinctrl_dev_get_drvdata(pctldev
);
78 return drvdata
->pin_groups
[selector
].name
;
81 /* return the pin numbers associated with the specified group */
82 static int samsung_get_group_pins(struct pinctrl_dev
*pctldev
,
83 unsigned selector
, const unsigned **pins
, unsigned *num_pins
)
85 struct samsung_pinctrl_drv_data
*drvdata
;
87 drvdata
= pinctrl_dev_get_drvdata(pctldev
);
88 *pins
= drvdata
->pin_groups
[selector
].pins
;
89 *num_pins
= drvdata
->pin_groups
[selector
].num_pins
;
93 /* create pinctrl_map entries by parsing device tree nodes */
94 static int samsung_dt_node_to_map(struct pinctrl_dev
*pctldev
,
95 struct device_node
*np
, struct pinctrl_map
**maps
,
98 struct device
*dev
= pctldev
->dev
;
99 struct pinctrl_map
*map
;
100 unsigned long *cfg
= NULL
;
102 int cfg_cnt
= 0, map_cnt
= 0, idx
= 0;
104 /* count the number of config options specfied in the node */
105 for (idx
= 0; idx
< ARRAY_SIZE(pcfgs
); idx
++) {
106 if (of_find_property(np
, pcfgs
[idx
].prop_cfg
, NULL
))
111 * Find out the number of map entries to create. All the config options
112 * can be accomadated into a single config map entry.
116 if (of_find_property(np
, "samsung,pin-function", NULL
))
119 dev_err(dev
, "node %s does not have either config or function "
120 "configurations\n", np
->name
);
124 /* Allocate memory for pin-map entries */
125 map
= kzalloc(sizeof(*map
) * map_cnt
, GFP_KERNEL
);
127 dev_err(dev
, "could not alloc memory for pin-maps\n");
133 * Allocate memory for pin group name. The pin group name is derived
134 * from the node name from which these map entries are be created.
136 gname
= kzalloc(strlen(np
->name
) + GSUFFIX_LEN
, GFP_KERNEL
);
138 dev_err(dev
, "failed to alloc memory for group name\n");
141 sprintf(gname
, "%s%s", np
->name
, GROUP_SUFFIX
);
144 * don't have config options? then skip over to creating function
150 /* Allocate memory for config entries */
151 cfg
= kzalloc(sizeof(*cfg
) * cfg_cnt
, GFP_KERNEL
);
153 dev_err(dev
, "failed to alloc memory for configs\n");
157 /* Prepare a list of config settings */
158 for (idx
= 0, cfg_cnt
= 0; idx
< ARRAY_SIZE(pcfgs
); idx
++) {
160 if (!of_property_read_u32(np
, pcfgs
[idx
].prop_cfg
, &value
))
162 PINCFG_PACK(pcfgs
[idx
].cfg_type
, value
);
165 /* create the config map entry */
166 map
[*nmaps
].data
.configs
.group_or_pin
= gname
;
167 map
[*nmaps
].data
.configs
.configs
= cfg
;
168 map
[*nmaps
].data
.configs
.num_configs
= cfg_cnt
;
169 map
[*nmaps
].type
= PIN_MAP_TYPE_CONFIGS_GROUP
;
173 /* create the function map entry */
174 if (of_find_property(np
, "samsung,pin-function", NULL
)) {
175 fname
= kzalloc(strlen(np
->name
) + FSUFFIX_LEN
, GFP_KERNEL
);
177 dev_err(dev
, "failed to alloc memory for func name\n");
180 sprintf(fname
, "%s%s", np
->name
, FUNCTION_SUFFIX
);
182 map
[*nmaps
].data
.mux
.group
= gname
;
183 map
[*nmaps
].data
.mux
.function
= fname
;
184 map
[*nmaps
].type
= PIN_MAP_TYPE_MUX_GROUP
;
200 /* free the memory allocated to hold the pin-map table */
201 static void samsung_dt_free_map(struct pinctrl_dev
*pctldev
,
202 struct pinctrl_map
*map
, unsigned num_maps
)
206 for (idx
= 0; idx
< num_maps
; idx
++) {
207 if (map
[idx
].type
== PIN_MAP_TYPE_MUX_GROUP
) {
208 kfree(map
[idx
].data
.mux
.function
);
210 kfree(map
[idx
].data
.mux
.group
);
211 } else if (map
->type
== PIN_MAP_TYPE_CONFIGS_GROUP
) {
212 kfree(map
[idx
].data
.configs
.configs
);
214 kfree(map
[idx
].data
.configs
.group_or_pin
);
221 /* list of pinctrl callbacks for the pinctrl core */
222 static const struct pinctrl_ops samsung_pctrl_ops
= {
223 .get_groups_count
= samsung_get_group_count
,
224 .get_group_name
= samsung_get_group_name
,
225 .get_group_pins
= samsung_get_group_pins
,
226 .dt_node_to_map
= samsung_dt_node_to_map
,
227 .dt_free_map
= samsung_dt_free_map
,
230 /* check if the selector is a valid pin function selector */
231 static int samsung_get_functions_count(struct pinctrl_dev
*pctldev
)
233 struct samsung_pinctrl_drv_data
*drvdata
;
235 drvdata
= pinctrl_dev_get_drvdata(pctldev
);
236 return drvdata
->nr_functions
;
239 /* return the name of the pin function specified */
240 static const char *samsung_pinmux_get_fname(struct pinctrl_dev
*pctldev
,
243 struct samsung_pinctrl_drv_data
*drvdata
;
245 drvdata
= pinctrl_dev_get_drvdata(pctldev
);
246 return drvdata
->pmx_functions
[selector
].name
;
249 /* return the groups associated for the specified function selector */
250 static int samsung_pinmux_get_groups(struct pinctrl_dev
*pctldev
,
251 unsigned selector
, const char * const **groups
,
252 unsigned * const num_groups
)
254 struct samsung_pinctrl_drv_data
*drvdata
;
256 drvdata
= pinctrl_dev_get_drvdata(pctldev
);
257 *groups
= drvdata
->pmx_functions
[selector
].groups
;
258 *num_groups
= drvdata
->pmx_functions
[selector
].num_groups
;
263 * given a pin number that is local to a pin controller, find out the pin bank
264 * and the register base of the pin bank.
266 static void pin_to_reg_bank(struct samsung_pinctrl_drv_data
*drvdata
,
267 unsigned pin
, void __iomem
**reg
, u32
*offset
,
268 struct samsung_pin_bank
**bank
)
270 struct samsung_pin_bank
*b
;
272 b
= drvdata
->ctrl
->pin_banks
;
274 while ((pin
>= b
->pin_base
) &&
275 ((b
->pin_base
+ b
->nr_pins
- 1) < pin
))
278 *reg
= drvdata
->virt_base
+ b
->pctl_offset
;
279 *offset
= pin
- b
->pin_base
;
284 /* enable or disable a pinmux function */
285 static void samsung_pinmux_setup(struct pinctrl_dev
*pctldev
, unsigned selector
,
286 unsigned group
, bool enable
)
288 struct samsung_pinctrl_drv_data
*drvdata
;
289 const unsigned int *pins
;
290 struct samsung_pin_bank
*bank
;
292 u32 mask
, shift
, data
, pin_offset
, cnt
;
295 drvdata
= pinctrl_dev_get_drvdata(pctldev
);
296 pins
= drvdata
->pin_groups
[group
].pins
;
299 * for each pin in the pin group selected, program the correspoding pin
300 * pin function number in the config register.
302 for (cnt
= 0; cnt
< drvdata
->pin_groups
[group
].num_pins
; cnt
++) {
303 struct samsung_pin_bank_type
*type
;
305 pin_to_reg_bank(drvdata
, pins
[cnt
] - drvdata
->ctrl
->base
,
306 ®
, &pin_offset
, &bank
);
308 mask
= (1 << type
->fld_width
[PINCFG_TYPE_FUNC
]) - 1;
309 shift
= pin_offset
* type
->fld_width
[PINCFG_TYPE_FUNC
];
311 /* Some banks have two config registers */
316 spin_lock_irqsave(&bank
->slock
, flags
);
318 data
= readl(reg
+ type
->reg_offset
[PINCFG_TYPE_FUNC
]);
319 data
&= ~(mask
<< shift
);
321 data
|= drvdata
->pin_groups
[group
].func
<< shift
;
322 writel(data
, reg
+ type
->reg_offset
[PINCFG_TYPE_FUNC
]);
324 spin_unlock_irqrestore(&bank
->slock
, flags
);
328 /* enable a specified pinmux by writing to registers */
329 static int samsung_pinmux_enable(struct pinctrl_dev
*pctldev
, unsigned selector
,
332 samsung_pinmux_setup(pctldev
, selector
, group
, true);
336 /* disable a specified pinmux by writing to registers */
337 static void samsung_pinmux_disable(struct pinctrl_dev
*pctldev
,
338 unsigned selector
, unsigned group
)
340 samsung_pinmux_setup(pctldev
, selector
, group
, false);
344 * The calls to gpio_direction_output() and gpio_direction_input()
345 * leads to this function call (via the pinctrl_gpio_direction_{input|output}()
346 * function called from the gpiolib interface).
348 static int samsung_pinmux_gpio_set_direction(struct pinctrl_dev
*pctldev
,
349 struct pinctrl_gpio_range
*range
, unsigned offset
, bool input
)
351 struct samsung_pin_bank_type
*type
;
352 struct samsung_pin_bank
*bank
;
353 struct samsung_pinctrl_drv_data
*drvdata
;
355 u32 data
, pin_offset
, mask
, shift
;
358 bank
= gc_to_pin_bank(range
->gc
);
360 drvdata
= pinctrl_dev_get_drvdata(pctldev
);
362 pin_offset
= offset
- bank
->pin_base
;
363 reg
= drvdata
->virt_base
+ bank
->pctl_offset
+
364 type
->reg_offset
[PINCFG_TYPE_FUNC
];
366 mask
= (1 << type
->fld_width
[PINCFG_TYPE_FUNC
]) - 1;
367 shift
= pin_offset
* type
->fld_width
[PINCFG_TYPE_FUNC
];
369 /* Some banks have two config registers */
374 spin_lock_irqsave(&bank
->slock
, flags
);
377 data
&= ~(mask
<< shift
);
379 data
|= FUNC_OUTPUT
<< shift
;
382 spin_unlock_irqrestore(&bank
->slock
, flags
);
387 /* list of pinmux callbacks for the pinmux vertical in pinctrl core */
388 static const struct pinmux_ops samsung_pinmux_ops
= {
389 .get_functions_count
= samsung_get_functions_count
,
390 .get_function_name
= samsung_pinmux_get_fname
,
391 .get_function_groups
= samsung_pinmux_get_groups
,
392 .enable
= samsung_pinmux_enable
,
393 .disable
= samsung_pinmux_disable
,
394 .gpio_set_direction
= samsung_pinmux_gpio_set_direction
,
397 /* set or get the pin config settings for a specified pin */
398 static int samsung_pinconf_rw(struct pinctrl_dev
*pctldev
, unsigned int pin
,
399 unsigned long *config
, bool set
)
401 struct samsung_pinctrl_drv_data
*drvdata
;
402 struct samsung_pin_bank_type
*type
;
403 struct samsung_pin_bank
*bank
;
404 void __iomem
*reg_base
;
405 enum pincfg_type cfg_type
= PINCFG_UNPACK_TYPE(*config
);
406 u32 data
, width
, pin_offset
, mask
, shift
;
407 u32 cfg_value
, cfg_reg
;
410 drvdata
= pinctrl_dev_get_drvdata(pctldev
);
411 pin_to_reg_bank(drvdata
, pin
- drvdata
->ctrl
->base
, ®_base
,
415 if (cfg_type
>= PINCFG_TYPE_NUM
|| !type
->fld_width
[cfg_type
])
418 width
= type
->fld_width
[cfg_type
];
419 cfg_reg
= type
->reg_offset
[cfg_type
];
421 spin_lock_irqsave(&bank
->slock
, flags
);
423 mask
= (1 << width
) - 1;
424 shift
= pin_offset
* width
;
425 data
= readl(reg_base
+ cfg_reg
);
428 cfg_value
= PINCFG_UNPACK_VALUE(*config
);
429 data
&= ~(mask
<< shift
);
430 data
|= (cfg_value
<< shift
);
431 writel(data
, reg_base
+ cfg_reg
);
435 *config
= PINCFG_PACK(cfg_type
, data
);
438 spin_unlock_irqrestore(&bank
->slock
, flags
);
443 /* set the pin config settings for a specified pin */
444 static int samsung_pinconf_set(struct pinctrl_dev
*pctldev
, unsigned int pin
,
445 unsigned long config
)
447 return samsung_pinconf_rw(pctldev
, pin
, &config
, true);
450 /* get the pin config settings for a specified pin */
451 static int samsung_pinconf_get(struct pinctrl_dev
*pctldev
, unsigned int pin
,
452 unsigned long *config
)
454 return samsung_pinconf_rw(pctldev
, pin
, config
, false);
457 /* set the pin config settings for a specified pin group */
458 static int samsung_pinconf_group_set(struct pinctrl_dev
*pctldev
,
459 unsigned group
, unsigned long config
)
461 struct samsung_pinctrl_drv_data
*drvdata
;
462 const unsigned int *pins
;
465 drvdata
= pinctrl_dev_get_drvdata(pctldev
);
466 pins
= drvdata
->pin_groups
[group
].pins
;
468 for (cnt
= 0; cnt
< drvdata
->pin_groups
[group
].num_pins
; cnt
++)
469 samsung_pinconf_set(pctldev
, pins
[cnt
], config
);
474 /* get the pin config settings for a specified pin group */
475 static int samsung_pinconf_group_get(struct pinctrl_dev
*pctldev
,
476 unsigned int group
, unsigned long *config
)
478 struct samsung_pinctrl_drv_data
*drvdata
;
479 const unsigned int *pins
;
481 drvdata
= pinctrl_dev_get_drvdata(pctldev
);
482 pins
= drvdata
->pin_groups
[group
].pins
;
483 samsung_pinconf_get(pctldev
, pins
[0], config
);
487 /* list of pinconfig callbacks for pinconfig vertical in the pinctrl code */
488 static const struct pinconf_ops samsung_pinconf_ops
= {
489 .pin_config_get
= samsung_pinconf_get
,
490 .pin_config_set
= samsung_pinconf_set
,
491 .pin_config_group_get
= samsung_pinconf_group_get
,
492 .pin_config_group_set
= samsung_pinconf_group_set
,
495 /* gpiolib gpio_set callback function */
496 static void samsung_gpio_set(struct gpio_chip
*gc
, unsigned offset
, int value
)
498 struct samsung_pin_bank
*bank
= gc_to_pin_bank(gc
);
499 struct samsung_pin_bank_type
*type
= bank
->type
;
504 reg
= bank
->drvdata
->virt_base
+ bank
->pctl_offset
;
506 spin_lock_irqsave(&bank
->slock
, flags
);
508 data
= readl(reg
+ type
->reg_offset
[PINCFG_TYPE_DAT
]);
509 data
&= ~(1 << offset
);
512 writel(data
, reg
+ type
->reg_offset
[PINCFG_TYPE_DAT
]);
514 spin_unlock_irqrestore(&bank
->slock
, flags
);
517 /* gpiolib gpio_get callback function */
518 static int samsung_gpio_get(struct gpio_chip
*gc
, unsigned offset
)
522 struct samsung_pin_bank
*bank
= gc_to_pin_bank(gc
);
523 struct samsung_pin_bank_type
*type
= bank
->type
;
525 reg
= bank
->drvdata
->virt_base
+ bank
->pctl_offset
;
527 data
= readl(reg
+ type
->reg_offset
[PINCFG_TYPE_DAT
]);
534 * gpiolib gpio_direction_input callback function. The setting of the pin
535 * mux function as 'gpio input' will be handled by the pinctrl susbsystem
538 static int samsung_gpio_direction_input(struct gpio_chip
*gc
, unsigned offset
)
540 return pinctrl_gpio_direction_input(gc
->base
+ offset
);
544 * gpiolib gpio_direction_output callback function. The setting of the pin
545 * mux function as 'gpio output' will be handled by the pinctrl susbsystem
548 static int samsung_gpio_direction_output(struct gpio_chip
*gc
, unsigned offset
,
551 samsung_gpio_set(gc
, offset
, value
);
552 return pinctrl_gpio_direction_output(gc
->base
+ offset
);
556 * gpiolib gpio_to_irq callback function. Creates a mapping between a GPIO pin
557 * and a virtual IRQ, if not already present.
559 static int samsung_gpio_to_irq(struct gpio_chip
*gc
, unsigned offset
)
561 struct samsung_pin_bank
*bank
= gc_to_pin_bank(gc
);
564 if (!bank
->irq_domain
)
567 virq
= irq_create_mapping(bank
->irq_domain
, offset
);
569 return (virq
) ? : -ENXIO
;
573 * Parse the pin names listed in the 'samsung,pins' property and convert it
574 * into a list of gpio numbers are create a pin group from it.
576 static int samsung_pinctrl_parse_dt_pins(struct platform_device
*pdev
,
577 struct device_node
*cfg_np
,
578 struct pinctrl_desc
*pctl
,
579 unsigned int **pin_list
,
582 struct device
*dev
= &pdev
->dev
;
583 struct property
*prop
;
584 struct pinctrl_pin_desc
const *pdesc
= pctl
->pins
;
585 unsigned int idx
= 0, cnt
;
586 const char *pin_name
;
588 *npins
= of_property_count_strings(cfg_np
, "samsung,pins");
589 if (IS_ERR_VALUE(*npins
)) {
590 dev_err(dev
, "invalid pin list in %s node", cfg_np
->name
);
594 *pin_list
= devm_kzalloc(dev
, *npins
* sizeof(**pin_list
), GFP_KERNEL
);
596 dev_err(dev
, "failed to allocate memory for pin list\n");
600 of_property_for_each_string(cfg_np
, "samsung,pins", prop
, pin_name
) {
601 for (cnt
= 0; cnt
< pctl
->npins
; cnt
++) {
602 if (pdesc
[cnt
].name
) {
603 if (!strcmp(pin_name
, pdesc
[cnt
].name
)) {
604 (*pin_list
)[idx
++] = pdesc
[cnt
].number
;
609 if (cnt
== pctl
->npins
) {
610 dev_err(dev
, "pin %s not valid in %s node\n",
611 pin_name
, cfg_np
->name
);
612 devm_kfree(dev
, *pin_list
);
621 * Parse the information about all the available pin groups and pin functions
622 * from device node of the pin-controller. A pin group is formed with all
623 * the pins listed in the "samsung,pins" property.
625 static int samsung_pinctrl_parse_dt(struct platform_device
*pdev
,
626 struct samsung_pinctrl_drv_data
*drvdata
)
628 struct device
*dev
= &pdev
->dev
;
629 struct device_node
*dev_np
= dev
->of_node
;
630 struct device_node
*cfg_np
;
631 struct samsung_pin_group
*groups
, *grp
;
632 struct samsung_pmx_func
*functions
, *func
;
634 unsigned int npins
, grp_cnt
, func_idx
= 0;
638 grp_cnt
= of_get_child_count(dev_np
);
642 groups
= devm_kzalloc(dev
, grp_cnt
* sizeof(*groups
), GFP_KERNEL
);
644 dev_err(dev
, "failed allocate memory for ping group list\n");
649 functions
= devm_kzalloc(dev
, grp_cnt
* sizeof(*functions
), GFP_KERNEL
);
651 dev_err(dev
, "failed to allocate memory for function list\n");
657 * Iterate over all the child nodes of the pin controller node
658 * and create pin groups and pin function lists.
660 for_each_child_of_node(dev_np
, cfg_np
) {
662 if (!of_find_property(cfg_np
, "samsung,pins", NULL
))
665 ret
= samsung_pinctrl_parse_dt_pins(pdev
, cfg_np
,
666 &drvdata
->pctl
, &pin_list
, &npins
);
670 /* derive pin group name from the node name */
671 gname
= devm_kzalloc(dev
, strlen(cfg_np
->name
) + GSUFFIX_LEN
,
674 dev_err(dev
, "failed to alloc memory for group name\n");
677 sprintf(gname
, "%s%s", cfg_np
->name
, GROUP_SUFFIX
);
680 grp
->pins
= pin_list
;
681 grp
->num_pins
= npins
;
682 of_property_read_u32(cfg_np
, "samsung,pin-function", &function
);
683 grp
->func
= function
;
686 if (!of_find_property(cfg_np
, "samsung,pin-function", NULL
))
689 /* derive function name from the node name */
690 fname
= devm_kzalloc(dev
, strlen(cfg_np
->name
) + FSUFFIX_LEN
,
693 dev_err(dev
, "failed to alloc memory for func name\n");
696 sprintf(fname
, "%s%s", cfg_np
->name
, FUNCTION_SUFFIX
);
699 func
->groups
= devm_kzalloc(dev
, sizeof(char *), GFP_KERNEL
);
701 dev_err(dev
, "failed to alloc memory for group list "
705 func
->groups
[0] = gname
;
706 func
->num_groups
= 1;
711 drvdata
->pin_groups
= groups
;
712 drvdata
->nr_groups
= grp_cnt
;
713 drvdata
->pmx_functions
= functions
;
714 drvdata
->nr_functions
= func_idx
;
719 /* register the pinctrl interface with the pinctrl subsystem */
720 static int samsung_pinctrl_register(struct platform_device
*pdev
,
721 struct samsung_pinctrl_drv_data
*drvdata
)
723 struct pinctrl_desc
*ctrldesc
= &drvdata
->pctl
;
724 struct pinctrl_pin_desc
*pindesc
, *pdesc
;
725 struct samsung_pin_bank
*pin_bank
;
729 ctrldesc
->name
= "samsung-pinctrl";
730 ctrldesc
->owner
= THIS_MODULE
;
731 ctrldesc
->pctlops
= &samsung_pctrl_ops
;
732 ctrldesc
->pmxops
= &samsung_pinmux_ops
;
733 ctrldesc
->confops
= &samsung_pinconf_ops
;
735 pindesc
= devm_kzalloc(&pdev
->dev
, sizeof(*pindesc
) *
736 drvdata
->ctrl
->nr_pins
, GFP_KERNEL
);
738 dev_err(&pdev
->dev
, "mem alloc for pin descriptors failed\n");
741 ctrldesc
->pins
= pindesc
;
742 ctrldesc
->npins
= drvdata
->ctrl
->nr_pins
;
744 /* dynamically populate the pin number and pin name for pindesc */
745 for (pin
= 0, pdesc
= pindesc
; pin
< ctrldesc
->npins
; pin
++, pdesc
++)
746 pdesc
->number
= pin
+ drvdata
->ctrl
->base
;
749 * allocate space for storing the dynamically generated names for all
750 * the pins which belong to this pin-controller.
752 pin_names
= devm_kzalloc(&pdev
->dev
, sizeof(char) * PIN_NAME_LENGTH
*
753 drvdata
->ctrl
->nr_pins
, GFP_KERNEL
);
755 dev_err(&pdev
->dev
, "mem alloc for pin names failed\n");
759 /* for each pin, the name of the pin is pin-bank name + pin number */
760 for (bank
= 0; bank
< drvdata
->ctrl
->nr_banks
; bank
++) {
761 pin_bank
= &drvdata
->ctrl
->pin_banks
[bank
];
762 for (pin
= 0; pin
< pin_bank
->nr_pins
; pin
++) {
763 sprintf(pin_names
, "%s-%d", pin_bank
->name
, pin
);
764 pdesc
= pindesc
+ pin_bank
->pin_base
+ pin
;
765 pdesc
->name
= pin_names
;
766 pin_names
+= PIN_NAME_LENGTH
;
770 drvdata
->pctl_dev
= pinctrl_register(ctrldesc
, &pdev
->dev
, drvdata
);
771 if (!drvdata
->pctl_dev
) {
772 dev_err(&pdev
->dev
, "could not register pinctrl driver\n");
776 for (bank
= 0; bank
< drvdata
->ctrl
->nr_banks
; ++bank
) {
777 pin_bank
= &drvdata
->ctrl
->pin_banks
[bank
];
778 pin_bank
->grange
.name
= pin_bank
->name
;
779 pin_bank
->grange
.id
= bank
;
780 pin_bank
->grange
.pin_base
= pin_bank
->pin_base
;
781 pin_bank
->grange
.base
= pin_bank
->gpio_chip
.base
;
782 pin_bank
->grange
.npins
= pin_bank
->gpio_chip
.ngpio
;
783 pin_bank
->grange
.gc
= &pin_bank
->gpio_chip
;
784 pinctrl_add_gpio_range(drvdata
->pctl_dev
, &pin_bank
->grange
);
787 ret
= samsung_pinctrl_parse_dt(pdev
, drvdata
);
789 pinctrl_unregister(drvdata
->pctl_dev
);
796 static const struct gpio_chip samsung_gpiolib_chip
= {
797 .set
= samsung_gpio_set
,
798 .get
= samsung_gpio_get
,
799 .direction_input
= samsung_gpio_direction_input
,
800 .direction_output
= samsung_gpio_direction_output
,
801 .to_irq
= samsung_gpio_to_irq
,
802 .owner
= THIS_MODULE
,
805 /* register the gpiolib interface with the gpiolib subsystem */
806 static int samsung_gpiolib_register(struct platform_device
*pdev
,
807 struct samsung_pinctrl_drv_data
*drvdata
)
809 struct samsung_pin_ctrl
*ctrl
= drvdata
->ctrl
;
810 struct samsung_pin_bank
*bank
= ctrl
->pin_banks
;
811 struct gpio_chip
*gc
;
815 for (i
= 0; i
< ctrl
->nr_banks
; ++i
, ++bank
) {
816 bank
->gpio_chip
= samsung_gpiolib_chip
;
818 gc
= &bank
->gpio_chip
;
819 gc
->base
= ctrl
->base
+ bank
->pin_base
;
820 gc
->ngpio
= bank
->nr_pins
;
821 gc
->dev
= &pdev
->dev
;
822 gc
->of_node
= bank
->of_node
;
823 gc
->label
= bank
->name
;
825 ret
= gpiochip_add(gc
);
827 dev_err(&pdev
->dev
, "failed to register gpio_chip %s, error code: %d\n",
836 for (--i
, --bank
; i
>= 0; --i
, --bank
)
837 if (gpiochip_remove(&bank
->gpio_chip
))
838 dev_err(&pdev
->dev
, "gpio chip %s remove failed\n",
839 bank
->gpio_chip
.label
);
843 /* unregister the gpiolib interface with the gpiolib subsystem */
844 static int samsung_gpiolib_unregister(struct platform_device
*pdev
,
845 struct samsung_pinctrl_drv_data
*drvdata
)
847 struct samsung_pin_ctrl
*ctrl
= drvdata
->ctrl
;
848 struct samsung_pin_bank
*bank
= ctrl
->pin_banks
;
852 for (i
= 0; !ret
&& i
< ctrl
->nr_banks
; ++i
, ++bank
)
853 ret
= gpiochip_remove(&bank
->gpio_chip
);
856 dev_err(&pdev
->dev
, "gpio chip remove failed\n");
861 static const struct of_device_id samsung_pinctrl_dt_match
[];
863 /* retrieve the soc specific data */
864 static struct samsung_pin_ctrl
*samsung_pinctrl_get_soc_data(
865 struct samsung_pinctrl_drv_data
*d
,
866 struct platform_device
*pdev
)
869 const struct of_device_id
*match
;
870 struct device_node
*node
= pdev
->dev
.of_node
;
871 struct device_node
*np
;
872 struct samsung_pin_ctrl
*ctrl
;
873 struct samsung_pin_bank
*bank
;
876 id
= of_alias_get_id(node
, "pinctrl");
878 dev_err(&pdev
->dev
, "failed to get alias id\n");
881 match
= of_match_node(samsung_pinctrl_dt_match
, node
);
882 ctrl
= (struct samsung_pin_ctrl
*)match
->data
+ id
;
884 bank
= ctrl
->pin_banks
;
885 for (i
= 0; i
< ctrl
->nr_banks
; ++i
, ++bank
) {
886 spin_lock_init(&bank
->slock
);
888 bank
->pin_base
= ctrl
->nr_pins
;
889 ctrl
->nr_pins
+= bank
->nr_pins
;
892 for_each_child_of_node(node
, np
) {
893 if (!of_find_property(np
, "gpio-controller", NULL
))
895 bank
= ctrl
->pin_banks
;
896 for (i
= 0; i
< ctrl
->nr_banks
; ++i
, ++bank
) {
897 if (!strcmp(bank
->name
, np
->name
)) {
904 ctrl
->base
= pin_base
;
905 pin_base
+= ctrl
->nr_pins
;
910 static int samsung_pinctrl_probe(struct platform_device
*pdev
)
912 struct samsung_pinctrl_drv_data
*drvdata
;
913 struct device
*dev
= &pdev
->dev
;
914 struct samsung_pin_ctrl
*ctrl
;
915 struct resource
*res
;
919 dev_err(dev
, "device tree node not found\n");
923 drvdata
= devm_kzalloc(dev
, sizeof(*drvdata
), GFP_KERNEL
);
925 dev_err(dev
, "failed to allocate memory for driver's "
930 ctrl
= samsung_pinctrl_get_soc_data(drvdata
, pdev
);
932 dev_err(&pdev
->dev
, "driver data not available\n");
935 drvdata
->ctrl
= ctrl
;
938 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
939 drvdata
->virt_base
= devm_ioremap_resource(&pdev
->dev
, res
);
940 if (IS_ERR(drvdata
->virt_base
))
941 return PTR_ERR(drvdata
->virt_base
);
943 res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
945 drvdata
->irq
= res
->start
;
947 ret
= samsung_gpiolib_register(pdev
, drvdata
);
951 ret
= samsung_pinctrl_register(pdev
, drvdata
);
953 samsung_gpiolib_unregister(pdev
, drvdata
);
957 if (ctrl
->eint_gpio_init
)
958 ctrl
->eint_gpio_init(drvdata
);
959 if (ctrl
->eint_wkup_init
)
960 ctrl
->eint_wkup_init(drvdata
);
962 platform_set_drvdata(pdev
, drvdata
);
964 /* Add to the global list */
965 list_add_tail(&drvdata
->node
, &drvdata_list
);
973 * samsung_pinctrl_suspend_dev - save pinctrl state for suspend for a device
975 * Save data for all banks handled by this device.
977 static void samsung_pinctrl_suspend_dev(
978 struct samsung_pinctrl_drv_data
*drvdata
)
980 struct samsung_pin_ctrl
*ctrl
= drvdata
->ctrl
;
981 void __iomem
*virt_base
= drvdata
->virt_base
;
984 for (i
= 0; i
< ctrl
->nr_banks
; i
++) {
985 struct samsung_pin_bank
*bank
= &ctrl
->pin_banks
[i
];
986 void __iomem
*reg
= virt_base
+ bank
->pctl_offset
;
988 u8
*offs
= bank
->type
->reg_offset
;
989 u8
*widths
= bank
->type
->fld_width
;
990 enum pincfg_type type
;
992 /* Registers without a powerdown config aren't lost */
993 if (!widths
[PINCFG_TYPE_CON_PDN
])
996 for (type
= 0; type
< PINCFG_TYPE_NUM
; type
++)
998 bank
->pm_save
[type
] = readl(reg
+ offs
[type
]);
1000 if (widths
[PINCFG_TYPE_FUNC
] * bank
->nr_pins
> 32) {
1001 /* Some banks have two config registers */
1002 bank
->pm_save
[PINCFG_TYPE_NUM
] =
1003 readl(reg
+ offs
[PINCFG_TYPE_FUNC
] + 4);
1004 pr_debug("Save %s @ %p (con %#010x %08x)\n",
1006 bank
->pm_save
[PINCFG_TYPE_FUNC
],
1007 bank
->pm_save
[PINCFG_TYPE_NUM
]);
1009 pr_debug("Save %s @ %p (con %#010x)\n", bank
->name
,
1010 reg
, bank
->pm_save
[PINCFG_TYPE_FUNC
]);
1015 ctrl
->suspend(drvdata
);
1019 * samsung_pinctrl_resume_dev - restore pinctrl state from suspend for a device
1021 * Restore one of the banks that was saved during suspend.
1023 * We don't bother doing anything complicated to avoid glitching lines since
1024 * we're called before pad retention is turned off.
1026 static void samsung_pinctrl_resume_dev(struct samsung_pinctrl_drv_data
*drvdata
)
1028 struct samsung_pin_ctrl
*ctrl
= drvdata
->ctrl
;
1029 void __iomem
*virt_base
= drvdata
->virt_base
;
1033 ctrl
->resume(drvdata
);
1035 for (i
= 0; i
< ctrl
->nr_banks
; i
++) {
1036 struct samsung_pin_bank
*bank
= &ctrl
->pin_banks
[i
];
1037 void __iomem
*reg
= virt_base
+ bank
->pctl_offset
;
1039 u8
*offs
= bank
->type
->reg_offset
;
1040 u8
*widths
= bank
->type
->fld_width
;
1041 enum pincfg_type type
;
1043 /* Registers without a powerdown config aren't lost */
1044 if (!widths
[PINCFG_TYPE_CON_PDN
])
1047 if (widths
[PINCFG_TYPE_FUNC
] * bank
->nr_pins
> 32) {
1048 /* Some banks have two config registers */
1049 pr_debug("%s @ %p (con %#010x %08x => %#010x %08x)\n",
1051 readl(reg
+ offs
[PINCFG_TYPE_FUNC
]),
1052 readl(reg
+ offs
[PINCFG_TYPE_FUNC
] + 4),
1053 bank
->pm_save
[PINCFG_TYPE_FUNC
],
1054 bank
->pm_save
[PINCFG_TYPE_NUM
]);
1055 writel(bank
->pm_save
[PINCFG_TYPE_NUM
],
1056 reg
+ offs
[PINCFG_TYPE_FUNC
] + 4);
1058 pr_debug("%s @ %p (con %#010x => %#010x)\n", bank
->name
,
1059 reg
, readl(reg
+ offs
[PINCFG_TYPE_FUNC
]),
1060 bank
->pm_save
[PINCFG_TYPE_FUNC
]);
1062 for (type
= 0; type
< PINCFG_TYPE_NUM
; type
++)
1064 writel(bank
->pm_save
[type
], reg
+ offs
[type
]);
1069 * samsung_pinctrl_suspend - save pinctrl state for suspend
1071 * Save data for all banks across all devices.
1073 static int samsung_pinctrl_suspend(void)
1075 struct samsung_pinctrl_drv_data
*drvdata
;
1077 list_for_each_entry(drvdata
, &drvdata_list
, node
) {
1078 samsung_pinctrl_suspend_dev(drvdata
);
1085 * samsung_pinctrl_resume - restore pinctrl state for suspend
1087 * Restore data for all banks across all devices.
1089 static void samsung_pinctrl_resume(void)
1091 struct samsung_pinctrl_drv_data
*drvdata
;
1093 list_for_each_entry_reverse(drvdata
, &drvdata_list
, node
) {
1094 samsung_pinctrl_resume_dev(drvdata
);
1099 #define samsung_pinctrl_suspend NULL
1100 #define samsung_pinctrl_resume NULL
1103 static struct syscore_ops samsung_pinctrl_syscore_ops
= {
1104 .suspend
= samsung_pinctrl_suspend
,
1105 .resume
= samsung_pinctrl_resume
,
1108 static const struct of_device_id samsung_pinctrl_dt_match
[] = {
1109 #ifdef CONFIG_PINCTRL_EXYNOS
1110 { .compatible
= "samsung,exynos4210-pinctrl",
1111 .data
= (void *)exynos4210_pin_ctrl
},
1112 { .compatible
= "samsung,exynos4x12-pinctrl",
1113 .data
= (void *)exynos4x12_pin_ctrl
},
1114 { .compatible
= "samsung,exynos5250-pinctrl",
1115 .data
= (void *)exynos5250_pin_ctrl
},
1116 { .compatible
= "samsung,exynos5420-pinctrl",
1117 .data
= (void *)exynos5420_pin_ctrl
},
1119 #ifdef CONFIG_PINCTRL_S3C64XX
1120 { .compatible
= "samsung,s3c64xx-pinctrl",
1121 .data
= s3c64xx_pin_ctrl
},
1123 #ifdef CONFIG_PINCTRL_S3C24XX
1124 { .compatible
= "samsung,s3c2412-pinctrl",
1125 .data
= s3c2412_pin_ctrl
},
1126 { .compatible
= "samsung,s3c2416-pinctrl",
1127 .data
= s3c2416_pin_ctrl
},
1128 { .compatible
= "samsung,s3c2440-pinctrl",
1129 .data
= s3c2440_pin_ctrl
},
1130 { .compatible
= "samsung,s3c2450-pinctrl",
1131 .data
= s3c2450_pin_ctrl
},
1135 MODULE_DEVICE_TABLE(of
, samsung_pinctrl_dt_match
);
1137 static struct platform_driver samsung_pinctrl_driver
= {
1138 .probe
= samsung_pinctrl_probe
,
1140 .name
= "samsung-pinctrl",
1141 .owner
= THIS_MODULE
,
1142 .of_match_table
= of_match_ptr(samsung_pinctrl_dt_match
),
1146 static int __init
samsung_pinctrl_drv_register(void)
1149 * Register syscore ops for save/restore of registers across suspend.
1150 * It's important to ensure that this driver is running at an earlier
1151 * initcall level than any arch-specific init calls that install syscore
1152 * ops that turn off pad retention (like exynos_pm_resume).
1154 register_syscore_ops(&samsung_pinctrl_syscore_ops
);
1156 return platform_driver_register(&samsung_pinctrl_driver
);
1158 postcore_initcall(samsung_pinctrl_drv_register
);
1160 static void __exit
samsung_pinctrl_drv_unregister(void)
1162 platform_driver_unregister(&samsung_pinctrl_driver
);
1164 module_exit(samsung_pinctrl_drv_unregister
);
1166 MODULE_AUTHOR("Thomas Abraham <thomas.ab@samsung.com>");
1167 MODULE_DESCRIPTION("Samsung pinctrl driver");
1168 MODULE_LICENSE("GPL v2");