blob: bd2a5b90400cdf2688f249c1bcaaf382a4e918fd [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>
Heikki Krogerus2111cad2013-11-26 12:05:46 +020028#include <linux/gpio/consumer.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;
Heikki Krogerus2111cad2013-11-26 12:05:46 +020035 struct gpio_desc *reset_gpio;
36 struct gpio_desc *shutdown_gpio;
Heikki Krogerus262c91e2013-10-16 13:53:42 +030037
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 Krogerus2111cad2013-11-26 12:05:46 +020051 gpiod_set_value(rfkill->shutdown_gpio, 0);
52 gpiod_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 Krogerus2111cad2013-11-26 12:05:46 +020058 gpiod_set_value(rfkill->reset_gpio, 1);
59 gpiod_set_value(rfkill->shutdown_gpio, 1);
Rhyland Klein7176ba22011-05-16 14:41:48 -070060 }
61
Heikki Krogerusf02ae592013-10-16 13:53:40 +030062 rfkill->clk_enabled = blocked;
Rhyland Klein7176ba22011-05-16 14:41:48 -070063
64 return 0;
65}
66
67static const struct rfkill_ops rfkill_gpio_ops = {
68 .set_block = rfkill_gpio_set_power,
69};
70
Heikki Krogerusef91ffa2013-10-16 13:53:43 +030071static int rfkill_gpio_acpi_probe(struct device *dev,
72 struct rfkill_gpio_data *rfkill)
73{
74 const struct acpi_device_id *id;
75
76 id = acpi_match_device(dev->driver->acpi_match_table, dev);
77 if (!id)
78 return -ENODEV;
79
80 rfkill->name = dev_name(dev);
81 rfkill->type = (unsigned)id->driver_data;
Heikki Krogerusef91ffa2013-10-16 13:53:43 +030082
83 return 0;
84}
85
Rhyland Klein7176ba22011-05-16 14:41:48 -070086static int rfkill_gpio_probe(struct platform_device *pdev)
87{
Rhyland Klein7176ba22011-05-16 14:41:48 -070088 struct rfkill_gpio_platform_data *pdata = pdev->dev.platform_data;
Heikki Krogerus262c91e2013-10-16 13:53:42 +030089 struct rfkill_gpio_data *rfkill;
90 const char *clk_name = NULL;
Heikki Krogerus2111cad2013-11-26 12:05:46 +020091 struct gpio_desc *gpio;
92 int ret;
93 int len;
Rhyland Klein7176ba22011-05-16 14:41:48 -070094
Heikki Krogerus5e7ca392013-10-16 13:53:39 +030095 rfkill = devm_kzalloc(&pdev->dev, sizeof(*rfkill), GFP_KERNEL);
Rhyland Klein7176ba22011-05-16 14:41:48 -070096 if (!rfkill)
97 return -ENOMEM;
98
Heikki Krogerusef91ffa2013-10-16 13:53:43 +030099 if (ACPI_HANDLE(&pdev->dev)) {
100 ret = rfkill_gpio_acpi_probe(&pdev->dev, rfkill);
101 if (ret)
102 return ret;
103 } else if (pdata) {
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300104 clk_name = pdata->power_clk_name;
105 rfkill->name = pdata->name;
106 rfkill->type = pdata->type;
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300107 } else {
108 return -ENODEV;
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 Krogerus2111cad2013-11-26 12:05:46 +0200125 gpio = devm_gpiod_get_index(&pdev->dev, rfkill->reset_name, 0);
126 if (!IS_ERR(gpio)) {
127 ret = gpiod_direction_output(gpio, 0);
128 if (ret)
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300129 return ret;
Heikki Krogerus2111cad2013-11-26 12:05:46 +0200130 rfkill->reset_gpio = gpio;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700131 }
132
Heikki Krogerus2111cad2013-11-26 12:05:46 +0200133 gpio = devm_gpiod_get_index(&pdev->dev, rfkill->shutdown_name, 1);
134 if (!IS_ERR(gpio)) {
135 ret = gpiod_direction_output(gpio, 0);
136 if (ret)
137 return ret;
138 rfkill->shutdown_gpio = gpio;
139 }
140
141 /* Make sure at-least one of the GPIO is defined and that
142 * a name is specified for this instance
143 */
144 if ((!rfkill->reset_gpio && !rfkill->shutdown_gpio) || !rfkill->name) {
145 dev_err(&pdev->dev, "invalid platform data\n");
146 return -EINVAL;
147 }
148
149 if (pdata && pdata->gpio_runtime_setup) {
150 ret = pdata->gpio_runtime_setup(pdev);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700151 if (ret) {
Heikki Krogerus2111cad2013-11-26 12:05:46 +0200152 dev_err(&pdev->dev, "can't set up gpio\n");
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 rfkill->rfkill_dev = rfkill_alloc(rfkill->name, &pdev->dev,
158 rfkill->type, &rfkill_gpio_ops,
159 rfkill);
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300160 if (!rfkill->rfkill_dev)
161 return -ENOMEM;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700162
163 ret = rfkill_register(rfkill->rfkill_dev);
164 if (ret < 0)
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300165 return ret;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700166
167 platform_set_drvdata(pdev, rfkill);
168
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300169 dev_info(&pdev->dev, "%s device registered.\n", rfkill->name);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700170
171 return 0;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700172}
173
174static int rfkill_gpio_remove(struct platform_device *pdev)
175{
176 struct rfkill_gpio_data *rfkill = platform_get_drvdata(pdev);
Sangwook Leee209c5a2011-09-29 12:57:17 +0100177 struct rfkill_gpio_platform_data *pdata = pdev->dev.platform_data;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700178
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300179 if (pdata && pdata->gpio_runtime_close)
Sangwook Leee209c5a2011-09-29 12:57:17 +0100180 pdata->gpio_runtime_close(pdev);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700181 rfkill_unregister(rfkill->rfkill_dev);
182 rfkill_destroy(rfkill->rfkill_dev);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700183
184 return 0;
185}
186
Heikki Krogerusef91ffa2013-10-16 13:53:43 +0300187static const struct acpi_device_id rfkill_acpi_match[] = {
188 { "BCM4752", RFKILL_TYPE_GPS },
189 { },
190};
191
Rhyland Klein7176ba22011-05-16 14:41:48 -0700192static struct platform_driver rfkill_gpio_driver = {
193 .probe = rfkill_gpio_probe,
Bill Pemberton9e2b29d2012-12-03 09:56:26 -0500194 .remove = rfkill_gpio_remove,
Rhyland Klein7176ba22011-05-16 14:41:48 -0700195 .driver = {
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300196 .name = "rfkill_gpio",
197 .owner = THIS_MODULE,
Heikki Krogerusef91ffa2013-10-16 13:53:43 +0300198 .acpi_match_table = ACPI_PTR(rfkill_acpi_match),
Rhyland Klein7176ba22011-05-16 14:41:48 -0700199 },
200};
201
Axel Lin98ef55f62011-11-28 17:15:04 +0800202module_platform_driver(rfkill_gpio_driver);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700203
204MODULE_DESCRIPTION("gpio rfkill");
205MODULE_AUTHOR("NVIDIA");
206MODULE_LICENSE("GPL");