You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1924 lines
46 KiB
1924 lines
46 KiB
/* Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
|
|
* Copyright (C) 2006-2007 Adam Belay <abelay@novell.com>
|
|
* Copyright (C) 2009 Intel Corporation
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
* only version 2 as published by the Free Software Foundation.
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
#define pr_fmt(fmt) "%s: " fmt, KBUILD_MODNAME
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/init.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/mutex.h>
|
|
#include <linux/cpu.h>
|
|
#include <linux/of.h>
|
|
#include <linux/hrtimer.h>
|
|
#include <linux/ktime.h>
|
|
#include <linux/tick.h>
|
|
#include <linux/suspend.h>
|
|
#include <linux/pm_qos.h>
|
|
#include <linux/of_platform.h>
|
|
#include <linux/smp.h>
|
|
#include <linux/dma-mapping.h>
|
|
#include <linux/moduleparam.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/cpu_pm.h>
|
|
#include <linux/cpuhotplug.h>
|
|
#include <linux/sched/clock.h>
|
|
#include <linux/sched/stat.h>
|
|
#include <soc/qcom/pm.h>
|
|
#include <soc/qcom/event_timer.h>
|
|
#include <soc/qcom/lpm_levels.h>
|
|
#include <soc/qcom/lpm-stats.h>
|
|
#include <asm/arch_timer.h>
|
|
#include <asm/suspend.h>
|
|
#include <asm/cpuidle.h>
|
|
#include "lpm-levels.h"
|
|
#include <trace/events/power.h>
|
|
#if defined(CONFIG_COMMON_CLK)
|
|
#include "../clk/clk.h"
|
|
#elif defined(CONFIG_COMMON_CLK_MSM)
|
|
#include "../../drivers/clk/msm/clock.h"
|
|
#endif /* CONFIG_COMMON_CLK */
|
|
#define CREATE_TRACE_POINTS
|
|
#include <trace/events/trace_msm_low_power.h>
|
|
|
|
#include <linux/sec_debug.h>
|
|
|
|
#ifdef CONFIG_SEC_PM
|
|
#include <linux/regulator/consumer.h>
|
|
#endif
|
|
|
|
#ifdef CONFIG_SEC_PM_DEBUG
|
|
#include <linux/sec-pinmux.h>
|
|
#ifdef CONFIG_SEC_GPIO_DVS
|
|
#include <linux/secgpio_dvs.h>
|
|
#endif
|
|
#endif
|
|
|
|
#define SCLK_HZ (32768)
|
|
#define PSCI_POWER_STATE(reset) (reset << 30)
|
|
#define PSCI_AFFINITY_LEVEL(lvl) ((lvl & 0x3) << 24)
|
|
#define BIAS_HYST (bias_hyst * NSEC_PER_MSEC)
|
|
|
|
static struct system_pm_ops *sys_pm_ops;
|
|
|
|
|
|
struct lpm_cluster *lpm_root_node;
|
|
|
|
#define MAXSAMPLES 5
|
|
|
|
static bool lpm_prediction = true;
|
|
module_param_named(lpm_prediction, lpm_prediction, bool, 0664);
|
|
|
|
static uint32_t bias_hyst;
|
|
module_param_named(bias_hyst, bias_hyst, uint, 0664);
|
|
static bool lpm_ipi_prediction = true;
|
|
module_param_named(lpm_ipi_prediction, lpm_ipi_prediction, bool, 0664);
|
|
|
|
struct lpm_history {
|
|
uint32_t resi[MAXSAMPLES];
|
|
int mode[MAXSAMPLES];
|
|
int nsamp;
|
|
uint32_t hptr;
|
|
uint32_t hinvalid;
|
|
uint32_t htmr_wkup;
|
|
int64_t stime;
|
|
};
|
|
|
|
struct ipi_history {
|
|
uint32_t interval[MAXSAMPLES];
|
|
uint32_t current_ptr;
|
|
ktime_t cpu_idle_resched_ts;
|
|
};
|
|
|
|
static DEFINE_PER_CPU(struct lpm_history, hist);
|
|
static DEFINE_PER_CPU(struct ipi_history, cpu_ipi_history);
|
|
static DEFINE_PER_CPU(struct lpm_cpu*, cpu_lpm);
|
|
static bool suspend_in_progress;
|
|
static struct hrtimer lpm_hrtimer;
|
|
static DEFINE_PER_CPU(struct hrtimer, histtimer);
|
|
static DEFINE_PER_CPU(struct hrtimer, biastimer);
|
|
|
|
static void cluster_unprepare(struct lpm_cluster *cluster,
|
|
const struct cpumask *cpu, int child_idx, bool from_idle,
|
|
int64_t time, bool success);
|
|
static void cluster_prepare(struct lpm_cluster *cluster,
|
|
const struct cpumask *cpu, int child_idx, bool from_idle,
|
|
int64_t time);
|
|
|
|
static bool print_parsed_dt;
|
|
module_param_named(print_parsed_dt, print_parsed_dt, bool, 0664);
|
|
|
|
static bool sleep_disabled;
|
|
module_param_named(sleep_disabled, sleep_disabled, bool, 0664);
|
|
|
|
#ifdef CONFIG_SEC_PM_DEBUG
|
|
extern void sec_gpio_debug_print(void);
|
|
extern void sec_clock_debug_print_enabled(void);
|
|
extern void sec_debug_print_sleep_time(void);
|
|
static int msm_pm_sleep_sec_debug;
|
|
module_param_named(secdebug,
|
|
msm_pm_sleep_sec_debug, int, S_IRUGO | S_IWUSR | S_IWGRP);
|
|
#endif
|
|
|
|
/**
|
|
* msm_cpuidle_get_deep_idle_latency - Get deep idle latency value
|
|
*
|
|
* Returns an s32 latency value
|
|
*/
|
|
s32 msm_cpuidle_get_deep_idle_latency(void)
|
|
{
|
|
return 10;
|
|
}
|
|
EXPORT_SYMBOL(msm_cpuidle_get_deep_idle_latency);
|
|
|
|
uint32_t register_system_pm_ops(struct system_pm_ops *pm_ops)
|
|
{
|
|
if (sys_pm_ops)
|
|
return -EUSERS;
|
|
|
|
sys_pm_ops = pm_ops;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static uint32_t least_cluster_latency(struct lpm_cluster *cluster,
|
|
struct latency_level *lat_level)
|
|
{
|
|
struct list_head *list;
|
|
struct lpm_cluster_level *level;
|
|
struct lpm_cluster *n;
|
|
struct power_params *pwr_params;
|
|
uint32_t latency = 0;
|
|
int i;
|
|
|
|
if (list_empty(&cluster->list)) {
|
|
for (i = 0; i < cluster->nlevels; i++) {
|
|
level = &cluster->levels[i];
|
|
pwr_params = &level->pwr;
|
|
if (lat_level->reset_level == level->reset_level) {
|
|
if ((latency > pwr_params->exit_latency)
|
|
|| (!latency))
|
|
latency = pwr_params->exit_latency;
|
|
break;
|
|
}
|
|
}
|
|
} else {
|
|
list_for_each(list, &cluster->parent->child) {
|
|
n = list_entry(list, typeof(*n), list);
|
|
if (lat_level->level_name) {
|
|
if (strcmp(lat_level->level_name,
|
|
n->cluster_name))
|
|
continue;
|
|
}
|
|
for (i = 0; i < n->nlevels; i++) {
|
|
level = &n->levels[i];
|
|
pwr_params = &level->pwr;
|
|
if (lat_level->reset_level ==
|
|
level->reset_level) {
|
|
if ((latency > pwr_params->exit_latency)
|
|
|| (!latency))
|
|
latency =
|
|
pwr_params->exit_latency;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return latency;
|
|
}
|
|
|
|
static uint32_t least_cpu_latency(struct list_head *child,
|
|
struct latency_level *lat_level)
|
|
{
|
|
struct list_head *list;
|
|
struct lpm_cpu_level *level;
|
|
struct power_params *pwr_params;
|
|
struct lpm_cpu *cpu;
|
|
struct lpm_cluster *n;
|
|
uint32_t lat = 0;
|
|
int i;
|
|
|
|
list_for_each(list, child) {
|
|
n = list_entry(list, typeof(*n), list);
|
|
if (lat_level->level_name) {
|
|
if (strcmp(lat_level->level_name, n->cluster_name))
|
|
continue;
|
|
}
|
|
list_for_each_entry(cpu, &n->cpu, list) {
|
|
for (i = 0; i < cpu->nlevels; i++) {
|
|
level = &cpu->levels[i];
|
|
pwr_params = &level->pwr;
|
|
if (lat_level->reset_level
|
|
== level->reset_level) {
|
|
if ((lat > pwr_params->exit_latency)
|
|
|| (!lat))
|
|
lat = pwr_params->exit_latency;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return lat;
|
|
}
|
|
|
|
static struct lpm_cluster *cluster_aff_match(struct lpm_cluster *cluster,
|
|
int affinity_level)
|
|
{
|
|
struct lpm_cluster *n;
|
|
|
|
if ((cluster->aff_level == affinity_level)
|
|
|| ((!list_empty(&cluster->cpu)) && (affinity_level == 0)))
|
|
return cluster;
|
|
else if (list_empty(&cluster->cpu)) {
|
|
n = list_entry(cluster->child.next, typeof(*n), list);
|
|
return cluster_aff_match(n, affinity_level);
|
|
} else
|
|
return NULL;
|
|
}
|
|
|
|
int lpm_get_latency(struct latency_level *level, uint32_t *latency)
|
|
{
|
|
struct lpm_cluster *cluster;
|
|
uint32_t val;
|
|
|
|
if (!lpm_root_node) {
|
|
pr_err("lpm_probe not completed\n");
|
|
return -EAGAIN;
|
|
}
|
|
|
|
if ((level->affinity_level < 0)
|
|
|| (level->affinity_level > lpm_root_node->aff_level)
|
|
|| (level->reset_level < LPM_RESET_LVL_RET)
|
|
|| (level->reset_level > LPM_RESET_LVL_PC)
|
|
|| !latency)
|
|
return -EINVAL;
|
|
|
|
cluster = cluster_aff_match(lpm_root_node, level->affinity_level);
|
|
if (!cluster) {
|
|
pr_err("No matching cluster found for affinity_level:%d\n",
|
|
level->affinity_level);
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (level->affinity_level == 0)
|
|
val = least_cpu_latency(&cluster->parent->child, level);
|
|
else
|
|
val = least_cluster_latency(cluster, level);
|
|
|
|
if (!val) {
|
|
pr_err("No mode with affinity_level:%d reset_level:%d\n",
|
|
level->affinity_level, level->reset_level);
|
|
return -EINVAL;
|
|
}
|
|
|
|
*latency = val;
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL(lpm_get_latency);
|
|
|
|
static int lpm_dying_cpu(unsigned int cpu)
|
|
{
|
|
struct lpm_cluster *cluster = per_cpu(cpu_lpm, cpu)->parent;
|
|
|
|
cluster_prepare(cluster, get_cpu_mask(cpu), NR_LPM_LEVELS, false, 0);
|
|
return 0;
|
|
}
|
|
|
|
static int lpm_starting_cpu(unsigned int cpu)
|
|
{
|
|
struct lpm_cluster *cluster = per_cpu(cpu_lpm, cpu)->parent;
|
|
|
|
cluster_unprepare(cluster, get_cpu_mask(cpu), NR_LPM_LEVELS, false,
|
|
0, true);
|
|
return 0;
|
|
}
|
|
|
|
static enum hrtimer_restart lpm_hrtimer_cb(struct hrtimer *h)
|
|
{
|
|
return HRTIMER_NORESTART;
|
|
}
|
|
|
|
static void histtimer_cancel(void)
|
|
{
|
|
unsigned int cpu = raw_smp_processor_id();
|
|
struct hrtimer *cpu_histtimer = &per_cpu(histtimer, cpu);
|
|
ktime_t time_rem;
|
|
|
|
time_rem = hrtimer_get_remaining(cpu_histtimer);
|
|
if (ktime_to_us(time_rem) <= 0)
|
|
return;
|
|
|
|
hrtimer_try_to_cancel(cpu_histtimer);
|
|
}
|
|
|
|
static enum hrtimer_restart histtimer_fn(struct hrtimer *h)
|
|
{
|
|
int cpu = raw_smp_processor_id();
|
|
struct lpm_history *history = &per_cpu(hist, cpu);
|
|
|
|
history->hinvalid = 1;
|
|
return HRTIMER_NORESTART;
|
|
}
|
|
|
|
static void histtimer_start(uint32_t time_us)
|
|
{
|
|
uint64_t time_ns = time_us * NSEC_PER_USEC;
|
|
ktime_t hist_ktime = ns_to_ktime(time_ns);
|
|
unsigned int cpu = raw_smp_processor_id();
|
|
struct hrtimer *cpu_histtimer = &per_cpu(histtimer, cpu);
|
|
|
|
cpu_histtimer->function = histtimer_fn;
|
|
hrtimer_start(cpu_histtimer, hist_ktime, HRTIMER_MODE_REL_PINNED);
|
|
}
|
|
|
|
static void cluster_timer_init(struct lpm_cluster *cluster)
|
|
{
|
|
struct list_head *list;
|
|
|
|
if (!cluster)
|
|
return;
|
|
|
|
hrtimer_init(&cluster->histtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
|
|
|
|
list_for_each(list, &cluster->child) {
|
|
struct lpm_cluster *n;
|
|
|
|
n = list_entry(list, typeof(*n), list);
|
|
cluster_timer_init(n);
|
|
}
|
|
}
|
|
|
|
static void clusttimer_cancel(void)
|
|
{
|
|
int cpu = raw_smp_processor_id();
|
|
struct lpm_cluster *cluster = per_cpu(cpu_lpm, cpu)->parent;
|
|
ktime_t time_rem;
|
|
|
|
time_rem = hrtimer_get_remaining(&cluster->histtimer);
|
|
if (ktime_to_us(time_rem) > 0)
|
|
hrtimer_try_to_cancel(&cluster->histtimer);
|
|
|
|
if (cluster->parent) {
|
|
time_rem = hrtimer_get_remaining(
|
|
&cluster->parent->histtimer);
|
|
|
|
if (ktime_to_us(time_rem) <= 0)
|
|
return;
|
|
|
|
hrtimer_try_to_cancel(&cluster->parent->histtimer);
|
|
}
|
|
}
|
|
|
|
static enum hrtimer_restart clusttimer_fn(struct hrtimer *h)
|
|
{
|
|
struct lpm_cluster *cluster = container_of(h,
|
|
struct lpm_cluster, histtimer);
|
|
|
|
cluster->history.hinvalid = 1;
|
|
return HRTIMER_NORESTART;
|
|
}
|
|
|
|
static void clusttimer_start(struct lpm_cluster *cluster, uint32_t time_us)
|
|
{
|
|
uint64_t time_ns = time_us * NSEC_PER_USEC;
|
|
ktime_t clust_ktime = ns_to_ktime(time_ns);
|
|
|
|
cluster->histtimer.function = clusttimer_fn;
|
|
hrtimer_start(&cluster->histtimer, clust_ktime,
|
|
HRTIMER_MODE_REL_PINNED);
|
|
}
|
|
|
|
static void msm_pm_set_timer(uint32_t modified_time_us)
|
|
{
|
|
u64 modified_time_ns = modified_time_us * NSEC_PER_USEC;
|
|
ktime_t modified_ktime = ns_to_ktime(modified_time_ns);
|
|
|
|
lpm_hrtimer.function = lpm_hrtimer_cb;
|
|
hrtimer_start(&lpm_hrtimer, modified_ktime, HRTIMER_MODE_REL_PINNED);
|
|
}
|
|
|
|
static void biastimer_cancel(void)
|
|
{
|
|
unsigned int cpu = raw_smp_processor_id();
|
|
struct hrtimer *cpu_biastimer = &per_cpu(biastimer, cpu);
|
|
ktime_t time_rem;
|
|
|
|
time_rem = hrtimer_get_remaining(cpu_biastimer);
|
|
if (ktime_to_us(time_rem) <= 0)
|
|
return;
|
|
|
|
hrtimer_try_to_cancel(cpu_biastimer);
|
|
}
|
|
|
|
static enum hrtimer_restart biastimer_fn(struct hrtimer *h)
|
|
{
|
|
return HRTIMER_NORESTART;
|
|
}
|
|
|
|
static void biastimer_start(uint32_t time_ns)
|
|
{
|
|
ktime_t bias_ktime = ns_to_ktime(time_ns);
|
|
unsigned int cpu = raw_smp_processor_id();
|
|
struct hrtimer *cpu_biastimer = &per_cpu(biastimer, cpu);
|
|
|
|
cpu_biastimer->function = biastimer_fn;
|
|
hrtimer_start(cpu_biastimer, bias_ktime, HRTIMER_MODE_REL_PINNED);
|
|
}
|
|
|
|
static uint64_t find_deviation(int *interval, uint32_t ref_stddev,
|
|
int64_t *stime)
|
|
{
|
|
int divisor, i;
|
|
uint64_t max, avg, stddev;
|
|
int64_t thresh = LLONG_MAX;
|
|
|
|
do {
|
|
max = avg = divisor = stddev = 0;
|
|
for (i = 0; i < MAXSAMPLES; i++) {
|
|
int64_t value = interval[i];
|
|
|
|
if (value <= thresh) {
|
|
avg += value;
|
|
divisor++;
|
|
if (value > max)
|
|
max = value;
|
|
}
|
|
}
|
|
do_div(avg, divisor);
|
|
|
|
for (i = 0; i < MAXSAMPLES; i++) {
|
|
int64_t value = interval[i];
|
|
|
|
if (value <= thresh) {
|
|
int64_t diff = value - avg;
|
|
|
|
stddev += diff * diff;
|
|
}
|
|
}
|
|
do_div(stddev, divisor);
|
|
stddev = int_sqrt(stddev);
|
|
|
|
/*
|
|
* If the deviation is less, return the average, else
|
|
* ignore one maximum sample and retry
|
|
*/
|
|
if (((avg > stddev * 6) && (divisor >= (MAXSAMPLES - 1)))
|
|
|| stddev <= ref_stddev) {
|
|
*stime = ktime_to_us(ktime_get()) + avg;
|
|
return avg;
|
|
}
|
|
thresh = max - 1;
|
|
|
|
} while (divisor > (MAXSAMPLES - 1));
|
|
|
|
return 0;
|
|
}
|
|
|
|
static uint64_t lpm_cpuidle_predict(struct cpuidle_device *dev,
|
|
struct lpm_cpu *cpu, int *idx_restrict,
|
|
uint32_t *idx_restrict_time, uint32_t *ipi_predicted)
|
|
{
|
|
int i, j;
|
|
uint64_t avg;
|
|
struct lpm_history *history = &per_cpu(hist, dev->cpu);
|
|
struct ipi_history *ipi_history = &per_cpu(cpu_ipi_history, dev->cpu);
|
|
|
|
if (!lpm_prediction || !cpu->lpm_prediction)
|
|
return 0;
|
|
|
|
/*
|
|
* Samples are marked invalid when woken-up due to timer,
|
|
* so donot predict.
|
|
*/
|
|
if (history->hinvalid) {
|
|
history->hinvalid = 0;
|
|
history->htmr_wkup = 1;
|
|
history->stime = 0;
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Predict only when all the samples are collected.
|
|
*/
|
|
if (history->nsamp < MAXSAMPLES) {
|
|
history->stime = 0;
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Check if the samples are not much deviated, if so use the
|
|
* average of those as predicted sleep time. Else if any
|
|
* specific mode has more premature exits return the index of
|
|
* that mode.
|
|
*/
|
|
|
|
avg = find_deviation(history->resi, cpu->ref_stddev, &(history->stime));
|
|
if (avg)
|
|
return avg;
|
|
|
|
/*
|
|
* Find the number of premature exits for each of the mode,
|
|
* excluding clockgating mode, and they are more than fifty
|
|
* percent restrict that and deeper modes.
|
|
*/
|
|
if (history->htmr_wkup != 1) {
|
|
for (j = 1; j < cpu->nlevels; j++) {
|
|
struct lpm_cpu_level *level = &cpu->levels[j];
|
|
uint32_t min_residency = level->pwr.min_residency;
|
|
uint32_t max_residency = 0;
|
|
struct lpm_cpu_level *lvl;
|
|
uint32_t failed = 0;
|
|
uint64_t total = 0;
|
|
|
|
for (i = 0; i < MAXSAMPLES; i++) {
|
|
if ((history->mode[i] == j) &&
|
|
(history->resi[i] < min_residency)) {
|
|
failed++;
|
|
total += history->resi[i];
|
|
}
|
|
}
|
|
if (failed >= cpu->ref_premature_cnt) {
|
|
*idx_restrict = j;
|
|
do_div(total, failed);
|
|
for (i = 0; i < j; i++) {
|
|
lvl = &cpu->levels[i];
|
|
max_residency = lvl->pwr.max_residency;
|
|
if (total < max_residency) {
|
|
*idx_restrict = i + 1;
|
|
total = max_residency;
|
|
break;
|
|
}
|
|
}
|
|
|
|
*idx_restrict_time = total;
|
|
history->stime = ktime_to_us(ktime_get())
|
|
+ *idx_restrict_time;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (*idx_restrict_time || !cpu->ipi_prediction || !lpm_ipi_prediction)
|
|
return 0;
|
|
|
|
avg = find_deviation(ipi_history->interval, cpu->ref_stddev
|
|
+ DEFAULT_IPI_STDDEV,
|
|
&(history->stime));
|
|
if (avg) {
|
|
*ipi_predicted = 1;
|
|
return avg;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static inline void invalidate_predict_history(struct cpuidle_device *dev)
|
|
{
|
|
struct lpm_history *history = &per_cpu(hist, dev->cpu);
|
|
struct lpm_cpu *lpm_cpu = per_cpu(cpu_lpm, dev->cpu);
|
|
|
|
if (!lpm_prediction || !lpm_cpu->lpm_prediction)
|
|
return;
|
|
|
|
if (history->hinvalid) {
|
|
history->hinvalid = 0;
|
|
history->htmr_wkup = 1;
|
|
history->stime = 0;
|
|
}
|
|
}
|
|
|
|
static void clear_predict_history(void)
|
|
{
|
|
struct lpm_history *history;
|
|
int i;
|
|
unsigned int cpu;
|
|
struct lpm_cpu *lpm_cpu = per_cpu(cpu_lpm, raw_smp_processor_id());
|
|
|
|
if (!lpm_prediction || !lpm_cpu->lpm_prediction)
|
|
return;
|
|
|
|
for_each_possible_cpu(cpu) {
|
|
history = &per_cpu(hist, cpu);
|
|
for (i = 0; i < MAXSAMPLES; i++) {
|
|
history->resi[i] = 0;
|
|
history->mode[i] = -1;
|
|
history->hptr = 0;
|
|
history->nsamp = 0;
|
|
history->stime = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
static void update_history(struct cpuidle_device *dev, int idx);
|
|
|
|
static inline bool is_cpu_biased(int cpu, uint64_t *bias_time)
|
|
{
|
|
u64 now = sched_clock();
|
|
u64 last = sched_get_cpu_last_busy_time(cpu);
|
|
u64 diff = 0;
|
|
int hyst_bias = pm_qos_request(PM_QOS_HIST_BIAS);
|
|
|
|
if (!last)
|
|
return false;
|
|
|
|
diff = now - last;
|
|
|
|
if (diff < max(BIAS_HYST, hyst_bias * NSEC_PER_MSEC)) {
|
|
*bias_time = max(BIAS_HYST, hyst_bias * NSEC_PER_MSEC) - diff;
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
static int cpu_power_select(struct cpuidle_device *dev,
|
|
struct lpm_cpu *cpu)
|
|
{
|
|
int best_level = 0;
|
|
uint32_t latency_us = pm_qos_request_for_cpu(PM_QOS_CPU_DMA_LATENCY,
|
|
dev->cpu);
|
|
ktime_t delta_next;
|
|
s64 sleep_us = ktime_to_us(tick_nohz_get_sleep_length(&delta_next));
|
|
uint32_t modified_time_us = 0;
|
|
uint32_t next_event_us = 0;
|
|
int i, idx_restrict;
|
|
uint32_t lvl_latency_us = 0;
|
|
uint64_t predicted = 0;
|
|
uint32_t htime = 0, idx_restrict_time = 0, ipi_predicted = 0;
|
|
uint32_t next_wakeup_us = (uint32_t)sleep_us;
|
|
uint32_t min_residency, max_residency;
|
|
struct power_params *pwr_params;
|
|
uint64_t bias_time = 0;
|
|
|
|
if ((sleep_disabled && !cpu_isolated(dev->cpu)) || sleep_us < 0)
|
|
return best_level;
|
|
|
|
idx_restrict = cpu->nlevels + 1;
|
|
|
|
next_event_us = (uint32_t)(ktime_to_us(get_next_event_time(dev->cpu)));
|
|
|
|
if (is_cpu_biased(dev->cpu, &bias_time) && (!cpu_isolated(dev->cpu))) {
|
|
cpu->bias = bias_time;
|
|
goto done_select;
|
|
}
|
|
|
|
for (i = 0; i < cpu->nlevels; i++) {
|
|
bool allow;
|
|
|
|
allow = i ? lpm_cpu_mode_allow(dev->cpu, i, true) : true;
|
|
|
|
if (!allow)
|
|
continue;
|
|
|
|
pwr_params = &cpu->levels[i].pwr;
|
|
lvl_latency_us = pwr_params->exit_latency;
|
|
min_residency = pwr_params->min_residency;
|
|
max_residency = pwr_params->max_residency;
|
|
|
|
if (latency_us <= lvl_latency_us)
|
|
break;
|
|
|
|
if (next_event_us) {
|
|
if (next_event_us < lvl_latency_us)
|
|
break;
|
|
|
|
if (((next_event_us - lvl_latency_us) < sleep_us) ||
|
|
(next_event_us < sleep_us))
|
|
next_wakeup_us = next_event_us - lvl_latency_us;
|
|
}
|
|
|
|
if (!i && !cpu_isolated(dev->cpu)) {
|
|
/*
|
|
* If the next_wake_us itself is not sufficient for
|
|
* deeper low power modes than clock gating do not
|
|
* call prediction.
|
|
*/
|
|
if (next_wakeup_us > max_residency) {
|
|
predicted = lpm_cpuidle_predict(dev, cpu,
|
|
&idx_restrict, &idx_restrict_time,
|
|
&ipi_predicted);
|
|
if (predicted && (predicted < min_residency))
|
|
predicted = min_residency;
|
|
} else
|
|
invalidate_predict_history(dev);
|
|
}
|
|
|
|
if (i >= idx_restrict)
|
|
break;
|
|
|
|
best_level = i;
|
|
|
|
if (next_event_us && next_event_us < sleep_us && !i)
|
|
modified_time_us = next_event_us - lvl_latency_us;
|
|
else
|
|
modified_time_us = 0;
|
|
|
|
if (predicted ? (predicted <= max_residency)
|
|
: (next_wakeup_us <= max_residency))
|
|
break;
|
|
}
|
|
|
|
if (modified_time_us)
|
|
msm_pm_set_timer(modified_time_us);
|
|
|
|
/*
|
|
* Start timer to avoid staying in shallower mode forever
|
|
* incase of misprediciton
|
|
*/
|
|
|
|
pwr_params = &cpu->levels[best_level].pwr;
|
|
min_residency = pwr_params->min_residency;
|
|
max_residency = pwr_params->max_residency;
|
|
|
|
if ((predicted || (idx_restrict != (cpu->nlevels + 1)))
|
|
&& (best_level < (cpu->nlevels-1))) {
|
|
htime = predicted + cpu->tmr_add;
|
|
if (lpm_ipi_prediction && cpu->ipi_prediction)
|
|
htime += DEFAULT_IPI_TIMER_ADD;
|
|
if (!predicted)
|
|
htime = idx_restrict_time;
|
|
else if (htime > max_residency)
|
|
htime = max_residency;
|
|
|
|
if ((next_wakeup_us > htime) &&
|
|
((next_wakeup_us - htime) > max_residency))
|
|
histtimer_start(htime);
|
|
}
|
|
|
|
done_select:
|
|
trace_cpu_power_select(best_level, sleep_us, latency_us, next_event_us);
|
|
|
|
trace_cpu_pred_select(idx_restrict_time ? 2 : (ipi_predicted ?
|
|
3 : (predicted ? 1 : 0)), predicted, htime);
|
|
|
|
return best_level;
|
|
}
|
|
|
|
static unsigned int get_next_online_cpu(bool from_idle)
|
|
{
|
|
unsigned int cpu;
|
|
ktime_t next_event;
|
|
unsigned int next_cpu = raw_smp_processor_id();
|
|
|
|
if (!from_idle)
|
|
return next_cpu;
|
|
next_event = KTIME_MAX;
|
|
for_each_online_cpu(cpu) {
|
|
ktime_t *next_event_c;
|
|
|
|
next_event_c = get_next_event_cpu(cpu);
|
|
if (*next_event_c < next_event) {
|
|
next_event = *next_event_c;
|
|
next_cpu = cpu;
|
|
}
|
|
}
|
|
return next_cpu;
|
|
}
|
|
|
|
static uint64_t get_cluster_sleep_time(struct lpm_cluster *cluster,
|
|
bool from_idle, uint32_t *pred_time)
|
|
{
|
|
int cpu;
|
|
ktime_t next_event;
|
|
struct cpumask online_cpus_in_cluster;
|
|
struct lpm_history *history;
|
|
int64_t prediction = LONG_MAX;
|
|
|
|
if (!from_idle)
|
|
return ~0ULL;
|
|
|
|
next_event = KTIME_MAX;
|
|
cpumask_and(&online_cpus_in_cluster,
|
|
&cluster->num_children_in_sync, cpu_online_mask);
|
|
|
|
for_each_cpu(cpu, &online_cpus_in_cluster) {
|
|
ktime_t *next_event_c;
|
|
|
|
next_event_c = get_next_event_cpu(cpu);
|
|
if (*next_event_c < next_event)
|
|
next_event = *next_event_c;
|
|
|
|
if (from_idle && lpm_prediction && cluster->lpm_prediction) {
|
|
history = &per_cpu(hist, cpu);
|
|
if (history->stime && (history->stime < prediction))
|
|
prediction = history->stime;
|
|
}
|
|
}
|
|
|
|
if (from_idle && lpm_prediction && cluster->lpm_prediction) {
|
|
if (prediction > ktime_to_us(ktime_get()))
|
|
*pred_time = prediction - ktime_to_us(ktime_get());
|
|
}
|
|
|
|
if (ktime_to_us(next_event) > ktime_to_us(ktime_get()))
|
|
return ktime_to_us(ktime_sub(next_event, ktime_get()));
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
static int cluster_predict(struct lpm_cluster *cluster,
|
|
uint32_t *pred_us)
|
|
{
|
|
int i, j;
|
|
int ret = 0;
|
|
struct cluster_history *history = &cluster->history;
|
|
int64_t cur_time = ktime_to_us(ktime_get());
|
|
|
|
if (!lpm_prediction || !cluster->lpm_prediction)
|
|
return 0;
|
|
|
|
if (history->hinvalid) {
|
|
history->hinvalid = 0;
|
|
history->htmr_wkup = 1;
|
|
history->flag = 0;
|
|
return ret;
|
|
}
|
|
|
|
if (history->nsamp == MAXSAMPLES) {
|
|
for (i = 0; i < MAXSAMPLES; i++) {
|
|
if ((cur_time - history->stime[i])
|
|
> CLUST_SMPL_INVLD_TIME)
|
|
history->nsamp--;
|
|
}
|
|
}
|
|
|
|
if (history->nsamp < MAXSAMPLES) {
|
|
history->flag = 0;
|
|
return ret;
|
|
}
|
|
|
|
if (history->flag == 2)
|
|
history->flag = 0;
|
|
|
|
if (history->htmr_wkup != 1) {
|
|
uint64_t total = 0;
|
|
|
|
if (history->flag == 1) {
|
|
for (i = 0; i < MAXSAMPLES; i++)
|
|
total += history->resi[i];
|
|
do_div(total, MAXSAMPLES);
|
|
*pred_us = total;
|
|
return 2;
|
|
}
|
|
|
|
for (j = 1; j < cluster->nlevels; j++) {
|
|
uint32_t failed = 0;
|
|
|
|
total = 0;
|
|
for (i = 0; i < MAXSAMPLES; i++) {
|
|
if ((history->mode[i] == j) && (history->resi[i]
|
|
< cluster->levels[j].pwr.min_residency)) {
|
|
failed++;
|
|
total += history->resi[i];
|
|
}
|
|
}
|
|
|
|
if (failed > (MAXSAMPLES-2)) {
|
|
do_div(total, failed);
|
|
*pred_us = total;
|
|
history->flag = 1;
|
|
return 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void update_cluster_history_time(struct cluster_history *history,
|
|
int idx, uint64_t start)
|
|
{
|
|
history->entry_idx = idx;
|
|
history->entry_time = start;
|
|
}
|
|
|
|
static void update_cluster_history(struct cluster_history *history, int idx)
|
|
{
|
|
uint32_t tmr = 0;
|
|
uint32_t residency = 0;
|
|
struct lpm_cluster *cluster =
|
|
container_of(history, struct lpm_cluster, history);
|
|
|
|
if (!lpm_prediction || !cluster->lpm_prediction)
|
|
return;
|
|
|
|
if ((history->entry_idx == -1) || (history->entry_idx == idx)) {
|
|
residency = ktime_to_us(ktime_get()) - history->entry_time;
|
|
history->stime[history->hptr] = history->entry_time;
|
|
} else
|
|
return;
|
|
|
|
if (history->htmr_wkup) {
|
|
if (!history->hptr)
|
|
history->hptr = MAXSAMPLES-1;
|
|
else
|
|
history->hptr--;
|
|
|
|
history->resi[history->hptr] += residency;
|
|
|
|
history->htmr_wkup = 0;
|
|
tmr = 1;
|
|
} else
|
|
history->resi[history->hptr] = residency;
|
|
|
|
history->mode[history->hptr] = idx;
|
|
|
|
history->entry_idx = INT_MIN;
|
|
history->entry_time = 0;
|
|
|
|
if (history->nsamp < MAXSAMPLES)
|
|
history->nsamp++;
|
|
|
|
trace_cluster_pred_hist(cluster->cluster_name,
|
|
history->mode[history->hptr], history->resi[history->hptr],
|
|
history->hptr, tmr);
|
|
|
|
(history->hptr)++;
|
|
|
|
if (history->hptr >= MAXSAMPLES)
|
|
history->hptr = 0;
|
|
}
|
|
|
|
static void clear_cl_history_each(struct cluster_history *history)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < MAXSAMPLES; i++) {
|
|
history->resi[i] = 0;
|
|
history->mode[i] = -1;
|
|
history->stime[i] = 0;
|
|
}
|
|
|
|
history->hptr = 0;
|
|
history->nsamp = 0;
|
|
history->flag = 0;
|
|
history->hinvalid = 0;
|
|
history->htmr_wkup = 0;
|
|
}
|
|
static void clear_cl_predict_history(void)
|
|
{
|
|
struct lpm_cluster *cluster = lpm_root_node;
|
|
struct list_head *list;
|
|
|
|
if (!lpm_prediction || !cluster->lpm_prediction)
|
|
return;
|
|
|
|
clear_cl_history_each(&cluster->history);
|
|
|
|
list_for_each(list, &cluster->child) {
|
|
struct lpm_cluster *n;
|
|
|
|
n = list_entry(list, typeof(*n), list);
|
|
clear_cl_history_each(&n->history);
|
|
}
|
|
}
|
|
|
|
static int cluster_select(struct lpm_cluster *cluster, bool from_idle,
|
|
int *ispred)
|
|
{
|
|
int best_level = -1;
|
|
int i;
|
|
struct cpumask mask;
|
|
uint32_t latency_us = ~0U;
|
|
uint32_t sleep_us;
|
|
uint32_t cpupred_us = 0, pred_us = 0;
|
|
int pred_mode = 0, predicted = 0;
|
|
|
|
if (!cluster)
|
|
return -EINVAL;
|
|
|
|
sleep_us = (uint32_t)get_cluster_sleep_time(cluster,
|
|
from_idle, &cpupred_us);
|
|
|
|
if (from_idle) {
|
|
pred_mode = cluster_predict(cluster, &pred_us);
|
|
|
|
if (cpupred_us && pred_mode && (cpupred_us < pred_us))
|
|
pred_us = cpupred_us;
|
|
|
|
if (pred_us && pred_mode && (pred_us < sleep_us))
|
|
predicted = 1;
|
|
|
|
if (predicted && (pred_us == cpupred_us))
|
|
predicted = 2;
|
|
}
|
|
|
|
if (cpumask_and(&mask, cpu_online_mask, &cluster->child_cpus))
|
|
latency_us = pm_qos_request_for_cpumask(PM_QOS_CPU_DMA_LATENCY,
|
|
&mask);
|
|
|
|
for (i = 0; i < cluster->nlevels; i++) {
|
|
struct lpm_cluster_level *level = &cluster->levels[i];
|
|
struct power_params *pwr_params = &level->pwr;
|
|
|
|
if (!lpm_cluster_mode_allow(cluster, i, from_idle))
|
|
continue;
|
|
|
|
if (!cpumask_equal(&cluster->num_children_in_sync,
|
|
&level->num_cpu_votes))
|
|
continue;
|
|
|
|
if (from_idle && latency_us <= pwr_params->exit_latency)
|
|
break;
|
|
|
|
if (sleep_us < (pwr_params->exit_latency +
|
|
pwr_params->entry_latency))
|
|
break;
|
|
|
|
if (suspend_in_progress && from_idle && level->notify_rpm)
|
|
continue;
|
|
|
|
if (level->notify_rpm) {
|
|
if (!(sys_pm_ops && sys_pm_ops->sleep_allowed))
|
|
continue;
|
|
if (!sys_pm_ops->sleep_allowed())
|
|
continue;
|
|
}
|
|
|
|
best_level = i;
|
|
|
|
if (from_idle &&
|
|
(predicted ? (pred_us <= pwr_params->max_residency)
|
|
: (sleep_us <= pwr_params->max_residency)))
|
|
break;
|
|
}
|
|
|
|
if ((best_level == (cluster->nlevels - 1)) && (pred_mode == 2))
|
|
cluster->history.flag = 2;
|
|
|
|
*ispred = predicted;
|
|
|
|
trace_cluster_pred_select(cluster->cluster_name, best_level, sleep_us,
|
|
latency_us, predicted, pred_us);
|
|
|
|
return best_level;
|
|
}
|
|
|
|
static void cluster_notify(struct lpm_cluster *cluster,
|
|
struct lpm_cluster_level *level, bool enter)
|
|
{
|
|
if (level->is_reset && enter)
|
|
cpu_cluster_pm_enter(cluster->aff_level);
|
|
else if (level->is_reset && !enter)
|
|
cpu_cluster_pm_exit(cluster->aff_level);
|
|
}
|
|
|
|
static int cluster_configure(struct lpm_cluster *cluster, int idx,
|
|
bool from_idle, int predicted)
|
|
{
|
|
struct lpm_cluster_level *level = &cluster->levels[idx];
|
|
struct cpumask online_cpus, cpumask;
|
|
unsigned int cpu;
|
|
|
|
cpumask_and(&online_cpus, &cluster->num_children_in_sync,
|
|
cpu_online_mask);
|
|
|
|
if (!cpumask_equal(&cluster->num_children_in_sync, &cluster->child_cpus)
|
|
|| is_IPI_pending(&online_cpus))
|
|
return -EPERM;
|
|
|
|
if (idx != cluster->default_level) {
|
|
sec_debug_cluster_lpm_log(cluster->cluster_name, idx,
|
|
cluster->num_children_in_sync.bits[0],
|
|
cluster->child_cpus.bits[0], from_idle, 1);
|
|
trace_cluster_enter(cluster->cluster_name, idx,
|
|
cluster->num_children_in_sync.bits[0],
|
|
cluster->child_cpus.bits[0], from_idle);
|
|
lpm_stats_cluster_enter(cluster->stats, idx);
|
|
|
|
if (from_idle && lpm_prediction && cluster->lpm_prediction)
|
|
update_cluster_history_time(&cluster->history, idx,
|
|
ktime_to_us(ktime_get()));
|
|
}
|
|
|
|
if (level->notify_rpm) {
|
|
/*
|
|
* Print the clocks which are enabled during system suspend
|
|
* This debug information is useful to know which are the
|
|
* clocks that are enabled and preventing the system level
|
|
* LPMs(XO and Vmin).
|
|
*
|
|
* move to lpm_suspend_prepare due to BUG in atomic context
|
|
if (!from_idle)
|
|
clock_debug_print_enabled(true);
|
|
*/
|
|
|
|
cpu = get_next_online_cpu(from_idle);
|
|
cpumask_copy(&cpumask, cpumask_of(cpu));
|
|
clear_predict_history();
|
|
clear_cl_predict_history();
|
|
if (sys_pm_ops && sys_pm_ops->enter)
|
|
if ((sys_pm_ops->enter(&cpumask)))
|
|
return -EBUSY;
|
|
}
|
|
/* Notify cluster enter event after successfully config completion */
|
|
cluster_notify(cluster, level, true);
|
|
|
|
cluster->last_level = idx;
|
|
|
|
if (predicted && (idx < (cluster->nlevels - 1))) {
|
|
struct power_params *pwr_params = &cluster->levels[idx].pwr;
|
|
|
|
clusttimer_start(cluster, pwr_params->max_residency +
|
|
cluster->tmr_add);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void cluster_prepare(struct lpm_cluster *cluster,
|
|
const struct cpumask *cpu, int child_idx, bool from_idle,
|
|
int64_t start_time)
|
|
{
|
|
int i;
|
|
int predicted = 0;
|
|
|
|
if (!cluster)
|
|
return;
|
|
|
|
if (cluster->min_child_level > child_idx)
|
|
return;
|
|
|
|
spin_lock(&cluster->sync_lock);
|
|
cpumask_or(&cluster->num_children_in_sync, cpu,
|
|
&cluster->num_children_in_sync);
|
|
|
|
for (i = 0; i < cluster->nlevels; i++) {
|
|
struct lpm_cluster_level *lvl = &cluster->levels[i];
|
|
|
|
if (child_idx >= lvl->min_child_level)
|
|
cpumask_or(&lvl->num_cpu_votes, cpu,
|
|
&lvl->num_cpu_votes);
|
|
}
|
|
|
|
/*
|
|
* cluster_select() does not make any configuration changes. So its ok
|
|
* to release the lock here. If a core wakes up for a rude request,
|
|
* it need not wait for another to finish its cluster selection and
|
|
* configuration process
|
|
*/
|
|
|
|
if (!cpumask_equal(&cluster->num_children_in_sync,
|
|
&cluster->child_cpus))
|
|
goto failed;
|
|
|
|
i = cluster_select(cluster, from_idle, &predicted);
|
|
|
|
if (((i < 0) || (i == cluster->default_level))
|
|
&& predicted && from_idle) {
|
|
update_cluster_history_time(&cluster->history,
|
|
-1, ktime_to_us(ktime_get()));
|
|
|
|
if (i < 0) {
|
|
struct power_params *pwr_params =
|
|
&cluster->levels[0].pwr;
|
|
|
|
clusttimer_start(cluster,
|
|
pwr_params->max_residency +
|
|
cluster->tmr_add);
|
|
|
|
goto failed;
|
|
}
|
|
}
|
|
|
|
if (i < 0)
|
|
goto failed;
|
|
|
|
if (cluster_configure(cluster, i, from_idle, predicted))
|
|
goto failed;
|
|
|
|
if (!IS_ERR_OR_NULL(cluster->stats))
|
|
cluster->stats->sleep_time = start_time;
|
|
cluster_prepare(cluster->parent, &cluster->num_children_in_sync, i,
|
|
from_idle, start_time);
|
|
|
|
spin_unlock(&cluster->sync_lock);
|
|
return;
|
|
failed:
|
|
spin_unlock(&cluster->sync_lock);
|
|
if (!IS_ERR_OR_NULL(cluster->stats))
|
|
cluster->stats->sleep_time = 0;
|
|
}
|
|
|
|
static void cluster_unprepare(struct lpm_cluster *cluster,
|
|
const struct cpumask *cpu, int child_idx, bool from_idle,
|
|
int64_t end_time, bool success)
|
|
{
|
|
struct lpm_cluster_level *level;
|
|
bool first_cpu;
|
|
int last_level, i;
|
|
|
|
if (!cluster)
|
|
return;
|
|
|
|
if (cluster->min_child_level > child_idx)
|
|
return;
|
|
|
|
spin_lock(&cluster->sync_lock);
|
|
last_level = cluster->default_level;
|
|
first_cpu = cpumask_equal(&cluster->num_children_in_sync,
|
|
&cluster->child_cpus);
|
|
cpumask_andnot(&cluster->num_children_in_sync,
|
|
&cluster->num_children_in_sync, cpu);
|
|
|
|
for (i = 0; i < cluster->nlevels; i++) {
|
|
struct lpm_cluster_level *lvl = &cluster->levels[i];
|
|
|
|
if (child_idx >= lvl->min_child_level)
|
|
cpumask_andnot(&lvl->num_cpu_votes,
|
|
&lvl->num_cpu_votes, cpu);
|
|
}
|
|
|
|
if (from_idle && first_cpu &&
|
|
(cluster->last_level == cluster->default_level))
|
|
update_cluster_history(&cluster->history, cluster->last_level);
|
|
|
|
if (!first_cpu || cluster->last_level == cluster->default_level)
|
|
goto unlock_return;
|
|
|
|
if (!IS_ERR_OR_NULL(cluster->stats) && cluster->stats->sleep_time)
|
|
cluster->stats->sleep_time = end_time -
|
|
cluster->stats->sleep_time;
|
|
lpm_stats_cluster_exit(cluster->stats, cluster->last_level, success);
|
|
|
|
level = &cluster->levels[cluster->last_level];
|
|
|
|
if (level->notify_rpm)
|
|
if (sys_pm_ops && sys_pm_ops->exit)
|
|
sys_pm_ops->exit(success);
|
|
|
|
trace_cluster_exit(cluster->cluster_name, cluster->last_level,
|
|
cluster->num_children_in_sync.bits[0],
|
|
cluster->child_cpus.bits[0], from_idle);
|
|
|
|
sec_debug_cluster_lpm_log(cluster->cluster_name, cluster->last_level,
|
|
cluster->num_children_in_sync.bits[0],
|
|
cluster->child_cpus.bits[0], from_idle, 0);
|
|
|
|
last_level = cluster->last_level;
|
|
cluster->last_level = cluster->default_level;
|
|
|
|
cluster_notify(cluster, &cluster->levels[last_level], false);
|
|
|
|
if (from_idle)
|
|
update_cluster_history(&cluster->history, last_level);
|
|
|
|
cluster_unprepare(cluster->parent, &cluster->child_cpus,
|
|
last_level, from_idle, end_time, success);
|
|
unlock_return:
|
|
spin_unlock(&cluster->sync_lock);
|
|
}
|
|
|
|
static inline void cpu_prepare(struct lpm_cpu *cpu, int cpu_index,
|
|
bool from_idle)
|
|
{
|
|
struct lpm_cpu_level *cpu_level = &cpu->levels[cpu_index];
|
|
|
|
/* Use broadcast timer for aggregating sleep mode within a cluster.
|
|
* A broadcast timer could be used in the following scenarios
|
|
* 1) The architected timer HW gets reset during certain low power
|
|
* modes and the core relies on a external(broadcast) timer to wake up
|
|
* from sleep. This information is passed through device tree.
|
|
* 2) The CPU low power mode could trigger a system low power mode.
|
|
* The low power module relies on Broadcast timer to aggregate the
|
|
* next wakeup within a cluster, in which case, CPU switches over to
|
|
* use broadcast timer.
|
|
*/
|
|
|
|
if (from_idle && cpu_level->is_reset)
|
|
cpu_pm_enter();
|
|
|
|
}
|
|
|
|
static inline void cpu_unprepare(struct lpm_cpu *cpu, int cpu_index,
|
|
bool from_idle)
|
|
{
|
|
struct lpm_cpu_level *cpu_level = &cpu->levels[cpu_index];
|
|
|
|
if (from_idle && cpu_level->is_reset)
|
|
cpu_pm_exit();
|
|
}
|
|
|
|
static int get_cluster_id(struct lpm_cluster *cluster, int *aff_lvl,
|
|
bool from_idle)
|
|
{
|
|
int state_id = 0;
|
|
|
|
if (!cluster)
|
|
return 0;
|
|
|
|
spin_lock(&cluster->sync_lock);
|
|
|
|
if (!cpumask_equal(&cluster->num_children_in_sync,
|
|
&cluster->child_cpus))
|
|
goto unlock_and_return;
|
|
|
|
state_id += get_cluster_id(cluster->parent, aff_lvl, from_idle);
|
|
|
|
if (cluster->last_level != cluster->default_level) {
|
|
struct lpm_cluster_level *level
|
|
= &cluster->levels[cluster->last_level];
|
|
|
|
state_id += (level->psci_id & cluster->psci_mode_mask)
|
|
<< cluster->psci_mode_shift;
|
|
|
|
/*
|
|
* We may have updated the broadcast timers, update
|
|
* the wakeup value by reading the bc timer directly.
|
|
*/
|
|
if (level->notify_rpm)
|
|
if (sys_pm_ops && sys_pm_ops->update_wakeup)
|
|
sys_pm_ops->update_wakeup(from_idle);
|
|
if (cluster->psci_mode_shift)
|
|
(*aff_lvl)++;
|
|
}
|
|
unlock_and_return:
|
|
spin_unlock(&cluster->sync_lock);
|
|
return state_id;
|
|
}
|
|
|
|
static bool psci_enter_sleep(struct lpm_cpu *cpu, int idx, bool from_idle)
|
|
{
|
|
int affinity_level = 0, state_id = 0, power_state = 0;
|
|
bool success = false;
|
|
/*
|
|
* idx = 0 is the default LPM state
|
|
*/
|
|
|
|
if (!idx) {
|
|
if (cpu->bias)
|
|
biastimer_start(cpu->bias);
|
|
stop_critical_timings();
|
|
cpu_do_idle();
|
|
start_critical_timings();
|
|
return 1;
|
|
}
|
|
|
|
if (from_idle && cpu->levels[idx].use_bc_timer) {
|
|
if (tick_broadcast_enter())
|
|
return success;
|
|
}
|
|
|
|
state_id = get_cluster_id(cpu->parent, &affinity_level, from_idle);
|
|
power_state = PSCI_POWER_STATE(cpu->levels[idx].is_reset);
|
|
affinity_level = PSCI_AFFINITY_LEVEL(affinity_level);
|
|
state_id += power_state + affinity_level + cpu->levels[idx].psci_id;
|
|
|
|
stop_critical_timings();
|
|
|
|
success = !arm_cpuidle_suspend(state_id);
|
|
|
|
start_critical_timings();
|
|
|
|
if (from_idle && cpu->levels[idx].use_bc_timer)
|
|
tick_broadcast_exit();
|
|
|
|
return success;
|
|
}
|
|
|
|
static int lpm_cpuidle_select(struct cpuidle_driver *drv,
|
|
struct cpuidle_device *dev, bool *stop_tick)
|
|
{
|
|
struct lpm_cpu *cpu = per_cpu(cpu_lpm, dev->cpu);
|
|
|
|
if (!cpu)
|
|
return 0;
|
|
|
|
return cpu_power_select(dev, cpu);
|
|
}
|
|
|
|
void update_ipi_history(int cpu)
|
|
{
|
|
struct ipi_history *history = &per_cpu(cpu_ipi_history, cpu);
|
|
ktime_t now = ktime_get();
|
|
|
|
history->interval[history->current_ptr] =
|
|
ktime_to_us(ktime_sub(now,
|
|
history->cpu_idle_resched_ts));
|
|
(history->current_ptr)++;
|
|
if (history->current_ptr >= MAXSAMPLES)
|
|
history->current_ptr = 0;
|
|
history->cpu_idle_resched_ts = now;
|
|
}
|
|
|
|
static void update_history(struct cpuidle_device *dev, int idx)
|
|
{
|
|
struct lpm_history *history = &per_cpu(hist, dev->cpu);
|
|
uint32_t tmr = 0;
|
|
struct lpm_cpu *lpm_cpu = per_cpu(cpu_lpm, dev->cpu);
|
|
|
|
if (!lpm_prediction || !lpm_cpu->lpm_prediction)
|
|
return;
|
|
|
|
if (history->htmr_wkup) {
|
|
if (!history->hptr)
|
|
history->hptr = MAXSAMPLES-1;
|
|
else
|
|
history->hptr--;
|
|
|
|
history->resi[history->hptr] += dev->last_residency;
|
|
history->htmr_wkup = 0;
|
|
tmr = 1;
|
|
} else
|
|
history->resi[history->hptr] = dev->last_residency;
|
|
|
|
history->mode[history->hptr] = idx;
|
|
|
|
trace_cpu_pred_hist(history->mode[history->hptr],
|
|
history->resi[history->hptr], history->hptr, tmr);
|
|
|
|
if (history->nsamp < MAXSAMPLES)
|
|
history->nsamp++;
|
|
|
|
(history->hptr)++;
|
|
if (history->hptr >= MAXSAMPLES)
|
|
history->hptr = 0;
|
|
}
|
|
|
|
static int lpm_cpuidle_enter(struct cpuidle_device *dev,
|
|
struct cpuidle_driver *drv, int idx)
|
|
{
|
|
struct lpm_cpu *cpu = per_cpu(cpu_lpm, dev->cpu);
|
|
bool success = false;
|
|
const struct cpumask *cpumask = get_cpu_mask(dev->cpu);
|
|
ktime_t start = ktime_get();
|
|
uint64_t start_time = ktime_to_ns(start), end_time;
|
|
|
|
cpu_prepare(cpu, idx, true);
|
|
cluster_prepare(cpu->parent, cpumask, idx, true, start_time);
|
|
|
|
trace_cpu_idle_enter(idx);
|
|
lpm_stats_cpu_enter(idx, start_time);
|
|
|
|
if (need_resched())
|
|
goto exit;
|
|
|
|
/* FIXME : remove secdbg logging for reducing cpu hang issues */
|
|
#if 0 //#ifdef CONFIG_SEC_DEBUG_POWER_LOG
|
|
sec_debug_cpu_lpm_log(dev->cpu, idx, 0, 1);
|
|
sec_debug_sched_msg("+Idle(%s)", cluster->cpu->levels[idx].name);
|
|
success = psci_enter_sleep(cpu, idx, true);
|
|
sec_debug_sched_msg("-Idle(%s)", cluster->cpu->levels[idx].name);
|
|
#else
|
|
cpuidle_set_idle_cpu(dev->cpu);
|
|
success = psci_enter_sleep(cpu, idx, true);
|
|
cpuidle_clear_idle_cpu(dev->cpu);
|
|
#endif
|
|
|
|
exit:
|
|
end_time = ktime_to_ns(ktime_get());
|
|
lpm_stats_cpu_exit(idx, end_time, success);
|
|
|
|
cluster_unprepare(cpu->parent, cpumask, idx, true, end_time, success);
|
|
cpu_unprepare(cpu, idx, true);
|
|
dev->last_residency = ktime_us_delta(ktime_get(), start);
|
|
update_history(dev, idx);
|
|
trace_cpu_idle_exit(idx, success);
|
|
sec_debug_cpu_lpm_log(dev->cpu, idx, success, 0);
|
|
|
|
if (lpm_prediction && cpu->lpm_prediction) {
|
|
histtimer_cancel();
|
|
clusttimer_cancel();
|
|
}
|
|
if (cpu->bias) {
|
|
biastimer_cancel();
|
|
cpu->bias = 0;
|
|
}
|
|
local_irq_enable();
|
|
return idx;
|
|
}
|
|
|
|
static void lpm_cpuidle_s2idle(struct cpuidle_device *dev,
|
|
struct cpuidle_driver *drv, int idx)
|
|
{
|
|
struct lpm_cpu *cpu = per_cpu(cpu_lpm, dev->cpu);
|
|
const struct cpumask *cpumask = get_cpu_mask(dev->cpu);
|
|
bool success = false;
|
|
|
|
for (; idx >= 0; idx--) {
|
|
if (lpm_cpu_mode_allow(dev->cpu, idx, false))
|
|
break;
|
|
}
|
|
if (idx < 0) {
|
|
pr_err("Failed suspend\n");
|
|
return;
|
|
}
|
|
|
|
cpu_prepare(cpu, idx, true);
|
|
cluster_prepare(cpu->parent, cpumask, idx, false, 0);
|
|
|
|
success = psci_enter_sleep(cpu, idx, false);
|
|
|
|
cluster_unprepare(cpu->parent, cpumask, idx, false, 0, success);
|
|
cpu_unprepare(cpu, idx, true);
|
|
}
|
|
|
|
#ifdef CONFIG_CPU_IDLE_MULTIPLE_DRIVERS
|
|
static int cpuidle_register_cpu(struct cpuidle_driver *drv,
|
|
struct cpumask *mask)
|
|
{
|
|
struct cpuidle_device *device;
|
|
int cpu, ret;
|
|
|
|
|
|
if (!mask || !drv)
|
|
return -EINVAL;
|
|
|
|
drv->cpumask = mask;
|
|
ret = cpuidle_register_driver(drv);
|
|
if (ret) {
|
|
pr_err("Failed to register cpuidle driver %d\n", ret);
|
|
goto failed_driver_register;
|
|
}
|
|
|
|
for_each_cpu(cpu, mask) {
|
|
device = &per_cpu(cpuidle_dev, cpu);
|
|
device->cpu = cpu;
|
|
|
|
ret = cpuidle_register_device(device);
|
|
if (ret) {
|
|
pr_err("Failed to register cpuidle driver for cpu:%u\n",
|
|
cpu);
|
|
goto failed_driver_register;
|
|
}
|
|
}
|
|
return ret;
|
|
failed_driver_register:
|
|
for_each_cpu(cpu, mask)
|
|
cpuidle_unregister_driver(drv);
|
|
return ret;
|
|
}
|
|
#else
|
|
static int cpuidle_register_cpu(struct cpuidle_driver *drv,
|
|
struct cpumask *mask)
|
|
{
|
|
return cpuidle_register(drv, NULL);
|
|
}
|
|
#endif
|
|
|
|
static struct cpuidle_governor lpm_governor = {
|
|
.name = "qcom",
|
|
.rating = 30,
|
|
.select = lpm_cpuidle_select,
|
|
};
|
|
|
|
static int cluster_cpuidle_register(struct lpm_cluster *cl)
|
|
{
|
|
int i = 0, ret = 0;
|
|
unsigned int cpu;
|
|
struct lpm_cluster *p = NULL;
|
|
struct lpm_cpu *lpm_cpu;
|
|
|
|
if (list_empty(&cl->cpu)) {
|
|
struct lpm_cluster *n;
|
|
|
|
list_for_each_entry(n, &cl->child, list) {
|
|
ret = cluster_cpuidle_register(n);
|
|
if (ret)
|
|
break;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
list_for_each_entry(lpm_cpu, &cl->cpu, list) {
|
|
lpm_cpu->drv = kcalloc(1, sizeof(*lpm_cpu->drv), GFP_KERNEL);
|
|
if (!lpm_cpu->drv)
|
|
return -ENOMEM;
|
|
|
|
lpm_cpu->drv->name = "msm_idle";
|
|
|
|
for (i = 0; i < lpm_cpu->nlevels; i++) {
|
|
struct cpuidle_state *st = &lpm_cpu->drv->states[i];
|
|
struct lpm_cpu_level *cpu_level = &lpm_cpu->levels[i];
|
|
|
|
snprintf(st->name, CPUIDLE_NAME_LEN, "C%u\n", i);
|
|
snprintf(st->desc, CPUIDLE_DESC_LEN, "%s",
|
|
cpu_level->name);
|
|
st->flags = 0;
|
|
st->exit_latency = cpu_level->pwr.exit_latency;
|
|
st->target_residency = 0;
|
|
st->enter = lpm_cpuidle_enter;
|
|
if (i == lpm_cpu->nlevels - 1)
|
|
st->enter_s2idle = lpm_cpuidle_s2idle;
|
|
}
|
|
|
|
lpm_cpu->drv->state_count = lpm_cpu->nlevels;
|
|
lpm_cpu->drv->safe_state_index = 0;
|
|
for_each_cpu(cpu, &lpm_cpu->related_cpus)
|
|
per_cpu(cpu_lpm, cpu) = lpm_cpu;
|
|
|
|
for_each_possible_cpu(cpu) {
|
|
if (cpu_online(cpu))
|
|
continue;
|
|
if (per_cpu(cpu_lpm, cpu))
|
|
p = per_cpu(cpu_lpm, cpu)->parent;
|
|
while (p) {
|
|
int j;
|
|
|
|
spin_lock(&p->sync_lock);
|
|
cpumask_set_cpu(cpu, &p->num_children_in_sync);
|
|
for (j = 0; j < p->nlevels; j++)
|
|
cpumask_copy(
|
|
&p->levels[j].num_cpu_votes,
|
|
&p->num_children_in_sync);
|
|
spin_unlock(&p->sync_lock);
|
|
p = p->parent;
|
|
}
|
|
}
|
|
ret = cpuidle_register_cpu(lpm_cpu->drv,
|
|
&lpm_cpu->related_cpus);
|
|
|
|
if (ret) {
|
|
kfree(lpm_cpu->drv);
|
|
return -ENOMEM;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* init_lpm - initializes the governor
|
|
*/
|
|
static int __init init_lpm(void)
|
|
{
|
|
return cpuidle_register_governor(&lpm_governor);
|
|
}
|
|
|
|
postcore_initcall(init_lpm);
|
|
|
|
static void register_cpu_lpm_stats(struct lpm_cpu *cpu,
|
|
struct lpm_cluster *parent)
|
|
{
|
|
const char **level_name;
|
|
int i;
|
|
|
|
level_name = kcalloc(cpu->nlevels, sizeof(*level_name), GFP_KERNEL);
|
|
|
|
if (!level_name)
|
|
return;
|
|
|
|
for (i = 0; i < cpu->nlevels; i++)
|
|
level_name[i] = cpu->levels[i].name;
|
|
|
|
lpm_stats_config_level("cpu", level_name, cpu->nlevels,
|
|
parent->stats, &cpu->related_cpus);
|
|
|
|
kfree(level_name);
|
|
}
|
|
|
|
static void register_cluster_lpm_stats(struct lpm_cluster *cl,
|
|
struct lpm_cluster *parent)
|
|
{
|
|
const char **level_name;
|
|
struct lpm_cluster *child;
|
|
struct lpm_cpu *cpu;
|
|
int i;
|
|
|
|
if (!cl)
|
|
return;
|
|
|
|
level_name = kcalloc(cl->nlevels, sizeof(*level_name), GFP_KERNEL);
|
|
|
|
if (!level_name)
|
|
return;
|
|
|
|
for (i = 0; i < cl->nlevels; i++)
|
|
level_name[i] = cl->levels[i].level_name;
|
|
|
|
cl->stats = lpm_stats_config_level(cl->cluster_name, level_name,
|
|
cl->nlevels, parent ? parent->stats : NULL, NULL);
|
|
if (IS_ERR_OR_NULL(cl->stats))
|
|
pr_info("Cluster (%s) stats not registered\n",
|
|
cl->cluster_name);
|
|
|
|
kfree(level_name);
|
|
|
|
list_for_each_entry(cpu, &cl->cpu, list) {
|
|
pr_err("%s()\n", __func__);
|
|
register_cpu_lpm_stats(cpu, cl);
|
|
}
|
|
if (!list_empty(&cl->cpu))
|
|
return;
|
|
|
|
list_for_each_entry(child, &cl->child, list)
|
|
register_cluster_lpm_stats(child, cl);
|
|
}
|
|
|
|
#ifdef CONFIG_SEC_PM_DEBUG
|
|
extern ssize_t print_gpio_exp(char *buf);
|
|
#endif
|
|
|
|
static int lpm_suspend_prepare(void)
|
|
{
|
|
suspend_in_progress = true;
|
|
|
|
#ifdef CONFIG_SEC_GPIO_DVS
|
|
/************************ Caution !!! ****************************
|
|
* This functiongit a must be located in appropriate SLEEP position
|
|
* in accordance with the specification of each BB vendor.
|
|
************************ Caution !!! ****************************/
|
|
gpio_dvs_check_sleepgpio();
|
|
#ifdef SECGPIO_SLEEP_DEBUGGING
|
|
/************************ Caution !!! ****************************/
|
|
/* This func. must be located in an appropriate position for GPIO SLEEP debugging
|
|
* in accordance with the specification of each BB vendor, and
|
|
* the func. must be called after calling the function "gpio_dvs_check_sleepgpio"
|
|
*/
|
|
/************************ Caution !!! ****************************/
|
|
gpio_dvs_set_sleepgpio();
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef CONFIG_SEC_PM
|
|
regulator_showall_enabled();
|
|
#endif
|
|
#ifdef CONFIG_SEC_PM_DEBUG
|
|
sec_clock_debug_print_enabled();
|
|
#endif
|
|
|
|
#ifdef CONFIG_SEC_PM_DEBUG
|
|
if (msm_pm_sleep_sec_debug) {
|
|
msm_gpio_print_enabled();
|
|
sec_gpio_debug_print();
|
|
print_gpio_exp(NULL);
|
|
}
|
|
#endif
|
|
lpm_stats_suspend_enter();
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void lpm_suspend_wake(void)
|
|
{
|
|
suspend_in_progress = false;
|
|
lpm_stats_suspend_exit();
|
|
|
|
#ifdef CONFIG_SEC_PM_DEBUG
|
|
sec_debug_print_sleep_time();
|
|
#endif
|
|
}
|
|
|
|
static int lpm_suspend_enter(suspend_state_t state)
|
|
{
|
|
int cpu = raw_smp_processor_id();
|
|
struct lpm_cpu *lpm_cpu = per_cpu(cpu_lpm, cpu);
|
|
struct lpm_cluster *cluster = lpm_cpu->parent;
|
|
const struct cpumask *cpumask = get_cpu_mask(cpu);
|
|
int idx;
|
|
bool success;
|
|
|
|
for (idx = lpm_cpu->nlevels - 1; idx >= 0; idx--) {
|
|
if (lpm_cpu_mode_allow(cpu, idx, false))
|
|
break;
|
|
}
|
|
if (idx < 0) {
|
|
pr_err("Failed suspend\n");
|
|
return 0;
|
|
}
|
|
cpu_prepare(lpm_cpu, idx, false);
|
|
cluster_prepare(cluster, cpumask, idx, false, 0);
|
|
|
|
success = psci_enter_sleep(lpm_cpu, idx, false);
|
|
|
|
cluster_unprepare(cluster, cpumask, idx, false, 0, success);
|
|
cpu_unprepare(lpm_cpu, idx, false);
|
|
return 0;
|
|
}
|
|
|
|
static const struct platform_suspend_ops lpm_suspend_ops = {
|
|
.enter = lpm_suspend_enter,
|
|
.valid = suspend_valid_only_mem,
|
|
.prepare_late = lpm_suspend_prepare,
|
|
.wake = lpm_suspend_wake,
|
|
};
|
|
|
|
static const struct platform_s2idle_ops lpm_s2idle_ops = {
|
|
.prepare = lpm_suspend_prepare,
|
|
.restore = lpm_suspend_wake,
|
|
};
|
|
|
|
static int lpm_probe(struct platform_device *pdev)
|
|
{
|
|
int ret;
|
|
unsigned int cpu;
|
|
struct hrtimer *cpu_histtimer;
|
|
struct kobject *module_kobj = NULL;
|
|
|
|
get_online_cpus();
|
|
lpm_root_node = lpm_of_parse_cluster(pdev);
|
|
|
|
if (IS_ERR_OR_NULL(lpm_root_node)) {
|
|
pr_err("Failed to probe low power modes\n");
|
|
put_online_cpus();
|
|
return PTR_ERR(lpm_root_node);
|
|
}
|
|
|
|
if (print_parsed_dt)
|
|
cluster_dt_walkthrough(lpm_root_node);
|
|
|
|
/*
|
|
* Register hotplug notifier before broadcast time to ensure there
|
|
* to prevent race where a broadcast timer might not be setup on for a
|
|
* core. BUG in existing code but no known issues possibly because of
|
|
* how late lpm_levels gets initialized.
|
|
*/
|
|
suspend_set_ops(&lpm_suspend_ops);
|
|
s2idle_set_ops(&lpm_s2idle_ops);
|
|
hrtimer_init(&lpm_hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
|
|
for_each_possible_cpu(cpu) {
|
|
cpu_histtimer = &per_cpu(histtimer, cpu);
|
|
hrtimer_init(cpu_histtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
|
|
cpu_histtimer = &per_cpu(biastimer, cpu);
|
|
hrtimer_init(cpu_histtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
|
|
}
|
|
|
|
cluster_timer_init(lpm_root_node);
|
|
|
|
register_cluster_lpm_stats(lpm_root_node, NULL);
|
|
|
|
ret = cluster_cpuidle_register(lpm_root_node);
|
|
put_online_cpus();
|
|
if (ret) {
|
|
pr_err("Failed to register with cpuidle framework\n");
|
|
goto failed;
|
|
}
|
|
|
|
ret = cpuhp_setup_state(CPUHP_AP_QCOM_SLEEP_STARTING,
|
|
"AP_QCOM_SLEEP_STARTING",
|
|
lpm_starting_cpu, lpm_dying_cpu);
|
|
if (ret)
|
|
goto failed;
|
|
|
|
module_kobj = kset_find_obj(module_kset, KBUILD_MODNAME);
|
|
if (!module_kobj) {
|
|
pr_err("Cannot find kobject for module %s\n", KBUILD_MODNAME);
|
|
ret = -ENOENT;
|
|
goto failed;
|
|
}
|
|
|
|
ret = create_cluster_lvl_nodes(lpm_root_node, module_kobj);
|
|
if (ret) {
|
|
pr_err("Failed to create cluster level nodes\n");
|
|
goto failed;
|
|
}
|
|
|
|
return 0;
|
|
failed:
|
|
free_cluster_node(lpm_root_node);
|
|
lpm_root_node = NULL;
|
|
return ret;
|
|
}
|
|
|
|
static const struct of_device_id lpm_mtch_tbl[] = {
|
|
{.compatible = "qcom,lpm-levels"},
|
|
{},
|
|
};
|
|
|
|
static struct platform_driver lpm_driver = {
|
|
.probe = lpm_probe,
|
|
.driver = {
|
|
.name = "lpm-levels",
|
|
.owner = THIS_MODULE,
|
|
.suppress_bind_attrs = true,
|
|
.of_match_table = lpm_mtch_tbl,
|
|
},
|
|
};
|
|
|
|
static int __init lpm_levels_module_init(void)
|
|
{
|
|
int rc;
|
|
|
|
#ifdef CONFIG_ARM
|
|
int cpu;
|
|
|
|
for_each_possible_cpu(cpu) {
|
|
rc = arm_cpuidle_init(cpu);
|
|
if (rc) {
|
|
pr_err("CPU%d ARM CPUidle init failed (%d)\n", cpu, rc);
|
|
return rc;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
rc = platform_driver_register(&lpm_driver);
|
|
if (rc)
|
|
pr_info("Error registering %s rc=%d\n", lpm_driver.driver.name,
|
|
rc);
|
|
|
|
return rc;
|
|
}
|
|
late_initcall(lpm_levels_module_init);
|
|
|