blob: 38bd8f122bfc137d1819f1e57360bb0ed83f93ab [file] [log] [blame]
ashishj307bfc912011-07-06 16:02:13 +05301/*
2 * GPIO Driver for Dialog DA9052 PMICs.
3 *
4 * Copyright(c) 2011 Dialog Semiconductor Ltd.
5 *
6 * Author: David Dajun Chen <dchen@diasemi.com>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 */
14#include <linux/module.h>
15#include <linux/fs.h>
16#include <linux/uaccess.h>
17#include <linux/platform_device.h>
18#include <linux/gpio.h>
19#include <linux/syscalls.h>
20#include <linux/seq_file.h>
21
22#include <linux/mfd/da9052/da9052.h>
23#include <linux/mfd/da9052/reg.h>
24#include <linux/mfd/da9052/pdata.h>
ashishj307bfc912011-07-06 16:02:13 +053025
26#define DA9052_INPUT 1
27#define DA9052_OUTPUT_OPENDRAIN 2
28#define DA9052_OUTPUT_PUSHPULL 3
29
30#define DA9052_SUPPLY_VDD_IO1 0
31
32#define DA9052_DEBOUNCING_OFF 0
33#define DA9052_DEBOUNCING_ON 1
34
35#define DA9052_OUTPUT_LOWLEVEL 0
36
37#define DA9052_ACTIVE_LOW 0
38#define DA9052_ACTIVE_HIGH 1
39
40#define DA9052_GPIO_MAX_PORTS_PER_REGISTER 8
41#define DA9052_GPIO_SHIFT_COUNT(no) (no%8)
42#define DA9052_GPIO_MASK_UPPER_NIBBLE 0xF0
43#define DA9052_GPIO_MASK_LOWER_NIBBLE 0x0F
44#define DA9052_GPIO_NIBBLE_SHIFT 4
Ashish Jangam87b9b0e2011-12-15 14:55:46 +053045#define DA9052_IRQ_GPI0 16
46#define DA9052_GPIO_ODD_SHIFT 7
47#define DA9052_GPIO_EVEN_SHIFT 3
ashishj307bfc912011-07-06 16:02:13 +053048
49struct da9052_gpio {
50 struct da9052 *da9052;
51 struct gpio_chip gp;
52};
53
54static inline struct da9052_gpio *to_da9052_gpio(struct gpio_chip *chip)
55{
56 return container_of(chip, struct da9052_gpio, gp);
57}
58
59static unsigned char da9052_gpio_port_odd(unsigned offset)
60{
61 return offset % 2;
62}
63
64static int da9052_gpio_get(struct gpio_chip *gc, unsigned offset)
65{
66 struct da9052_gpio *gpio = to_da9052_gpio(gc);
67 int da9052_port_direction = 0;
68 int ret;
69
70 ret = da9052_reg_read(gpio->da9052,
71 DA9052_GPIO_0_1_REG + (offset >> 1));
72 if (ret < 0)
73 return ret;
74
75 if (da9052_gpio_port_odd(offset)) {
76 da9052_port_direction = ret & DA9052_GPIO_ODD_PORT_PIN;
77 da9052_port_direction >>= 4;
78 } else {
79 da9052_port_direction = ret & DA9052_GPIO_EVEN_PORT_PIN;
80 }
81
82 switch (da9052_port_direction) {
83 case DA9052_INPUT:
84 if (offset < DA9052_GPIO_MAX_PORTS_PER_REGISTER)
85 ret = da9052_reg_read(gpio->da9052,
86 DA9052_STATUS_C_REG);
87 else
88 ret = da9052_reg_read(gpio->da9052,
89 DA9052_STATUS_D_REG);
90 if (ret < 0)
91 return ret;
Linus Walleij1f66adf2015-12-21 10:30:02 +010092 return !!(ret & (1 << DA9052_GPIO_SHIFT_COUNT(offset)));
ashishj307bfc912011-07-06 16:02:13 +053093 case DA9052_OUTPUT_PUSHPULL:
94 if (da9052_gpio_port_odd(offset))
Linus Walleij1f66adf2015-12-21 10:30:02 +010095 return !!(ret & DA9052_GPIO_ODD_PORT_MODE);
ashishj307bfc912011-07-06 16:02:13 +053096 else
Linus Walleij1f66adf2015-12-21 10:30:02 +010097 return !!(ret & DA9052_GPIO_EVEN_PORT_MODE);
ashishj307bfc912011-07-06 16:02:13 +053098 default:
99 return -EINVAL;
100 }
101}
102
103static void da9052_gpio_set(struct gpio_chip *gc, unsigned offset, int value)
104{
105 struct da9052_gpio *gpio = to_da9052_gpio(gc);
ashishj307bfc912011-07-06 16:02:13 +0530106 int ret;
107
108 if (da9052_gpio_port_odd(offset)) {
ashishj307bfc912011-07-06 16:02:13 +0530109 ret = da9052_reg_update(gpio->da9052, (offset >> 1) +
110 DA9052_GPIO_0_1_REG,
111 DA9052_GPIO_ODD_PORT_MODE,
Ashish Jangam87b9b0e2011-12-15 14:55:46 +0530112 value << DA9052_GPIO_ODD_SHIFT);
ashishj307bfc912011-07-06 16:02:13 +0530113 if (ret != 0)
114 dev_err(gpio->da9052->dev,
115 "Failed to updated gpio odd reg,%d",
116 ret);
ashishj307bfc912011-07-06 16:02:13 +0530117 } else {
ashishj307bfc912011-07-06 16:02:13 +0530118 ret = da9052_reg_update(gpio->da9052, (offset >> 1) +
119 DA9052_GPIO_0_1_REG,
120 DA9052_GPIO_EVEN_PORT_MODE,
Ashish Jangam87b9b0e2011-12-15 14:55:46 +0530121 value << DA9052_GPIO_EVEN_SHIFT);
ashishj307bfc912011-07-06 16:02:13 +0530122 if (ret != 0)
123 dev_err(gpio->da9052->dev,
124 "Failed to updated gpio even reg,%d",
125 ret);
ashishj307bfc912011-07-06 16:02:13 +0530126 }
127}
128
129static int da9052_gpio_direction_input(struct gpio_chip *gc, unsigned offset)
130{
131 struct da9052_gpio *gpio = to_da9052_gpio(gc);
132 unsigned char register_value;
133 int ret;
134
135 /* Format: function - 2 bits type - 1 bit mode - 1 bit */
136 register_value = DA9052_INPUT | DA9052_ACTIVE_LOW << 2 |
137 DA9052_DEBOUNCING_ON << 3;
138
139 if (da9052_gpio_port_odd(offset))
140 ret = da9052_reg_update(gpio->da9052, (offset >> 1) +
141 DA9052_GPIO_0_1_REG,
142 DA9052_GPIO_MASK_UPPER_NIBBLE,
143 (register_value <<
144 DA9052_GPIO_NIBBLE_SHIFT));
145 else
146 ret = da9052_reg_update(gpio->da9052, (offset >> 1) +
147 DA9052_GPIO_0_1_REG,
148 DA9052_GPIO_MASK_LOWER_NIBBLE,
149 register_value);
150
151 return ret;
152}
153
154static int da9052_gpio_direction_output(struct gpio_chip *gc,
155 unsigned offset, int value)
156{
157 struct da9052_gpio *gpio = to_da9052_gpio(gc);
158 unsigned char register_value;
159 int ret;
160
161 /* Format: Function - 2 bits Type - 1 bit Mode - 1 bit */
162 register_value = DA9052_OUTPUT_PUSHPULL | DA9052_SUPPLY_VDD_IO1 << 2 |
163 value << 3;
164
165 if (da9052_gpio_port_odd(offset))
166 ret = da9052_reg_update(gpio->da9052, (offset >> 1) +
167 DA9052_GPIO_0_1_REG,
168 DA9052_GPIO_MASK_UPPER_NIBBLE,
169 (register_value <<
170 DA9052_GPIO_NIBBLE_SHIFT));
171 else
172 ret = da9052_reg_update(gpio->da9052, (offset >> 1) +
173 DA9052_GPIO_0_1_REG,
174 DA9052_GPIO_MASK_LOWER_NIBBLE,
175 register_value);
176
177 return ret;
178}
179
180static int da9052_gpio_to_irq(struct gpio_chip *gc, u32 offset)
181{
182 struct da9052_gpio *gpio = to_da9052_gpio(gc);
183 struct da9052 *da9052 = gpio->da9052;
184
Fabio Estevamd511b9c2012-10-04 00:15:09 -0300185 int irq;
186
187 irq = regmap_irq_get_virq(da9052->irq_data, DA9052_IRQ_GPI0 + offset);
188
189 return irq;
ashishj307bfc912011-07-06 16:02:13 +0530190}
191
Bill Pembertonaeca8ad2012-11-19 13:24:14 -0500192static struct gpio_chip reference_gp = {
ashishj307bfc912011-07-06 16:02:13 +0530193 .label = "da9052-gpio",
194 .owner = THIS_MODULE,
195 .get = da9052_gpio_get,
196 .set = da9052_gpio_set,
197 .direction_input = da9052_gpio_direction_input,
198 .direction_output = da9052_gpio_direction_output,
199 .to_irq = da9052_gpio_to_irq,
Linus Walleij9fb1f392013-12-04 14:42:46 +0100200 .can_sleep = true,
Ashish Jangam87b9b0e2011-12-15 14:55:46 +0530201 .ngpio = 16,
202 .base = -1,
ashishj307bfc912011-07-06 16:02:13 +0530203};
204
Bill Pemberton38363092012-11-19 13:22:34 -0500205static int da9052_gpio_probe(struct platform_device *pdev)
ashishj307bfc912011-07-06 16:02:13 +0530206{
207 struct da9052_gpio *gpio;
208 struct da9052_pdata *pdata;
209 int ret;
210
Axel Lineb7cf952012-09-01 17:34:15 +0800211 gpio = devm_kzalloc(&pdev->dev, sizeof(*gpio), GFP_KERNEL);
Varka Bhadramafeb7b42015-03-31 09:49:11 +0530212 if (!gpio)
ashishj307bfc912011-07-06 16:02:13 +0530213 return -ENOMEM;
214
215 gpio->da9052 = dev_get_drvdata(pdev->dev.parent);
Jingoo Hane56aee12013-07-30 17:08:05 +0900216 pdata = dev_get_platdata(gpio->da9052->dev);
ashishj307bfc912011-07-06 16:02:13 +0530217
ashishj307bfc912011-07-06 16:02:13 +0530218 gpio->gp = reference_gp;
219 if (pdata && pdata->gpio_base)
220 gpio->gp.base = pdata->gpio_base;
221
222 ret = gpiochip_add(&gpio->gp);
223 if (ret < 0) {
224 dev_err(&pdev->dev, "Could not register gpiochip, %d\n", ret);
Axel Lineb7cf952012-09-01 17:34:15 +0800225 return ret;
ashishj307bfc912011-07-06 16:02:13 +0530226 }
227
228 platform_set_drvdata(pdev, gpio);
229
230 return 0;
ashishj307bfc912011-07-06 16:02:13 +0530231}
232
Bill Pemberton206210c2012-11-19 13:25:50 -0500233static int da9052_gpio_remove(struct platform_device *pdev)
ashishj307bfc912011-07-06 16:02:13 +0530234{
235 struct da9052_gpio *gpio = platform_get_drvdata(pdev);
ashishj307bfc912011-07-06 16:02:13 +0530236
abdoulaye berthe9f5132a2014-07-12 22:30:12 +0200237 gpiochip_remove(&gpio->gp);
238 return 0;
ashishj307bfc912011-07-06 16:02:13 +0530239}
240
241static struct platform_driver da9052_gpio_driver = {
242 .probe = da9052_gpio_probe,
Bill Pemberton8283c4f2012-11-19 13:20:08 -0500243 .remove = da9052_gpio_remove,
ashishj307bfc912011-07-06 16:02:13 +0530244 .driver = {
245 .name = "da9052-gpio",
ashishj307bfc912011-07-06 16:02:13 +0530246 },
247};
248
Mark Brown6f614152011-12-08 00:24:00 +0800249module_platform_driver(da9052_gpio_driver);
ashishj307bfc912011-07-06 16:02:13 +0530250
251MODULE_AUTHOR("David Dajun Chen <dchen@diasemi.com>");
252MODULE_DESCRIPTION("DA9052 GPIO Device Driver");
253MODULE_LICENSE("GPL");
254MODULE_ALIAS("platform:da9052-gpio");