atm: iphase: Fix Spectre v1 vulnerability
[linux/fpc-iii.git] / drivers / gpio / gpio-axp209.c
blobd9c2a517c6df75f0b26f8be0d8706b67ef7c62aa
1 /*
2 * AXP20x GPIO driver
4 * Copyright (C) 2016 Maxime Ripard <maxime.ripard@free-electrons.com>
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.
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>
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
30 struct axp20x_gpio {
31 struct gpio_chip chip;
32 struct regmap *regmap;
35 static int axp20x_gpio_get_reg(unsigned offset)
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;
46 return -EINVAL;
49 static int axp20x_gpio_input(struct gpio_chip *chip, unsigned offset)
51 struct axp20x_gpio *gpio = gpiochip_get_data(chip);
52 int reg;
54 reg = axp20x_gpio_get_reg(offset);
55 if (reg < 0)
56 return reg;
58 return regmap_update_bits(gpio->regmap, reg,
59 AXP20X_GPIO_FUNCTIONS,
60 AXP20X_GPIO_FUNCTION_INPUT);
63 static int axp20x_gpio_get(struct gpio_chip *chip, unsigned offset)
65 struct axp20x_gpio *gpio = gpiochip_get_data(chip);
66 unsigned int val;
67 int reg, ret;
69 reg = axp20x_gpio_get_reg(offset);
70 if (reg < 0)
71 return reg;
73 ret = regmap_read(gpio->regmap, reg, &val);
74 if (ret)
75 return ret;
77 return !!(val & BIT(offset + 4));
80 static int axp20x_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
82 struct axp20x_gpio *gpio = gpiochip_get_data(chip);
83 unsigned int val;
84 int reg, ret;
86 reg = axp20x_gpio_get_reg(offset);
87 if (reg < 0)
88 return reg;
90 ret = regmap_read(gpio->regmap, reg, &val);
91 if (ret)
92 return ret;
95 * This shouldn't really happen if the pin is in use already,
96 * or if it's not in use yet, it doesn't matter since we're
97 * going to change the value soon anyway. Default to output.
99 if ((val & AXP20X_GPIO_FUNCTIONS) > 2)
100 return 0;
103 * The GPIO directions are the three lowest values.
104 * 2 is input, 0 and 1 are output
106 return val & 2;
109 static int axp20x_gpio_output(struct gpio_chip *chip, unsigned offset,
110 int value)
112 struct axp20x_gpio *gpio = gpiochip_get_data(chip);
113 int reg;
115 reg = axp20x_gpio_get_reg(offset);
116 if (reg < 0)
117 return reg;
119 return regmap_update_bits(gpio->regmap, reg,
120 AXP20X_GPIO_FUNCTIONS,
121 value ? AXP20X_GPIO_FUNCTION_OUT_HIGH
122 : AXP20X_GPIO_FUNCTION_OUT_LOW);
125 static void axp20x_gpio_set(struct gpio_chip *chip, unsigned offset,
126 int value)
128 axp20x_gpio_output(chip, offset, value);
131 static int axp20x_gpio_probe(struct platform_device *pdev)
133 struct axp20x_dev *axp20x = dev_get_drvdata(pdev->dev.parent);
134 struct axp20x_gpio *gpio;
135 int ret;
137 if (!of_device_is_available(pdev->dev.of_node))
138 return -ENODEV;
140 if (!axp20x) {
141 dev_err(&pdev->dev, "Parent drvdata not set\n");
142 return -EINVAL;
145 gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
146 if (!gpio)
147 return -ENOMEM;
149 gpio->chip.base = -1;
150 gpio->chip.can_sleep = true;
151 gpio->chip.parent = &pdev->dev;
152 gpio->chip.label = dev_name(&pdev->dev);
153 gpio->chip.owner = THIS_MODULE;
154 gpio->chip.get = axp20x_gpio_get;
155 gpio->chip.get_direction = axp20x_gpio_get_direction;
156 gpio->chip.set = axp20x_gpio_set;
157 gpio->chip.direction_input = axp20x_gpio_input;
158 gpio->chip.direction_output = axp20x_gpio_output;
159 gpio->chip.ngpio = 3;
161 gpio->regmap = axp20x->regmap;
163 ret = devm_gpiochip_add_data(&pdev->dev, &gpio->chip, gpio);
164 if (ret) {
165 dev_err(&pdev->dev, "Failed to register GPIO chip\n");
166 return ret;
169 dev_info(&pdev->dev, "AXP209 GPIO driver loaded\n");
171 return 0;
174 static const struct of_device_id axp20x_gpio_match[] = {
175 { .compatible = "x-powers,axp209-gpio" },
178 MODULE_DEVICE_TABLE(of, axp20x_gpio_match);
180 static struct platform_driver axp20x_gpio_driver = {
181 .probe = axp20x_gpio_probe,
182 .driver = {
183 .name = "axp20x-gpio",
184 .of_match_table = axp20x_gpio_match,
188 module_platform_driver(axp20x_gpio_driver);
190 MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
191 MODULE_DESCRIPTION("AXP20x PMIC GPIO driver");
192 MODULE_LICENSE("GPL");