blob: a1a377c4cb0ab5d8419f7ebd153ff2d006ef20fe [file] [log] [blame]
/*
* drivers/input/input-cfboost.c
*
* Copyright (c) 2012-2014, NVIDIA CORPORATION. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope 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
*/
#include <linux/slab.h>
#include <linux/printk.h>
#include <linux/kthread.h>
#include <linux/input.h>
#include <linux/module.h>
#include <linux/pm_qos.h>
#include <linux/pm_runtime.h>
#include <linux/sched/rt.h>
#define CREATE_TRACE_POINTS
#include <trace/events/input_cfboost.h>
/* This module listens to input events and sets a temporary frequency
* floor upon input event detection. This is based on changes to
* cpufreq ondemand governor by:
*
* Tero Kristo <tero.kristo@nokia.com>
* Brian Steuer <bsteuer@codeaurora.org>
* David Ng <dave@codeaurora.org>
*
* at git://codeaurora.org/kernel/msm.git tree, commits:
*
* 2a6181bc76c6ce46ca0fa8e547be42acd534cf0e
* 1cca8861d8fda4e05f6b0c59c60003345c15454d
* 96a9aeb02bf5b3fbbef47e44460750eb275e9f1b
* b600449501cf15928440f87eff86b1f32d14214e
* 88a65c7ae04632ffee11f9fc628d7ab017c06b83
*/
MODULE_AUTHOR("Antti P Miettinen <amiettinen@nvidia.com>");
MODULE_DESCRIPTION("Input event CPU frequency booster");
MODULE_LICENSE("GPL v2");
static struct pm_qos_request freq_req, core_req, emc_req;
static struct dev_pm_qos_request gpu_wakeup_req;
static unsigned int boost_freq; /* kHz */
static int boost_freq_set(const char *arg, const struct kernel_param *kp)
{
unsigned int old_boost = boost_freq;
int ret = param_set_uint(arg, kp);
if (ret == 0 && old_boost && !boost_freq)
pm_qos_update_request(&freq_req,
PM_QOS_DEFAULT_VALUE);
return ret;
}
static int boost_freq_get(char *buffer, const struct kernel_param *kp)
{
return param_get_uint(buffer, kp);
}
static struct kernel_param_ops boost_freq_ops = {
.set = boost_freq_set,
.get = boost_freq_get,
};
module_param_cb(boost_freq, &boost_freq_ops, &boost_freq, 0644);
static unsigned int boost_emc; /* kHz */
module_param(boost_emc, uint, 0644);
static unsigned long boost_time = 500; /* ms */
module_param(boost_time, ulong, 0644);
static unsigned long boost_cpus;
module_param(boost_cpus, ulong, 0644);
static bool gpu_wakeup; /* 0 = disabled */
module_param(gpu_wakeup, bool, 0644);
static struct device *gpu_device;
static DEFINE_MUTEX(gpu_device_lock);
static unsigned long last_boost_jiffies;
int cfb_add_device(struct device *dev)
{
mutex_lock(&gpu_device_lock);
if (gpu_device)
return -EBUSY;
gpu_device = dev;
dev_pm_qos_add_request(dev, &gpu_wakeup_req,
DEV_PM_QOS_FLAGS, 0);
mutex_unlock(&gpu_device_lock);
return 0;
}
EXPORT_SYMBOL(cfb_add_device);
void cfb_remove_device(struct device *dev)
{
mutex_lock(&gpu_device_lock);
if (gpu_device != dev)
return;
dev_pm_qos_remove_request(&gpu_wakeup_req);
gpu_device = NULL;
mutex_unlock(&gpu_device_lock);
}
EXPORT_SYMBOL(cfb_remove_device);
static void cfb_boost(struct kthread_work *w)
{
trace_input_cfboost_params("boost_params", boost_freq, boost_emc,
boost_time);
if (boost_cpus > 0)
pm_qos_update_request_timeout(&core_req, boost_cpus,
boost_time * 1000);
if (boost_freq > 0)
pm_qos_update_request_timeout(&freq_req, boost_freq,
boost_time * 1000);
if (boost_emc > 0)
pm_qos_update_request_timeout(&emc_req, boost_emc,
boost_time * 1000);
if (gpu_wakeup && gpu_device) {
dev_pm_qos_update_request_timeout(&gpu_wakeup_req,
PM_QOS_FLAG_NO_POWER_OFF, boost_time);
pm_runtime_get(gpu_device);
pm_runtime_put_autosuspend(gpu_device);
}
}
static struct task_struct *boost_kthread;
static DEFINE_KTHREAD_WORKER(boost_worker);
static DEFINE_KTHREAD_WORK(boost_work, &cfb_boost);
static void cfb_input_event(struct input_handle *handle, unsigned int type,
unsigned int code, int value)
{
trace_input_cfboost_event("event", type, code, value);
if (jiffies < last_boost_jiffies ||
jiffies > last_boost_jiffies + msecs_to_jiffies(boost_time/2)) {
queue_kthread_work(&boost_worker, &boost_work);
last_boost_jiffies = jiffies;
}
}
static int cfb_input_connect(struct input_handler *handler,
struct input_dev *dev,
const struct input_device_id *id)
{
struct input_handle *handle;
int error;
handle = kzalloc(sizeof(struct input_handle), GFP_KERNEL);
if (!handle)
return -ENOMEM;
handle->dev = dev;
handle->handler = handler;
handle->name = "icfboost";
error = input_register_handle(handle);
if (error)
goto err2;
error = input_open_device(handle);
if (error)
goto err1;
return 0;
err1:
input_unregister_handle(handle);
err2:
kfree(handle);
return error;
}
static void cfb_input_disconnect(struct input_handle *handle)
{
input_close_device(handle);
input_unregister_handle(handle);
kfree(handle);
}
/* XXX make configurable */
static const struct input_device_id cfb_ids[] = {
{ /* touch screens send this at wakeup */
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
INPUT_DEVICE_ID_MATCH_MSCIT,
.evbit = { BIT_MASK(EV_MSC) },
.mscbit = {BIT_MASK(MSC_ACTIVITY)},
},
{ /* trigger on any touch screen events */
.flags = INPUT_DEVICE_ID_MATCH_EVBIT,
.evbit = { BIT_MASK(EV_ABS) },
},
{ /* mouse */
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
INPUT_DEVICE_ID_MATCH_KEYBIT,
.evbit = { BIT_MASK(EV_REL) },
.keybit = {[BIT_WORD(BTN_MOUSE)] = BIT_MASK(BTN_MOUSE) },
},
/* keypad */
{
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
INPUT_DEVICE_ID_MATCH_KEYBIT,
.evbit = { BIT_MASK(EV_KEY) },
.keybit = {[BIT_WORD(KEY_HOME)] = BIT_MASK(KEY_HOME) },
},
{
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
INPUT_DEVICE_ID_MATCH_KEYBIT,
.evbit = { BIT_MASK(EV_KEY) },
.keybit = {[BIT_WORD(KEY_VOLUMEUP)] = BIT_MASK(KEY_VOLUMEUP) },
},
{
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
INPUT_DEVICE_ID_MATCH_KEYBIT,
.evbit = { BIT_MASK(EV_KEY) },
.keybit = {[BIT_WORD(KEY_POWER)] = BIT_MASK(KEY_POWER) },
},
/* joystick */
{
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
INPUT_DEVICE_ID_MATCH_ABSBIT,
.evbit = { BIT_MASK(EV_ABS) },
.absbit = { BIT_MASK(ABS_X) },
},
{
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
INPUT_DEVICE_ID_MATCH_ABSBIT,
.evbit = { BIT_MASK(EV_ABS) },
.absbit = { BIT_MASK(ABS_WHEEL) },
},
{
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
INPUT_DEVICE_ID_MATCH_ABSBIT,
.evbit = { BIT_MASK(EV_ABS) },
.absbit = { BIT_MASK(ABS_THROTTLE) },
},
{
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
INPUT_DEVICE_ID_MATCH_KEYBIT,
.evbit = { BIT_MASK(EV_KEY) },
.keybit = {[BIT_WORD(BTN_JOYSTICK)] = BIT_MASK(BTN_JOYSTICK) },
},
{
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
INPUT_DEVICE_ID_MATCH_KEYBIT,
.evbit = { BIT_MASK(EV_KEY) },
.keybit = { [BIT_WORD(BTN_GAMEPAD)] = BIT_MASK(BTN_GAMEPAD) },
},
{
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
INPUT_DEVICE_ID_MATCH_KEYBIT,
.evbit = { BIT_MASK(EV_KEY) },
.keybit = { [BIT_WORD(BTN_TRIGGER_HAPPY)] =
BIT_MASK(BTN_TRIGGER_HAPPY) },
},
/* terminating entry */
{ },
};
static struct input_handler cfb_input_handler = {
.event = cfb_input_event,
.connect = cfb_input_connect,
.disconnect = cfb_input_disconnect,
.name = "icfboost",
.id_table = cfb_ids,
};
static int __init cfboost_init(void)
{
struct sched_param sparm = {
/* use the last RT priority */
.sched_priority = MAX_RT_PRIO - 10
};
int ret;
/* create RT kthread */
boost_kthread = kthread_run(&kthread_worker_fn, &boost_worker,
"icfb-kthread");
if (IS_ERR(boost_kthread)) {
pr_err("icfboost: error creating worker thread\n");
return PTR_ERR(boost_kthread);
}
sched_setscheduler(boost_kthread, SCHED_RR, &sparm);
ret = input_register_handler(&cfb_input_handler);
if (ret) {
pr_err("icfboost: unable to register input device\n");
kthread_stop(boost_kthread);
return ret;
}
pm_qos_add_request(&core_req, PM_QOS_MIN_ONLINE_CPUS,
PM_QOS_DEFAULT_VALUE);
pm_qos_add_request(&freq_req, PM_QOS_CPU_FREQ_MIN,
PM_QOS_DEFAULT_VALUE);
pm_qos_add_request(&emc_req, PM_QOS_EMC_FREQ_MIN,
PM_QOS_DEFAULT_VALUE);
return 0;
}
static void __exit cfboost_exit(void)
{
/* stop input events */
input_unregister_handler(&cfb_input_handler);
kthread_stop(boost_kthread);
pm_qos_remove_request(&emc_req);
pm_qos_remove_request(&freq_req);
pm_qos_remove_request(&core_req);
}
module_init(cfboost_init);
module_exit(cfboost_exit);