PM: QoS: Rename things related to the CPU latency QoS
First, rename PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE to PM_QOS_CPU_LATENCY_DEFAULT_VALUE and update all of the code referring to it accordingly. Next, rename cpu_dma_constraints to cpu_latency_constraints, move the definition of it closer to the functions referring to it and update all of them accordingly. [While at it, add a comment to mark the start of the code related to the CPU latency QoS.] Finally, rename the pm_qos_power_*() family of functions and pm_qos_power_fops to cpu_latency_qos_*() and cpu_latency_qos_fops, respectively, and update the definition of cpu_latency_qos_miscdev. [While at it, update the miscdev interface code start comment.] No intentional functional impact. Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Reviewed-by: Amit Kucheria <amit.kucheria@linaro.org> Tested-by: Amit Kucheria <amit.kucheria@linaro.org>
This commit is contained in:
parent
3a4a004222
commit
2552d35201
|
@ -1222,8 +1222,8 @@ static int omap8250_probe(struct platform_device *pdev)
|
||||||
DEFAULT_CLK_SPEED);
|
DEFAULT_CLK_SPEED);
|
||||||
}
|
}
|
||||||
|
|
||||||
priv->latency = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE;
|
priv->latency = PM_QOS_CPU_LATENCY_DEFAULT_VALUE;
|
||||||
priv->calc_latency = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE;
|
priv->calc_latency = PM_QOS_CPU_LATENCY_DEFAULT_VALUE;
|
||||||
pm_qos_add_request(&priv->pm_qos_request, PM_QOS_CPU_DMA_LATENCY,
|
pm_qos_add_request(&priv->pm_qos_request, PM_QOS_CPU_DMA_LATENCY,
|
||||||
priv->latency);
|
priv->latency);
|
||||||
INIT_WORK(&priv->qos_work, omap8250_uart_qos_work);
|
INIT_WORK(&priv->qos_work, omap8250_uart_qos_work);
|
||||||
|
@ -1445,7 +1445,7 @@ static int omap8250_runtime_suspend(struct device *dev)
|
||||||
if (up->dma && up->dma->rxchan)
|
if (up->dma && up->dma->rxchan)
|
||||||
omap_8250_rx_dma_flush(up);
|
omap_8250_rx_dma_flush(up);
|
||||||
|
|
||||||
priv->latency = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE;
|
priv->latency = PM_QOS_CPU_LATENCY_DEFAULT_VALUE;
|
||||||
schedule_work(&priv->qos_work);
|
schedule_work(&priv->qos_work);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -1722,8 +1722,8 @@ static int serial_omap_probe(struct platform_device *pdev)
|
||||||
DEFAULT_CLK_SPEED);
|
DEFAULT_CLK_SPEED);
|
||||||
}
|
}
|
||||||
|
|
||||||
up->latency = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE;
|
up->latency = PM_QOS_CPU_LATENCY_DEFAULT_VALUE;
|
||||||
up->calc_latency = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE;
|
up->calc_latency = PM_QOS_CPU_LATENCY_DEFAULT_VALUE;
|
||||||
pm_qos_add_request(&up->pm_qos_request,
|
pm_qos_add_request(&up->pm_qos_request,
|
||||||
PM_QOS_CPU_DMA_LATENCY, up->latency);
|
PM_QOS_CPU_DMA_LATENCY, up->latency);
|
||||||
INIT_WORK(&up->qos_work, serial_omap_uart_qos_work);
|
INIT_WORK(&up->qos_work, serial_omap_uart_qos_work);
|
||||||
|
@ -1869,7 +1869,7 @@ static int serial_omap_runtime_suspend(struct device *dev)
|
||||||
|
|
||||||
serial_omap_enable_wakeup(up, true);
|
serial_omap_enable_wakeup(up, true);
|
||||||
|
|
||||||
up->latency = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE;
|
up->latency = PM_QOS_CPU_LATENCY_DEFAULT_VALUE;
|
||||||
schedule_work(&up->qos_work);
|
schedule_work(&up->qos_work);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -28,7 +28,7 @@ enum pm_qos_flags_status {
|
||||||
#define PM_QOS_LATENCY_ANY S32_MAX
|
#define PM_QOS_LATENCY_ANY S32_MAX
|
||||||
#define PM_QOS_LATENCY_ANY_NS ((s64)PM_QOS_LATENCY_ANY * NSEC_PER_USEC)
|
#define PM_QOS_LATENCY_ANY_NS ((s64)PM_QOS_LATENCY_ANY * NSEC_PER_USEC)
|
||||||
|
|
||||||
#define PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE (2000 * USEC_PER_SEC)
|
#define PM_QOS_CPU_LATENCY_DEFAULT_VALUE (2000 * USEC_PER_SEC)
|
||||||
#define PM_QOS_RESUME_LATENCY_DEFAULT_VALUE PM_QOS_LATENCY_ANY
|
#define PM_QOS_RESUME_LATENCY_DEFAULT_VALUE PM_QOS_LATENCY_ANY
|
||||||
#define PM_QOS_RESUME_LATENCY_NO_CONSTRAINT PM_QOS_LATENCY_ANY
|
#define PM_QOS_RESUME_LATENCY_NO_CONSTRAINT PM_QOS_LATENCY_ANY
|
||||||
#define PM_QOS_RESUME_LATENCY_NO_CONSTRAINT_NS PM_QOS_LATENCY_ANY_NS
|
#define PM_QOS_RESUME_LATENCY_NO_CONSTRAINT_NS PM_QOS_LATENCY_ANY_NS
|
||||||
|
|
|
@ -56,14 +56,6 @@
|
||||||
*/
|
*/
|
||||||
static DEFINE_SPINLOCK(pm_qos_lock);
|
static DEFINE_SPINLOCK(pm_qos_lock);
|
||||||
|
|
||||||
static struct pm_qos_constraints cpu_dma_constraints = {
|
|
||||||
.list = PLIST_HEAD_INIT(cpu_dma_constraints.list),
|
|
||||||
.target_value = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE,
|
|
||||||
.default_value = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE,
|
|
||||||
.no_constraint_value = PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE,
|
|
||||||
.type = PM_QOS_MIN,
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* pm_qos_read_value - Return the current effective constraint value.
|
* pm_qos_read_value - Return the current effective constraint value.
|
||||||
* @c: List of PM QoS constraint requests.
|
* @c: List of PM QoS constraint requests.
|
||||||
|
@ -227,6 +219,16 @@ bool pm_qos_update_flags(struct pm_qos_flags *pqf,
|
||||||
return prev_value != curr_value;
|
return prev_value != curr_value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Definitions related to the CPU latency QoS. */
|
||||||
|
|
||||||
|
static struct pm_qos_constraints cpu_latency_constraints = {
|
||||||
|
.list = PLIST_HEAD_INIT(cpu_latency_constraints.list),
|
||||||
|
.target_value = PM_QOS_CPU_LATENCY_DEFAULT_VALUE,
|
||||||
|
.default_value = PM_QOS_CPU_LATENCY_DEFAULT_VALUE,
|
||||||
|
.no_constraint_value = PM_QOS_CPU_LATENCY_DEFAULT_VALUE,
|
||||||
|
.type = PM_QOS_MIN,
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* pm_qos_request - returns current system wide qos expectation
|
* pm_qos_request - returns current system wide qos expectation
|
||||||
* @pm_qos_class: Ignored.
|
* @pm_qos_class: Ignored.
|
||||||
|
@ -235,13 +237,13 @@ bool pm_qos_update_flags(struct pm_qos_flags *pqf,
|
||||||
*/
|
*/
|
||||||
int pm_qos_request(int pm_qos_class)
|
int pm_qos_request(int pm_qos_class)
|
||||||
{
|
{
|
||||||
return pm_qos_read_value(&cpu_dma_constraints);
|
return pm_qos_read_value(&cpu_latency_constraints);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(pm_qos_request);
|
EXPORT_SYMBOL_GPL(pm_qos_request);
|
||||||
|
|
||||||
int pm_qos_request_active(struct pm_qos_request *req)
|
int pm_qos_request_active(struct pm_qos_request *req)
|
||||||
{
|
{
|
||||||
return req->qos == &cpu_dma_constraints;
|
return req->qos == &cpu_latency_constraints;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(pm_qos_request_active);
|
EXPORT_SYMBOL_GPL(pm_qos_request_active);
|
||||||
|
|
||||||
|
@ -278,7 +280,7 @@ void pm_qos_add_request(struct pm_qos_request *req,
|
||||||
|
|
||||||
trace_pm_qos_add_request(PM_QOS_CPU_DMA_LATENCY, value);
|
trace_pm_qos_add_request(PM_QOS_CPU_DMA_LATENCY, value);
|
||||||
|
|
||||||
req->qos = &cpu_dma_constraints;
|
req->qos = &cpu_latency_constraints;
|
||||||
cpu_latency_qos_update(req, PM_QOS_ADD_REQ, value);
|
cpu_latency_qos_update(req, PM_QOS_ADD_REQ, value);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(pm_qos_add_request);
|
EXPORT_SYMBOL_GPL(pm_qos_add_request);
|
||||||
|
@ -338,9 +340,9 @@ void pm_qos_remove_request(struct pm_qos_request *req)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(pm_qos_remove_request);
|
EXPORT_SYMBOL_GPL(pm_qos_remove_request);
|
||||||
|
|
||||||
/* User space interface to global PM QoS via misc device. */
|
/* User space interface to the CPU latency QoS via misc device. */
|
||||||
|
|
||||||
static int pm_qos_power_open(struct inode *inode, struct file *filp)
|
static int cpu_latency_qos_open(struct inode *inode, struct file *filp)
|
||||||
{
|
{
|
||||||
struct pm_qos_request *req;
|
struct pm_qos_request *req;
|
||||||
|
|
||||||
|
@ -354,7 +356,7 @@ static int pm_qos_power_open(struct inode *inode, struct file *filp)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int pm_qos_power_release(struct inode *inode, struct file *filp)
|
static int cpu_latency_qos_release(struct inode *inode, struct file *filp)
|
||||||
{
|
{
|
||||||
struct pm_qos_request *req = filp->private_data;
|
struct pm_qos_request *req = filp->private_data;
|
||||||
|
|
||||||
|
@ -366,8 +368,8 @@ static int pm_qos_power_release(struct inode *inode, struct file *filp)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t pm_qos_power_read(struct file *filp, char __user *buf,
|
static ssize_t cpu_latency_qos_read(struct file *filp, char __user *buf,
|
||||||
size_t count, loff_t *f_pos)
|
size_t count, loff_t *f_pos)
|
||||||
{
|
{
|
||||||
struct pm_qos_request *req = filp->private_data;
|
struct pm_qos_request *req = filp->private_data;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
@ -377,14 +379,14 @@ static ssize_t pm_qos_power_read(struct file *filp, char __user *buf,
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
spin_lock_irqsave(&pm_qos_lock, flags);
|
spin_lock_irqsave(&pm_qos_lock, flags);
|
||||||
value = pm_qos_get_value(&cpu_dma_constraints);
|
value = pm_qos_get_value(&cpu_latency_constraints);
|
||||||
spin_unlock_irqrestore(&pm_qos_lock, flags);
|
spin_unlock_irqrestore(&pm_qos_lock, flags);
|
||||||
|
|
||||||
return simple_read_from_buffer(buf, count, f_pos, &value, sizeof(s32));
|
return simple_read_from_buffer(buf, count, f_pos, &value, sizeof(s32));
|
||||||
}
|
}
|
||||||
|
|
||||||
static ssize_t pm_qos_power_write(struct file *filp, const char __user *buf,
|
static ssize_t cpu_latency_qos_write(struct file *filp, const char __user *buf,
|
||||||
size_t count, loff_t *f_pos)
|
size_t count, loff_t *f_pos)
|
||||||
{
|
{
|
||||||
s32 value;
|
s32 value;
|
||||||
|
|
||||||
|
@ -404,21 +406,21 @@ static ssize_t pm_qos_power_write(struct file *filp, const char __user *buf,
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct file_operations pm_qos_power_fops = {
|
static const struct file_operations cpu_latency_qos_fops = {
|
||||||
.write = pm_qos_power_write,
|
.write = cpu_latency_qos_write,
|
||||||
.read = pm_qos_power_read,
|
.read = cpu_latency_qos_read,
|
||||||
.open = pm_qos_power_open,
|
.open = cpu_latency_qos_open,
|
||||||
.release = pm_qos_power_release,
|
.release = cpu_latency_qos_release,
|
||||||
.llseek = noop_llseek,
|
.llseek = noop_llseek,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct miscdevice cpu_latency_qos_miscdev = {
|
static struct miscdevice cpu_latency_qos_miscdev = {
|
||||||
.minor = MISC_DYNAMIC_MINOR,
|
.minor = MISC_DYNAMIC_MINOR,
|
||||||
.name = "cpu_dma_latency",
|
.name = "cpu_dma_latency",
|
||||||
.fops = &pm_qos_power_fops,
|
.fops = &cpu_latency_qos_fops,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init pm_qos_power_init(void)
|
static int __init cpu_latency_qos_init(void)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
@ -429,7 +431,7 @@ static int __init pm_qos_power_init(void)
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
late_initcall(pm_qos_power_init);
|
late_initcall(cpu_latency_qos_init);
|
||||||
|
|
||||||
/* Definitions related to the frequency QoS below. */
|
/* Definitions related to the frequency QoS below. */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue