1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * AXP20x pinctrl and GPIO driver
5 * Copyright (C) 2016 Maxime Ripard <maxime.ripard@free-electrons.com>
6 * Copyright (C) 2017 Quentin Schulz <quentin.schulz@free-electrons.com>
9 #include <linux/bitops.h>
10 #include <linux/device.h>
11 #include <linux/gpio/driver.h>
12 #include <linux/init.h>
13 #include <linux/interrupt.h>
14 #include <linux/kernel.h>
15 #include <linux/mfd/axp20x.h>
16 #include <linux/module.h>
18 #include <linux/of_device.h>
19 #include <linux/pinctrl/pinconf-generic.h>
20 #include <linux/pinctrl/pinctrl.h>
21 #include <linux/pinctrl/pinmux.h>
22 #include <linux/platform_device.h>
23 #include <linux/regmap.h>
24 #include <linux/slab.h>
26 #define AXP20X_GPIO_FUNCTIONS 0x7
27 #define AXP20X_GPIO_FUNCTION_OUT_LOW 0
28 #define AXP20X_GPIO_FUNCTION_OUT_HIGH 1
29 #define AXP20X_GPIO_FUNCTION_INPUT 2
31 #define AXP20X_FUNC_GPIO_OUT 0
32 #define AXP20X_FUNC_GPIO_IN 1
33 #define AXP20X_FUNC_LDO 2
34 #define AXP20X_FUNC_ADC 3
35 #define AXP20X_FUNCS_NB 4
37 #define AXP20X_MUX_GPIO_OUT 0
38 #define AXP20X_MUX_GPIO_IN BIT(1)
39 #define AXP20X_MUX_ADC BIT(2)
41 #define AXP813_MUX_ADC (BIT(2) | BIT(0))
43 struct axp20x_pctrl_desc
{
44 const struct pinctrl_pin_desc
*pins
;
46 /* Stores the pins supporting LDO function. Bit offset is pin number. */
48 /* Stores the pins supporting ADC function. Bit offset is pin number. */
50 u8 gpio_status_offset
;
54 struct axp20x_pinctrl_function
{
62 struct gpio_chip chip
;
63 struct regmap
*regmap
;
64 struct pinctrl_dev
*pctl_dev
;
66 const struct axp20x_pctrl_desc
*desc
;
67 struct axp20x_pinctrl_function funcs
[AXP20X_FUNCS_NB
];
70 static const struct pinctrl_pin_desc axp209_pins
[] = {
71 PINCTRL_PIN(0, "GPIO0"),
72 PINCTRL_PIN(1, "GPIO1"),
73 PINCTRL_PIN(2, "GPIO2"),
76 static const struct pinctrl_pin_desc axp813_pins
[] = {
77 PINCTRL_PIN(0, "GPIO0"),
78 PINCTRL_PIN(1, "GPIO1"),
81 static const struct axp20x_pctrl_desc axp20x_data
= {
83 .npins
= ARRAY_SIZE(axp209_pins
),
84 .ldo_mask
= BIT(0) | BIT(1),
85 .adc_mask
= BIT(0) | BIT(1),
86 .gpio_status_offset
= 4,
87 .adc_mux
= AXP20X_MUX_ADC
,
90 static const struct axp20x_pctrl_desc axp813_data
= {
92 .npins
= ARRAY_SIZE(axp813_pins
),
93 .ldo_mask
= BIT(0) | BIT(1),
95 .gpio_status_offset
= 0,
96 .adc_mux
= AXP813_MUX_ADC
,
99 static int axp20x_gpio_get_reg(unsigned int offset
)
103 return AXP20X_GPIO0_CTRL
;
105 return AXP20X_GPIO1_CTRL
;
107 return AXP20X_GPIO2_CTRL
;
113 static int axp20x_gpio_input(struct gpio_chip
*chip
, unsigned int offset
)
115 return pinctrl_gpio_direction_input(chip
->base
+ offset
);
118 static int axp20x_gpio_get(struct gpio_chip
*chip
, unsigned int offset
)
120 struct axp20x_pctl
*pctl
= gpiochip_get_data(chip
);
124 ret
= regmap_read(pctl
->regmap
, AXP20X_GPIO20_SS
, &val
);
128 return !!(val
& BIT(offset
+ pctl
->desc
->gpio_status_offset
));
131 static int axp20x_gpio_get_direction(struct gpio_chip
*chip
,
134 struct axp20x_pctl
*pctl
= gpiochip_get_data(chip
);
138 reg
= axp20x_gpio_get_reg(offset
);
142 ret
= regmap_read(pctl
->regmap
, reg
, &val
);
147 * This shouldn't really happen if the pin is in use already,
148 * or if it's not in use yet, it doesn't matter since we're
149 * going to change the value soon anyway. Default to output.
151 if ((val
& AXP20X_GPIO_FUNCTIONS
) > 2)
152 return GPIO_LINE_DIRECTION_OUT
;
155 * The GPIO directions are the three lowest values.
156 * 2 is input, 0 and 1 are output
159 return GPIO_LINE_DIRECTION_IN
;
161 return GPIO_LINE_DIRECTION_OUT
;
164 static int axp20x_gpio_output(struct gpio_chip
*chip
, unsigned int offset
,
167 chip
->set(chip
, offset
, value
);
172 static void axp20x_gpio_set(struct gpio_chip
*chip
, unsigned int offset
,
175 struct axp20x_pctl
*pctl
= gpiochip_get_data(chip
);
178 reg
= axp20x_gpio_get_reg(offset
);
182 regmap_update_bits(pctl
->regmap
, reg
,
183 AXP20X_GPIO_FUNCTIONS
,
184 value
? AXP20X_GPIO_FUNCTION_OUT_HIGH
:
185 AXP20X_GPIO_FUNCTION_OUT_LOW
);
188 static int axp20x_pmx_set(struct pinctrl_dev
*pctldev
, unsigned int offset
,
191 struct axp20x_pctl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
194 reg
= axp20x_gpio_get_reg(offset
);
198 return regmap_update_bits(pctl
->regmap
, reg
, AXP20X_GPIO_FUNCTIONS
,
202 static int axp20x_pmx_func_cnt(struct pinctrl_dev
*pctldev
)
204 struct axp20x_pctl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
206 return ARRAY_SIZE(pctl
->funcs
);
209 static const char *axp20x_pmx_func_name(struct pinctrl_dev
*pctldev
,
210 unsigned int selector
)
212 struct axp20x_pctl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
214 return pctl
->funcs
[selector
].name
;
217 static int axp20x_pmx_func_groups(struct pinctrl_dev
*pctldev
,
218 unsigned int selector
,
219 const char * const **groups
,
220 unsigned int *num_groups
)
222 struct axp20x_pctl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
224 *groups
= pctl
->funcs
[selector
].groups
;
225 *num_groups
= pctl
->funcs
[selector
].ngroups
;
230 static int axp20x_pmx_set_mux(struct pinctrl_dev
*pctldev
,
231 unsigned int function
, unsigned int group
)
233 struct axp20x_pctl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
236 /* Every pin supports GPIO_OUT and GPIO_IN functions */
237 if (function
<= AXP20X_FUNC_GPIO_IN
)
238 return axp20x_pmx_set(pctldev
, group
,
239 pctl
->funcs
[function
].muxval
);
241 if (function
== AXP20X_FUNC_LDO
)
242 mask
= pctl
->desc
->ldo_mask
;
244 mask
= pctl
->desc
->adc_mask
;
246 if (!(BIT(group
) & mask
))
250 * We let the regulator framework handle the LDO muxing as muxing bits
251 * are basically also regulators on/off bits. It's better not to enforce
252 * any state of the regulator when selecting LDO mux so that we don't
253 * interfere with the regulator driver.
255 if (function
== AXP20X_FUNC_LDO
)
258 return axp20x_pmx_set(pctldev
, group
, pctl
->funcs
[function
].muxval
);
261 static int axp20x_pmx_gpio_set_direction(struct pinctrl_dev
*pctldev
,
262 struct pinctrl_gpio_range
*range
,
263 unsigned int offset
, bool input
)
265 struct axp20x_pctl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
268 return axp20x_pmx_set(pctldev
, offset
,
269 pctl
->funcs
[AXP20X_FUNC_GPIO_IN
].muxval
);
271 return axp20x_pmx_set(pctldev
, offset
,
272 pctl
->funcs
[AXP20X_FUNC_GPIO_OUT
].muxval
);
275 static const struct pinmux_ops axp20x_pmx_ops
= {
276 .get_functions_count
= axp20x_pmx_func_cnt
,
277 .get_function_name
= axp20x_pmx_func_name
,
278 .get_function_groups
= axp20x_pmx_func_groups
,
279 .set_mux
= axp20x_pmx_set_mux
,
280 .gpio_set_direction
= axp20x_pmx_gpio_set_direction
,
284 static int axp20x_groups_cnt(struct pinctrl_dev
*pctldev
)
286 struct axp20x_pctl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
288 return pctl
->desc
->npins
;
291 static int axp20x_group_pins(struct pinctrl_dev
*pctldev
, unsigned int selector
,
292 const unsigned int **pins
, unsigned int *num_pins
)
294 struct axp20x_pctl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
296 *pins
= (unsigned int *)&pctl
->desc
->pins
[selector
];
302 static const char *axp20x_group_name(struct pinctrl_dev
*pctldev
,
303 unsigned int selector
)
305 struct axp20x_pctl
*pctl
= pinctrl_dev_get_drvdata(pctldev
);
307 return pctl
->desc
->pins
[selector
].name
;
310 static const struct pinctrl_ops axp20x_pctrl_ops
= {
311 .dt_node_to_map
= pinconf_generic_dt_node_to_map_group
,
312 .dt_free_map
= pinconf_generic_dt_free_map
,
313 .get_groups_count
= axp20x_groups_cnt
,
314 .get_group_name
= axp20x_group_name
,
315 .get_group_pins
= axp20x_group_pins
,
318 static int axp20x_funcs_groups_from_mask(struct device
*dev
, unsigned int mask
,
319 unsigned int mask_len
,
320 struct axp20x_pinctrl_function
*func
,
321 const struct pinctrl_pin_desc
*pins
)
323 unsigned long int mask_cpy
= mask
;
325 unsigned int ngroups
= hweight8(mask
);
328 func
->ngroups
= ngroups
;
329 if (func
->ngroups
> 0) {
330 func
->groups
= devm_kcalloc(dev
,
331 ngroups
, sizeof(const char *),
335 group
= func
->groups
;
336 for_each_set_bit(bit
, &mask_cpy
, mask_len
) {
337 *group
= pins
[bit
].name
;
345 static int axp20x_build_funcs_groups(struct platform_device
*pdev
)
347 struct axp20x_pctl
*pctl
= platform_get_drvdata(pdev
);
348 int i
, ret
, pin
, npins
= pctl
->desc
->npins
;
350 pctl
->funcs
[AXP20X_FUNC_GPIO_OUT
].name
= "gpio_out";
351 pctl
->funcs
[AXP20X_FUNC_GPIO_OUT
].muxval
= AXP20X_MUX_GPIO_OUT
;
352 pctl
->funcs
[AXP20X_FUNC_GPIO_IN
].name
= "gpio_in";
353 pctl
->funcs
[AXP20X_FUNC_GPIO_IN
].muxval
= AXP20X_MUX_GPIO_IN
;
354 pctl
->funcs
[AXP20X_FUNC_LDO
].name
= "ldo";
356 * Muxval for LDO is useless as we won't use it.
357 * See comment in axp20x_pmx_set_mux.
359 pctl
->funcs
[AXP20X_FUNC_ADC
].name
= "adc";
360 pctl
->funcs
[AXP20X_FUNC_ADC
].muxval
= pctl
->desc
->adc_mux
;
362 /* Every pin supports GPIO_OUT and GPIO_IN functions */
363 for (i
= 0; i
<= AXP20X_FUNC_GPIO_IN
; i
++) {
364 pctl
->funcs
[i
].ngroups
= npins
;
365 pctl
->funcs
[i
].groups
= devm_kcalloc(&pdev
->dev
,
366 npins
, sizeof(char *),
368 if (!pctl
->funcs
[i
].groups
)
370 for (pin
= 0; pin
< npins
; pin
++)
371 pctl
->funcs
[i
].groups
[pin
] = pctl
->desc
->pins
[pin
].name
;
374 ret
= axp20x_funcs_groups_from_mask(&pdev
->dev
, pctl
->desc
->ldo_mask
,
375 npins
, &pctl
->funcs
[AXP20X_FUNC_LDO
],
380 ret
= axp20x_funcs_groups_from_mask(&pdev
->dev
, pctl
->desc
->adc_mask
,
381 npins
, &pctl
->funcs
[AXP20X_FUNC_ADC
],
389 static const struct of_device_id axp20x_pctl_match
[] = {
390 { .compatible
= "x-powers,axp209-gpio", .data
= &axp20x_data
, },
391 { .compatible
= "x-powers,axp813-gpio", .data
= &axp813_data
, },
394 MODULE_DEVICE_TABLE(of
, axp20x_pctl_match
);
396 static int axp20x_pctl_probe(struct platform_device
*pdev
)
398 struct axp20x_dev
*axp20x
= dev_get_drvdata(pdev
->dev
.parent
);
399 struct axp20x_pctl
*pctl
;
400 struct device
*dev
= &pdev
->dev
;
401 struct pinctrl_desc
*pctrl_desc
;
404 if (!of_device_is_available(pdev
->dev
.of_node
))
408 dev_err(&pdev
->dev
, "Parent drvdata not set\n");
412 pctl
= devm_kzalloc(&pdev
->dev
, sizeof(*pctl
), GFP_KERNEL
);
416 pctl
->chip
.base
= -1;
417 pctl
->chip
.can_sleep
= true;
418 pctl
->chip
.request
= gpiochip_generic_request
;
419 pctl
->chip
.free
= gpiochip_generic_free
;
420 pctl
->chip
.parent
= &pdev
->dev
;
421 pctl
->chip
.label
= dev_name(&pdev
->dev
);
422 pctl
->chip
.owner
= THIS_MODULE
;
423 pctl
->chip
.get
= axp20x_gpio_get
;
424 pctl
->chip
.get_direction
= axp20x_gpio_get_direction
;
425 pctl
->chip
.set
= axp20x_gpio_set
;
426 pctl
->chip
.direction_input
= axp20x_gpio_input
;
427 pctl
->chip
.direction_output
= axp20x_gpio_output
;
429 pctl
->desc
= of_device_get_match_data(dev
);
431 pctl
->chip
.ngpio
= pctl
->desc
->npins
;
433 pctl
->regmap
= axp20x
->regmap
;
434 pctl
->dev
= &pdev
->dev
;
436 platform_set_drvdata(pdev
, pctl
);
438 ret
= axp20x_build_funcs_groups(pdev
);
440 dev_err(&pdev
->dev
, "failed to build groups\n");
444 pctrl_desc
= devm_kzalloc(&pdev
->dev
, sizeof(*pctrl_desc
), GFP_KERNEL
);
448 pctrl_desc
->name
= dev_name(&pdev
->dev
);
449 pctrl_desc
->owner
= THIS_MODULE
;
450 pctrl_desc
->pins
= pctl
->desc
->pins
;
451 pctrl_desc
->npins
= pctl
->desc
->npins
;
452 pctrl_desc
->pctlops
= &axp20x_pctrl_ops
;
453 pctrl_desc
->pmxops
= &axp20x_pmx_ops
;
455 pctl
->pctl_dev
= devm_pinctrl_register(&pdev
->dev
, pctrl_desc
, pctl
);
456 if (IS_ERR(pctl
->pctl_dev
)) {
457 dev_err(&pdev
->dev
, "couldn't register pinctrl driver\n");
458 return PTR_ERR(pctl
->pctl_dev
);
461 ret
= devm_gpiochip_add_data(&pdev
->dev
, &pctl
->chip
, pctl
);
463 dev_err(&pdev
->dev
, "Failed to register GPIO chip\n");
467 ret
= gpiochip_add_pin_range(&pctl
->chip
, dev_name(&pdev
->dev
),
468 pctl
->desc
->pins
->number
,
469 pctl
->desc
->pins
->number
,
472 dev_err(&pdev
->dev
, "failed to add pin range\n");
476 dev_info(&pdev
->dev
, "AXP209 pinctrl and GPIO driver loaded\n");
481 static struct platform_driver axp20x_pctl_driver
= {
482 .probe
= axp20x_pctl_probe
,
484 .name
= "axp20x-gpio",
485 .of_match_table
= axp20x_pctl_match
,
489 module_platform_driver(axp20x_pctl_driver
);
491 MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
492 MODULE_AUTHOR("Quentin Schulz <quentin.schulz@free-electrons.com>");
493 MODULE_DESCRIPTION("AXP20x PMIC pinctrl and GPIO driver");
494 MODULE_LICENSE("GPL");