2 * Bluetooth built-in chip control
4 * Copyright (c) 2008 Dmitry Baryshkov
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/platform_device.h>
15 #include <linux/gpio.h>
16 #include <linux/delay.h>
17 #include <linux/rfkill.h>
19 #include <mach/tosa_bt.h>
21 static void tosa_bt_on(struct tosa_bt_data *data)
23 gpio_set_value(data->gpio_reset, 0);
24 gpio_set_value(data->gpio_pwr, 1);
25 gpio_set_value(data->gpio_reset, 1);
27 gpio_set_value(data->gpio_reset, 0);
30 static void tosa_bt_off(struct tosa_bt_data *data)
32 gpio_set_value(data->gpio_reset, 1);
34 gpio_set_value(data->gpio_pwr, 0);
35 gpio_set_value(data->gpio_reset, 0);
38 static int tosa_bt_set_block(void *data, bool blocked)
40 pr_info("BT_RADIO going: %s\n", blocked ? "off" : "on");
43 pr_info("TOSA_BT: going ON\n");
46 pr_info("TOSA_BT: going OFF\n");
53 static const struct rfkill_ops tosa_bt_rfkill_ops = {
54 .set_block = tosa_bt_set_block,
57 static int tosa_bt_probe(struct platform_device *dev)
62 struct tosa_bt_data *data = dev->dev.platform_data;
64 rc = gpio_request(data->gpio_reset, "Bluetooth reset");
67 rc = gpio_direction_output(data->gpio_reset, 0);
70 rc = gpio_request(data->gpio_pwr, "Bluetooth power");
73 rc = gpio_direction_output(data->gpio_pwr, 0);
77 rfk = rfkill_alloc("tosa-bt", &dev->dev, RFKILL_TYPE_BLUETOOTH,
78 &tosa_bt_rfkill_ops, data);
84 rfkill_set_led_trigger_name(rfk, "tosa-bt");
86 rc = rfkill_register(rfk);
90 platform_set_drvdata(dev, rfk);
99 gpio_free(data->gpio_pwr);
102 gpio_free(data->gpio_reset);
107 static int __devexit tosa_bt_remove(struct platform_device *dev)
109 struct tosa_bt_data *data = dev->dev.platform_data;
110 struct rfkill *rfk = platform_get_drvdata(dev);
112 platform_set_drvdata(dev, NULL);
115 rfkill_unregister(rfk);
122 gpio_free(data->gpio_pwr);
123 gpio_free(data->gpio_reset);
128 static struct platform_driver tosa_bt_driver = {
129 .probe = tosa_bt_probe,
130 .remove = __devexit_p(tosa_bt_remove),
134 .owner = THIS_MODULE,
139 static int __init tosa_bt_init(void)
141 return platform_driver_register(&tosa_bt_driver);
144 static void __exit tosa_bt_exit(void)
146 platform_driver_unregister(&tosa_bt_driver);
149 module_init(tosa_bt_init);
150 module_exit(tosa_bt_exit);