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 ret
= regmap_read(gpio
->regmap
, AXP20X_GPIO20_SS
, &val
);
73 return !!(val
& BIT(offset
+ 4));
76 static int axp20x_gpio_get_direction(struct gpio_chip
*chip
, unsigned offset
)
78 struct axp20x_gpio
*gpio
= gpiochip_get_data(chip
);
82 reg
= axp20x_gpio_get_reg(offset
);
86 ret
= regmap_read(gpio
->regmap
, reg
, &val
);
91 * This shouldn't really happen if the pin is in use already,
92 * or if it's not in use yet, it doesn't matter since we're
93 * going to change the value soon anyway. Default to output.
95 if ((val
& AXP20X_GPIO_FUNCTIONS
) > 2)
99 * The GPIO directions are the three lowest values.
100 * 2 is input, 0 and 1 are output
105 static int axp20x_gpio_output(struct gpio_chip
*chip
, unsigned offset
,
108 struct axp20x_gpio
*gpio
= gpiochip_get_data(chip
);
111 reg
= axp20x_gpio_get_reg(offset
);
115 return regmap_update_bits(gpio
->regmap
, reg
,
116 AXP20X_GPIO_FUNCTIONS
,
117 value
? AXP20X_GPIO_FUNCTION_OUT_HIGH
118 : AXP20X_GPIO_FUNCTION_OUT_LOW
);
121 static void axp20x_gpio_set(struct gpio_chip
*chip
, unsigned offset
,
124 axp20x_gpio_output(chip
, offset
, value
);
127 static int axp20x_gpio_probe(struct platform_device
*pdev
)
129 struct axp20x_dev
*axp20x
= dev_get_drvdata(pdev
->dev
.parent
);
130 struct axp20x_gpio
*gpio
;
133 if (!of_device_is_available(pdev
->dev
.of_node
))
137 dev_err(&pdev
->dev
, "Parent drvdata not set\n");
141 gpio
= devm_kzalloc(&pdev
->dev
, sizeof(*gpio
), GFP_KERNEL
);
145 gpio
->chip
.base
= -1;
146 gpio
->chip
.can_sleep
= true;
147 gpio
->chip
.parent
= &pdev
->dev
;
148 gpio
->chip
.label
= dev_name(&pdev
->dev
);
149 gpio
->chip
.owner
= THIS_MODULE
;
150 gpio
->chip
.get
= axp20x_gpio_get
;
151 gpio
->chip
.get_direction
= axp20x_gpio_get_direction
;
152 gpio
->chip
.set
= axp20x_gpio_set
;
153 gpio
->chip
.direction_input
= axp20x_gpio_input
;
154 gpio
->chip
.direction_output
= axp20x_gpio_output
;
155 gpio
->chip
.ngpio
= 3;
157 gpio
->regmap
= axp20x
->regmap
;
159 ret
= devm_gpiochip_add_data(&pdev
->dev
, &gpio
->chip
, gpio
);
161 dev_err(&pdev
->dev
, "Failed to register GPIO chip\n");
165 dev_info(&pdev
->dev
, "AXP209 GPIO driver loaded\n");
170 static const struct of_device_id axp20x_gpio_match
[] = {
171 { .compatible
= "x-powers,axp209-gpio" },
174 MODULE_DEVICE_TABLE(of
, axp20x_gpio_match
);
176 static struct platform_driver axp20x_gpio_driver
= {
177 .probe
= axp20x_gpio_probe
,
179 .name
= "axp20x-gpio",
180 .of_match_table
= axp20x_gpio_match
,
184 module_platform_driver(axp20x_gpio_driver
);
186 MODULE_AUTHOR("Maxime Ripard <maxime.ripard@free-electrons.com>");
187 MODULE_DESCRIPTION("AXP20x PMIC GPIO driver");
188 MODULE_LICENSE("GPL");