blob: 2dd78c628d86b28fffe62fee4b249ff747c0bf66 [file] [log] [blame]
Rhyland Klein7176ba22011-05-16 14:41:48 -07001/*
2 * Copyright (c) 2011, NVIDIA Corporation.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 */
18
19#include <linux/gpio.h>
20#include <linux/init.h>
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/rfkill.h>
24#include <linux/platform_device.h>
25#include <linux/clk.h>
26#include <linux/slab.h>
27
28#include <linux/rfkill-gpio.h>
29
Rhyland Klein7176ba22011-05-16 14:41:48 -070030struct rfkill_gpio_data {
Heikki Krogerus262c91e2013-10-16 13:53:42 +030031 const char *name;
32 enum rfkill_type type;
33 int reset_gpio;
34 int shutdown_gpio;
35
36 struct rfkill *rfkill_dev;
37 char *reset_name;
38 char *shutdown_name;
39 struct clk *clk;
40
41 bool clk_enabled;
Rhyland Klein7176ba22011-05-16 14:41:48 -070042};
43
44static int rfkill_gpio_set_power(void *data, bool blocked)
45{
46 struct rfkill_gpio_data *rfkill = data;
47
48 if (blocked) {
Heikki Krogerus262c91e2013-10-16 13:53:42 +030049 if (gpio_is_valid(rfkill->shutdown_gpio))
50 gpio_set_value(rfkill->shutdown_gpio, 0);
51 if (gpio_is_valid(rfkill->reset_gpio))
52 gpio_set_value(rfkill->reset_gpio, 0);
Heikki Krogerusf02ae592013-10-16 13:53:40 +030053 if (!IS_ERR(rfkill->clk) && rfkill->clk_enabled)
54 clk_disable(rfkill->clk);
Rhyland Klein7176ba22011-05-16 14:41:48 -070055 } else {
Heikki Krogerusf02ae592013-10-16 13:53:40 +030056 if (!IS_ERR(rfkill->clk) && !rfkill->clk_enabled)
57 clk_enable(rfkill->clk);
Heikki Krogerus262c91e2013-10-16 13:53:42 +030058 if (gpio_is_valid(rfkill->reset_gpio))
59 gpio_set_value(rfkill->reset_gpio, 1);
60 if (gpio_is_valid(rfkill->shutdown_gpio))
61 gpio_set_value(rfkill->shutdown_gpio, 1);
Rhyland Klein7176ba22011-05-16 14:41:48 -070062 }
63
Heikki Krogerusf02ae592013-10-16 13:53:40 +030064 rfkill->clk_enabled = blocked;
Rhyland Klein7176ba22011-05-16 14:41:48 -070065
66 return 0;
67}
68
69static const struct rfkill_ops rfkill_gpio_ops = {
70 .set_block = rfkill_gpio_set_power,
71};
72
73static int rfkill_gpio_probe(struct platform_device *pdev)
74{
Rhyland Klein7176ba22011-05-16 14:41:48 -070075 struct rfkill_gpio_platform_data *pdata = pdev->dev.platform_data;
Heikki Krogerus262c91e2013-10-16 13:53:42 +030076 struct rfkill_gpio_data *rfkill;
77 const char *clk_name = NULL;
Rhyland Klein7176ba22011-05-16 14:41:48 -070078 int ret = 0;
79 int len = 0;
80
Heikki Krogerus5e7ca392013-10-16 13:53:39 +030081 rfkill = devm_kzalloc(&pdev->dev, sizeof(*rfkill), GFP_KERNEL);
Rhyland Klein7176ba22011-05-16 14:41:48 -070082 if (!rfkill)
83 return -ENOMEM;
84
Heikki Krogerus262c91e2013-10-16 13:53:42 +030085 if (pdata) {
86 clk_name = pdata->power_clk_name;
87 rfkill->name = pdata->name;
88 rfkill->type = pdata->type;
89 rfkill->reset_gpio = pdata->reset_gpio;
90 rfkill->shutdown_gpio = pdata->shutdown_gpio;
91 } else {
92 return -ENODEV;
93 }
94
95 /* make sure at-least one of the GPIO is defined and that
96 * a name is specified for this instance */
97 if ((!gpio_is_valid(rfkill->reset_gpio) &&
98 !gpio_is_valid(rfkill->shutdown_gpio)) || !rfkill->name) {
99 pr_warn("%s: invalid platform data\n", __func__);
100 return -EINVAL;
101 }
102
103 if (pdata && pdata->gpio_runtime_setup) {
Sangwook Leee209c5a2011-09-29 12:57:17 +0100104 ret = pdata->gpio_runtime_setup(pdev);
105 if (ret) {
106 pr_warn("%s: can't set up gpio\n", __func__);
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300107 return ret;
Sangwook Leee209c5a2011-09-29 12:57:17 +0100108 }
109 }
110
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300111 len = strlen(rfkill->name);
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300112 rfkill->reset_name = devm_kzalloc(&pdev->dev, len + 7, GFP_KERNEL);
113 if (!rfkill->reset_name)
114 return -ENOMEM;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700115
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300116 rfkill->shutdown_name = devm_kzalloc(&pdev->dev, len + 10, GFP_KERNEL);
117 if (!rfkill->shutdown_name)
118 return -ENOMEM;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700119
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300120 snprintf(rfkill->reset_name, len + 6 , "%s_reset", rfkill->name);
121 snprintf(rfkill->shutdown_name, len + 9, "%s_shutdown", rfkill->name);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700122
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300123 rfkill->clk = devm_clk_get(&pdev->dev, clk_name);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700124
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300125 if (gpio_is_valid(rfkill->reset_gpio)) {
126 ret = devm_gpio_request_one(&pdev->dev, rfkill->reset_gpio,
Heikki Krogerus0be81722013-10-16 13:53:41 +0300127 0, rfkill->reset_name);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700128 if (ret) {
129 pr_warn("%s: failed to get reset gpio.\n", __func__);
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300130 return ret;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700131 }
132 }
133
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300134 if (gpio_is_valid(rfkill->shutdown_gpio)) {
135 ret = devm_gpio_request_one(&pdev->dev, rfkill->shutdown_gpio,
Heikki Krogerus0be81722013-10-16 13:53:41 +0300136 0, rfkill->shutdown_name);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700137 if (ret) {
138 pr_warn("%s: failed to get shutdown gpio.\n", __func__);
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300139 return ret;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700140 }
141 }
142
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300143 rfkill->rfkill_dev = rfkill_alloc(rfkill->name, &pdev->dev,
144 rfkill->type, &rfkill_gpio_ops,
145 rfkill);
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300146 if (!rfkill->rfkill_dev)
147 return -ENOMEM;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700148
149 ret = rfkill_register(rfkill->rfkill_dev);
150 if (ret < 0)
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300151 return ret;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700152
153 platform_set_drvdata(pdev, rfkill);
154
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300155 dev_info(&pdev->dev, "%s device registered.\n", rfkill->name);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700156
157 return 0;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700158}
159
160static int rfkill_gpio_remove(struct platform_device *pdev)
161{
162 struct rfkill_gpio_data *rfkill = platform_get_drvdata(pdev);
Sangwook Leee209c5a2011-09-29 12:57:17 +0100163 struct rfkill_gpio_platform_data *pdata = pdev->dev.platform_data;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700164
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300165 if (pdata && pdata->gpio_runtime_close)
Sangwook Leee209c5a2011-09-29 12:57:17 +0100166 pdata->gpio_runtime_close(pdev);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700167 rfkill_unregister(rfkill->rfkill_dev);
168 rfkill_destroy(rfkill->rfkill_dev);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700169
170 return 0;
171}
172
173static struct platform_driver rfkill_gpio_driver = {
174 .probe = rfkill_gpio_probe,
Bill Pemberton9e2b29d2012-12-03 09:56:26 -0500175 .remove = rfkill_gpio_remove,
Rhyland Klein7176ba22011-05-16 14:41:48 -0700176 .driver = {
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300177 .name = "rfkill_gpio",
178 .owner = THIS_MODULE,
Rhyland Klein7176ba22011-05-16 14:41:48 -0700179 },
180};
181
Axel Lin98ef55f62011-11-28 17:15:04 +0800182module_platform_driver(rfkill_gpio_driver);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700183
184MODULE_DESCRIPTION("gpio rfkill");
185MODULE_AUTHOR("NVIDIA");
186MODULE_LICENSE("GPL");