blob: 5620d3c07479654e64fd0b7d1b325562b880b174 [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>
Heikki Krogerusef91ffa2013-10-16 13:53:43 +030027#include <linux/acpi.h>
28#include <linux/acpi_gpio.h>
Rhyland Klein7176ba22011-05-16 14:41:48 -070029
30#include <linux/rfkill-gpio.h>
31
Rhyland Klein7176ba22011-05-16 14:41:48 -070032struct rfkill_gpio_data {
Heikki Krogerus262c91e2013-10-16 13:53:42 +030033 const char *name;
34 enum rfkill_type type;
35 int reset_gpio;
36 int shutdown_gpio;
37
38 struct rfkill *rfkill_dev;
39 char *reset_name;
40 char *shutdown_name;
41 struct clk *clk;
42
43 bool clk_enabled;
Rhyland Klein7176ba22011-05-16 14:41:48 -070044};
45
46static int rfkill_gpio_set_power(void *data, bool blocked)
47{
48 struct rfkill_gpio_data *rfkill = data;
49
50 if (blocked) {
Heikki Krogerus262c91e2013-10-16 13:53:42 +030051 if (gpio_is_valid(rfkill->shutdown_gpio))
52 gpio_set_value(rfkill->shutdown_gpio, 0);
53 if (gpio_is_valid(rfkill->reset_gpio))
54 gpio_set_value(rfkill->reset_gpio, 0);
Heikki Krogerusf02ae592013-10-16 13:53:40 +030055 if (!IS_ERR(rfkill->clk) && rfkill->clk_enabled)
56 clk_disable(rfkill->clk);
Rhyland Klein7176ba22011-05-16 14:41:48 -070057 } else {
Heikki Krogerusf02ae592013-10-16 13:53:40 +030058 if (!IS_ERR(rfkill->clk) && !rfkill->clk_enabled)
59 clk_enable(rfkill->clk);
Heikki Krogerus262c91e2013-10-16 13:53:42 +030060 if (gpio_is_valid(rfkill->reset_gpio))
61 gpio_set_value(rfkill->reset_gpio, 1);
62 if (gpio_is_valid(rfkill->shutdown_gpio))
63 gpio_set_value(rfkill->shutdown_gpio, 1);
Rhyland Klein7176ba22011-05-16 14:41:48 -070064 }
65
Heikki Krogerusf02ae592013-10-16 13:53:40 +030066 rfkill->clk_enabled = blocked;
Rhyland Klein7176ba22011-05-16 14:41:48 -070067
68 return 0;
69}
70
71static const struct rfkill_ops rfkill_gpio_ops = {
72 .set_block = rfkill_gpio_set_power,
73};
74
Heikki Krogerusef91ffa2013-10-16 13:53:43 +030075static int rfkill_gpio_acpi_probe(struct device *dev,
76 struct rfkill_gpio_data *rfkill)
77{
78 const struct acpi_device_id *id;
79
80 id = acpi_match_device(dev->driver->acpi_match_table, dev);
81 if (!id)
82 return -ENODEV;
83
84 rfkill->name = dev_name(dev);
85 rfkill->type = (unsigned)id->driver_data;
86 rfkill->reset_gpio = acpi_get_gpio_by_index(dev, 0, NULL);
87 rfkill->shutdown_gpio = acpi_get_gpio_by_index(dev, 1, NULL);
88
89 return 0;
90}
91
Rhyland Klein7176ba22011-05-16 14:41:48 -070092static int rfkill_gpio_probe(struct platform_device *pdev)
93{
Rhyland Klein7176ba22011-05-16 14:41:48 -070094 struct rfkill_gpio_platform_data *pdata = pdev->dev.platform_data;
Heikki Krogerus262c91e2013-10-16 13:53:42 +030095 struct rfkill_gpio_data *rfkill;
96 const char *clk_name = NULL;
Rhyland Klein7176ba22011-05-16 14:41:48 -070097 int ret = 0;
98 int len = 0;
99
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300100 rfkill = devm_kzalloc(&pdev->dev, sizeof(*rfkill), GFP_KERNEL);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700101 if (!rfkill)
102 return -ENOMEM;
103
Heikki Krogerusef91ffa2013-10-16 13:53:43 +0300104 if (ACPI_HANDLE(&pdev->dev)) {
105 ret = rfkill_gpio_acpi_probe(&pdev->dev, rfkill);
106 if (ret)
107 return ret;
108 } else if (pdata) {
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300109 clk_name = pdata->power_clk_name;
110 rfkill->name = pdata->name;
111 rfkill->type = pdata->type;
112 rfkill->reset_gpio = pdata->reset_gpio;
113 rfkill->shutdown_gpio = pdata->shutdown_gpio;
114 } else {
115 return -ENODEV;
116 }
117
118 /* make sure at-least one of the GPIO is defined and that
119 * a name is specified for this instance */
120 if ((!gpio_is_valid(rfkill->reset_gpio) &&
121 !gpio_is_valid(rfkill->shutdown_gpio)) || !rfkill->name) {
122 pr_warn("%s: invalid platform data\n", __func__);
123 return -EINVAL;
124 }
125
126 if (pdata && pdata->gpio_runtime_setup) {
Sangwook Leee209c5a2011-09-29 12:57:17 +0100127 ret = pdata->gpio_runtime_setup(pdev);
128 if (ret) {
129 pr_warn("%s: can't set up gpio\n", __func__);
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300130 return ret;
Sangwook Leee209c5a2011-09-29 12:57:17 +0100131 }
132 }
133
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300134 len = strlen(rfkill->name);
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300135 rfkill->reset_name = devm_kzalloc(&pdev->dev, len + 7, GFP_KERNEL);
136 if (!rfkill->reset_name)
137 return -ENOMEM;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700138
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300139 rfkill->shutdown_name = devm_kzalloc(&pdev->dev, len + 10, GFP_KERNEL);
140 if (!rfkill->shutdown_name)
141 return -ENOMEM;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700142
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300143 snprintf(rfkill->reset_name, len + 6 , "%s_reset", rfkill->name);
144 snprintf(rfkill->shutdown_name, len + 9, "%s_shutdown", rfkill->name);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700145
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300146 rfkill->clk = devm_clk_get(&pdev->dev, clk_name);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700147
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300148 if (gpio_is_valid(rfkill->reset_gpio)) {
149 ret = devm_gpio_request_one(&pdev->dev, rfkill->reset_gpio,
Heikki Krogerus0be81722013-10-16 13:53:41 +0300150 0, rfkill->reset_name);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700151 if (ret) {
152 pr_warn("%s: failed to get reset gpio.\n", __func__);
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300153 return ret;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700154 }
155 }
156
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300157 if (gpio_is_valid(rfkill->shutdown_gpio)) {
158 ret = devm_gpio_request_one(&pdev->dev, rfkill->shutdown_gpio,
Heikki Krogerus0be81722013-10-16 13:53:41 +0300159 0, rfkill->shutdown_name);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700160 if (ret) {
161 pr_warn("%s: failed to get shutdown gpio.\n", __func__);
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300162 return ret;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700163 }
164 }
165
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300166 rfkill->rfkill_dev = rfkill_alloc(rfkill->name, &pdev->dev,
167 rfkill->type, &rfkill_gpio_ops,
168 rfkill);
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300169 if (!rfkill->rfkill_dev)
170 return -ENOMEM;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700171
172 ret = rfkill_register(rfkill->rfkill_dev);
173 if (ret < 0)
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300174 return ret;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700175
176 platform_set_drvdata(pdev, rfkill);
177
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300178 dev_info(&pdev->dev, "%s device registered.\n", rfkill->name);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700179
180 return 0;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700181}
182
183static int rfkill_gpio_remove(struct platform_device *pdev)
184{
185 struct rfkill_gpio_data *rfkill = platform_get_drvdata(pdev);
Sangwook Leee209c5a2011-09-29 12:57:17 +0100186 struct rfkill_gpio_platform_data *pdata = pdev->dev.platform_data;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700187
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300188 if (pdata && pdata->gpio_runtime_close)
Sangwook Leee209c5a2011-09-29 12:57:17 +0100189 pdata->gpio_runtime_close(pdev);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700190 rfkill_unregister(rfkill->rfkill_dev);
191 rfkill_destroy(rfkill->rfkill_dev);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700192
193 return 0;
194}
195
Heikki Krogerusef91ffa2013-10-16 13:53:43 +0300196static const struct acpi_device_id rfkill_acpi_match[] = {
197 { "BCM4752", RFKILL_TYPE_GPS },
198 { },
199};
200
Rhyland Klein7176ba22011-05-16 14:41:48 -0700201static struct platform_driver rfkill_gpio_driver = {
202 .probe = rfkill_gpio_probe,
Bill Pemberton9e2b29d2012-12-03 09:56:26 -0500203 .remove = rfkill_gpio_remove,
Rhyland Klein7176ba22011-05-16 14:41:48 -0700204 .driver = {
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300205 .name = "rfkill_gpio",
206 .owner = THIS_MODULE,
Heikki Krogerusef91ffa2013-10-16 13:53:43 +0300207 .acpi_match_table = ACPI_PTR(rfkill_acpi_match),
Rhyland Klein7176ba22011-05-16 14:41:48 -0700208 },
209};
210
Axel Lin98ef55f62011-11-28 17:15:04 +0800211module_platform_driver(rfkill_gpio_driver);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700212
213MODULE_DESCRIPTION("gpio rfkill");
214MODULE_AUTHOR("NVIDIA");
215MODULE_LICENSE("GPL");