blob: 2ab532410c72bd20863907826a257fbcecab5a7b [file] [log] [blame]
/*
* TI Bluesleep driver
* Kernel module responsible for Wake up of Host
* Copyright (C) 2009-2010 Texas Instruments
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* 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.
*
* Copyright (C) 2006-2007 - Motorola
* Copyright (c) 2008-2009, Code Aurora Forum. All rights reserved.
*
* Date Author Comment
* ----------- -------------- --------------------------------
* 2006-Apr-28 Motorola The kernel module for running the Bluetooth(R)
* Sleep-Mode Protocol from the Host side
* 2006-Sep-08 Motorola Added workqueue for handling sleep work.
* 2007-Jan-24 Motorola Added mbm_handle_ioi() call to ISR.
* 2009-Aug-10 Motorola Changed "add_timer" to "mod_timer" to solve
* race when flurry of queued work comes in.
*/
#include <linux/module.h> /* kernel module definitions */
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/platform_device.h>
#include <mach/gpio.h>
#include <net/bluetooth/bluetooth.h>
/*
* Defines
*/
#define VERSION "1.1"
#define POLARITY_LOW 0
#define POLARITY_HIGH 1
struct bluesleep_info {
unsigned host_wake_irq;
struct uart_port *uport;
int irq_polarity;
};
/* state variable names and bit positions */
#define FLAG_RESET 0x00
#define BT_ACTIVE 0x02
#define BT_SUSPEND 0x04
static struct bluesleep_info *bsi;
/* module usage */
static atomic_t open_count = ATOMIC_INIT(1);
/*
* Global variables
*/
/** Global state flags */
static unsigned long flags;
/**
* Schedules a tasklet to run when receiving an interrupt on the
* <code>HOST_WAKE</code> GPIO pin.
* @param irq Not used.
* @param dev_id Not used.
*/
static irqreturn_t bluesleep_hostwake_isr(int irq, void *dev_id)
{
pr_debug("%s", __func__);
disable_irq_nosync(bsi->host_wake_irq);
return IRQ_HANDLED;
}
/**
* Starts the Sleep-Mode Protocol on the Host.
* @return On success, 0. On error, -1, and <code>errno</code> is set
* appropriately.
*/
int bluesleep_start(struct uart_port *uport)
{
int retval;
bsi->uport = uport;
pr_debug("%s", __func__);
if (test_bit(BT_SUSPEND, &flags)) {
BT_DBG("bluesleep_acquire irq");
if (bsi->irq_polarity == POLARITY_LOW) {
retval = request_irq(bsi->host_wake_irq, bluesleep_hostwake_isr,
IRQF_DISABLED | IRQF_TRIGGER_FALLING,
"bluetooth hostwake", "tibluesleep");
} else {
retval = request_irq(bsi->host_wake_irq, bluesleep_hostwake_isr,
IRQF_DISABLED | IRQF_TRIGGER_RISING,
"bluetooth hostwake", "tibluesleep");
}
if (retval < 0) {
BT_ERR("Couldn't acquire BT_HOST_WAKE IRQ");
goto fail;
}
retval = enable_irq_wake(bsi->host_wake_irq);
if (retval < 0) {
BT_ERR("Couldn't enable BT_HOST_WAKE as wakeup"
"interrupt retval %d\n", retval);
free_irq(bsi->host_wake_irq, NULL);
goto fail;
}
}
return 0;
fail:
atomic_inc(&open_count);
return retval;
}
/**
* Stops the Sleep-Mode Protocol on the Host.
*/
void bluesleep_stop(void)
{
pr_debug("%s", __func__);
if (disable_irq_wake(bsi->host_wake_irq))
BT_ERR("Couldn't disable hostwake IRQ wakeup mode\n");
free_irq(bsi->host_wake_irq, NULL);
}
static int bluesleep_probe(struct platform_device *pdev)
{
int ret;
struct resource *res;
bsi = kzalloc(sizeof(struct bluesleep_info), GFP_KERNEL);
if (!bsi)
return -ENOMEM;
res = platform_get_resource_byname(pdev, IORESOURCE_IRQ,
"host_wake");
if (!res) {
BT_ERR("couldn't find host_wake irq\n");
ret = -ENODEV;
goto free_bsi;
}
bsi->host_wake_irq = res->start;
if (bsi->host_wake_irq < 0) {
BT_ERR("couldn't find host_wake irq");
ret = -ENODEV;
goto free_bsi;
}
if (res->flags & IORESOURCE_IRQ_LOWEDGE)
bsi->irq_polarity = POLARITY_LOW;/*low edge (falling edge)*/
else
bsi->irq_polarity = POLARITY_HIGH;/*anything else*/
clear_bit(BT_SUSPEND, &flags);
set_bit(BT_ACTIVE, &flags);
return 0;
free_bsi:
kfree(bsi);
return ret;
}
static int bluesleep_remove(struct platform_device *pdev)
{
pr_debug("%s", __func__);
kfree(bsi);
return 0;
}
static int bluesleep_resume(struct platform_device *pdev)
{
pr_debug("%s", __func__);
if (test_bit(BT_SUSPEND, &flags)) {
free_irq(bsi->host_wake_irq, "tibluesleep");
clear_bit(BT_SUSPEND, &flags);
set_bit(BT_ACTIVE, &flags);
}
return 0;
}
static int bluesleep_suspend(struct platform_device *pdev, pm_message_t state)
{
pr_debug("%s", __func__);
set_bit(BT_SUSPEND, &flags);
return 0;
}
static struct platform_driver bluesleep_driver = {
.probe = bluesleep_probe,
.remove = bluesleep_remove,
.suspend = bluesleep_suspend,
.resume = bluesleep_resume,
.driver = {
.name = "tibluesleep",
.owner = THIS_MODULE,
},
};
/**
* Initializes the module.
* @return On success, 0. On error, -1, and <code>errno</code> is set
* appropriately.
*/
static int __init bluesleep_init(void)
{
int retval;
BT_INFO("BlueSleep Mode Driver Ver %s", VERSION);
retval = platform_driver_register(&bluesleep_driver);
if (retval)
goto fail;
if (bsi == NULL)
return 0;
flags = FLAG_RESET; /* clear all status bits */
return 0;
fail:
return retval;
}
/**
* Cleans up the module.
*/
static void __exit bluesleep_exit(void)
{
if (bsi == NULL)
return;
/* assert bt wake */
free_irq(bsi->host_wake_irq, NULL);
platform_driver_unregister(&bluesleep_driver);
}
module_init(bluesleep_init);
module_exit(bluesleep_exit);
MODULE_DESCRIPTION("TI Bluetooth Sleep Mode Driver ver %s " VERSION);
#ifdef MODULE_LICENSE
MODULE_LICENSE("GPL");
#endif