1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (c) 2011, NVIDIA Corporation.
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>
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>
19 struct rfkill_gpio_data
{
21 enum rfkill_type type
;
22 struct gpio_desc
*reset_gpio
;
23 struct gpio_desc
*shutdown_gpio
;
25 struct rfkill
*rfkill_dev
;
31 static int rfkill_gpio_set_power(void *data
, bool blocked
)
33 struct rfkill_gpio_data
*rfkill
= data
;
35 if (!blocked
&& !IS_ERR(rfkill
->clk
) && !rfkill
->clk_enabled
) {
36 int ret
= clk_enable(rfkill
->clk
);
42 gpiod_set_value_cansleep(rfkill
->shutdown_gpio
, !blocked
);
43 gpiod_set_value_cansleep(rfkill
->reset_gpio
, !blocked
);
45 if (blocked
&& !IS_ERR(rfkill
->clk
) && rfkill
->clk_enabled
)
46 clk_disable(rfkill
->clk
);
48 rfkill
->clk_enabled
= !blocked
;
53 static const struct rfkill_ops rfkill_gpio_ops
= {
54 .set_block
= rfkill_gpio_set_power
,
57 static const struct acpi_gpio_params reset_gpios
= { 0, 0, false };
58 static const struct acpi_gpio_params shutdown_gpios
= { 1, 0, false };
60 static const struct acpi_gpio_mapping acpi_rfkill_default_gpios
[] = {
61 { "reset-gpios", &reset_gpios
, 1 },
62 { "shutdown-gpios", &shutdown_gpios
, 1 },
66 static int rfkill_gpio_acpi_probe(struct device
*dev
,
67 struct rfkill_gpio_data
*rfkill
)
69 const struct acpi_device_id
*id
;
71 id
= acpi_match_device(dev
->driver
->acpi_match_table
, dev
);
75 rfkill
->type
= (unsigned)id
->driver_data
;
77 return devm_acpi_dev_add_driver_gpios(dev
, acpi_rfkill_default_gpios
);
80 /* List of DMI matches for devices on which rfkill-gpio should not load,
81 * to avoid firmware bugs.
83 static const struct dmi_system_id rfkill_gpio_deny_table
[] = {
85 /* Lenovo Yoga Tab 3 Pro YT3-X90, bogus "BCM4752" device in DSDT */
87 DMI_MATCH(DMI_SYS_VENDOR
, "Intel Corporation"),
88 DMI_MATCH(DMI_PRODUCT_VERSION
, "Blade3-10A-001"),
94 static int rfkill_gpio_probe(struct platform_device
*pdev
)
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
;
103 if (dmi_check_system(rfkill_gpio_deny_table
))
106 rfkill
= devm_kzalloc(&pdev
->dev
, sizeof(*rfkill
), GFP_KERNEL
);
110 if (dev_of_node(&pdev
->dev
)) {
111 name_property
= "label";
112 type_property
= "radio-type";
114 name_property
= "name";
115 type_property
= "type";
117 device_property_read_string(&pdev
->dev
, name_property
, &rfkill
->name
);
118 device_property_read_string(&pdev
->dev
, type_property
, &type_name
);
121 rfkill
->name
= dev_name(&pdev
->dev
);
123 rfkill
->type
= rfkill_find_type(type_name
);
125 if (ACPI_HANDLE(&pdev
->dev
)) {
126 ret
= rfkill_gpio_acpi_probe(&pdev
->dev
, rfkill
);
131 rfkill
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
133 gpio
= devm_gpiod_get_optional(&pdev
->dev
, "reset", GPIOD_ASIS
);
135 return PTR_ERR(gpio
);
137 rfkill
->reset_gpio
= gpio
;
139 gpio
= devm_gpiod_get_optional(&pdev
->dev
, "shutdown", GPIOD_ASIS
);
141 return PTR_ERR(gpio
);
143 rfkill
->shutdown_gpio
= gpio
;
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");
151 ret
= gpiod_direction_output(rfkill
->reset_gpio
, true);
155 ret
= gpiod_direction_output(rfkill
->shutdown_gpio
, true);
159 rfkill
->rfkill_dev
= rfkill_alloc(rfkill
->name
, &pdev
->dev
,
160 rfkill
->type
, &rfkill_gpio_ops
,
162 if (!rfkill
->rfkill_dev
)
165 ret
= rfkill_register(rfkill
->rfkill_dev
);
169 platform_set_drvdata(pdev
, rfkill
);
171 dev_info(&pdev
->dev
, "%s device registered.\n", rfkill
->name
);
176 rfkill_destroy(rfkill
->rfkill_dev
);
181 static void rfkill_gpio_remove(struct platform_device
*pdev
)
183 struct rfkill_gpio_data
*rfkill
= platform_get_drvdata(pdev
);
185 rfkill_unregister(rfkill
->rfkill_dev
);
186 rfkill_destroy(rfkill
->rfkill_dev
);
190 static const struct acpi_device_id rfkill_acpi_match
[] = {
191 { "BCM4752", RFKILL_TYPE_GPS
},
192 { "LNV4752", RFKILL_TYPE_GPS
},
195 MODULE_DEVICE_TABLE(acpi
, rfkill_acpi_match
);
198 static const struct of_device_id rfkill_of_match
[] __maybe_unused
= {
199 { .compatible
= "rfkill-gpio", },
202 MODULE_DEVICE_TABLE(of
, rfkill_of_match
);
204 static struct platform_driver rfkill_gpio_driver
= {
205 .probe
= rfkill_gpio_probe
,
206 .remove
= rfkill_gpio_remove
,
208 .name
= "rfkill_gpio",
209 .acpi_match_table
= ACPI_PTR(rfkill_acpi_match
),
210 .of_match_table
= of_match_ptr(rfkill_of_match
),
214 module_platform_driver(rfkill_gpio_driver
);
216 MODULE_DESCRIPTION("gpio rfkill");
217 MODULE_AUTHOR("NVIDIA");
218 MODULE_LICENSE("GPL");