Loading...
1/*
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#include <linux/acpi.h>
28#include <linux/gpio/consumer.h>
29
30struct rfkill_gpio_data {
31 const char *name;
32 enum rfkill_type type;
33 struct gpio_desc *reset_gpio;
34 struct gpio_desc *shutdown_gpio;
35
36 struct rfkill *rfkill_dev;
37 struct clk *clk;
38
39 bool clk_enabled;
40};
41
42static int rfkill_gpio_set_power(void *data, bool blocked)
43{
44 struct rfkill_gpio_data *rfkill = data;
45
46 if (!blocked && !IS_ERR(rfkill->clk) && !rfkill->clk_enabled)
47 clk_enable(rfkill->clk);
48
49 gpiod_set_value_cansleep(rfkill->shutdown_gpio, !blocked);
50 gpiod_set_value_cansleep(rfkill->reset_gpio, !blocked);
51
52 if (blocked && !IS_ERR(rfkill->clk) && rfkill->clk_enabled)
53 clk_disable(rfkill->clk);
54
55 rfkill->clk_enabled = !blocked;
56
57 return 0;
58}
59
60static const struct rfkill_ops rfkill_gpio_ops = {
61 .set_block = rfkill_gpio_set_power,
62};
63
64static const struct acpi_gpio_params reset_gpios = { 0, 0, false };
65static const struct acpi_gpio_params shutdown_gpios = { 1, 0, false };
66
67static const struct acpi_gpio_mapping acpi_rfkill_default_gpios[] = {
68 { "reset-gpios", &reset_gpios, 1 },
69 { "shutdown-gpios", &shutdown_gpios, 1 },
70 { },
71};
72
73static int rfkill_gpio_acpi_probe(struct device *dev,
74 struct rfkill_gpio_data *rfkill)
75{
76 const struct acpi_device_id *id;
77
78 id = acpi_match_device(dev->driver->acpi_match_table, dev);
79 if (!id)
80 return -ENODEV;
81
82 rfkill->type = (unsigned)id->driver_data;
83
84 return acpi_dev_add_driver_gpios(ACPI_COMPANION(dev),
85 acpi_rfkill_default_gpios);
86}
87
88static int rfkill_gpio_probe(struct platform_device *pdev)
89{
90 struct rfkill_gpio_data *rfkill;
91 struct gpio_desc *gpio;
92 const char *type_name;
93 int ret;
94
95 rfkill = devm_kzalloc(&pdev->dev, sizeof(*rfkill), GFP_KERNEL);
96 if (!rfkill)
97 return -ENOMEM;
98
99 device_property_read_string(&pdev->dev, "name", &rfkill->name);
100 device_property_read_string(&pdev->dev, "type", &type_name);
101
102 if (!rfkill->name)
103 rfkill->name = dev_name(&pdev->dev);
104
105 rfkill->type = rfkill_find_type(type_name);
106
107 if (ACPI_HANDLE(&pdev->dev)) {
108 ret = rfkill_gpio_acpi_probe(&pdev->dev, rfkill);
109 if (ret)
110 return ret;
111 }
112
113 rfkill->clk = devm_clk_get(&pdev->dev, NULL);
114
115 gpio = devm_gpiod_get_optional(&pdev->dev, "reset", GPIOD_OUT_LOW);
116 if (IS_ERR(gpio))
117 return PTR_ERR(gpio);
118
119 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;
126
127 /* Make sure at-least one GPIO is defined for this instance */
128 if (!rfkill->reset_gpio && !rfkill->shutdown_gpio) {
129 dev_err(&pdev->dev, "invalid platform data\n");
130 return -EINVAL;
131 }
132
133 rfkill->rfkill_dev = rfkill_alloc(rfkill->name, &pdev->dev,
134 rfkill->type, &rfkill_gpio_ops,
135 rfkill);
136 if (!rfkill->rfkill_dev)
137 return -ENOMEM;
138
139 ret = rfkill_register(rfkill->rfkill_dev);
140 if (ret < 0)
141 return ret;
142
143 platform_set_drvdata(pdev, rfkill);
144
145 dev_info(&pdev->dev, "%s device registered.\n", rfkill->name);
146
147 return 0;
148}
149
150static int rfkill_gpio_remove(struct platform_device *pdev)
151{
152 struct rfkill_gpio_data *rfkill = platform_get_drvdata(pdev);
153
154 rfkill_unregister(rfkill->rfkill_dev);
155 rfkill_destroy(rfkill->rfkill_dev);
156
157 acpi_dev_remove_driver_gpios(ACPI_COMPANION(&pdev->dev));
158
159 return 0;
160}
161
162#ifdef CONFIG_ACPI
163static const struct acpi_device_id rfkill_acpi_match[] = {
164 { "BCM4752", RFKILL_TYPE_GPS },
165 { "LNV4752", RFKILL_TYPE_GPS },
166 { },
167};
168MODULE_DEVICE_TABLE(acpi, rfkill_acpi_match);
169#endif
170
171static struct platform_driver rfkill_gpio_driver = {
172 .probe = rfkill_gpio_probe,
173 .remove = rfkill_gpio_remove,
174 .driver = {
175 .name = "rfkill_gpio",
176 .acpi_match_table = ACPI_PTR(rfkill_acpi_match),
177 },
178};
179
180module_platform_driver(rfkill_gpio_driver);
181
182MODULE_DESCRIPTION("gpio rfkill");
183MODULE_AUTHOR("NVIDIA");
184MODULE_LICENSE("GPL");
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Copyright (c) 2011, NVIDIA Corporation.
4 */
5
6#include <linux/dmi.h>
7#include <linux/init.h>
8#include <linux/kernel.h>
9#include <linux/module.h>
10#include <linux/mod_devicetable.h>
11#include <linux/rfkill.h>
12#include <linux/of.h>
13#include <linux/platform_device.h>
14#include <linux/clk.h>
15#include <linux/slab.h>
16#include <linux/acpi.h>
17#include <linux/gpio/consumer.h>
18
19struct rfkill_gpio_data {
20 const char *name;
21 enum rfkill_type type;
22 struct gpio_desc *reset_gpio;
23 struct gpio_desc *shutdown_gpio;
24
25 struct rfkill *rfkill_dev;
26 struct clk *clk;
27
28 bool clk_enabled;
29};
30
31static int rfkill_gpio_set_power(void *data, bool blocked)
32{
33 struct rfkill_gpio_data *rfkill = data;
34
35 if (!blocked && !IS_ERR(rfkill->clk) && !rfkill->clk_enabled) {
36 int ret = clk_enable(rfkill->clk);
37
38 if (ret)
39 return ret;
40 }
41
42 gpiod_set_value_cansleep(rfkill->shutdown_gpio, !blocked);
43 gpiod_set_value_cansleep(rfkill->reset_gpio, !blocked);
44
45 if (blocked && !IS_ERR(rfkill->clk) && rfkill->clk_enabled)
46 clk_disable(rfkill->clk);
47
48 rfkill->clk_enabled = !blocked;
49
50 return 0;
51}
52
53static const struct rfkill_ops rfkill_gpio_ops = {
54 .set_block = rfkill_gpio_set_power,
55};
56
57static const struct acpi_gpio_params reset_gpios = { 0, 0, false };
58static const struct acpi_gpio_params shutdown_gpios = { 1, 0, false };
59
60static const struct acpi_gpio_mapping acpi_rfkill_default_gpios[] = {
61 { "reset-gpios", &reset_gpios, 1 },
62 { "shutdown-gpios", &shutdown_gpios, 1 },
63 { },
64};
65
66static int rfkill_gpio_acpi_probe(struct device *dev,
67 struct rfkill_gpio_data *rfkill)
68{
69 const struct acpi_device_id *id;
70
71 id = acpi_match_device(dev->driver->acpi_match_table, dev);
72 if (!id)
73 return -ENODEV;
74
75 rfkill->type = (unsigned)id->driver_data;
76
77 return devm_acpi_dev_add_driver_gpios(dev, acpi_rfkill_default_gpios);
78}
79
80/* List of DMI matches for devices on which rfkill-gpio should not load,
81 * to avoid firmware bugs.
82 */
83static const struct dmi_system_id rfkill_gpio_deny_table[] = {
84 {
85 /* Lenovo Yoga Tab 3 Pro YT3-X90, bogus "BCM4752" device in DSDT */
86 .matches = {
87 DMI_MATCH(DMI_SYS_VENDOR, "Intel Corporation"),
88 DMI_MATCH(DMI_PRODUCT_VERSION, "Blade3-10A-001"),
89 },
90 },
91 { }
92};
93
94static int rfkill_gpio_probe(struct platform_device *pdev)
95{
96 struct rfkill_gpio_data *rfkill;
97 struct gpio_desc *gpio;
98 const char *name_property;
99 const char *type_property;
100 const char *type_name;
101 int ret;
102
103 if (dmi_check_system(rfkill_gpio_deny_table))
104 return -ENODEV;
105
106 rfkill = devm_kzalloc(&pdev->dev, sizeof(*rfkill), GFP_KERNEL);
107 if (!rfkill)
108 return -ENOMEM;
109
110 if (dev_of_node(&pdev->dev)) {
111 name_property = "label";
112 type_property = "radio-type";
113 } else {
114 name_property = "name";
115 type_property = "type";
116 }
117 device_property_read_string(&pdev->dev, name_property, &rfkill->name);
118 device_property_read_string(&pdev->dev, type_property, &type_name);
119
120 if (!rfkill->name)
121 rfkill->name = dev_name(&pdev->dev);
122
123 rfkill->type = rfkill_find_type(type_name);
124
125 if (ACPI_HANDLE(&pdev->dev)) {
126 ret = rfkill_gpio_acpi_probe(&pdev->dev, rfkill);
127 if (ret)
128 return ret;
129 }
130
131 rfkill->clk = devm_clk_get(&pdev->dev, NULL);
132
133 gpio = devm_gpiod_get_optional(&pdev->dev, "reset", GPIOD_ASIS);
134 if (IS_ERR(gpio))
135 return PTR_ERR(gpio);
136
137 rfkill->reset_gpio = gpio;
138
139 gpio = devm_gpiod_get_optional(&pdev->dev, "shutdown", GPIOD_ASIS);
140 if (IS_ERR(gpio))
141 return PTR_ERR(gpio);
142
143 rfkill->shutdown_gpio = gpio;
144
145 /* Make sure at-least one GPIO is defined for this instance */
146 if (!rfkill->reset_gpio && !rfkill->shutdown_gpio) {
147 dev_err(&pdev->dev, "invalid platform data\n");
148 return -EINVAL;
149 }
150
151 ret = gpiod_direction_output(rfkill->reset_gpio, true);
152 if (ret)
153 return ret;
154
155 ret = gpiod_direction_output(rfkill->shutdown_gpio, true);
156 if (ret)
157 return ret;
158
159 rfkill->rfkill_dev = rfkill_alloc(rfkill->name, &pdev->dev,
160 rfkill->type, &rfkill_gpio_ops,
161 rfkill);
162 if (!rfkill->rfkill_dev)
163 return -ENOMEM;
164
165 ret = rfkill_register(rfkill->rfkill_dev);
166 if (ret < 0)
167 goto err_destroy;
168
169 platform_set_drvdata(pdev, rfkill);
170
171 dev_info(&pdev->dev, "%s device registered.\n", rfkill->name);
172
173 return 0;
174
175err_destroy:
176 rfkill_destroy(rfkill->rfkill_dev);
177
178 return ret;
179}
180
181static void rfkill_gpio_remove(struct platform_device *pdev)
182{
183 struct rfkill_gpio_data *rfkill = platform_get_drvdata(pdev);
184
185 rfkill_unregister(rfkill->rfkill_dev);
186 rfkill_destroy(rfkill->rfkill_dev);
187}
188
189#ifdef CONFIG_ACPI
190static const struct acpi_device_id rfkill_acpi_match[] = {
191 { "BCM4752", RFKILL_TYPE_GPS },
192 { "LNV4752", RFKILL_TYPE_GPS },
193 { },
194};
195MODULE_DEVICE_TABLE(acpi, rfkill_acpi_match);
196#endif
197
198static const struct of_device_id rfkill_of_match[] __maybe_unused = {
199 { .compatible = "rfkill-gpio", },
200 { },
201};
202MODULE_DEVICE_TABLE(of, rfkill_of_match);
203
204static struct platform_driver rfkill_gpio_driver = {
205 .probe = rfkill_gpio_probe,
206 .remove = rfkill_gpio_remove,
207 .driver = {
208 .name = "rfkill_gpio",
209 .acpi_match_table = ACPI_PTR(rfkill_acpi_match),
210 .of_match_table = of_match_ptr(rfkill_of_match),
211 },
212};
213
214module_platform_driver(rfkill_gpio_driver);
215
216MODULE_DESCRIPTION("gpio rfkill");
217MODULE_AUTHOR("NVIDIA");
218MODULE_LICENSE("GPL");