2 * rfkill-regulator.c - Regulator consumer driver for rfkill
4 * Copyright (C) 2009 Guiming Zhuo <gmzhuo@gmail.com>
5 * Copyright (C) 2011 Antonio Ospite <ospite@studenti.unina.it>
7 * Implementation inspired by leds-regulator driver.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
15 #include <linux/module.h>
16 #include <linux/err.h>
17 #include <linux/slab.h>
18 #include <linux/platform_device.h>
19 #include <linux/regulator/consumer.h>
20 #include <linux/rfkill.h>
21 #include <linux/rfkill-regulator.h>
23 struct rfkill_regulator_data
{
24 struct rfkill
*rf_kill
;
27 struct regulator
*vcc
;
30 static int rfkill_regulator_set_block(void *data
, bool blocked
)
32 struct rfkill_regulator_data
*rfkill_data
= data
;
35 pr_debug("%s: blocked: %d\n", __func__
, blocked
);
38 if (rfkill_data
->reg_enabled
) {
39 regulator_disable(rfkill_data
->vcc
);
40 rfkill_data
->reg_enabled
= false;
43 if (!rfkill_data
->reg_enabled
) {
44 ret
= regulator_enable(rfkill_data
->vcc
);
46 rfkill_data
->reg_enabled
= true;
50 pr_debug("%s: regulator_is_enabled after set_block: %d\n", __func__
,
51 regulator_is_enabled(rfkill_data
->vcc
));
56 static struct rfkill_ops rfkill_regulator_ops
= {
57 .set_block
= rfkill_regulator_set_block
,
60 static int rfkill_regulator_probe(struct platform_device
*pdev
)
62 struct rfkill_regulator_platform_data
*pdata
= pdev
->dev
.platform_data
;
63 struct rfkill_regulator_data
*rfkill_data
;
64 struct regulator
*vcc
;
65 struct rfkill
*rf_kill
;
69 dev_err(&pdev
->dev
, "no platform data\n");
73 if (pdata
->name
== NULL
|| pdata
->type
== 0) {
74 dev_err(&pdev
->dev
, "invalid name or type in platform data\n");
78 vcc
= regulator_get_exclusive(&pdev
->dev
, "vrfkill");
80 dev_err(&pdev
->dev
, "Cannot get vcc for %s\n", pdata
->name
);
85 rfkill_data
= kzalloc(sizeof(*rfkill_data
), GFP_KERNEL
);
86 if (rfkill_data
== NULL
) {
91 rf_kill
= rfkill_alloc(pdata
->name
, &pdev
->dev
,
93 &rfkill_regulator_ops
, rfkill_data
);
94 if (rf_kill
== NULL
) {
96 goto err_rfkill_alloc
;
99 if (regulator_is_enabled(vcc
)) {
100 dev_dbg(&pdev
->dev
, "Regulator already enabled\n");
101 rfkill_data
->reg_enabled
= true;
103 rfkill_data
->vcc
= vcc
;
104 rfkill_data
->rf_kill
= rf_kill
;
106 ret
= rfkill_register(rf_kill
);
108 dev_err(&pdev
->dev
, "Cannot register rfkill device\n");
109 goto err_rfkill_register
;
112 platform_set_drvdata(pdev
, rfkill_data
);
113 dev_info(&pdev
->dev
, "%s initialized\n", pdata
->name
);
118 rfkill_destroy(rf_kill
);
127 static int rfkill_regulator_remove(struct platform_device
*pdev
)
129 struct rfkill_regulator_data
*rfkill_data
= platform_get_drvdata(pdev
);
130 struct rfkill
*rf_kill
= rfkill_data
->rf_kill
;
132 rfkill_unregister(rf_kill
);
133 rfkill_destroy(rf_kill
);
134 regulator_put(rfkill_data
->vcc
);
140 static struct platform_driver rfkill_regulator_driver
= {
141 .probe
= rfkill_regulator_probe
,
142 .remove
= rfkill_regulator_remove
,
144 .name
= "rfkill-regulator",
148 module_platform_driver(rfkill_regulator_driver
);
150 MODULE_AUTHOR("Guiming Zhuo <gmzhuo@gmail.com>");
151 MODULE_AUTHOR("Antonio Ospite <ospite@studenti.unina.it>");
152 MODULE_DESCRIPTION("Regulator consumer driver for rfkill");
153 MODULE_LICENSE("GPL");
154 MODULE_ALIAS("platform:rfkill-regulator");