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>
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
31 struct gpio_chip chip
;
32 struct regmap
*regmap
;
35 static int axp20x_gpio_get_reg(unsigned offset
)
39 return AXP20X_GPIO0_CTRL
;
41 return AXP20X_GPIO1_CTRL
;
43 return AXP20X_GPIO2_CTRL
;
49 static int axp20x_gpio_input(struct gpio_chip
*chip
, unsigned offset
)
51 struct axp20x_gpio
*gpio
= gpiochip_get_data(chip
);
54 reg
= axp20x_gpio_get_reg(offset
);
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
);
69 reg
= axp20x_gpio_get_reg(offset
);
73 ret
= regmap_read(gpio
->regmap
, reg
, &val
);
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
);
86 reg
= axp20x_gpio_get_reg(offset
);
90 ret
= regmap_read(gpio
->regmap
, reg
, &val
);
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)
103 * The GPIO directions are the three lowest values.
104 * 2 is input, 0 and 1 are output
109 static int axp20x_gpio_output(struct gpio_chip
*chip
, unsigned offset
,
112 struct axp20x_gpio
*gpio
= gpiochip_get_data(chip
);
115 reg
= axp20x_gpio_get_reg(offset
);
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
,
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
;
137 if (!of_device_is_available(pdev
->dev
.of_node
))
141 dev_err(&pdev
->dev
, "Parent drvdata not set\n");
145 gpio
= devm_kzalloc(&pdev
->dev
, sizeof(*gpio
), GFP_KERNEL
);
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
);
165 dev_err(&pdev
->dev
, "Failed to register GPIO chip\n");
169 dev_info(&pdev
->dev
, "AXP209 GPIO driver loaded\n");
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
,
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");