1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/* linux/arch/arm/mach-s5pv210/herring-btlpm.c
* Copyright (C) 2010 Samsung Electronics. All rights reserved.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <linux/err.h>
#include <linux/gpio.h>
#include <linux/hrtimer.h>
#include <asm/mach-types.h>
#include <mach/gpio-herring.h>
#include "herring.h"
static struct herring_bt_lpm {
struct hrtimer bt_lpm_timer;
ktime_t bt_lpm_delay;
} bt_lpm;
static enum hrtimer_restart bt_enter_lpm(struct hrtimer *timer)
{
gpio_set_value(GPIO_BT_WAKE, 0);
return HRTIMER_NORESTART;
}
void herring_bt_uart_wake_peer(struct uart_port *port)
{
if (!bt_lpm.bt_lpm_timer.function)
return;
hrtimer_try_to_cancel(&bt_lpm.bt_lpm_timer);
gpio_set_value(GPIO_BT_WAKE, 1);
hrtimer_start(&bt_lpm.bt_lpm_timer, bt_lpm.bt_lpm_delay, HRTIMER_MODE_REL);
}
static int __init bt_lpm_init(void)
{
int ret;
if (!machine_is_herring())
return 0;
ret = gpio_request(GPIO_BT_WAKE, "gpio_bt_wake");
if (ret) {
printk(KERN_ERR "Failed to request gpio_bt_wake control\n");
return 0;
}
gpio_direction_output(GPIO_BT_WAKE, GPIO_LEVEL_LOW);
hrtimer_init(&bt_lpm.bt_lpm_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
bt_lpm.bt_lpm_delay = ktime_set(1, 0); /* 1 sec */
bt_lpm.bt_lpm_timer.function = bt_enter_lpm;
return 0;
}
device_initcall(bt_lpm_init);
|