blob: 3b4dc1a9a68d1f7bea14f81c3bb0b1c54035d033 [file] [log] [blame]
Laxman Dewangane9fe32b2012-05-14 12:46:12 +05301/*
2 * GPIO driver for RICOH583 power management chip.
3 *
4 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
5 * Author: Laxman dewangan <ldewangan@nvidia.com>
6 *
7 * Based on code
8 * Copyright (C) 2011 RICOH COMPANY,LTD
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms and conditions of the GNU General Public License,
12 * version 2, as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 *
22 */
23#include <linux/init.h>
24#include <linux/kernel.h>
25#include <linux/slab.h>
Laxman Dewangane9fe32b2012-05-14 12:46:12 +053026#include <linux/platform_device.h>
27#include <linux/device.h>
28#include <linux/gpio.h>
29#include <linux/mfd/rc5t583.h>
30
31struct rc5t583_gpio {
32 struct gpio_chip gpio_chip;
33 struct rc5t583 *rc5t583;
34};
35
Laxman Dewangane9fe32b2012-05-14 12:46:12 +053036static int rc5t583_gpio_get(struct gpio_chip *gc, unsigned int offset)
37{
Linus Walleijd660c682015-12-07 14:08:12 +010038 struct rc5t583_gpio *rc5t583_gpio = gpiochip_get_data(gc);
Laxman Dewangane9fe32b2012-05-14 12:46:12 +053039 struct device *parent = rc5t583_gpio->rc5t583->dev;
40 uint8_t val = 0;
41 int ret;
42
43 ret = rc5t583_read(parent, RC5T583_GPIO_MON_IOIN, &val);
44 if (ret < 0)
45 return ret;
46
47 return !!(val & BIT(offset));
48}
49
50static void rc5t583_gpio_set(struct gpio_chip *gc, unsigned int offset, int val)
51{
Linus Walleijd660c682015-12-07 14:08:12 +010052 struct rc5t583_gpio *rc5t583_gpio = gpiochip_get_data(gc);
Laxman Dewangane9fe32b2012-05-14 12:46:12 +053053 struct device *parent = rc5t583_gpio->rc5t583->dev;
54 if (val)
55 rc5t583_set_bits(parent, RC5T583_GPIO_IOOUT, BIT(offset));
56 else
57 rc5t583_clear_bits(parent, RC5T583_GPIO_IOOUT, BIT(offset));
58}
59
60static int rc5t583_gpio_dir_input(struct gpio_chip *gc, unsigned int offset)
61{
Linus Walleijd660c682015-12-07 14:08:12 +010062 struct rc5t583_gpio *rc5t583_gpio = gpiochip_get_data(gc);
Laxman Dewangane9fe32b2012-05-14 12:46:12 +053063 struct device *parent = rc5t583_gpio->rc5t583->dev;
64 int ret;
65
66 ret = rc5t583_clear_bits(parent, RC5T583_GPIO_IOSEL, BIT(offset));
67 if (ret < 0)
68 return ret;
69
70 /* Set pin to gpio mode */
71 return rc5t583_clear_bits(parent, RC5T583_GPIO_PGSEL, BIT(offset));
72}
73
74static int rc5t583_gpio_dir_output(struct gpio_chip *gc, unsigned offset,
75 int value)
76{
Linus Walleijd660c682015-12-07 14:08:12 +010077 struct rc5t583_gpio *rc5t583_gpio = gpiochip_get_data(gc);
Laxman Dewangane9fe32b2012-05-14 12:46:12 +053078 struct device *parent = rc5t583_gpio->rc5t583->dev;
79 int ret;
80
81 rc5t583_gpio_set(gc, offset, value);
82 ret = rc5t583_set_bits(parent, RC5T583_GPIO_IOSEL, BIT(offset));
83 if (ret < 0)
84 return ret;
85
86 /* Set pin to gpio mode */
87 return rc5t583_clear_bits(parent, RC5T583_GPIO_PGSEL, BIT(offset));
88}
89
90static int rc5t583_gpio_to_irq(struct gpio_chip *gc, unsigned offset)
91{
Linus Walleijd660c682015-12-07 14:08:12 +010092 struct rc5t583_gpio *rc5t583_gpio = gpiochip_get_data(gc);
Laxman Dewangane9fe32b2012-05-14 12:46:12 +053093
Alexander Shiyan3bde4d22014-02-15 17:24:07 +040094 if (offset < RC5T583_MAX_GPIO)
Laxman Dewangane9fe32b2012-05-14 12:46:12 +053095 return rc5t583_gpio->rc5t583->irq_base +
96 RC5T583_IRQ_GPIO0 + offset;
97 return -EINVAL;
98}
99
100static void rc5t583_gpio_free(struct gpio_chip *gc, unsigned offset)
101{
Linus Walleijd660c682015-12-07 14:08:12 +0100102 struct rc5t583_gpio *rc5t583_gpio = gpiochip_get_data(gc);
Laxman Dewangane9fe32b2012-05-14 12:46:12 +0530103 struct device *parent = rc5t583_gpio->rc5t583->dev;
104
105 rc5t583_set_bits(parent, RC5T583_GPIO_PGSEL, BIT(offset));
106}
107
Bill Pemberton38363092012-11-19 13:22:34 -0500108static int rc5t583_gpio_probe(struct platform_device *pdev)
Laxman Dewangane9fe32b2012-05-14 12:46:12 +0530109{
110 struct rc5t583 *rc5t583 = dev_get_drvdata(pdev->dev.parent);
111 struct rc5t583_platform_data *pdata = dev_get_platdata(rc5t583->dev);
112 struct rc5t583_gpio *rc5t583_gpio;
113
114 rc5t583_gpio = devm_kzalloc(&pdev->dev, sizeof(*rc5t583_gpio),
115 GFP_KERNEL);
Jingoo Han4b7dfd72014-04-29 17:39:42 +0900116 if (!rc5t583_gpio)
Laxman Dewangane9fe32b2012-05-14 12:46:12 +0530117 return -ENOMEM;
Laxman Dewangane9fe32b2012-05-14 12:46:12 +0530118
119 rc5t583_gpio->gpio_chip.label = "gpio-rc5t583",
120 rc5t583_gpio->gpio_chip.owner = THIS_MODULE,
121 rc5t583_gpio->gpio_chip.free = rc5t583_gpio_free,
122 rc5t583_gpio->gpio_chip.direction_input = rc5t583_gpio_dir_input,
123 rc5t583_gpio->gpio_chip.direction_output = rc5t583_gpio_dir_output,
124 rc5t583_gpio->gpio_chip.set = rc5t583_gpio_set,
125 rc5t583_gpio->gpio_chip.get = rc5t583_gpio_get,
126 rc5t583_gpio->gpio_chip.to_irq = rc5t583_gpio_to_irq,
127 rc5t583_gpio->gpio_chip.ngpio = RC5T583_MAX_GPIO,
Linus Walleij9fb1f392013-12-04 14:42:46 +0100128 rc5t583_gpio->gpio_chip.can_sleep = true,
Linus Walleij58383c782015-11-04 09:56:26 +0100129 rc5t583_gpio->gpio_chip.parent = &pdev->dev;
Laxman Dewangane9fe32b2012-05-14 12:46:12 +0530130 rc5t583_gpio->gpio_chip.base = -1;
131 rc5t583_gpio->rc5t583 = rc5t583;
132
133 if (pdata && pdata->gpio_base)
134 rc5t583_gpio->gpio_chip.base = pdata->gpio_base;
135
136 platform_set_drvdata(pdev, rc5t583_gpio);
137
Laxman Dewanganbc72f7f2016-02-22 17:43:28 +0530138 return devm_gpiochip_add_data(&pdev->dev, &rc5t583_gpio->gpio_chip,
139 rc5t583_gpio);
Laxman Dewangane9fe32b2012-05-14 12:46:12 +0530140}
141
142static struct platform_driver rc5t583_gpio_driver = {
143 .driver = {
144 .name = "rc5t583-gpio",
Laxman Dewangane9fe32b2012-05-14 12:46:12 +0530145 },
146 .probe = rc5t583_gpio_probe,
Laxman Dewangane9fe32b2012-05-14 12:46:12 +0530147};
148
149static int __init rc5t583_gpio_init(void)
150{
151 return platform_driver_register(&rc5t583_gpio_driver);
152}
153subsys_initcall(rc5t583_gpio_init);