1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * gpiolib support for Wolfson Arizona class devices
5 * Copyright 2012 Wolfson Microelectronics PLC.
7 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
10 #include <linux/kernel.h>
11 #include <linux/slab.h>
12 #include <linux/module.h>
13 #include <linux/gpio/driver.h>
14 #include <linux/platform_device.h>
15 #include <linux/pm_runtime.h>
16 #include <linux/seq_file.h>
18 #include <linux/mfd/arizona/core.h>
19 #include <linux/mfd/arizona/pdata.h>
20 #include <linux/mfd/arizona/registers.h>
23 struct arizona
*arizona
;
24 struct gpio_chip gpio_chip
;
27 static int arizona_gpio_direction_in(struct gpio_chip
*chip
, unsigned offset
)
29 struct arizona_gpio
*arizona_gpio
= gpiochip_get_data(chip
);
30 struct arizona
*arizona
= arizona_gpio
->arizona
;
31 bool persistent
= gpiochip_line_is_persistent(chip
, offset
);
35 ret
= regmap_update_bits_check(arizona
->regmap
,
36 ARIZONA_GPIO1_CTRL
+ offset
,
37 ARIZONA_GPN_DIR
, ARIZONA_GPN_DIR
,
42 if (change
&& persistent
) {
43 pm_runtime_mark_last_busy(chip
->parent
);
44 pm_runtime_put_autosuspend(chip
->parent
);
50 static int arizona_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
52 struct arizona_gpio
*arizona_gpio
= gpiochip_get_data(chip
);
53 struct arizona
*arizona
= arizona_gpio
->arizona
;
54 unsigned int reg
, val
;
57 reg
= ARIZONA_GPIO1_CTRL
+ offset
;
58 ret
= regmap_read(arizona
->regmap
, reg
, &val
);
62 /* Resume to read actual registers for input pins */
63 if (val
& ARIZONA_GPN_DIR
) {
64 ret
= pm_runtime_get_sync(chip
->parent
);
66 dev_err(chip
->parent
, "Failed to resume: %d\n", ret
);
70 /* Register is cached, drop it to ensure a physical read */
71 ret
= regcache_drop_region(arizona
->regmap
, reg
, reg
);
73 dev_err(chip
->parent
, "Failed to drop cache: %d\n",
78 ret
= regmap_read(arizona
->regmap
, reg
, &val
);
82 pm_runtime_mark_last_busy(chip
->parent
);
83 pm_runtime_put_autosuspend(chip
->parent
);
86 if (val
& ARIZONA_GPN_LVL
)
92 static int arizona_gpio_direction_out(struct gpio_chip
*chip
,
93 unsigned offset
, int value
)
95 struct arizona_gpio
*arizona_gpio
= gpiochip_get_data(chip
);
96 struct arizona
*arizona
= arizona_gpio
->arizona
;
97 bool persistent
= gpiochip_line_is_persistent(chip
, offset
);
101 ret
= regmap_read(arizona
->regmap
, ARIZONA_GPIO1_CTRL
+ offset
, &val
);
105 if ((val
& ARIZONA_GPN_DIR
) && persistent
) {
106 ret
= pm_runtime_get_sync(chip
->parent
);
108 dev_err(chip
->parent
, "Failed to resume: %d\n", ret
);
114 value
= ARIZONA_GPN_LVL
;
116 return regmap_update_bits(arizona
->regmap
, ARIZONA_GPIO1_CTRL
+ offset
,
117 ARIZONA_GPN_DIR
| ARIZONA_GPN_LVL
, value
);
120 static void arizona_gpio_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
122 struct arizona_gpio
*arizona_gpio
= gpiochip_get_data(chip
);
123 struct arizona
*arizona
= arizona_gpio
->arizona
;
126 value
= ARIZONA_GPN_LVL
;
128 regmap_update_bits(arizona
->regmap
, ARIZONA_GPIO1_CTRL
+ offset
,
129 ARIZONA_GPN_LVL
, value
);
132 static const struct gpio_chip template_chip
= {
134 .owner
= THIS_MODULE
,
135 .direction_input
= arizona_gpio_direction_in
,
136 .get
= arizona_gpio_get
,
137 .direction_output
= arizona_gpio_direction_out
,
138 .set
= arizona_gpio_set
,
142 static int arizona_gpio_probe(struct platform_device
*pdev
)
144 struct arizona
*arizona
= dev_get_drvdata(pdev
->dev
.parent
);
145 struct arizona_pdata
*pdata
= &arizona
->pdata
;
146 struct arizona_gpio
*arizona_gpio
;
149 arizona_gpio
= devm_kzalloc(&pdev
->dev
, sizeof(*arizona_gpio
),
154 arizona_gpio
->arizona
= arizona
;
155 arizona_gpio
->gpio_chip
= template_chip
;
156 arizona_gpio
->gpio_chip
.parent
= &pdev
->dev
;
157 #ifdef CONFIG_OF_GPIO
158 arizona_gpio
->gpio_chip
.of_node
= arizona
->dev
->of_node
;
161 switch (arizona
->type
) {
168 arizona_gpio
->gpio_chip
.ngpio
= 5;
172 arizona_gpio
->gpio_chip
.ngpio
= 2;
175 dev_err(&pdev
->dev
, "Unknown chip variant %d\n",
180 if (pdata
->gpio_base
)
181 arizona_gpio
->gpio_chip
.base
= pdata
->gpio_base
;
183 arizona_gpio
->gpio_chip
.base
= -1;
185 pm_runtime_enable(&pdev
->dev
);
187 ret
= devm_gpiochip_add_data(&pdev
->dev
, &arizona_gpio
->gpio_chip
,
190 dev_err(&pdev
->dev
, "Could not register gpiochip, %d\n",
198 static struct platform_driver arizona_gpio_driver
= {
199 .driver
.name
= "arizona-gpio",
200 .probe
= arizona_gpio_probe
,
203 module_platform_driver(arizona_gpio_driver
);
205 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
206 MODULE_DESCRIPTION("GPIO interface for Arizona devices");
207 MODULE_LICENSE("GPL");
208 MODULE_ALIAS("platform:arizona-gpio");