blob: c07fad975049d5fe935ad5b0b3ce49ad4275c052 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Mark Brown31ba56f2012-06-23 13:29:25 +01002/*
3 * gpiolib support for Wolfson Arizona class devices
4 *
5 * Copyright 2012 Wolfson Microelectronics PLC.
6 *
7 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Brown31ba56f2012-06-23 13:29:25 +01008 */
9
10#include <linux/kernel.h>
11#include <linux/slab.h>
12#include <linux/module.h>
Linus Walleij2e21ec42018-01-13 22:47:48 +010013#include <linux/gpio/driver.h>
Mark Brown31ba56f2012-06-23 13:29:25 +010014#include <linux/platform_device.h>
Charles Keepax11598d12017-04-05 16:50:46 +010015#include <linux/pm_runtime.h>
Mark Brown31ba56f2012-06-23 13:29:25 +010016#include <linux/seq_file.h>
17
18#include <linux/mfd/arizona/core.h>
19#include <linux/mfd/arizona/pdata.h>
20#include <linux/mfd/arizona/registers.h>
21
22struct arizona_gpio {
23 struct arizona *arizona;
24 struct gpio_chip gpio_chip;
25};
26
Mark Brown31ba56f2012-06-23 13:29:25 +010027static int arizona_gpio_direction_in(struct gpio_chip *chip, unsigned offset)
28{
Linus Walleij18992d42015-12-04 15:31:31 +010029 struct arizona_gpio *arizona_gpio = gpiochip_get_data(chip);
Mark Brown31ba56f2012-06-23 13:29:25 +010030 struct arizona *arizona = arizona_gpio->arizona;
Charles Keepax27a49ed2017-05-23 15:47:30 +010031 bool persistent = gpiochip_line_is_persistent(chip, offset);
32 bool change;
33 int ret;
Mark Brown31ba56f2012-06-23 13:29:25 +010034
Charles Keepax27a49ed2017-05-23 15:47:30 +010035 ret = regmap_update_bits_check(arizona->regmap,
36 ARIZONA_GPIO1_CTRL + offset,
37 ARIZONA_GPN_DIR, ARIZONA_GPN_DIR,
38 &change);
39 if (ret < 0)
40 return ret;
41
42 if (change && persistent) {
43 pm_runtime_mark_last_busy(chip->parent);
44 pm_runtime_put_autosuspend(chip->parent);
45 }
46
47 return 0;
Mark Brown31ba56f2012-06-23 13:29:25 +010048}
49
50static int arizona_gpio_get(struct gpio_chip *chip, unsigned offset)
51{
Linus Walleij18992d42015-12-04 15:31:31 +010052 struct arizona_gpio *arizona_gpio = gpiochip_get_data(chip);
Mark Brown31ba56f2012-06-23 13:29:25 +010053 struct arizona *arizona = arizona_gpio->arizona;
Charles Keepax11598d12017-04-05 16:50:46 +010054 unsigned int reg, val;
Mark Brown31ba56f2012-06-23 13:29:25 +010055 int ret;
56
Charles Keepax11598d12017-04-05 16:50:46 +010057 reg = ARIZONA_GPIO1_CTRL + offset;
58 ret = regmap_read(arizona->regmap, reg, &val);
Mark Brown31ba56f2012-06-23 13:29:25 +010059 if (ret < 0)
60 return ret;
61
Charles Keepax11598d12017-04-05 16:50:46 +010062 /* Resume to read actual registers for input pins */
Charles Keepax64c6a712017-04-19 10:30:44 +010063 if (val & ARIZONA_GPN_DIR) {
Charles Keepax11598d12017-04-05 16:50:46 +010064 ret = pm_runtime_get_sync(chip->parent);
65 if (ret < 0) {
66 dev_err(chip->parent, "Failed to resume: %d\n", ret);
67 return ret;
68 }
69
70 /* Register is cached, drop it to ensure a physical read */
71 ret = regcache_drop_region(arizona->regmap, reg, reg);
72 if (ret < 0) {
73 dev_err(chip->parent, "Failed to drop cache: %d\n",
74 ret);
75 return ret;
76 }
77
78 ret = regmap_read(arizona->regmap, reg, &val);
79 if (ret < 0)
80 return ret;
81
82 pm_runtime_mark_last_busy(chip->parent);
83 pm_runtime_put_autosuspend(chip->parent);
84 }
85
Mark Brown31ba56f2012-06-23 13:29:25 +010086 if (val & ARIZONA_GPN_LVL)
87 return 1;
88 else
89 return 0;
90}
91
92static int arizona_gpio_direction_out(struct gpio_chip *chip,
93 unsigned offset, int value)
94{
Linus Walleij18992d42015-12-04 15:31:31 +010095 struct arizona_gpio *arizona_gpio = gpiochip_get_data(chip);
Mark Brown31ba56f2012-06-23 13:29:25 +010096 struct arizona *arizona = arizona_gpio->arizona;
Charles Keepax27a49ed2017-05-23 15:47:30 +010097 bool persistent = gpiochip_line_is_persistent(chip, offset);
98 unsigned int val;
99 int ret;
100
101 ret = regmap_read(arizona->regmap, ARIZONA_GPIO1_CTRL + offset, &val);
102 if (ret < 0)
103 return ret;
104
105 if ((val & ARIZONA_GPN_DIR) && persistent) {
106 ret = pm_runtime_get_sync(chip->parent);
107 if (ret < 0) {
108 dev_err(chip->parent, "Failed to resume: %d\n", ret);
109 return ret;
110 }
111 }
Mark Brown31ba56f2012-06-23 13:29:25 +0100112
113 if (value)
114 value = ARIZONA_GPN_LVL;
115
116 return regmap_update_bits(arizona->regmap, ARIZONA_GPIO1_CTRL + offset,
117 ARIZONA_GPN_DIR | ARIZONA_GPN_LVL, value);
118}
119
120static void arizona_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
121{
Linus Walleij18992d42015-12-04 15:31:31 +0100122 struct arizona_gpio *arizona_gpio = gpiochip_get_data(chip);
Mark Brown31ba56f2012-06-23 13:29:25 +0100123 struct arizona *arizona = arizona_gpio->arizona;
124
125 if (value)
126 value = ARIZONA_GPN_LVL;
127
128 regmap_update_bits(arizona->regmap, ARIZONA_GPIO1_CTRL + offset,
129 ARIZONA_GPN_LVL, value);
130}
131
Julia Lawalle35b5ab2016-09-11 14:14:37 +0200132static const struct gpio_chip template_chip = {
Mark Brown31ba56f2012-06-23 13:29:25 +0100133 .label = "arizona",
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,
Linus Walleij9fb1f392013-12-04 14:42:46 +0100139 .can_sleep = true,
Mark Brown31ba56f2012-06-23 13:29:25 +0100140};
141
Bill Pemberton38363092012-11-19 13:22:34 -0500142static int arizona_gpio_probe(struct platform_device *pdev)
Mark Brown31ba56f2012-06-23 13:29:25 +0100143{
144 struct arizona *arizona = dev_get_drvdata(pdev->dev.parent);
Jingoo Hane56aee12013-07-30 17:08:05 +0900145 struct arizona_pdata *pdata = dev_get_platdata(arizona->dev);
Mark Brown31ba56f2012-06-23 13:29:25 +0100146 struct arizona_gpio *arizona_gpio;
147 int ret;
148
149 arizona_gpio = devm_kzalloc(&pdev->dev, sizeof(*arizona_gpio),
150 GFP_KERNEL);
Varka Bhadramafeb7b42015-03-31 09:49:11 +0530151 if (!arizona_gpio)
Mark Brown31ba56f2012-06-23 13:29:25 +0100152 return -ENOMEM;
153
154 arizona_gpio->arizona = arizona;
155 arizona_gpio->gpio_chip = template_chip;
Linus Walleij58383c782015-11-04 09:56:26 +0100156 arizona_gpio->gpio_chip.parent = &pdev->dev;
Charles Keepax4bbd6f22013-09-29 21:00:37 +0100157#ifdef CONFIG_OF_GPIO
158 arizona_gpio->gpio_chip.of_node = arizona->dev->of_node;
159#endif
Mark Brown31ba56f2012-06-23 13:29:25 +0100160
161 switch (arizona->type) {
162 case WM5102:
163 case WM5110:
Richard Fitzgerald449c1752015-01-17 15:21:25 +0000164 case WM8280:
Charles Keepaxd9cadcc2013-09-11 14:03:27 +0100165 case WM8997:
Richard Fitzgerald633a5062015-09-10 16:59:01 +0100166 case WM8998:
167 case WM1814:
Mark Brown31ba56f2012-06-23 13:29:25 +0100168 arizona_gpio->gpio_chip.ngpio = 5;
169 break;
Richard Fitzgerald7d07d152015-11-03 15:08:34 +0000170 case WM1831:
171 case CS47L24:
172 arizona_gpio->gpio_chip.ngpio = 2;
173 break;
Mark Brown31ba56f2012-06-23 13:29:25 +0100174 default:
175 dev_err(&pdev->dev, "Unknown chip variant %d\n",
176 arizona->type);
177 return -EINVAL;
178 }
179
180 if (pdata && pdata->gpio_base)
181 arizona_gpio->gpio_chip.base = pdata->gpio_base;
182 else
183 arizona_gpio->gpio_chip.base = -1;
184
Charles Keepax27a49ed2017-05-23 15:47:30 +0100185 pm_runtime_enable(&pdev->dev);
186
Laxman Dewangandb303a92016-02-22 17:43:28 +0530187 ret = devm_gpiochip_add_data(&pdev->dev, &arizona_gpio->gpio_chip,
188 arizona_gpio);
Mark Brown31ba56f2012-06-23 13:29:25 +0100189 if (ret < 0) {
190 dev_err(&pdev->dev, "Could not register gpiochip, %d\n",
191 ret);
Charles Keepax975acebb2016-11-25 13:48:30 +0000192 return ret;
Mark Brown31ba56f2012-06-23 13:29:25 +0100193 }
194
Charles Keepax975acebb2016-11-25 13:48:30 +0000195 return 0;
Mark Brown31ba56f2012-06-23 13:29:25 +0100196}
197
Mark Brown31ba56f2012-06-23 13:29:25 +0100198static struct platform_driver arizona_gpio_driver = {
199 .driver.name = "arizona-gpio",
Mark Brown31ba56f2012-06-23 13:29:25 +0100200 .probe = arizona_gpio_probe,
Mark Brown31ba56f2012-06-23 13:29:25 +0100201};
202
203module_platform_driver(arizona_gpio_driver);
204
205MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
206MODULE_DESCRIPTION("GPIO interface for Arizona devices");
207MODULE_LICENSE("GPL");
208MODULE_ALIAS("platform:arizona-gpio");