blob: 93127220cb54ac7ffdc78890a3753031652b8139 [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;
Heikki Krogerus262c91e2013-10-16 13:53:42 +030039 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
Loic Poulain771bb3d2014-05-07 11:38:11 +020048 if (!blocked && !IS_ERR(rfkill->clk) && !rfkill->clk_enabled)
49 clk_enable(rfkill->clk);
50
51 gpiod_set_value_cansleep(rfkill->shutdown_gpio, !blocked);
52 gpiod_set_value_cansleep(rfkill->reset_gpio, !blocked);
53
54 if (blocked && !IS_ERR(rfkill->clk) && rfkill->clk_enabled)
55 clk_disable(rfkill->clk);
Rhyland Klein7176ba22011-05-16 14:41:48 -070056
Loic Poulainfa5c1072014-09-16 14:53:58 +020057 rfkill->clk_enabled = !blocked;
Rhyland Klein7176ba22011-05-16 14:41:48 -070058
59 return 0;
60}
61
62static const struct rfkill_ops rfkill_gpio_ops = {
63 .set_block = rfkill_gpio_set_power,
64};
65
Mika Westerberg72daceb2014-10-27 12:15:14 +020066static const struct acpi_gpio_params reset_gpios = { 0, 0, false };
67static const struct acpi_gpio_params shutdown_gpios = { 1, 0, false };
68
69static const struct acpi_gpio_mapping acpi_rfkill_default_gpios[] = {
70 { "reset-gpios", &reset_gpios, 1 },
71 { "shutdown-gpios", &shutdown_gpios, 1 },
72 { },
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;
Heikki Krogerusef91ffa2013-10-16 13:53:43 +030086
Mika Westerberg72daceb2014-10-27 12:15:14 +020087 return acpi_dev_add_driver_gpios(ACPI_COMPANION(dev),
88 acpi_rfkill_default_gpios);
Heikki Krogerusef91ffa2013-10-16 13:53:43 +030089}
90
Rhyland Klein7176ba22011-05-16 14:41:48 -070091static int rfkill_gpio_probe(struct platform_device *pdev)
92{
Rhyland Klein7176ba22011-05-16 14:41:48 -070093 struct rfkill_gpio_platform_data *pdata = pdev->dev.platform_data;
Heikki Krogerus262c91e2013-10-16 13:53:42 +030094 struct rfkill_gpio_data *rfkill;
Heikki Krogerus2111cad2013-11-26 12:05:46 +020095 struct gpio_desc *gpio;
96 int ret;
Rhyland Klein7176ba22011-05-16 14:41:48 -070097
Heikki Krogerus5e7ca392013-10-16 13:53:39 +030098 rfkill = devm_kzalloc(&pdev->dev, sizeof(*rfkill), GFP_KERNEL);
Rhyland Klein7176ba22011-05-16 14:41:48 -070099 if (!rfkill)
100 return -ENOMEM;
101
Heikki Krogerusef91ffa2013-10-16 13:53:43 +0300102 if (ACPI_HANDLE(&pdev->dev)) {
103 ret = rfkill_gpio_acpi_probe(&pdev->dev, rfkill);
104 if (ret)
105 return ret;
106 } else if (pdata) {
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300107 rfkill->name = pdata->name;
108 rfkill->type = pdata->type;
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300109 } else {
110 return -ENODEV;
111 }
112
Heikki Krogerus848ef582014-04-01 17:02:53 +0300113 rfkill->clk = devm_clk_get(&pdev->dev, NULL);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700114
Uwe Kleine-Königf7959e92015-05-28 11:46:12 +0200115 gpio = devm_gpiod_get_optional(&pdev->dev, "reset", GPIOD_OUT_LOW);
116 if (IS_ERR(gpio))
117 return PTR_ERR(gpio);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700118
Uwe Kleine-Königf7959e92015-05-28 11:46:12 +0200119 rfkill->reset_gpio = gpio;
120
121 gpio = devm_gpiod_get_optional(&pdev->dev, "shutdown", GPIOD_OUT_LOW);
122 if (IS_ERR(gpio))
123 return PTR_ERR(gpio);
124
125 rfkill->shutdown_gpio = gpio;
Heikki Krogerus2111cad2013-11-26 12:05:46 +0200126
127 /* Make sure at-least one of the GPIO is defined and that
128 * a name is specified for this instance
129 */
130 if ((!rfkill->reset_gpio && !rfkill->shutdown_gpio) || !rfkill->name) {
131 dev_err(&pdev->dev, "invalid platform data\n");
132 return -EINVAL;
133 }
134
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300135 rfkill->rfkill_dev = rfkill_alloc(rfkill->name, &pdev->dev,
136 rfkill->type, &rfkill_gpio_ops,
137 rfkill);
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300138 if (!rfkill->rfkill_dev)
139 return -ENOMEM;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700140
141 ret = rfkill_register(rfkill->rfkill_dev);
142 if (ret < 0)
Heikki Krogerus5e7ca392013-10-16 13:53:39 +0300143 return ret;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700144
145 platform_set_drvdata(pdev, rfkill);
146
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300147 dev_info(&pdev->dev, "%s device registered.\n", rfkill->name);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700148
149 return 0;
Rhyland Klein7176ba22011-05-16 14:41:48 -0700150}
151
152static int rfkill_gpio_remove(struct platform_device *pdev)
153{
154 struct rfkill_gpio_data *rfkill = platform_get_drvdata(pdev);
155
Rhyland Klein7176ba22011-05-16 14:41:48 -0700156 rfkill_unregister(rfkill->rfkill_dev);
157 rfkill_destroy(rfkill->rfkill_dev);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700158
Mika Westerberg72daceb2014-10-27 12:15:14 +0200159 acpi_dev_remove_driver_gpios(ACPI_COMPANION(&pdev->dev));
160
Rhyland Klein7176ba22011-05-16 14:41:48 -0700161 return 0;
162}
163
Heikki Krogerus41d09df2014-04-01 17:02:55 +0300164#ifdef CONFIG_ACPI
Heikki Krogerusef91ffa2013-10-16 13:53:43 +0300165static const struct acpi_device_id rfkill_acpi_match[] = {
Heikki Krogerus41d09df2014-04-01 17:02:55 +0300166 { "BCM2E1A", RFKILL_TYPE_BLUETOOTH },
Heikki Krogerus41d09df2014-04-01 17:02:55 +0300167 { "BCM2E3D", RFKILL_TYPE_BLUETOOTH },
Mika Westerberg79044f62015-01-29 18:26:00 +0200168 { "BCM2E40", RFKILL_TYPE_BLUETOOTH },
Mika Westerbergfb701182014-08-19 15:41:32 +0300169 { "BCM2E64", RFKILL_TYPE_BLUETOOTH },
Heikki Krogerusef91ffa2013-10-16 13:53:43 +0300170 { "BCM4752", RFKILL_TYPE_GPS },
Heikki Krogerus04f1b472014-04-01 17:02:54 +0300171 { "LNV4752", RFKILL_TYPE_GPS },
Heikki Krogerusef91ffa2013-10-16 13:53:43 +0300172 { },
173};
Marcel Holtmanndda3b192014-09-12 21:49:28 +0200174MODULE_DEVICE_TABLE(acpi, rfkill_acpi_match);
Heikki Krogerus41d09df2014-04-01 17:02:55 +0300175#endif
Heikki Krogerusef91ffa2013-10-16 13:53:43 +0300176
Rhyland Klein7176ba22011-05-16 14:41:48 -0700177static struct platform_driver rfkill_gpio_driver = {
178 .probe = rfkill_gpio_probe,
Bill Pemberton9e2b29d2012-12-03 09:56:26 -0500179 .remove = rfkill_gpio_remove,
Rhyland Klein7176ba22011-05-16 14:41:48 -0700180 .driver = {
Heikki Krogerus262c91e2013-10-16 13:53:42 +0300181 .name = "rfkill_gpio",
Heikki Krogerusef91ffa2013-10-16 13:53:43 +0300182 .acpi_match_table = ACPI_PTR(rfkill_acpi_match),
Rhyland Klein7176ba22011-05-16 14:41:48 -0700183 },
184};
185
Axel Lin98ef55f62011-11-28 17:15:04 +0800186module_platform_driver(rfkill_gpio_driver);
Rhyland Klein7176ba22011-05-16 14:41:48 -0700187
188MODULE_DESCRIPTION("gpio rfkill");
189MODULE_AUTHOR("NVIDIA");
190MODULE_LICENSE("GPL");