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
;
44 static int rfkill_gpio_set_power(void *data
, bool blocked
)
46 struct rfkill_gpio_data
*rfkill
= data
;
48 if (!blocked
&& !IS_ERR(rfkill
->clk
) && !rfkill
->clk_enabled
)
49 clk_enable(rfkill
->clk
);
51 gpiod_set_value_cansleep(rfkill
->shutdown_gpio
, !blocked
);
52 gpiod_set_value_cansleep(rfkill
->reset_gpio
, !blocked
);
54 if (blocked
&& !IS_ERR(rfkill
->clk
) && rfkill
->clk_enabled
)
55 clk_disable(rfkill
->clk
);
57 rfkill
->clk_enabled
= !blocked
;
62 static const struct rfkill_ops rfkill_gpio_ops
= {
63 .set_block
= rfkill_gpio_set_power
,
66 static const struct acpi_gpio_params reset_gpios
= { 0, 0, false };
67 static const struct acpi_gpio_params shutdown_gpios
= { 1, 0, false };
69 static const struct acpi_gpio_mapping acpi_rfkill_default_gpios
[] = {
70 { "reset-gpios", &reset_gpios
, 1 },
71 { "shutdown-gpios", &shutdown_gpios
, 1 },
75 static int rfkill_gpio_acpi_probe(struct device
*dev
,
76 struct rfkill_gpio_data
*rfkill
)
78 const struct acpi_device_id
*id
;
80 id
= acpi_match_device(dev
->driver
->acpi_match_table
, dev
);
84 rfkill
->name
= dev_name(dev
);
85 rfkill
->type
= (unsigned)id
->driver_data
;
87 return acpi_dev_add_driver_gpios(ACPI_COMPANION(dev
),
88 acpi_rfkill_default_gpios
);
91 static int rfkill_gpio_probe(struct platform_device
*pdev
)
93 struct rfkill_gpio_platform_data
*pdata
= pdev
->dev
.platform_data
;
94 struct rfkill_gpio_data
*rfkill
;
95 struct gpio_desc
*gpio
;
98 rfkill
= devm_kzalloc(&pdev
->dev
, sizeof(*rfkill
), GFP_KERNEL
);
102 if (ACPI_HANDLE(&pdev
->dev
)) {
103 ret
= rfkill_gpio_acpi_probe(&pdev
->dev
, rfkill
);
107 rfkill
->name
= pdata
->name
;
108 rfkill
->type
= pdata
->type
;
113 rfkill
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
115 gpio
= devm_gpiod_get_optional(&pdev
->dev
, "reset", GPIOD_OUT_LOW
);
117 return PTR_ERR(gpio
);
119 rfkill
->reset_gpio
= gpio
;
121 gpio
= devm_gpiod_get_optional(&pdev
->dev
, "shutdown", GPIOD_OUT_LOW
);
123 return PTR_ERR(gpio
);
125 rfkill
->shutdown_gpio
= gpio
;
127 /* Make sure at-least one of the GPIO is defined and that
128 * a name is specified for this instance
130 if ((!rfkill
->reset_gpio
&& !rfkill
->shutdown_gpio
) || !rfkill
->name
) {
131 dev_err(&pdev
->dev
, "invalid platform data\n");
135 rfkill
->rfkill_dev
= rfkill_alloc(rfkill
->name
, &pdev
->dev
,
136 rfkill
->type
, &rfkill_gpio_ops
,
138 if (!rfkill
->rfkill_dev
)
141 ret
= rfkill_register(rfkill
->rfkill_dev
);
145 platform_set_drvdata(pdev
, rfkill
);
147 dev_info(&pdev
->dev
, "%s device registered.\n", rfkill
->name
);
152 static int rfkill_gpio_remove(struct platform_device
*pdev
)
154 struct rfkill_gpio_data
*rfkill
= platform_get_drvdata(pdev
);
156 rfkill_unregister(rfkill
->rfkill_dev
);
157 rfkill_destroy(rfkill
->rfkill_dev
);
159 acpi_dev_remove_driver_gpios(ACPI_COMPANION(&pdev
->dev
));
165 static const struct acpi_device_id rfkill_acpi_match
[] = {
166 { "BCM2E1A", RFKILL_TYPE_BLUETOOTH
},
167 { "BCM2E39", RFKILL_TYPE_BLUETOOTH
},
168 { "BCM2E3D", RFKILL_TYPE_BLUETOOTH
},
169 { "BCM2E40", RFKILL_TYPE_BLUETOOTH
},
170 { "BCM2E64", RFKILL_TYPE_BLUETOOTH
},
171 { "BCM4752", RFKILL_TYPE_GPS
},
172 { "LNV4752", RFKILL_TYPE_GPS
},
175 MODULE_DEVICE_TABLE(acpi
, rfkill_acpi_match
);
178 static struct platform_driver rfkill_gpio_driver
= {
179 .probe
= rfkill_gpio_probe
,
180 .remove
= rfkill_gpio_remove
,
182 .name
= "rfkill_gpio",
183 .acpi_match_table
= ACPI_PTR(rfkill_acpi_match
),
187 module_platform_driver(rfkill_gpio_driver
);
189 MODULE_DESCRIPTION("gpio rfkill");
190 MODULE_AUTHOR("NVIDIA");
191 MODULE_LICENSE("GPL");