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.
12 #include <linux/err.h>
13 #include <linux/gpio/driver.h>
14 #include <linux/module.h>
16 #include <linux/of_device.h>
17 #include <linux/platform_device.h>
18 #include <linux/regmap.h>
19 #include <linux/mfd/syscon.h>
21 #define GPIO_SYSCON_FEAT_IN BIT(0)
22 #define GPIO_SYSCON_FEAT_OUT BIT(1)
23 #define GPIO_SYSCON_FEAT_DIR BIT(2)
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)
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).
40 * set: HW specific callback to assigns output value
44 struct syscon_gpio_data {
45 const char *compatible;
47 unsigned int bit_count;
48 unsigned int dat_bit_offset;
49 unsigned int dir_bit_offset;
50 void (*set)(struct gpio_chip *chip,
51 unsigned offset, int value);
54 struct syscon_gpio_priv {
55 struct gpio_chip chip;
56 struct regmap *syscon;
57 const struct syscon_gpio_data *data;
62 static int syscon_gpio_get(struct gpio_chip *chip, unsigned offset)
64 struct syscon_gpio_priv *priv = gpiochip_get_data(chip);
65 unsigned int val, offs;
68 offs = priv->dreg_offset + priv->data->dat_bit_offset + offset;
70 ret = regmap_read(priv->syscon,
71 (offs / SYSCON_REG_BITS) * SYSCON_REG_SIZE, &val);
75 return !!(val & BIT(offs % SYSCON_REG_BITS));
78 static void syscon_gpio_set(struct gpio_chip *chip, unsigned offset, int val)
80 struct syscon_gpio_priv *priv = gpiochip_get_data(chip);
83 offs = priv->dreg_offset + priv->data->dat_bit_offset + offset;
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);
91 static int syscon_gpio_dir_in(struct gpio_chip *chip, unsigned offset)
93 struct syscon_gpio_priv *priv = gpiochip_get_data(chip);
95 if (priv->data->flags & GPIO_SYSCON_FEAT_DIR) {
98 offs = priv->dir_reg_offset +
99 priv->data->dir_bit_offset + offset;
101 regmap_update_bits(priv->syscon,
102 (offs / SYSCON_REG_BITS) * SYSCON_REG_SIZE,
103 BIT(offs % SYSCON_REG_BITS), 0);
109 static int syscon_gpio_dir_out(struct gpio_chip *chip, unsigned offset, int val)
111 struct syscon_gpio_priv *priv = gpiochip_get_data(chip);
113 if (priv->data->flags & GPIO_SYSCON_FEAT_DIR) {
116 offs = priv->dir_reg_offset +
117 priv->data->dir_bit_offset + offset;
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));
125 chip->set(chip, offset, val);
130 static const struct syscon_gpio_data clps711x_mctrl_gpio = {
131 /* ARM CLPS711X SYSFLG1 Bits 8-10 */
132 .compatible = "cirrus,ep7209-syscon1",
133 .flags = GPIO_SYSCON_FEAT_IN,
135 .dat_bit_offset = 0x40 * 8 + 8,
138 static void rockchip_gpio_set(struct gpio_chip *chip, unsigned int offset,
141 struct syscon_gpio_priv *priv = gpiochip_get_data(chip);
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,
154 dev_err(chip->parent, "gpio write failed ret(%d)\n", ret);
157 static 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,
161 .dat_bit_offset = 0x0428 * 8 + 1,
162 .set = rockchip_gpio_set,
165 #define KEYSTONE_LOCK_BIT BIT(0)
167 static void keystone_gpio_set(struct gpio_chip *chip, unsigned offset, int val)
169 struct syscon_gpio_priv *priv = gpiochip_get_data(chip);
173 offs = priv->dreg_offset + priv->data->dat_bit_offset + offset;
178 ret = regmap_update_bits(
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);
184 dev_err(chip->parent, "gpio write failed ret(%d)\n", ret);
187 static const struct syscon_gpio_data keystone_dsp_gpio = {
190 .flags = GPIO_SYSCON_FEAT_OUT,
193 .set = keystone_gpio_set,
196 static const struct of_device_id syscon_gpio_ids[] = {
198 .compatible = "cirrus,ep7209-mctrl-gpio",
199 .data = &clps711x_mctrl_gpio,
202 .compatible = "ti,keystone-dsp-gpio",
203 .data = &keystone_dsp_gpio,
206 .compatible = "rockchip,rk3328-grf-gpio",
207 .data = &rockchip_rk3328_gpio_mute,
211 MODULE_DEVICE_TABLE(of, syscon_gpio_ids);
213 static int syscon_gpio_probe(struct platform_device *pdev)
215 struct device *dev = &pdev->dev;
216 struct syscon_gpio_priv *priv;
217 struct device_node *np = dev->of_node;
220 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
224 priv->data = of_device_get_match_data(dev);
226 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);
233 syscon_regmap_lookup_by_phandle(np, "gpio,syscon-dev");
234 if (IS_ERR(priv->syscon) && np->parent)
235 priv->syscon = syscon_node_to_regmap(np->parent);
236 if (IS_ERR(priv->syscon))
237 return PTR_ERR(priv->syscon);
239 ret = of_property_read_u32_index(np, "gpio,syscon-dev", 1,
242 dev_err(dev, "can't read the data register offset!\n");
244 priv->dreg_offset <<= 3;
246 ret = of_property_read_u32_index(np, "gpio,syscon-dev", 2,
247 &priv->dir_reg_offset);
249 dev_dbg(dev, "can't read the dir register offset!\n");
251 priv->dir_reg_offset <<= 3;
254 priv->chip.parent = dev;
255 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) {
263 priv->chip.set = priv->data->set ? : syscon_gpio_set;
264 priv->chip.direction_output = syscon_gpio_dir_out;
267 platform_set_drvdata(pdev, priv);
269 return devm_gpiochip_add_data(&pdev->dev, &priv->chip, priv);
272 static struct platform_driver syscon_gpio_driver = {
274 .name = "gpio-syscon",
275 .of_match_table = syscon_gpio_ids,
277 .probe = syscon_gpio_probe,
279 module_platform_driver(syscon_gpio_driver);
282 MODULE_DESCRIPTION("SYSCON GPIO driver");
283 MODULE_LICENSE("GPL");