blob: 87c18a544513768ce03aa38464a77125e6b1c867 [file] [log] [blame]
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +04001/*
2 * SYSCON GPIO driver
3 *
4 * Copyright (C) 2014 Alexander Shiyan <shc_work@mail.ru>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11
12#include <linux/err.h>
Linus Walleij122d00f2018-06-28 08:35:46 +020013#include <linux/gpio/driver.h>
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +040014#include <linux/module.h>
15#include <linux/of.h>
16#include <linux/of_device.h>
17#include <linux/platform_device.h>
18#include <linux/regmap.h>
19#include <linux/mfd/syscon.h>
20
21#define GPIO_SYSCON_FEAT_IN BIT(0)
22#define GPIO_SYSCON_FEAT_OUT BIT(1)
23#define GPIO_SYSCON_FEAT_DIR BIT(2)
24
25/* SYSCON driver is designed to use 32-bit wide registers */
26#define SYSCON_REG_SIZE (4)
27#define SYSCON_REG_BITS (SYSCON_REG_SIZE * 8)
28
29/**
30 * struct syscon_gpio_data - Configuration for the device.
31 * compatible: SYSCON driver compatible string.
32 * flags: Set of GPIO_SYSCON_FEAT_ flags:
33 * GPIO_SYSCON_FEAT_IN: GPIOs supports input,
34 * GPIO_SYSCON_FEAT_OUT: GPIOs supports output,
35 * GPIO_SYSCON_FEAT_DIR: GPIOs supports switch direction.
36 * bit_count: Number of bits used as GPIOs.
37 * dat_bit_offset: Offset (in bits) to the first GPIO bit.
38 * dir_bit_offset: Optional offset (in bits) to the first bit to switch
39 * GPIO direction (Used with GPIO_SYSCON_FEAT_DIR flag).
Grygorii Strashko2c341d62014-09-03 20:05:32 +030040 * set: HW specific callback to assigns output value
41 * for signal "offset"
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +040042 */
43
44struct syscon_gpio_data {
45 const char *compatible;
46 unsigned int flags;
47 unsigned int bit_count;
48 unsigned int dat_bit_offset;
49 unsigned int dir_bit_offset;
Grygorii Strashko2c341d62014-09-03 20:05:32 +030050 void (*set)(struct gpio_chip *chip,
51 unsigned offset, int value);
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +040052};
53
54struct syscon_gpio_priv {
55 struct gpio_chip chip;
56 struct regmap *syscon;
57 const struct syscon_gpio_data *data;
Grygorii Strashko5a3e3f82014-09-03 20:05:33 +030058 u32 dreg_offset;
59 u32 dir_reg_offset;
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +040060};
61
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +040062static int syscon_gpio_get(struct gpio_chip *chip, unsigned offset)
63{
Linus Walleijd27ad7a2015-12-07 14:38:36 +010064 struct syscon_gpio_priv *priv = gpiochip_get_data(chip);
Grygorii Strashko5a3e3f82014-09-03 20:05:33 +030065 unsigned int val, offs;
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +040066 int ret;
67
Grygorii Strashko5a3e3f82014-09-03 20:05:33 +030068 offs = priv->dreg_offset + priv->data->dat_bit_offset + offset;
69
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +040070 ret = regmap_read(priv->syscon,
71 (offs / SYSCON_REG_BITS) * SYSCON_REG_SIZE, &val);
72 if (ret)
73 return ret;
74
75 return !!(val & BIT(offs % SYSCON_REG_BITS));
76}
77
78static void syscon_gpio_set(struct gpio_chip *chip, unsigned offset, int val)
79{
Linus Walleijd27ad7a2015-12-07 14:38:36 +010080 struct syscon_gpio_priv *priv = gpiochip_get_data(chip);
Grygorii Strashko5a3e3f82014-09-03 20:05:33 +030081 unsigned int offs;
82
83 offs = priv->dreg_offset + priv->data->dat_bit_offset + offset;
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +040084
85 regmap_update_bits(priv->syscon,
86 (offs / SYSCON_REG_BITS) * SYSCON_REG_SIZE,
87 BIT(offs % SYSCON_REG_BITS),
88 val ? BIT(offs % SYSCON_REG_BITS) : 0);
89}
90
91static int syscon_gpio_dir_in(struct gpio_chip *chip, unsigned offset)
92{
Linus Walleijd27ad7a2015-12-07 14:38:36 +010093 struct syscon_gpio_priv *priv = gpiochip_get_data(chip);
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +040094
95 if (priv->data->flags & GPIO_SYSCON_FEAT_DIR) {
Grygorii Strashko5a3e3f82014-09-03 20:05:33 +030096 unsigned int offs;
97
98 offs = priv->dir_reg_offset +
99 priv->data->dir_bit_offset + offset;
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400100
101 regmap_update_bits(priv->syscon,
102 (offs / SYSCON_REG_BITS) * SYSCON_REG_SIZE,
103 BIT(offs % SYSCON_REG_BITS), 0);
104 }
105
106 return 0;
107}
108
109static int syscon_gpio_dir_out(struct gpio_chip *chip, unsigned offset, int val)
110{
Linus Walleijd27ad7a2015-12-07 14:38:36 +0100111 struct syscon_gpio_priv *priv = gpiochip_get_data(chip);
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400112
113 if (priv->data->flags & GPIO_SYSCON_FEAT_DIR) {
Grygorii Strashko5a3e3f82014-09-03 20:05:33 +0300114 unsigned int offs;
115
116 offs = priv->dir_reg_offset +
117 priv->data->dir_bit_offset + offset;
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400118
119 regmap_update_bits(priv->syscon,
120 (offs / SYSCON_REG_BITS) * SYSCON_REG_SIZE,
121 BIT(offs % SYSCON_REG_BITS),
122 BIT(offs % SYSCON_REG_BITS));
123 }
124
Grygorii Strashko2c341d62014-09-03 20:05:32 +0300125 priv->data->set(chip, offset, val);
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400126
127 return 0;
128}
129
130static const struct syscon_gpio_data clps711x_mctrl_gpio = {
131 /* ARM CLPS711X SYSFLG1 Bits 8-10 */
Alexander Shiyan2e607fc2016-06-04 10:10:00 +0300132 .compatible = "cirrus,ep7209-syscon1",
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400133 .flags = GPIO_SYSCON_FEAT_IN,
134 .bit_count = 3,
135 .dat_bit_offset = 0x40 * 8 + 8,
136};
137
Levin Ducf2ff872018-07-31 13:59:19 +0800138static void rockchip_gpio_set(struct gpio_chip *chip, unsigned int offset,
139 int val)
140{
141 struct syscon_gpio_priv *priv = gpiochip_get_data(chip);
142 unsigned int offs;
143 u8 bit;
144 u32 data;
145 int ret;
146
147 offs = priv->dreg_offset + priv->data->dat_bit_offset + offset;
148 bit = offs % SYSCON_REG_BITS;
149 data = (val ? BIT(bit) : 0) | BIT(bit + 16);
150 ret = regmap_write(priv->syscon,
151 (offs / SYSCON_REG_BITS) * SYSCON_REG_SIZE,
152 data);
153 if (ret < 0)
154 dev_err(chip->parent, "gpio write failed ret(%d)\n", ret);
155}
156
157static const struct syscon_gpio_data rockchip_rk3328_gpio_mute = {
158 /* RK3328 GPIO_MUTE is an output only pin at GRF_SOC_CON10[1] */
159 .flags = GPIO_SYSCON_FEAT_OUT,
160 .bit_count = 1,
161 .dat_bit_offset = 0x0428 * 8 + 1,
162 .set = rockchip_gpio_set,
163};
164
Grygorii Strashko2134cb92014-09-03 20:05:34 +0300165#define KEYSTONE_LOCK_BIT BIT(0)
166
167static void keystone_gpio_set(struct gpio_chip *chip, unsigned offset, int val)
168{
Linus Walleijd27ad7a2015-12-07 14:38:36 +0100169 struct syscon_gpio_priv *priv = gpiochip_get_data(chip);
Grygorii Strashko2134cb92014-09-03 20:05:34 +0300170 unsigned int offs;
171 int ret;
172
173 offs = priv->dreg_offset + priv->data->dat_bit_offset + offset;
174
175 if (!val)
176 return;
177
178 ret = regmap_update_bits(
179 priv->syscon,
180 (offs / SYSCON_REG_BITS) * SYSCON_REG_SIZE,
181 BIT(offs % SYSCON_REG_BITS) | KEYSTONE_LOCK_BIT,
182 BIT(offs % SYSCON_REG_BITS) | KEYSTONE_LOCK_BIT);
183 if (ret < 0)
Linus Walleij58383c782015-11-04 09:56:26 +0100184 dev_err(chip->parent, "gpio write failed ret(%d)\n", ret);
Grygorii Strashko2134cb92014-09-03 20:05:34 +0300185}
186
187static const struct syscon_gpio_data keystone_dsp_gpio = {
188 /* ARM Keystone 2 */
189 .compatible = NULL,
190 .flags = GPIO_SYSCON_FEAT_OUT,
191 .bit_count = 28,
192 .dat_bit_offset = 4,
193 .set = keystone_gpio_set,
194};
195
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400196static const struct of_device_id syscon_gpio_ids[] = {
197 {
Alexander Shiyan2e607fc2016-06-04 10:10:00 +0300198 .compatible = "cirrus,ep7209-mctrl-gpio",
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400199 .data = &clps711x_mctrl_gpio,
200 },
Grygorii Strashko2134cb92014-09-03 20:05:34 +0300201 {
202 .compatible = "ti,keystone-dsp-gpio",
203 .data = &keystone_dsp_gpio,
204 },
Levin Ducf2ff872018-07-31 13:59:19 +0800205 {
206 .compatible = "rockchip,rk3328-grf-gpio",
207 .data = &rockchip_rk3328_gpio_mute,
208 },
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400209 { }
210};
211MODULE_DEVICE_TABLE(of, syscon_gpio_ids);
212
213static int syscon_gpio_probe(struct platform_device *pdev)
214{
215 struct device *dev = &pdev->dev;
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400216 struct syscon_gpio_priv *priv;
Grygorii Strashko5a3e3f82014-09-03 20:05:33 +0300217 struct device_node *np = dev->of_node;
218 int ret;
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400219
220 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
221 if (!priv)
222 return -ENOMEM;
223
Thierry Redingedf874e2018-04-30 09:38:16 +0200224 priv->data = of_device_get_match_data(dev);
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400225
Grygorii Strashko5a3e3f82014-09-03 20:05:33 +0300226 if (priv->data->compatible) {
227 priv->syscon = syscon_regmap_lookup_by_compatible(
228 priv->data->compatible);
229 if (IS_ERR(priv->syscon))
230 return PTR_ERR(priv->syscon);
231 } else {
232 priv->syscon =
233 syscon_regmap_lookup_by_phandle(np, "gpio,syscon-dev");
Heiko Stuebneraa1fdda2018-05-18 11:52:04 +0800234 if (IS_ERR(priv->syscon) && np->parent)
235 priv->syscon = syscon_node_to_regmap(np->parent);
Grygorii Strashko5a3e3f82014-09-03 20:05:33 +0300236 if (IS_ERR(priv->syscon))
237 return PTR_ERR(priv->syscon);
238
239 ret = of_property_read_u32_index(np, "gpio,syscon-dev", 1,
240 &priv->dreg_offset);
241 if (ret)
242 dev_err(dev, "can't read the data register offset!\n");
243
244 priv->dreg_offset <<= 3;
245
246 ret = of_property_read_u32_index(np, "gpio,syscon-dev", 2,
247 &priv->dir_reg_offset);
248 if (ret)
Grygorii Strashkoc6ac19d2015-03-24 20:42:42 +0200249 dev_dbg(dev, "can't read the dir register offset!\n");
Grygorii Strashko5a3e3f82014-09-03 20:05:33 +0300250
251 priv->dir_reg_offset <<= 3;
252 }
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400253
Linus Walleij58383c782015-11-04 09:56:26 +0100254 priv->chip.parent = dev;
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400255 priv->chip.owner = THIS_MODULE;
256 priv->chip.label = dev_name(dev);
257 priv->chip.base = -1;
258 priv->chip.ngpio = priv->data->bit_count;
259 priv->chip.get = syscon_gpio_get;
260 if (priv->data->flags & GPIO_SYSCON_FEAT_IN)
261 priv->chip.direction_input = syscon_gpio_dir_in;
262 if (priv->data->flags & GPIO_SYSCON_FEAT_OUT) {
Grygorii Strashko2c341d62014-09-03 20:05:32 +0300263 priv->chip.set = priv->data->set ? : syscon_gpio_set;
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400264 priv->chip.direction_output = syscon_gpio_dir_out;
265 }
266
267 platform_set_drvdata(pdev, priv);
268
Laxman Dewangan94c683a2016-02-22 17:43:28 +0530269 return devm_gpiochip_add_data(&pdev->dev, &priv->chip, priv);
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400270}
271
272static struct platform_driver syscon_gpio_driver = {
273 .driver = {
274 .name = "gpio-syscon",
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400275 .of_match_table = syscon_gpio_ids,
276 },
277 .probe = syscon_gpio_probe,
Alexander Shiyan6a8a0c12014-03-11 21:55:14 +0400278};
279module_platform_driver(syscon_gpio_driver);
280
281MODULE_AUTHOR("Alexander Shiyan <shc_work@mail.ru>");
282MODULE_DESCRIPTION("SYSCON GPIO driver");
283MODULE_LICENSE("GPL");