blob: 6ee7dc1418faafb08d51c4af840c280fb118f41f [file] [log] [blame]
Maxime Ripardf72f4b42016-07-20 16:11:36 +02001/*
2 * AXP20x GPIO driver
3 *
4 * Copyright (C) 2016 Maxime Ripard <maxime.ripard@free-electrons.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 */
11
12#include <linux/bitops.h>
13#include <linux/device.h>
14#include <linux/gpio/driver.h>
15#include <linux/init.h>
16#include <linux/interrupt.h>
17#include <linux/kernel.h>
18#include <linux/mfd/axp20x.h>
19#include <linux/module.h>
20#include <linux/of.h>
21#include <linux/platform_device.h>
22#include <linux/regmap.h>
23#include <linux/slab.h>
24
25#define AXP20X_GPIO_FUNCTIONS 0x7
26#define AXP20X_GPIO_FUNCTION_OUT_LOW 0
27#define AXP20X_GPIO_FUNCTION_OUT_HIGH 1
28#define AXP20X_GPIO_FUNCTION_INPUT 2
29
30struct axp20x_gpio {
31 struct gpio_chip chip;
32 struct regmap *regmap;
33};
34
Quentin Schulz3cac9912017-12-05 15:46:39 +010035static int axp20x_gpio_get_reg(unsigned int offset)
Maxime Ripardf72f4b42016-07-20 16:11:36 +020036{
37 switch (offset) {
38 case 0:
39 return AXP20X_GPIO0_CTRL;
40 case 1:
41 return AXP20X_GPIO1_CTRL;
42 case 2:
43 return AXP20X_GPIO2_CTRL;
44 }
45
46 return -EINVAL;
47}
48
Quentin Schulz3cac9912017-12-05 15:46:39 +010049static int axp20x_gpio_input(struct gpio_chip *chip, unsigned int offset)
Maxime Ripardf72f4b42016-07-20 16:11:36 +020050{
51 struct axp20x_gpio *gpio = gpiochip_get_data(chip);
52 int reg;
53
54 reg = axp20x_gpio_get_reg(offset);
55 if (reg < 0)
56 return reg;
57
58 return regmap_update_bits(gpio->regmap, reg,
59 AXP20X_GPIO_FUNCTIONS,
60 AXP20X_GPIO_FUNCTION_INPUT);
61}
62
Quentin Schulz3cac9912017-12-05 15:46:39 +010063static int axp20x_gpio_get(struct gpio_chip *chip, unsigned int offset)
Maxime Ripardf72f4b42016-07-20 16:11:36 +020064{
65 struct axp20x_gpio *gpio = gpiochip_get_data(chip);
66 unsigned int val;
Quentin Schulz1d2b2ac2016-11-23 15:11:50 +010067 int ret;
Maxime Ripardf72f4b42016-07-20 16:11:36 +020068
Quentin Schulz1d2b2ac2016-11-23 15:11:50 +010069 ret = regmap_read(gpio->regmap, AXP20X_GPIO20_SS, &val);
Maxime Ripardf72f4b42016-07-20 16:11:36 +020070 if (ret)
71 return ret;
72
73 return !!(val & BIT(offset + 4));
74}
75
Quentin Schulz3cac9912017-12-05 15:46:39 +010076static int axp20x_gpio_get_direction(struct gpio_chip *chip,
77 unsigned int offset)
Maxime Ripard81d37532016-09-21 23:51:22 +030078{
79 struct axp20x_gpio *gpio = gpiochip_get_data(chip);
80 unsigned int val;
81 int reg, ret;
82
83 reg = axp20x_gpio_get_reg(offset);
84 if (reg < 0)
85 return reg;
86
87 ret = regmap_read(gpio->regmap, reg, &val);
88 if (ret)
89 return ret;
90
91 /*
92 * This shouldn't really happen if the pin is in use already,
93 * or if it's not in use yet, it doesn't matter since we're
94 * going to change the value soon anyway. Default to output.
95 */
96 if ((val & AXP20X_GPIO_FUNCTIONS) > 2)
97 return 0;
98
99 /*
100 * The GPIO directions are the three lowest values.
101 * 2 is input, 0 and 1 are output
102 */
103 return val & 2;
104}
105
Quentin Schulz3cac9912017-12-05 15:46:39 +0100106static int axp20x_gpio_output(struct gpio_chip *chip, unsigned int offset,
Maxime Ripardf72f4b42016-07-20 16:11:36 +0200107 int value)
108{
109 struct axp20x_gpio *gpio = gpiochip_get_data(chip);
110 int reg;
111
112 reg = axp20x_gpio_get_reg(offset);
113 if (reg < 0)
114 return reg;
115
116 return regmap_update_bits(gpio->regmap, reg,
117 AXP20X_GPIO_FUNCTIONS,
118 value ? AXP20X_GPIO_FUNCTION_OUT_HIGH
119 : AXP20X_GPIO_FUNCTION_OUT_LOW);
120}
121
Quentin Schulz3cac9912017-12-05 15:46:39 +0100122static void axp20x_gpio_set(struct gpio_chip *chip, unsigned int offset,
Maxime Ripardf72f4b42016-07-20 16:11:36 +0200123 int value)
124{
125 axp20x_gpio_output(chip, offset, value);
126}
127
128static int axp20x_gpio_probe(struct platform_device *pdev)
129{
130 struct axp20x_dev *axp20x = dev_get_drvdata(pdev->dev.parent);
131 struct axp20x_gpio *gpio;
132 int ret;
133
134 if (!of_device_is_available(pdev->dev.of_node))
135 return -ENODEV;
136
137 if (!axp20x) {
138 dev_err(&pdev->dev, "Parent drvdata not set\n");
139 return -EINVAL;
140 }
141
142 gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
143 if (!gpio)
144 return -ENOMEM;
145
146 gpio->chip.base = -1;
147 gpio->chip.can_sleep = true;
148 gpio->chip.parent = &pdev->dev;
149 gpio->chip.label = dev_name(&pdev->dev);
150 gpio->chip.owner = THIS_MODULE;
151 gpio->chip.get = axp20x_gpio_get;
Maxime Ripard81d37532016-09-21 23:51:22 +0300152 gpio->chip.get_direction = axp20x_gpio_get_direction;
Maxime Ripardf72f4b42016-07-20 16:11:36 +0200153 gpio->chip.set = axp20x_gpio_set;
154 gpio->chip.direction_input = axp20x_gpio_input;
155 gpio->chip.direction_output = axp20x_gpio_output;
156 gpio->chip.ngpio = 3;
157
158 gpio->regmap = axp20x->regmap;
159
160 ret = devm_gpiochip_add_data(&pdev->dev, &gpio->chip, gpio);
161 if (ret) {
162 dev_err(&pdev->dev, "Failed to register GPIO chip\n");
163 return ret;
164 }
165
166 dev_info(&pdev->dev, "AXP209 GPIO driver loaded\n");
167
168 return 0;
169}
170
171static const struct of_device_id axp20x_gpio_match[] = {
172 { .compatible = "x-powers,axp209-gpio" },
173 { }
174};
175MODULE_DEVICE_TABLE(of, axp20x_gpio_match);
176
177static struct platform_driver axp20x_gpio_driver = {
178 .probe = axp20x_gpio_probe,
179 .driver = {
180 .name = "axp20x-gpio",
181 .of_match_table = axp20x_gpio_match,
182 },
183};
184
185module_platform_driver(axp20x_gpio_driver);
186
187MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
188MODULE_DESCRIPTION("AXP20x PMIC GPIO driver");
189MODULE_LICENSE("GPL");