blob: 8aa2f1902a94092e0379d5d46fb1de734a3c0eb9 [file] [log] [blame]
Arnaud Patard7fdc7842007-05-09 21:41:03 +01001/*
2 * arch/arm/mach-s3c2410/h1940-bluetooth.c
3 * Copyright (c) Arnaud Patard <arnaud.patard@rtp-net.org>
4 *
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file COPYING in the main directory of this archive for
7 * more details.
8 *
9 * S3C2410 bluetooth "driver"
10 *
11 */
12
13#include <linux/module.h>
14#include <linux/platform_device.h>
15#include <linux/delay.h>
16#include <linux/string.h>
17#include <linux/ctype.h>
18#include <linux/leds.h>
Ben Dooksec976d62009-05-13 22:52:24 +010019#include <linux/gpio.h>
arnaud.patard@rtp-net.org1a71e4a2009-11-17 14:54:59 +010020#include <linux/rfkill.h>
Ben Dooksec976d62009-05-13 22:52:24 +010021
Russell Kinga09e64f2008-08-05 16:14:15 +010022#include <mach/regs-gpio.h>
23#include <mach/hardware.h>
24#include <mach/h1940-latch.h>
Arnaud Patard7fdc7842007-05-09 21:41:03 +010025
26#define DRV_NAME "h1940-bt"
27
Arnaud Patard7fdc7842007-05-09 21:41:03 +010028/* Bluetooth control */
29static void h1940bt_enable(int on)
30{
31 if (on) {
Arnaud Patard7fdc7842007-05-09 21:41:03 +010032 /* Power on the chip */
Vasily Khoruzhick14477092010-09-08 12:39:46 +030033 gpio_set_value(H1940_LATCH_BLUETOOTH_POWER, 1);
Arnaud Patard7fdc7842007-05-09 21:41:03 +010034 /* Reset the chip */
35 mdelay(10);
Ben Dooksf4146a62010-05-04 11:23:05 +090036
37 gpio_set_value(S3C2410_GPH(1), 1);
Arnaud Patard7fdc7842007-05-09 21:41:03 +010038 mdelay(10);
Ben Dooksf4146a62010-05-04 11:23:05 +090039 gpio_set_value(S3C2410_GPH(1), 0);
Arnaud Patard7fdc7842007-05-09 21:41:03 +010040 }
41 else {
Ben Dooksf4146a62010-05-04 11:23:05 +090042 gpio_set_value(S3C2410_GPH(1), 1);
Arnaud Patard7fdc7842007-05-09 21:41:03 +010043 mdelay(10);
Ben Dooksf4146a62010-05-04 11:23:05 +090044 gpio_set_value(S3C2410_GPH(1), 0);
Arnaud Patard7fdc7842007-05-09 21:41:03 +010045 mdelay(10);
Vasily Khoruzhick14477092010-09-08 12:39:46 +030046 gpio_set_value(H1940_LATCH_BLUETOOTH_POWER, 0);
Arnaud Patard7fdc7842007-05-09 21:41:03 +010047 }
48}
49
arnaud.patard@rtp-net.org1a71e4a2009-11-17 14:54:59 +010050static int h1940bt_set_block(void *data, bool blocked)
Arnaud Patard7fdc7842007-05-09 21:41:03 +010051{
arnaud.patard@rtp-net.org1a71e4a2009-11-17 14:54:59 +010052 h1940bt_enable(!blocked);
53 return 0;
Arnaud Patard7fdc7842007-05-09 21:41:03 +010054}
55
arnaud.patard@rtp-net.org1a71e4a2009-11-17 14:54:59 +010056static const struct rfkill_ops h1940bt_rfkill_ops = {
57 .set_block = h1940bt_set_block,
58};
Arnaud Patard7fdc7842007-05-09 21:41:03 +010059
Uwe Kleine-König91a99df2010-02-04 20:56:49 +010060static int __devinit h1940bt_probe(struct platform_device *pdev)
Arnaud Patard7fdc7842007-05-09 21:41:03 +010061{
arnaud.patard@rtp-net.org1a71e4a2009-11-17 14:54:59 +010062 struct rfkill *rfk;
63 int ret = 0;
64
Ben Dooksf4146a62010-05-04 11:23:05 +090065 ret = gpio_request(S3C2410_GPH(1), dev_name(&pdev->dev));
66 if (ret) {
Vasily Khoruzhick14477092010-09-08 12:39:46 +030067 dev_err(&pdev->dev, "could not get GPH1\n");
68 return ret;
69 }
70
71 ret = gpio_request(H1940_LATCH_BLUETOOTH_POWER, dev_name(&pdev->dev));
72 if (ret) {
73 gpio_free(S3C2410_GPH(1));
74 dev_err(&pdev->dev, "could not get BT_POWER\n");
Ben Dooksf4146a62010-05-04 11:23:05 +090075 return ret;
76 }
77
Arnaud Patard7fdc7842007-05-09 21:41:03 +010078 /* Configures BT serial port GPIOs */
Ben Dooks40b956f2010-05-04 14:38:49 +090079 s3c_gpio_cfgpin(S3C2410_GPH(0), S3C2410_GPH0_nCTS0);
Ben Dooks27da0402010-05-04 13:20:12 +090080 s3c_gpio_cfgpull(S3C2410_GPH(0), S3C_GPIO_PULL_NONE);
Ben Dooks40b956f2010-05-04 14:38:49 +090081 s3c_gpio_cfgpin(S3C2410_GPH(1), S3C2410_GPIO_OUTPUT);
Ben Dooks27da0402010-05-04 13:20:12 +090082 s3c_gpio_cfgpull(S3C2410_GPH(1), S3C_GPIO_PULL_NONE);
Ben Dooks40b956f2010-05-04 14:38:49 +090083 s3c_gpio_cfgpin(S3C2410_GPH(2), S3C2410_GPH2_TXD0);
Ben Dooks27da0402010-05-04 13:20:12 +090084 s3c_gpio_cfgpull(S3C2410_GPH(2), S3C_GPIO_PULL_NONE);
Ben Dooks40b956f2010-05-04 14:38:49 +090085 s3c_gpio_cfgpin(S3C2410_GPH(3), S3C2410_GPH3_RXD0);
Ben Dooks27da0402010-05-04 13:20:12 +090086 s3c_gpio_cfgpull(S3C2410_GPH(3), S3C_GPIO_PULL_NONE);
Arnaud Patard7fdc7842007-05-09 21:41:03 +010087
Arnaud Patard7fdc7842007-05-09 21:41:03 +010088
arnaud.patard@rtp-net.org1a71e4a2009-11-17 14:54:59 +010089 rfk = rfkill_alloc(DRV_NAME, &pdev->dev, RFKILL_TYPE_BLUETOOTH,
90 &h1940bt_rfkill_ops, NULL);
91 if (!rfk) {
92 ret = -ENOMEM;
93 goto err_rfk_alloc;
94 }
Arnaud Patard7fdc7842007-05-09 21:41:03 +010095
arnaud.patard@rtp-net.org1a71e4a2009-11-17 14:54:59 +010096 rfkill_set_led_trigger_name(rfk, "h1940-bluetooth");
97
98 ret = rfkill_register(rfk);
99 if (ret)
100 goto err_rfkill;
101
102 platform_set_drvdata(pdev, rfk);
103
104 return 0;
105
106err_rfkill:
107 rfkill_destroy(rfk);
108err_rfk_alloc:
109 return ret;
Arnaud Patard7fdc7842007-05-09 21:41:03 +0100110}
111
112static int h1940bt_remove(struct platform_device *pdev)
113{
arnaud.patard@rtp-net.org1a71e4a2009-11-17 14:54:59 +0100114 struct rfkill *rfk = platform_get_drvdata(pdev);
115
116 platform_set_drvdata(pdev, NULL);
Ben Dooksf4146a62010-05-04 11:23:05 +0900117 gpio_free(S3C2410_GPH(1));
arnaud.patard@rtp-net.org1a71e4a2009-11-17 14:54:59 +0100118
119 if (rfk) {
120 rfkill_unregister(rfk);
121 rfkill_destroy(rfk);
122 }
123 rfk = NULL;
124
125 h1940bt_enable(0);
126
Arnaud Patard7fdc7842007-05-09 21:41:03 +0100127 return 0;
128}
129
130
131static struct platform_driver h1940bt_driver = {
132 .driver = {
133 .name = DRV_NAME,
134 },
135 .probe = h1940bt_probe,
136 .remove = h1940bt_remove,
137};
138
139
140static int __init h1940bt_init(void)
141{
142 return platform_driver_register(&h1940bt_driver);
143}
144
145static void __exit h1940bt_exit(void)
146{
147 platform_driver_unregister(&h1940bt_driver);
148}
149
150module_init(h1940bt_init);
151module_exit(h1940bt_exit);
152
153MODULE_AUTHOR("Arnaud Patard <arnaud.patard@rtp-net.org>");
154MODULE_DESCRIPTION("Driver for the iPAQ H1940 bluetooth chip");
155MODULE_LICENSE("GPL");