2 * arch/arm/mach-s3c2410/h1940-bluetooth.c
3 * Copyright (c) Arnaud Patard <arnaud.patard@rtp-net.org>
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
9 * S3C2410 bluetooth "driver"
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>
19 #include <linux/gpio.h>
21 #include <mach/regs-gpio.h>
22 #include <mach/hardware.h>
23 #include <mach/h1940-latch.h>
25 #define DRV_NAME "h1940-bt"
27 #ifdef CONFIG_LEDS_H1940
28 DEFINE_LED_TRIGGER(bt_led_trigger
);
33 /* Bluetooth control */
34 static void h1940bt_enable(int on
)
37 #ifdef CONFIG_LEDS_H1940
39 led_trigger_event(bt_led_trigger
, LED_HALF
);
42 /* Power on the chip */
43 h1940_latch_control(0, H1940_LATCH_BLUETOOTH_POWER
);
46 s3c2410_gpio_setpin(S3C2410_GPH(1), 1);
48 s3c2410_gpio_setpin(S3C2410_GPH(1), 0);
53 #ifdef CONFIG_LEDS_H1940
54 led_trigger_event(bt_led_trigger
, 0);
57 s3c2410_gpio_setpin(S3C2410_GPH(1), 1);
59 s3c2410_gpio_setpin(S3C2410_GPH(1), 0);
61 h1940_latch_control(H1940_LATCH_BLUETOOTH_POWER
, 0);
67 static ssize_t
h1940bt_show(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
69 return snprintf(buf
, PAGE_SIZE
, "%d\n", state
);
72 static ssize_t
h1940bt_store(struct device
*dev
, struct device_attribute
*attr
, const char *buf
, size_t count
)
77 new_state
= simple_strtoul(buf
, &endp
, 0);
78 if (*endp
&& !isspace(*endp
))
81 h1940bt_enable(new_state
);
85 static DEVICE_ATTR(enable
, 0644,
89 static int __init
h1940bt_probe(struct platform_device
*pdev
)
91 /* Configures BT serial port GPIOs */
92 s3c2410_gpio_cfgpin(S3C2410_GPH(0), S3C2410_GPH0_nCTS0
);
93 s3c2410_gpio_pullup(S3C2410_GPH(0), 1);
94 s3c2410_gpio_cfgpin(S3C2410_GPH(1), S3C2410_GPIO_OUTPUT
);
95 s3c2410_gpio_pullup(S3C2410_GPH(1), 1);
96 s3c2410_gpio_cfgpin(S3C2410_GPH(2), S3C2410_GPH2_TXD0
);
97 s3c2410_gpio_pullup(S3C2410_GPH(2), 1);
98 s3c2410_gpio_cfgpin(S3C2410_GPH(3), S3C2410_GPH3_RXD0
);
99 s3c2410_gpio_pullup(S3C2410_GPH(3), 1);
101 #ifdef CONFIG_LEDS_H1940
102 led_trigger_register_simple("h1940-bluetooth", &bt_led_trigger
);
105 /* disable BT by default */
108 return device_create_file(&pdev
->dev
, &dev_attr_enable
);
111 static int h1940bt_remove(struct platform_device
*pdev
)
113 #ifdef CONFIG_LEDS_H1940
114 led_trigger_unregister_simple(bt_led_trigger
);
120 static struct platform_driver h1940bt_driver
= {
124 .probe
= h1940bt_probe
,
125 .remove
= h1940bt_remove
,
129 static int __init
h1940bt_init(void)
131 return platform_driver_register(&h1940bt_driver
);
134 static void __exit
h1940bt_exit(void)
136 platform_driver_unregister(&h1940bt_driver
);
139 module_init(h1940bt_init
);
140 module_exit(h1940bt_exit
);
142 MODULE_AUTHOR("Arnaud Patard <arnaud.patard@rtp-net.org>");
143 MODULE_DESCRIPTION("Driver for the iPAQ H1940 bluetooth chip");
144 MODULE_LICENSE("GPL");