2 * Copyright (c) 2011, NVIDIA Corporation.
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.
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
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.
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>
30 #include <linux/rfkill-gpio.h>
32 struct rfkill_gpio_data
{
34 enum rfkill_type type
;
35 struct gpio_desc
*reset_gpio
;
36 struct gpio_desc
*shutdown_gpio
;
38 struct rfkill
*rfkill_dev
;
46 static int rfkill_gpio_set_power(void *data
, bool blocked
)
48 struct rfkill_gpio_data
*rfkill
= data
;
51 gpiod_set_value(rfkill
->shutdown_gpio
, 0);
52 gpiod_set_value(rfkill
->reset_gpio
, 0);
53 if (!IS_ERR(rfkill
->clk
) && rfkill
->clk_enabled
)
54 clk_disable(rfkill
->clk
);
56 if (!IS_ERR(rfkill
->clk
) && !rfkill
->clk_enabled
)
57 clk_enable(rfkill
->clk
);
58 gpiod_set_value(rfkill
->reset_gpio
, 1);
59 gpiod_set_value(rfkill
->shutdown_gpio
, 1);
62 rfkill
->clk_enabled
= blocked
;
67 static const struct rfkill_ops rfkill_gpio_ops
= {
68 .set_block
= rfkill_gpio_set_power
,
71 static int rfkill_gpio_acpi_probe(struct device
*dev
,
72 struct rfkill_gpio_data
*rfkill
)
74 const struct acpi_device_id
*id
;
76 id
= acpi_match_device(dev
->driver
->acpi_match_table
, dev
);
80 rfkill
->name
= dev_name(dev
);
81 rfkill
->type
= (unsigned)id
->driver_data
;
86 static int rfkill_gpio_probe(struct platform_device
*pdev
)
88 struct rfkill_gpio_platform_data
*pdata
= pdev
->dev
.platform_data
;
89 struct rfkill_gpio_data
*rfkill
;
90 const char *clk_name
= NULL
;
91 struct gpio_desc
*gpio
;
95 rfkill
= devm_kzalloc(&pdev
->dev
, sizeof(*rfkill
), GFP_KERNEL
);
99 if (ACPI_HANDLE(&pdev
->dev
)) {
100 ret
= rfkill_gpio_acpi_probe(&pdev
->dev
, rfkill
);
104 clk_name
= pdata
->power_clk_name
;
105 rfkill
->name
= pdata
->name
;
106 rfkill
->type
= pdata
->type
;
111 len
= strlen(rfkill
->name
);
112 rfkill
->reset_name
= devm_kzalloc(&pdev
->dev
, len
+ 7, GFP_KERNEL
);
113 if (!rfkill
->reset_name
)
116 rfkill
->shutdown_name
= devm_kzalloc(&pdev
->dev
, len
+ 10, GFP_KERNEL
);
117 if (!rfkill
->shutdown_name
)
120 snprintf(rfkill
->reset_name
, len
+ 6 , "%s_reset", rfkill
->name
);
121 snprintf(rfkill
->shutdown_name
, len
+ 9, "%s_shutdown", rfkill
->name
);
123 rfkill
->clk
= devm_clk_get(&pdev
->dev
, clk_name
);
125 gpio
= devm_gpiod_get_index(&pdev
->dev
, rfkill
->reset_name
, 0);
127 ret
= gpiod_direction_output(gpio
, 0);
130 rfkill
->reset_gpio
= gpio
;
133 gpio
= devm_gpiod_get_index(&pdev
->dev
, rfkill
->shutdown_name
, 1);
135 ret
= gpiod_direction_output(gpio
, 0);
138 rfkill
->shutdown_gpio
= gpio
;
141 /* Make sure at-least one of the GPIO is defined and that
142 * a name is specified for this instance
144 if ((!rfkill
->reset_gpio
&& !rfkill
->shutdown_gpio
) || !rfkill
->name
) {
145 dev_err(&pdev
->dev
, "invalid platform data\n");
149 if (pdata
&& pdata
->gpio_runtime_setup
) {
150 ret
= pdata
->gpio_runtime_setup(pdev
);
152 dev_err(&pdev
->dev
, "can't set up gpio\n");
157 rfkill
->rfkill_dev
= rfkill_alloc(rfkill
->name
, &pdev
->dev
,
158 rfkill
->type
, &rfkill_gpio_ops
,
160 if (!rfkill
->rfkill_dev
)
163 ret
= rfkill_register(rfkill
->rfkill_dev
);
167 platform_set_drvdata(pdev
, rfkill
);
169 dev_info(&pdev
->dev
, "%s device registered.\n", rfkill
->name
);
174 static int rfkill_gpio_remove(struct platform_device
*pdev
)
176 struct rfkill_gpio_data
*rfkill
= platform_get_drvdata(pdev
);
177 struct rfkill_gpio_platform_data
*pdata
= pdev
->dev
.platform_data
;
179 if (pdata
&& pdata
->gpio_runtime_close
)
180 pdata
->gpio_runtime_close(pdev
);
181 rfkill_unregister(rfkill
->rfkill_dev
);
182 rfkill_destroy(rfkill
->rfkill_dev
);
187 static const struct acpi_device_id rfkill_acpi_match
[] = {
188 { "BCM4752", RFKILL_TYPE_GPS
},
192 static struct platform_driver rfkill_gpio_driver
= {
193 .probe
= rfkill_gpio_probe
,
194 .remove
= rfkill_gpio_remove
,
196 .name
= "rfkill_gpio",
197 .owner
= THIS_MODULE
,
198 .acpi_match_table
= ACPI_PTR(rfkill_acpi_match
),
202 module_platform_driver(rfkill_gpio_driver
);
204 MODULE_DESCRIPTION("gpio rfkill");
205 MODULE_AUTHOR("NVIDIA");
206 MODULE_LICENSE("GPL");