devfreq_boost: Introduce devfreq boost driver
This driver boosts enumerated devfreq devices upon input, and allows for boosting specific devfreq devices on other custom events. The boost frequencies for this driver should be set so that frame drops are near-zero at the boosted frequencies and power consumption is minimized at said frequencies. The goal of this driver is to provide an interface to achieve optimal device performance by requesting boosts on key events, such as when a frame is ready to rendered to the display. Currently, support is only present for boosting the cpubw devfreq device, but the driver is structured in a way that makes it easy to add support for new boostable devfreq devices in the future. Signed-off-by: Sultan Alsawaf <sultan@kerneltoast.com> [@0ctobot: msm-4.14: Adapted for compatibility with drm_notifier] Signed-off-by: Adam W. Willis <return.of.octobot@gmail.com> Signed-off-by: Yaroslav Furman <yaro330@gmail.com> Signed-off-by: UtsavBalar1231 <utsavbalar1231@gmail.com>
This commit is contained in:
committed by
UtsavBalar1231
parent
6db6bf55be
commit
574fbb390d
@@ -263,6 +263,39 @@ config DEVFREQ_GOV_CDSPL3
|
||||
CDSP resource manager will use this governor to vote for L3 clock
|
||||
for IO-coherent traffic generated from CDSP
|
||||
|
||||
config DEVFREQ_BOOST
|
||||
bool "Devfreq Boost"
|
||||
help
|
||||
Boosts enumerated devfreq devices upon input, and allows for boosting
|
||||
specific devfreq devices on other custom events. The boost frequencies
|
||||
for this driver should be set so that frame drops are near-zero at the
|
||||
boosted frequencies and power consumption is minimized at said
|
||||
frequencies. The goal of this driver is to provide an interface to
|
||||
achieve optimal device performance by requesting boosts on key events,
|
||||
such as when a frame is ready to rendered to the display.
|
||||
|
||||
if DEVFREQ_BOOST
|
||||
|
||||
config DEVFREQ_INPUT_BOOST_DURATION_MS
|
||||
int "Input boost duration"
|
||||
default "100"
|
||||
help
|
||||
Input boost duration in milliseconds for all boostable devices.
|
||||
|
||||
config DEVFREQ_WAKE_BOOST_DURATION_MS
|
||||
int "Wake boost duration"
|
||||
default "1000"
|
||||
help
|
||||
Wake boost duration in milliseconds for all boostable devices.
|
||||
|
||||
config DEVFREQ_MSM_CPUBW_BOOST_FREQ
|
||||
int "Boost freq for cpubw device"
|
||||
default "0"
|
||||
help
|
||||
Boost frequency for the MSM DDR bus.
|
||||
|
||||
endif
|
||||
|
||||
source "drivers/devfreq/event/Kconfig"
|
||||
|
||||
endif # PM_DEVFREQ
|
||||
|
||||
@@ -30,3 +30,6 @@ obj-$(CONFIG_DEVFREQ_SPDM) += devfreq_spdm.o devfreq_spdm_debugfs.o
|
||||
|
||||
# DEVFREQ Event Drivers
|
||||
obj-$(CONFIG_PM_DEVFREQ_EVENT) += event/
|
||||
|
||||
# DEVFREQ Boost
|
||||
obj-$(CONFIG_DEVFREQ_BOOST) += devfreq_boost.o
|
||||
|
||||
@@ -263,10 +263,15 @@ int update_devfreq(struct devfreq *devfreq)
|
||||
if (!devfreq->governor)
|
||||
return -EINVAL;
|
||||
|
||||
/* Reevaluate the proper frequency */
|
||||
err = devfreq->governor->get_target_freq(devfreq, &freq);
|
||||
if (err)
|
||||
return err;
|
||||
if (devfreq->max_boost) {
|
||||
/* Use the max freq for max boosts */
|
||||
freq = ULONG_MAX;
|
||||
} else {
|
||||
/* Reevaluate the proper frequency */
|
||||
err = devfreq->governor->get_target_freq(devfreq, &freq);
|
||||
if (err)
|
||||
return err;
|
||||
}
|
||||
|
||||
/*
|
||||
* Adjust the frequency with user freq and QoS.
|
||||
@@ -1130,6 +1135,10 @@ static ssize_t min_freq_store(struct device *dev, struct device_attribute *attr,
|
||||
int ret;
|
||||
unsigned long max;
|
||||
|
||||
/* Minfreq is managed by devfreq_boost */
|
||||
if (df->is_boost_device)
|
||||
return count;
|
||||
|
||||
ret = sscanf(buf, "%lu", &value);
|
||||
if (ret != 1)
|
||||
return -EINVAL;
|
||||
|
||||
335
drivers/devfreq/devfreq_boost.c
Normal file
335
drivers/devfreq/devfreq_boost.c
Normal file
@@ -0,0 +1,335 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
/*
|
||||
* Copyright (C) 2018-2019 Sultan Alsawaf <sultan@kerneltoast.com>.
|
||||
*/
|
||||
|
||||
#define pr_fmt(fmt) "devfreq_boost: " fmt
|
||||
|
||||
#include <linux/devfreq_boost.h>
|
||||
#include <linux/msm_drm_notify.h>
|
||||
#include <linux/input.h>
|
||||
#include <linux/kthread.h>
|
||||
#include <linux/slab.h>
|
||||
#include <uapi/linux/sched/types.h>
|
||||
|
||||
enum {
|
||||
SCREEN_OFF,
|
||||
INPUT_BOOST,
|
||||
MAX_BOOST
|
||||
};
|
||||
|
||||
struct boost_dev {
|
||||
struct devfreq *df;
|
||||
struct delayed_work input_unboost;
|
||||
struct delayed_work max_unboost;
|
||||
wait_queue_head_t boost_waitq;
|
||||
atomic_long_t max_boost_expires;
|
||||
unsigned long boost_freq;
|
||||
unsigned long state;
|
||||
};
|
||||
|
||||
struct df_boost_drv {
|
||||
struct boost_dev devices[DEVFREQ_MAX];
|
||||
struct notifier_block msm_drm_notif;
|
||||
};
|
||||
|
||||
static void devfreq_input_unboost(struct work_struct *work);
|
||||
static void devfreq_max_unboost(struct work_struct *work);
|
||||
|
||||
#define BOOST_DEV_INIT(b, dev, freq) .devices[dev] = { \
|
||||
.input_unboost = \
|
||||
__DELAYED_WORK_INITIALIZER((b).devices[dev].input_unboost, \
|
||||
devfreq_input_unboost, 0), \
|
||||
.max_unboost = \
|
||||
__DELAYED_WORK_INITIALIZER((b).devices[dev].max_unboost, \
|
||||
devfreq_max_unboost, 0), \
|
||||
.boost_waitq = \
|
||||
__WAIT_QUEUE_HEAD_INITIALIZER((b).devices[dev].boost_waitq), \
|
||||
.boost_freq = freq \
|
||||
}
|
||||
|
||||
static struct df_boost_drv df_boost_drv_g __read_mostly = {
|
||||
BOOST_DEV_INIT(df_boost_drv_g, DEVFREQ_MSM_CPUBW,
|
||||
CONFIG_DEVFREQ_MSM_CPUBW_BOOST_FREQ)
|
||||
};
|
||||
|
||||
static void __devfreq_boost_kick(struct boost_dev *b)
|
||||
{
|
||||
if (!READ_ONCE(b->df) || test_bit(SCREEN_OFF, &b->state))
|
||||
return;
|
||||
|
||||
set_bit(INPUT_BOOST, &b->state);
|
||||
if (!mod_delayed_work(system_unbound_wq, &b->input_unboost,
|
||||
msecs_to_jiffies(CONFIG_DEVFREQ_INPUT_BOOST_DURATION_MS)))
|
||||
wake_up(&b->boost_waitq);
|
||||
}
|
||||
|
||||
void devfreq_boost_kick(enum df_device device)
|
||||
{
|
||||
struct df_boost_drv *d = &df_boost_drv_g;
|
||||
|
||||
__devfreq_boost_kick(d->devices + device);
|
||||
}
|
||||
|
||||
static void __devfreq_boost_kick_max(struct boost_dev *b,
|
||||
unsigned int duration_ms)
|
||||
{
|
||||
unsigned long boost_jiffies = msecs_to_jiffies(duration_ms);
|
||||
unsigned long curr_expires, new_expires;
|
||||
|
||||
if (!READ_ONCE(b->df) || test_bit(SCREEN_OFF, &b->state))
|
||||
return;
|
||||
|
||||
do {
|
||||
curr_expires = atomic_long_read(&b->max_boost_expires);
|
||||
new_expires = jiffies + boost_jiffies;
|
||||
|
||||
/* Skip this boost if there's a longer boost in effect */
|
||||
if (time_after(curr_expires, new_expires))
|
||||
return;
|
||||
} while (atomic_long_cmpxchg(&b->max_boost_expires, curr_expires,
|
||||
new_expires) != curr_expires);
|
||||
|
||||
set_bit(MAX_BOOST, &b->state);
|
||||
if (!mod_delayed_work(system_unbound_wq, &b->max_unboost,
|
||||
boost_jiffies))
|
||||
wake_up(&b->boost_waitq);
|
||||
}
|
||||
|
||||
void devfreq_boost_kick_max(enum df_device device, unsigned int duration_ms)
|
||||
{
|
||||
struct df_boost_drv *d = &df_boost_drv_g;
|
||||
|
||||
__devfreq_boost_kick_max(d->devices + device, duration_ms);
|
||||
}
|
||||
|
||||
void devfreq_register_boost_device(enum df_device device, struct devfreq *df)
|
||||
{
|
||||
struct df_boost_drv *d = &df_boost_drv_g;
|
||||
struct boost_dev *b;
|
||||
|
||||
df->is_boost_device = true;
|
||||
b = d->devices + device;
|
||||
WRITE_ONCE(b->df, df);
|
||||
}
|
||||
|
||||
static void devfreq_input_unboost(struct work_struct *work)
|
||||
{
|
||||
struct boost_dev *b = container_of(to_delayed_work(work),
|
||||
typeof(*b), input_unboost);
|
||||
|
||||
clear_bit(INPUT_BOOST, &b->state);
|
||||
wake_up(&b->boost_waitq);
|
||||
}
|
||||
|
||||
static void devfreq_max_unboost(struct work_struct *work)
|
||||
{
|
||||
struct boost_dev *b = container_of(to_delayed_work(work),
|
||||
typeof(*b), max_unboost);
|
||||
|
||||
clear_bit(MAX_BOOST, &b->state);
|
||||
wake_up(&b->boost_waitq);
|
||||
}
|
||||
|
||||
static void devfreq_update_boosts(struct boost_dev *b, unsigned long state)
|
||||
{
|
||||
struct devfreq *df = b->df;
|
||||
|
||||
mutex_lock(&df->lock);
|
||||
if (test_bit(SCREEN_OFF, &state)) {
|
||||
df->min_freq = df->profile->freq_table[0];
|
||||
df->max_boost = false;
|
||||
} else {
|
||||
df->min_freq = test_bit(INPUT_BOOST, &state) ?
|
||||
min(b->boost_freq, df->max_freq) :
|
||||
df->profile->freq_table[0];
|
||||
df->max_boost = test_bit(MAX_BOOST, &state);
|
||||
}
|
||||
update_devfreq(df);
|
||||
mutex_unlock(&df->lock);
|
||||
}
|
||||
|
||||
static int devfreq_boost_thread(void *data)
|
||||
{
|
||||
static const struct sched_param sched_max_rt_prio = {
|
||||
.sched_priority = MAX_RT_PRIO - 1
|
||||
};
|
||||
struct boost_dev *b = data;
|
||||
unsigned long old_state = 0;
|
||||
|
||||
sched_setscheduler_nocheck(current, SCHED_FIFO, &sched_max_rt_prio);
|
||||
|
||||
while (1) {
|
||||
bool should_stop = false;
|
||||
unsigned long curr_state;
|
||||
|
||||
wait_event(b->boost_waitq,
|
||||
(curr_state = READ_ONCE(b->state)) != old_state ||
|
||||
(should_stop = kthread_should_stop()));
|
||||
|
||||
if (should_stop)
|
||||
break;
|
||||
|
||||
old_state = curr_state;
|
||||
devfreq_update_boosts(b, curr_state);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int msm_drm_notifier_cb(struct notifier_block *nb, unsigned long action,
|
||||
void *data)
|
||||
{
|
||||
struct df_boost_drv *d = container_of(nb, typeof(*d), msm_drm_notif);
|
||||
int i;
|
||||
struct msm_drm_notifier *evdata = data;
|
||||
int *blank = evdata->data;
|
||||
|
||||
/* Parse framebuffer blank events as soon as they occur */
|
||||
if (action != MSM_DRM_EARLY_EVENT_BLANK)
|
||||
return NOTIFY_OK;
|
||||
|
||||
/* Boost when the screen turns on and unboost when it turns off */
|
||||
for (i = 0; i < DEVFREQ_MAX; i++) {
|
||||
struct boost_dev *b = d->devices + i;
|
||||
|
||||
if (*blank == MSM_DRM_BLANK_UNBLANK) {
|
||||
clear_bit(SCREEN_OFF, &b->state);
|
||||
__devfreq_boost_kick_max(b,
|
||||
CONFIG_DEVFREQ_WAKE_BOOST_DURATION_MS);
|
||||
} else {
|
||||
set_bit(SCREEN_OFF, &b->state);
|
||||
wake_up(&b->boost_waitq);
|
||||
}
|
||||
}
|
||||
|
||||
return NOTIFY_OK;
|
||||
}
|
||||
|
||||
static void devfreq_boost_input_event(struct input_handle *handle,
|
||||
unsigned int type, unsigned int code,
|
||||
int value)
|
||||
{
|
||||
struct df_boost_drv *d = handle->handler->private;
|
||||
int i;
|
||||
|
||||
for (i = 0; i < DEVFREQ_MAX; i++)
|
||||
__devfreq_boost_kick(d->devices + i);
|
||||
}
|
||||
|
||||
static int devfreq_boost_input_connect(struct input_handler *handler,
|
||||
struct input_dev *dev,
|
||||
const struct input_device_id *id)
|
||||
{
|
||||
struct input_handle *handle;
|
||||
int ret;
|
||||
|
||||
handle = kzalloc(sizeof(*handle), GFP_KERNEL);
|
||||
if (!handle)
|
||||
return -ENOMEM;
|
||||
|
||||
handle->dev = dev;
|
||||
handle->handler = handler;
|
||||
handle->name = "devfreq_boost_handle";
|
||||
|
||||
ret = input_register_handle(handle);
|
||||
if (ret)
|
||||
goto free_handle;
|
||||
|
||||
ret = input_open_device(handle);
|
||||
if (ret)
|
||||
goto unregister_handle;
|
||||
|
||||
return 0;
|
||||
|
||||
unregister_handle:
|
||||
input_unregister_handle(handle);
|
||||
free_handle:
|
||||
kfree(handle);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void devfreq_boost_input_disconnect(struct input_handle *handle)
|
||||
{
|
||||
input_close_device(handle);
|
||||
input_unregister_handle(handle);
|
||||
kfree(handle);
|
||||
}
|
||||
|
||||
static const struct input_device_id devfreq_boost_ids[] = {
|
||||
/* Multi-touch touchscreen */
|
||||
{
|
||||
.flags = INPUT_DEVICE_ID_MATCH_EVBIT |
|
||||
INPUT_DEVICE_ID_MATCH_ABSBIT,
|
||||
.evbit = { BIT_MASK(EV_ABS) },
|
||||
.absbit = { [BIT_WORD(ABS_MT_POSITION_X)] =
|
||||
BIT_MASK(ABS_MT_POSITION_X) |
|
||||
BIT_MASK(ABS_MT_POSITION_Y) }
|
||||
},
|
||||
/* Touchpad */
|
||||
{
|
||||
.flags = INPUT_DEVICE_ID_MATCH_KEYBIT |
|
||||
INPUT_DEVICE_ID_MATCH_ABSBIT,
|
||||
.keybit = { [BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH) },
|
||||
.absbit = { [BIT_WORD(ABS_X)] =
|
||||
BIT_MASK(ABS_X) | BIT_MASK(ABS_Y) }
|
||||
},
|
||||
/* Keypad */
|
||||
{
|
||||
.flags = INPUT_DEVICE_ID_MATCH_EVBIT,
|
||||
.evbit = { BIT_MASK(EV_KEY) }
|
||||
},
|
||||
{ }
|
||||
};
|
||||
|
||||
static struct input_handler devfreq_boost_input_handler = {
|
||||
.event = devfreq_boost_input_event,
|
||||
.connect = devfreq_boost_input_connect,
|
||||
.disconnect = devfreq_boost_input_disconnect,
|
||||
.name = "devfreq_boost_handler",
|
||||
.id_table = devfreq_boost_ids
|
||||
};
|
||||
|
||||
static int __init devfreq_boost_init(void)
|
||||
{
|
||||
struct df_boost_drv *d = &df_boost_drv_g;
|
||||
struct task_struct *thread[DEVFREQ_MAX];
|
||||
int i, ret;
|
||||
|
||||
for (i = 0; i < DEVFREQ_MAX; i++) {
|
||||
struct boost_dev *b = d->devices + i;
|
||||
|
||||
thread[i] = kthread_run(devfreq_boost_thread, b,
|
||||
"devfreq_boostd/%d", i);
|
||||
if (IS_ERR(thread[i])) {
|
||||
ret = PTR_ERR(thread[i]);
|
||||
pr_err("Failed to create kthread, err: %d\n", ret);
|
||||
goto stop_kthreads;
|
||||
}
|
||||
}
|
||||
|
||||
devfreq_boost_input_handler.private = d;
|
||||
ret = input_register_handler(&devfreq_boost_input_handler);
|
||||
if (ret) {
|
||||
pr_err("Failed to register input handler, err: %d\n", ret);
|
||||
goto stop_kthreads;
|
||||
}
|
||||
|
||||
d->msm_drm_notif.notifier_call = msm_drm_notifier_cb;
|
||||
d->msm_drm_notif.priority = INT_MAX;
|
||||
ret = msm_drm_register_client(&d->msm_drm_notif);
|
||||
if (ret) {
|
||||
pr_err("Failed to register fb notifier, err: %d\n", ret);
|
||||
goto unregister_handler;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
unregister_handler:
|
||||
input_unregister_handler(&devfreq_boost_input_handler);
|
||||
stop_kthreads:
|
||||
while (i--)
|
||||
kthread_stop(thread[i]);
|
||||
return ret;
|
||||
}
|
||||
late_initcall(devfreq_boost_init);
|
||||
@@ -31,6 +31,7 @@
|
||||
#include <trace/events/power.h>
|
||||
#include <linux/msm-bus.h>
|
||||
#include <linux/msm-bus-board.h>
|
||||
#include <linux/devfreq_boost.h>
|
||||
|
||||
/* Has to be ULL to prevent overflow where this macro is used. */
|
||||
#define MBYTE (1ULL << 20)
|
||||
@@ -237,6 +238,9 @@ int devfreq_add_devbw(struct device *dev)
|
||||
return PTR_ERR(d->df);
|
||||
}
|
||||
|
||||
if (!strcmp(dev_name(dev), "soc:qcom,cpu-llcc-ddr-bw"))
|
||||
devfreq_register_boost_device(DEVFREQ_MSM_CPUBW, d->df);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -154,6 +154,8 @@ struct devfreq {
|
||||
|
||||
unsigned long min_freq;
|
||||
unsigned long max_freq;
|
||||
bool is_boost_device;
|
||||
bool max_boost;
|
||||
bool stop_polling;
|
||||
|
||||
/* information for device frequency transition */
|
||||
@@ -386,6 +388,11 @@ static inline int devfreq_update_stats(struct devfreq *df)
|
||||
{
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
static inline int update_devfreq(struct devfreq *devfreq)
|
||||
{
|
||||
return -EINVAL;
|
||||
}
|
||||
#endif /* CONFIG_PM_DEVFREQ */
|
||||
|
||||
#endif /* __LINUX_DEVFREQ_H__ */
|
||||
|
||||
34
include/linux/devfreq_boost.h
Normal file
34
include/linux/devfreq_boost.h
Normal file
@@ -0,0 +1,34 @@
|
||||
/* SPDX-License-Identifier: GPL-2.0 */
|
||||
/*
|
||||
* Copyright (C) 2018-2019 Sultan Alsawaf <sultan@kerneltoast.com>.
|
||||
*/
|
||||
#ifndef _DEVFREQ_BOOST_H_
|
||||
#define _DEVFREQ_BOOST_H_
|
||||
|
||||
#include <linux/devfreq.h>
|
||||
|
||||
enum df_device {
|
||||
DEVFREQ_MSM_CPUBW,
|
||||
DEVFREQ_MAX
|
||||
};
|
||||
|
||||
#ifdef CONFIG_DEVFREQ_BOOST
|
||||
void devfreq_boost_kick(enum df_device device);
|
||||
void devfreq_boost_kick_max(enum df_device device, unsigned int duration_ms);
|
||||
void devfreq_register_boost_device(enum df_device device, struct devfreq *df);
|
||||
#else
|
||||
static inline
|
||||
void devfreq_boost_kick(enum df_device device)
|
||||
{
|
||||
}
|
||||
static inline
|
||||
void devfreq_boost_kick_max(enum df_device device, unsigned int duration_ms)
|
||||
{
|
||||
}
|
||||
static inline
|
||||
void devfreq_register_boost_device(enum df_device device, struct devfreq *df)
|
||||
{
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _DEVFREQ_BOOST_H_ */
|
||||
Reference in New Issue
Block a user