2018-12-14 04:10:24 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2018, The Linux Foundation. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/bitfield.h>
|
2022-11-17 05:31:44 +00:00
|
|
|
#include <linux/clk-provider.h>
|
2018-12-14 04:10:24 +00:00
|
|
|
#include <linux/cpufreq.h>
|
|
|
|
#include <linux/init.h>
|
2020-06-22 08:16:48 +00:00
|
|
|
#include <linux/interconnect.h>
|
2021-08-09 19:16:01 +00:00
|
|
|
#include <linux/interrupt.h>
|
2018-12-14 04:10:24 +00:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/of_address.h>
|
|
|
|
#include <linux/of_platform.h>
|
2019-01-31 17:32:50 +00:00
|
|
|
#include <linux/pm_opp.h>
|
2022-09-26 08:34:05 +00:00
|
|
|
#include <linux/pm_qos.h>
|
2018-12-14 04:10:24 +00:00
|
|
|
#include <linux/slab.h>
|
2021-08-09 19:16:01 +00:00
|
|
|
#include <linux/spinlock.h>
|
2022-06-10 07:53:09 +00:00
|
|
|
#include <linux/units.h>
|
2018-12-14 04:10:24 +00:00
|
|
|
|
|
|
|
#define LUT_MAX_ENTRIES 40U
|
|
|
|
#define LUT_SRC GENMASK(31, 30)
|
|
|
|
#define LUT_L_VAL GENMASK(7, 0)
|
|
|
|
#define LUT_CORE_COUNT GENMASK(18, 16)
|
2019-01-31 17:32:50 +00:00
|
|
|
#define LUT_VOLT GENMASK(11, 0)
|
2018-12-14 04:10:24 +00:00
|
|
|
#define CLK_HW_DIV 2
|
2019-08-07 11:45:43 +00:00
|
|
|
#define LUT_TURBO_IND 1
|
2018-12-14 04:10:24 +00:00
|
|
|
|
2022-04-07 20:09:19 +00:00
|
|
|
#define GT_IRQ_STATUS BIT(2)
|
|
|
|
|
2020-09-15 07:24:22 +00:00
|
|
|
struct qcom_cpufreq_soc_data {
|
|
|
|
u32 reg_enable;
|
2022-04-01 07:14:24 +00:00
|
|
|
u32 reg_domain_state;
|
2022-02-10 05:01:17 +00:00
|
|
|
u32 reg_dcvs_ctrl;
|
2020-09-15 07:24:22 +00:00
|
|
|
u32 reg_freq_lut;
|
|
|
|
u32 reg_volt_lut;
|
2022-04-07 20:09:19 +00:00
|
|
|
u32 reg_intr_clr;
|
2021-08-09 19:16:01 +00:00
|
|
|
u32 reg_current_vote;
|
2020-09-15 07:24:22 +00:00
|
|
|
u32 reg_perf_state;
|
|
|
|
u8 lut_row_size;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct qcom_cpufreq_data {
|
|
|
|
void __iomem *base;
|
2021-01-19 02:39:25 +00:00
|
|
|
struct resource *res;
|
2021-08-09 19:16:01 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Mutex to synchronize between de-init sequence and re-starting LMh
|
|
|
|
* polling/interrupts
|
|
|
|
*/
|
|
|
|
struct mutex throttle_lock;
|
|
|
|
int throttle_irq;
|
2021-11-11 15:48:06 +00:00
|
|
|
char irq_name[15];
|
2021-08-09 19:16:01 +00:00
|
|
|
bool cancel_throttle;
|
|
|
|
struct delayed_work throttle_work;
|
|
|
|
struct cpufreq_policy *policy;
|
2022-11-17 05:31:44 +00:00
|
|
|
struct clk_hw cpu_clk;
|
2022-02-10 05:01:17 +00:00
|
|
|
|
|
|
|
bool per_core_dcvs;
|
2022-09-26 08:34:05 +00:00
|
|
|
|
|
|
|
struct freq_qos_request throttle_freq_req;
|
2020-09-15 07:24:22 +00:00
|
|
|
};
|
2018-12-14 04:10:24 +00:00
|
|
|
|
2022-11-02 09:00:36 +00:00
|
|
|
static struct {
|
|
|
|
struct qcom_cpufreq_data *data;
|
2022-11-02 09:00:38 +00:00
|
|
|
const struct qcom_cpufreq_soc_data *soc_data;
|
2022-11-02 09:00:36 +00:00
|
|
|
} qcom_cpufreq;
|
|
|
|
|
2018-12-14 04:10:24 +00:00
|
|
|
static unsigned long cpu_hw_rate, xo_rate;
|
2020-06-22 08:16:48 +00:00
|
|
|
static bool icc_scaling_enabled;
|
|
|
|
|
|
|
|
static int qcom_cpufreq_set_bw(struct cpufreq_policy *policy,
|
|
|
|
unsigned long freq_khz)
|
|
|
|
{
|
|
|
|
unsigned long freq_hz = freq_khz * 1000;
|
|
|
|
struct dev_pm_opp *opp;
|
|
|
|
struct device *dev;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
dev = get_cpu_device(policy->cpu);
|
|
|
|
if (!dev)
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
opp = dev_pm_opp_find_freq_exact(dev, freq_hz, true);
|
|
|
|
if (IS_ERR(opp))
|
|
|
|
return PTR_ERR(opp);
|
|
|
|
|
2021-01-21 09:57:55 +00:00
|
|
|
ret = dev_pm_opp_set_opp(dev, opp);
|
2020-06-22 08:16:48 +00:00
|
|
|
dev_pm_opp_put(opp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int qcom_cpufreq_update_opp(struct device *cpu_dev,
|
|
|
|
unsigned long freq_khz,
|
|
|
|
unsigned long volt)
|
|
|
|
{
|
|
|
|
unsigned long freq_hz = freq_khz * 1000;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Skip voltage update if the opp table is not available */
|
|
|
|
if (!icc_scaling_enabled)
|
|
|
|
return dev_pm_opp_add(cpu_dev, freq_hz, volt);
|
|
|
|
|
|
|
|
ret = dev_pm_opp_adjust_voltage(cpu_dev, freq_hz, volt, volt, volt);
|
|
|
|
if (ret) {
|
|
|
|
dev_err(cpu_dev, "Voltage update failed freq=%ld\n", freq_khz);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return dev_pm_opp_enable(cpu_dev, freq_hz);
|
|
|
|
}
|
2018-12-14 04:10:24 +00:00
|
|
|
|
|
|
|
static int qcom_cpufreq_hw_target_index(struct cpufreq_policy *policy,
|
|
|
|
unsigned int index)
|
|
|
|
{
|
2020-09-15 07:24:22 +00:00
|
|
|
struct qcom_cpufreq_data *data = policy->driver_data;
|
2022-11-02 09:00:38 +00:00
|
|
|
const struct qcom_cpufreq_soc_data *soc_data = qcom_cpufreq.soc_data;
|
2019-08-08 13:18:57 +00:00
|
|
|
unsigned long freq = policy->freq_table[index].frequency;
|
2022-02-10 05:01:17 +00:00
|
|
|
unsigned int i;
|
2018-12-14 04:10:24 +00:00
|
|
|
|
2020-09-15 07:24:22 +00:00
|
|
|
writel_relaxed(index, data->base + soc_data->reg_perf_state);
|
2018-12-14 04:10:24 +00:00
|
|
|
|
2022-02-10 05:01:17 +00:00
|
|
|
if (data->per_core_dcvs)
|
|
|
|
for (i = 1; i < cpumask_weight(policy->related_cpus); i++)
|
|
|
|
writel_relaxed(index, data->base + soc_data->reg_perf_state + i * 4);
|
|
|
|
|
2020-06-22 08:16:48 +00:00
|
|
|
if (icc_scaling_enabled)
|
|
|
|
qcom_cpufreq_set_bw(policy, freq);
|
|
|
|
|
2018-12-14 04:10:24 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-11-17 05:31:45 +00:00
|
|
|
static unsigned long qcom_lmh_get_throttle_freq(struct qcom_cpufreq_data *data)
|
|
|
|
{
|
|
|
|
unsigned int lval;
|
|
|
|
|
|
|
|
if (qcom_cpufreq.soc_data->reg_current_vote)
|
|
|
|
lval = readl_relaxed(data->base + qcom_cpufreq.soc_data->reg_current_vote) & 0x3ff;
|
|
|
|
else
|
|
|
|
lval = readl_relaxed(data->base + qcom_cpufreq.soc_data->reg_domain_state) & 0xff;
|
|
|
|
|
|
|
|
return lval * xo_rate;
|
|
|
|
}
|
|
|
|
|
2023-02-02 22:00:23 +00:00
|
|
|
/* Get the frequency requested by the cpufreq core for the CPU */
|
|
|
|
static unsigned int qcom_cpufreq_get_freq(unsigned int cpu)
|
2022-11-17 05:31:45 +00:00
|
|
|
{
|
|
|
|
struct qcom_cpufreq_data *data;
|
2023-02-02 22:00:23 +00:00
|
|
|
const struct qcom_cpufreq_soc_data *soc_data;
|
2022-11-17 05:31:45 +00:00
|
|
|
struct cpufreq_policy *policy;
|
2023-02-02 22:00:23 +00:00
|
|
|
unsigned int index;
|
2022-11-17 05:31:45 +00:00
|
|
|
|
|
|
|
policy = cpufreq_cpu_get_raw(cpu);
|
|
|
|
if (!policy)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
data = policy->driver_data;
|
2023-02-02 22:00:23 +00:00
|
|
|
soc_data = qcom_cpufreq.soc_data;
|
2022-11-17 05:31:45 +00:00
|
|
|
|
2023-02-02 22:00:23 +00:00
|
|
|
index = readl_relaxed(data->base + soc_data->reg_perf_state);
|
|
|
|
index = min(index, LUT_MAX_ENTRIES - 1);
|
|
|
|
|
|
|
|
return policy->freq_table[index].frequency;
|
2022-11-17 05:31:45 +00:00
|
|
|
}
|
|
|
|
|
2023-02-02 22:00:23 +00:00
|
|
|
static unsigned int qcom_cpufreq_hw_get(unsigned int cpu)
|
2018-12-14 04:10:24 +00:00
|
|
|
{
|
2020-09-15 07:24:22 +00:00
|
|
|
struct qcom_cpufreq_data *data;
|
2018-12-14 04:10:24 +00:00
|
|
|
struct cpufreq_policy *policy;
|
|
|
|
|
|
|
|
policy = cpufreq_cpu_get_raw(cpu);
|
|
|
|
if (!policy)
|
|
|
|
return 0;
|
|
|
|
|
2020-09-15 07:24:22 +00:00
|
|
|
data = policy->driver_data;
|
2018-12-14 04:10:24 +00:00
|
|
|
|
2023-02-02 22:00:23 +00:00
|
|
|
if (data->throttle_irq >= 0)
|
|
|
|
return qcom_lmh_get_throttle_freq(data) / HZ_PER_KHZ;
|
2018-12-14 04:10:24 +00:00
|
|
|
|
2023-02-02 22:00:23 +00:00
|
|
|
return qcom_cpufreq_get_freq(cpu);
|
2018-12-14 04:10:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int qcom_cpufreq_hw_fast_switch(struct cpufreq_policy *policy,
|
|
|
|
unsigned int target_freq)
|
|
|
|
{
|
2020-09-15 07:24:22 +00:00
|
|
|
struct qcom_cpufreq_data *data = policy->driver_data;
|
2022-11-02 09:00:38 +00:00
|
|
|
const struct qcom_cpufreq_soc_data *soc_data = qcom_cpufreq.soc_data;
|
2020-07-30 03:29:40 +00:00
|
|
|
unsigned int index;
|
2022-02-10 05:01:17 +00:00
|
|
|
unsigned int i;
|
2018-12-14 04:10:24 +00:00
|
|
|
|
|
|
|
index = policy->cached_resolved_idx;
|
2020-09-15 07:24:22 +00:00
|
|
|
writel_relaxed(index, data->base + soc_data->reg_perf_state);
|
2018-12-14 04:10:24 +00:00
|
|
|
|
2022-02-10 05:01:17 +00:00
|
|
|
if (data->per_core_dcvs)
|
|
|
|
for (i = 1; i < cpumask_weight(policy->related_cpus); i++)
|
|
|
|
writel_relaxed(index, data->base + soc_data->reg_perf_state + i * 4);
|
|
|
|
|
cpufreq: move invariance setter calls in cpufreq core
To properly scale its per-entity load-tracking signals, the task scheduler
needs to be given a frequency scale factor, i.e. some image of the current
frequency the CPU is running at. Currently, this scale can be computed
either by using counters (APERF/MPERF on x86, AMU on arm64), or by
piggy-backing on the frequency selection done by cpufreq.
For the latter, drivers have to explicitly set the scale factor
themselves, despite it being purely boiler-plate code: the required
information depends entirely on the kind of frequency switch callback
implemented by the driver, i.e. either of: target_index(), target(),
fast_switch() and setpolicy().
The fitness of those callbacks with regard to driving the Frequency
Invariance Engine (FIE) is studied below:
target_index()
==============
Documentation states that the chosen frequency "must be determined by
freq_table[index].frequency". It isn't clear if it *has* to be that
frequency, or if it can use that frequency value to do some computation
that ultimately leads to a different frequency selection. All drivers
go for the former, while the vexpress-spc-cpufreq has an atypical
implementation which is handled separately.
Therefore, the hook works on the assumption the core can use
freq_table[index].frequency.
target()
=======
This has been flagged as deprecated since:
commit 9c0ebcf78fde ("cpufreq: Implement light weight ->target_index() routine")
It also doesn't have that many users:
gx-suspmod.c:439: .target = cpufreq_gx_target,
s3c24xx-cpufreq.c:428: .target = s3c_cpufreq_target,
intel_pstate.c:2528: .target = intel_cpufreq_target,
cppc_cpufreq.c:401: .target = cppc_cpufreq_set_target,
cpufreq-nforce2.c:371: .target = nforce2_target,
sh-cpufreq.c:163: .target = sh_cpufreq_target,
pcc-cpufreq.c:573: .target = pcc_cpufreq_target,
Similarly to the path taken for target_index() calls in the cpufreq core
during a frequency change, all of the drivers above will mark the end of a
frequency change by a call to cpufreq_freq_transition_end().
Therefore, cpufreq_freq_transition_end() can be used as the location for
the arch_set_freq_scale() call to potentially inform the scheduler of the
frequency change.
This change maintains the previous functionality for the drivers that
implement the target_index() callback, while also adding support for the
few drivers that implement the deprecated target() callback.
fast_switch()
=============
This callback *has* to return the frequency that was selected.
setpolicy()
===========
This callback does not have any designated way of informing what was the
end choice. But there are only two drivers using setpolicy(), and none
of them have current FIE support:
drivers/cpufreq/longrun.c:281: .setpolicy = longrun_set_policy,
drivers/cpufreq/intel_pstate.c:2215: .setpolicy = intel_pstate_set_policy,
The intel_pstate is known to use counter-driven frequency invariance.
Conclusion
==========
Given that the significant majority of current FIE enabled drivers use
callbacks that lend themselves to triggering the setting of the FIE scale
factor in a generic way, move the invariance setter calls to cpufreq core.
As a result of setting the frequency scale factor in cpufreq core, after
callbacks that lend themselves to trigger it, remove this functionality
from the driver side.
To be noted that despite marking a successful frequency change, many
cpufreq drivers will consider the new frequency as the requested
frequency, although this is might not be the one granted by the hardware.
Therefore, the call to arch_set_freq_scale() is a "best effort" one, and
it is up to the architecture if the new frequency is used in the new
frequency scale factor setting (determined by the implementation of
arch_set_freq_scale()) or eventually used by the scheduler (determined
by the implementation of arch_scale_freq_capacity()). The architecture
is in a better position to decide if it has better methods to obtain
more accurate information regarding the current frequency and use that
information instead (for example, the use of counters).
Also, the implementation to arch_set_freq_scale() will now have to handle
error conditions (current frequency == 0) in order to prevent the
overhead in cpufreq core when the default arch_set_freq_scale()
implementation is used.
Signed-off-by: Ionela Voinescu <ionela.voinescu@arm.com>
Suggested-by: Valentin Schneider <valentin.schneider@arm.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
2020-09-01 20:55:46 +00:00
|
|
|
return policy->freq_table[index].frequency;
|
2018-12-14 04:10:24 +00:00
|
|
|
}
|
|
|
|
|
2019-01-31 17:32:50 +00:00
|
|
|
static int qcom_cpufreq_hw_read_lut(struct device *cpu_dev,
|
2020-09-15 07:24:22 +00:00
|
|
|
struct cpufreq_policy *policy)
|
2018-12-14 04:10:24 +00:00
|
|
|
{
|
2019-08-07 11:45:43 +00:00
|
|
|
u32 data, src, lval, i, core_count, prev_freq = 0, freq;
|
2019-01-31 17:32:50 +00:00
|
|
|
u32 volt;
|
2018-12-14 04:10:24 +00:00
|
|
|
struct cpufreq_frequency_table *table;
|
2020-06-22 08:16:48 +00:00
|
|
|
struct dev_pm_opp *opp;
|
|
|
|
unsigned long rate;
|
|
|
|
int ret;
|
2020-09-15 07:24:22 +00:00
|
|
|
struct qcom_cpufreq_data *drv_data = policy->driver_data;
|
2022-11-02 09:00:38 +00:00
|
|
|
const struct qcom_cpufreq_soc_data *soc_data = qcom_cpufreq.soc_data;
|
2018-12-14 04:10:24 +00:00
|
|
|
|
|
|
|
table = kcalloc(LUT_MAX_ENTRIES + 1, sizeof(*table), GFP_KERNEL);
|
|
|
|
if (!table)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2020-06-22 08:16:48 +00:00
|
|
|
ret = dev_pm_opp_of_add_table(cpu_dev);
|
|
|
|
if (!ret) {
|
|
|
|
/* Disable all opps and cross-validate against LUT later */
|
|
|
|
icc_scaling_enabled = true;
|
|
|
|
for (rate = 0; ; rate++) {
|
|
|
|
opp = dev_pm_opp_find_freq_ceil(cpu_dev, &rate);
|
|
|
|
if (IS_ERR(opp))
|
|
|
|
break;
|
|
|
|
|
|
|
|
dev_pm_opp_put(opp);
|
|
|
|
dev_pm_opp_disable(cpu_dev, rate);
|
|
|
|
}
|
|
|
|
} else if (ret != -ENODEV) {
|
|
|
|
dev_err(cpu_dev, "Invalid opp table in device tree\n");
|
2022-11-08 07:23:02 +00:00
|
|
|
kfree(table);
|
2020-06-22 08:16:48 +00:00
|
|
|
return ret;
|
|
|
|
} else {
|
2020-06-22 08:16:49 +00:00
|
|
|
policy->fast_switch_possible = true;
|
2020-06-22 08:16:48 +00:00
|
|
|
icc_scaling_enabled = false;
|
|
|
|
}
|
|
|
|
|
2018-12-14 04:10:24 +00:00
|
|
|
for (i = 0; i < LUT_MAX_ENTRIES; i++) {
|
2020-09-15 07:24:22 +00:00
|
|
|
data = readl_relaxed(drv_data->base + soc_data->reg_freq_lut +
|
|
|
|
i * soc_data->lut_row_size);
|
2018-12-14 04:10:24 +00:00
|
|
|
src = FIELD_GET(LUT_SRC, data);
|
|
|
|
lval = FIELD_GET(LUT_L_VAL, data);
|
|
|
|
core_count = FIELD_GET(LUT_CORE_COUNT, data);
|
|
|
|
|
2020-09-15 07:24:22 +00:00
|
|
|
data = readl_relaxed(drv_data->base + soc_data->reg_volt_lut +
|
|
|
|
i * soc_data->lut_row_size);
|
2019-01-31 17:32:50 +00:00
|
|
|
volt = FIELD_GET(LUT_VOLT, data) * 1000;
|
|
|
|
|
2018-12-14 04:10:24 +00:00
|
|
|
if (src)
|
|
|
|
freq = xo_rate * lval / 1000;
|
|
|
|
else
|
|
|
|
freq = cpu_hw_rate / 1000;
|
|
|
|
|
2019-08-07 11:45:43 +00:00
|
|
|
if (freq != prev_freq && core_count != LUT_TURBO_IND) {
|
2020-09-15 17:10:54 +00:00
|
|
|
if (!qcom_cpufreq_update_opp(cpu_dev, freq, volt)) {
|
|
|
|
table[i].frequency = freq;
|
|
|
|
dev_dbg(cpu_dev, "index=%d freq=%d, core_count %d\n", i,
|
2018-12-14 04:10:24 +00:00
|
|
|
freq, core_count);
|
2020-09-15 17:10:54 +00:00
|
|
|
} else {
|
|
|
|
dev_warn(cpu_dev, "failed to update OPP for freq=%d\n", freq);
|
|
|
|
table[i].frequency = CPUFREQ_ENTRY_INVALID;
|
|
|
|
}
|
|
|
|
|
2019-08-07 11:45:43 +00:00
|
|
|
} else if (core_count == LUT_TURBO_IND) {
|
2019-01-31 17:32:50 +00:00
|
|
|
table[i].frequency = CPUFREQ_ENTRY_INVALID;
|
2018-12-14 04:10:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Two of the same frequencies with the same core counts means
|
|
|
|
* end of table
|
|
|
|
*/
|
2019-08-07 11:45:43 +00:00
|
|
|
if (i > 0 && prev_freq == freq) {
|
2018-12-14 04:10:24 +00:00
|
|
|
struct cpufreq_frequency_table *prev = &table[i - 1];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Only treat the last frequency that might be a boost
|
|
|
|
* as the boost frequency
|
|
|
|
*/
|
2019-08-07 11:45:43 +00:00
|
|
|
if (prev->frequency == CPUFREQ_ENTRY_INVALID) {
|
2020-09-15 17:10:54 +00:00
|
|
|
if (!qcom_cpufreq_update_opp(cpu_dev, prev_freq, volt)) {
|
|
|
|
prev->frequency = prev_freq;
|
|
|
|
prev->flags = CPUFREQ_BOOST_FREQ;
|
|
|
|
} else {
|
|
|
|
dev_warn(cpu_dev, "failed to update OPP for freq=%d\n",
|
|
|
|
freq);
|
|
|
|
}
|
2018-12-14 04:10:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
prev_freq = freq;
|
|
|
|
}
|
|
|
|
|
|
|
|
table[i].frequency = CPUFREQ_TABLE_END;
|
|
|
|
policy->freq_table = table;
|
2019-01-31 17:32:50 +00:00
|
|
|
dev_pm_opp_set_sharing_cpus(cpu_dev, policy->cpus);
|
2018-12-14 04:10:24 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qcom_get_related_cpus(int index, struct cpumask *m)
|
|
|
|
{
|
|
|
|
struct device_node *cpu_np;
|
|
|
|
struct of_phandle_args args;
|
|
|
|
int cpu, ret;
|
|
|
|
|
|
|
|
for_each_possible_cpu(cpu) {
|
|
|
|
cpu_np = of_cpu_device_node_get(cpu);
|
|
|
|
if (!cpu_np)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
ret = of_parse_phandle_with_args(cpu_np, "qcom,freq-domain",
|
|
|
|
"#freq-domain-cells", 0,
|
|
|
|
&args);
|
|
|
|
of_node_put(cpu_np);
|
|
|
|
if (ret < 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (index == args.args[0])
|
|
|
|
cpumask_set_cpu(cpu, m);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-09 19:16:01 +00:00
|
|
|
static void qcom_lmh_dcvs_notify(struct qcom_cpufreq_data *data)
|
|
|
|
{
|
|
|
|
struct cpufreq_policy *policy = data->policy;
|
2022-03-26 15:51:51 +00:00
|
|
|
int cpu = cpumask_first(policy->related_cpus);
|
2021-08-09 19:16:01 +00:00
|
|
|
struct device *dev = get_cpu_device(cpu);
|
2021-11-09 19:57:13 +00:00
|
|
|
unsigned long freq_hz, throttled_freq;
|
2021-08-09 19:16:01 +00:00
|
|
|
struct dev_pm_opp *opp;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the h/w throttled frequency, normalize it using the
|
|
|
|
* registered opp table and use it to calculate thermal pressure.
|
|
|
|
*/
|
2022-04-01 07:14:24 +00:00
|
|
|
freq_hz = qcom_lmh_get_throttle_freq(data);
|
2021-08-09 19:16:01 +00:00
|
|
|
|
|
|
|
opp = dev_pm_opp_find_freq_floor(dev, &freq_hz);
|
|
|
|
if (IS_ERR(opp) && PTR_ERR(opp) == -ERANGE)
|
2022-03-26 15:51:52 +00:00
|
|
|
opp = dev_pm_opp_find_freq_ceil(dev, &freq_hz);
|
2021-08-09 19:16:01 +00:00
|
|
|
|
2022-03-26 15:51:52 +00:00
|
|
|
if (IS_ERR(opp)) {
|
|
|
|
dev_warn(dev, "Can't find the OPP for throttling: %pe!\n", opp);
|
|
|
|
} else {
|
|
|
|
dev_pm_opp_put(opp);
|
|
|
|
}
|
2021-08-09 19:16:01 +00:00
|
|
|
|
2022-09-21 07:00:38 +00:00
|
|
|
throttled_freq = freq_hz / HZ_PER_KHZ;
|
|
|
|
|
2022-09-26 08:34:05 +00:00
|
|
|
freq_qos_update_request(&data->throttle_freq_req, throttled_freq);
|
|
|
|
|
2022-09-21 07:00:38 +00:00
|
|
|
/* Update thermal pressure (the boost frequencies are accepted) */
|
|
|
|
arch_update_thermal_pressure(policy->related_cpus, throttled_freq);
|
|
|
|
|
2021-08-09 19:16:01 +00:00
|
|
|
/*
|
|
|
|
* In the unlikely case policy is unregistered do not enable
|
|
|
|
* polling or h/w interrupt
|
|
|
|
*/
|
|
|
|
mutex_lock(&data->throttle_lock);
|
|
|
|
if (data->cancel_throttle)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If h/w throttled frequency is higher than what cpufreq has requested
|
|
|
|
* for, then stop polling and switch back to interrupt mechanism.
|
|
|
|
*/
|
2022-11-17 05:31:45 +00:00
|
|
|
if (throttled_freq >= qcom_cpufreq_get_freq(cpu))
|
2021-08-09 19:16:01 +00:00
|
|
|
enable_irq(data->throttle_irq);
|
|
|
|
else
|
|
|
|
mod_delayed_work(system_highpri_wq, &data->throttle_work,
|
|
|
|
msecs_to_jiffies(10));
|
|
|
|
|
|
|
|
out:
|
|
|
|
mutex_unlock(&data->throttle_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qcom_lmh_dcvs_poll(struct work_struct *work)
|
|
|
|
{
|
|
|
|
struct qcom_cpufreq_data *data;
|
|
|
|
|
|
|
|
data = container_of(work, struct qcom_cpufreq_data, throttle_work.work);
|
|
|
|
qcom_lmh_dcvs_notify(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static irqreturn_t qcom_lmh_dcvs_handle_irq(int irq, void *data)
|
|
|
|
{
|
|
|
|
struct qcom_cpufreq_data *c_data = data;
|
|
|
|
|
|
|
|
/* Disable interrupt and enable polling */
|
|
|
|
disable_irq_nosync(c_data->throttle_irq);
|
2021-11-11 15:48:07 +00:00
|
|
|
schedule_delayed_work(&c_data->throttle_work, 0);
|
2021-08-09 19:16:01 +00:00
|
|
|
|
2022-11-02 09:00:38 +00:00
|
|
|
if (qcom_cpufreq.soc_data->reg_intr_clr)
|
2022-04-07 20:09:19 +00:00
|
|
|
writel_relaxed(GT_IRQ_STATUS,
|
2022-11-02 09:00:38 +00:00
|
|
|
c_data->base + qcom_cpufreq.soc_data->reg_intr_clr);
|
2022-04-07 20:09:19 +00:00
|
|
|
|
2021-11-11 15:48:07 +00:00
|
|
|
return IRQ_HANDLED;
|
2021-08-09 19:16:01 +00:00
|
|
|
}
|
|
|
|
|
2020-09-15 07:24:22 +00:00
|
|
|
static const struct qcom_cpufreq_soc_data qcom_soc_data = {
|
|
|
|
.reg_enable = 0x0,
|
2022-02-10 05:01:17 +00:00
|
|
|
.reg_dcvs_ctrl = 0xbc,
|
2020-09-15 07:24:22 +00:00
|
|
|
.reg_freq_lut = 0x110,
|
|
|
|
.reg_volt_lut = 0x114,
|
2021-08-09 19:16:01 +00:00
|
|
|
.reg_current_vote = 0x704,
|
2020-09-15 07:24:22 +00:00
|
|
|
.reg_perf_state = 0x920,
|
|
|
|
.lut_row_size = 32,
|
|
|
|
};
|
|
|
|
|
2020-09-15 07:24:23 +00:00
|
|
|
static const struct qcom_cpufreq_soc_data epss_soc_data = {
|
|
|
|
.reg_enable = 0x0,
|
2022-04-01 07:14:24 +00:00
|
|
|
.reg_domain_state = 0x20,
|
2022-02-10 05:01:17 +00:00
|
|
|
.reg_dcvs_ctrl = 0xb0,
|
2020-09-15 07:24:23 +00:00
|
|
|
.reg_freq_lut = 0x100,
|
|
|
|
.reg_volt_lut = 0x200,
|
2022-04-07 20:09:19 +00:00
|
|
|
.reg_intr_clr = 0x308,
|
2020-09-15 07:24:23 +00:00
|
|
|
.reg_perf_state = 0x320,
|
|
|
|
.lut_row_size = 4,
|
|
|
|
};
|
|
|
|
|
2020-09-15 07:24:22 +00:00
|
|
|
static const struct of_device_id qcom_cpufreq_hw_match[] = {
|
|
|
|
{ .compatible = "qcom,cpufreq-hw", .data = &qcom_soc_data },
|
2020-09-15 07:24:23 +00:00
|
|
|
{ .compatible = "qcom,cpufreq-epss", .data = &epss_soc_data },
|
2020-09-15 07:24:22 +00:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, qcom_cpufreq_hw_match);
|
|
|
|
|
2021-08-09 19:16:01 +00:00
|
|
|
static int qcom_cpufreq_hw_lmh_init(struct cpufreq_policy *policy, int index)
|
|
|
|
{
|
|
|
|
struct qcom_cpufreq_data *data = policy->driver_data;
|
|
|
|
struct platform_device *pdev = cpufreq_get_driver_data();
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Look for LMh interrupt. If no interrupt line is specified /
|
|
|
|
* if there is an error, allow cpufreq to be enabled as usual.
|
|
|
|
*/
|
2021-11-17 02:03:46 +00:00
|
|
|
data->throttle_irq = platform_get_irq_optional(pdev, index);
|
|
|
|
if (data->throttle_irq == -ENXIO)
|
|
|
|
return 0;
|
|
|
|
if (data->throttle_irq < 0)
|
|
|
|
return data->throttle_irq;
|
2021-08-09 19:16:01 +00:00
|
|
|
|
2022-09-26 08:34:05 +00:00
|
|
|
ret = freq_qos_add_request(&policy->constraints,
|
|
|
|
&data->throttle_freq_req, FREQ_QOS_MAX,
|
|
|
|
FREQ_QOS_MAX_DEFAULT_VALUE);
|
|
|
|
if (ret < 0) {
|
|
|
|
dev_err(&pdev->dev, "Failed to add freq constraint (%d)\n", ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2021-08-09 19:16:01 +00:00
|
|
|
data->cancel_throttle = false;
|
|
|
|
data->policy = policy;
|
|
|
|
|
|
|
|
mutex_init(&data->throttle_lock);
|
|
|
|
INIT_DEFERRABLE_WORK(&data->throttle_work, qcom_lmh_dcvs_poll);
|
|
|
|
|
2021-11-11 15:48:06 +00:00
|
|
|
snprintf(data->irq_name, sizeof(data->irq_name), "dcvsh-irq-%u", policy->cpu);
|
2021-08-09 19:16:01 +00:00
|
|
|
ret = request_threaded_irq(data->throttle_irq, NULL, qcom_lmh_dcvs_handle_irq,
|
2022-01-28 03:25:54 +00:00
|
|
|
IRQF_ONESHOT | IRQF_NO_AUTOEN, data->irq_name, data);
|
2021-08-09 19:16:01 +00:00
|
|
|
if (ret) {
|
2021-11-11 15:48:06 +00:00
|
|
|
dev_err(&pdev->dev, "Error registering %s: %d\n", data->irq_name, ret);
|
2021-08-09 19:16:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-07-04 11:27:38 +00:00
|
|
|
ret = irq_set_affinity_and_hint(data->throttle_irq, policy->cpus);
|
2021-11-11 15:48:08 +00:00
|
|
|
if (ret)
|
|
|
|
dev_err(&pdev->dev, "Failed to set CPU affinity of %s[%d]\n",
|
|
|
|
data->irq_name, data->throttle_irq);
|
|
|
|
|
2021-08-09 19:16:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-03-26 15:51:53 +00:00
|
|
|
static int qcom_cpufreq_hw_cpu_online(struct cpufreq_policy *policy)
|
2021-08-09 19:16:01 +00:00
|
|
|
{
|
2022-03-26 15:51:53 +00:00
|
|
|
struct qcom_cpufreq_data *data = policy->driver_data;
|
|
|
|
struct platform_device *pdev = cpufreq_get_driver_data();
|
|
|
|
int ret;
|
|
|
|
|
2022-06-16 22:45:31 +00:00
|
|
|
if (data->throttle_irq <= 0)
|
|
|
|
return 0;
|
|
|
|
|
2022-07-04 11:27:36 +00:00
|
|
|
mutex_lock(&data->throttle_lock);
|
|
|
|
data->cancel_throttle = false;
|
|
|
|
mutex_unlock(&data->throttle_lock);
|
|
|
|
|
2022-07-04 11:27:38 +00:00
|
|
|
ret = irq_set_affinity_and_hint(data->throttle_irq, policy->cpus);
|
2022-03-26 15:51:53 +00:00
|
|
|
if (ret)
|
|
|
|
dev_err(&pdev->dev, "Failed to set CPU affinity of %s[%d]\n",
|
|
|
|
data->irq_name, data->throttle_irq);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int qcom_cpufreq_hw_cpu_offline(struct cpufreq_policy *policy)
|
|
|
|
{
|
|
|
|
struct qcom_cpufreq_data *data = policy->driver_data;
|
|
|
|
|
2021-08-09 19:16:01 +00:00
|
|
|
if (data->throttle_irq <= 0)
|
2022-03-26 15:51:53 +00:00
|
|
|
return 0;
|
2021-08-09 19:16:01 +00:00
|
|
|
|
|
|
|
mutex_lock(&data->throttle_lock);
|
|
|
|
data->cancel_throttle = true;
|
|
|
|
mutex_unlock(&data->throttle_lock);
|
|
|
|
|
|
|
|
cancel_delayed_work_sync(&data->throttle_work);
|
2022-07-04 11:27:38 +00:00
|
|
|
irq_set_affinity_and_hint(data->throttle_irq, NULL);
|
2022-07-04 11:27:37 +00:00
|
|
|
disable_irq_nosync(data->throttle_irq);
|
2022-03-26 15:51:53 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qcom_cpufreq_hw_lmh_exit(struct qcom_cpufreq_data *data)
|
|
|
|
{
|
2022-06-16 22:45:31 +00:00
|
|
|
if (data->throttle_irq <= 0)
|
|
|
|
return;
|
|
|
|
|
2022-09-26 08:34:05 +00:00
|
|
|
freq_qos_remove_request(&data->throttle_freq_req);
|
2021-08-09 19:16:01 +00:00
|
|
|
free_irq(data->throttle_irq, data);
|
|
|
|
}
|
|
|
|
|
2018-12-14 04:10:24 +00:00
|
|
|
static int qcom_cpufreq_hw_cpu_init(struct cpufreq_policy *policy)
|
|
|
|
{
|
2020-09-08 07:57:12 +00:00
|
|
|
struct platform_device *pdev = cpufreq_get_driver_data();
|
|
|
|
struct device *dev = &pdev->dev;
|
2018-12-14 04:10:24 +00:00
|
|
|
struct of_phandle_args args;
|
|
|
|
struct device_node *cpu_np;
|
2019-01-31 17:32:50 +00:00
|
|
|
struct device *cpu_dev;
|
2020-09-15 07:24:22 +00:00
|
|
|
struct qcom_cpufreq_data *data;
|
2018-12-14 04:10:24 +00:00
|
|
|
int ret, index;
|
|
|
|
|
2019-01-31 17:32:50 +00:00
|
|
|
cpu_dev = get_cpu_device(policy->cpu);
|
|
|
|
if (!cpu_dev) {
|
|
|
|
pr_err("%s: failed to get cpu%d device\n", __func__,
|
|
|
|
policy->cpu);
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2018-12-14 04:10:24 +00:00
|
|
|
cpu_np = of_cpu_device_node_get(policy->cpu);
|
|
|
|
if (!cpu_np)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
ret = of_parse_phandle_with_args(cpu_np, "qcom,freq-domain",
|
|
|
|
"#freq-domain-cells", 0, &args);
|
|
|
|
of_node_put(cpu_np);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
index = args.args[0];
|
2022-11-02 09:00:36 +00:00
|
|
|
data = &qcom_cpufreq.data[index];
|
2018-12-14 04:10:24 +00:00
|
|
|
|
|
|
|
/* HW should be in enabled state to proceed */
|
2022-11-02 09:00:38 +00:00
|
|
|
if (!(readl_relaxed(data->base + qcom_cpufreq.soc_data->reg_enable) & 0x1)) {
|
2018-12-14 04:10:24 +00:00
|
|
|
dev_err(dev, "Domain-%d cpufreq hardware not enabled\n", index);
|
2022-11-02 09:00:36 +00:00
|
|
|
return -ENODEV;
|
2018-12-14 04:10:24 +00:00
|
|
|
}
|
|
|
|
|
2022-11-02 09:00:38 +00:00
|
|
|
if (readl_relaxed(data->base + qcom_cpufreq.soc_data->reg_dcvs_ctrl) & 0x1)
|
2022-02-10 05:01:17 +00:00
|
|
|
data->per_core_dcvs = true;
|
|
|
|
|
2018-12-14 04:10:24 +00:00
|
|
|
qcom_get_related_cpus(index, policy->cpus);
|
|
|
|
|
2020-09-15 07:24:22 +00:00
|
|
|
policy->driver_data = data;
|
2021-08-23 10:15:46 +00:00
|
|
|
policy->dvfs_possible_from_any_cpu = true;
|
2018-12-14 04:10:24 +00:00
|
|
|
|
2020-09-15 07:24:22 +00:00
|
|
|
ret = qcom_cpufreq_hw_read_lut(cpu_dev, policy);
|
2018-12-14 04:10:24 +00:00
|
|
|
if (ret) {
|
|
|
|
dev_err(dev, "Domain-%d failed to read LUT\n", index);
|
2022-11-02 09:00:36 +00:00
|
|
|
return ret;
|
2018-12-14 04:10:24 +00:00
|
|
|
}
|
|
|
|
|
2019-01-31 17:32:50 +00:00
|
|
|
ret = dev_pm_opp_get_opp_count(cpu_dev);
|
|
|
|
if (ret <= 0) {
|
|
|
|
dev_err(cpu_dev, "Failed to add OPPs\n");
|
2022-11-02 09:00:36 +00:00
|
|
|
return -ENODEV;
|
2019-01-31 17:32:50 +00:00
|
|
|
}
|
|
|
|
|
2021-01-13 06:52:41 +00:00
|
|
|
if (policy_has_boost_freq(policy)) {
|
|
|
|
ret = cpufreq_enable_boost_support();
|
|
|
|
if (ret)
|
|
|
|
dev_warn(cpu_dev, "failed to enable boost: %d\n", ret);
|
|
|
|
}
|
|
|
|
|
2022-11-02 09:00:36 +00:00
|
|
|
return qcom_cpufreq_hw_lmh_init(policy, index);
|
2018-12-14 04:10:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int qcom_cpufreq_hw_cpu_exit(struct cpufreq_policy *policy)
|
|
|
|
{
|
2019-01-31 17:32:50 +00:00
|
|
|
struct device *cpu_dev = get_cpu_device(policy->cpu);
|
2020-09-15 07:24:22 +00:00
|
|
|
struct qcom_cpufreq_data *data = policy->driver_data;
|
2021-01-19 02:39:25 +00:00
|
|
|
struct resource *res = data->res;
|
|
|
|
void __iomem *base = data->base;
|
2018-12-14 04:10:24 +00:00
|
|
|
|
2019-01-31 17:32:50 +00:00
|
|
|
dev_pm_opp_remove_all_dynamic(cpu_dev);
|
2020-06-22 08:16:48 +00:00
|
|
|
dev_pm_opp_of_cpumask_remove_table(policy->related_cpus);
|
2021-08-09 19:16:01 +00:00
|
|
|
qcom_cpufreq_hw_lmh_exit(data);
|
2018-12-14 04:10:24 +00:00
|
|
|
kfree(policy->freq_table);
|
2021-01-19 02:39:25 +00:00
|
|
|
kfree(data);
|
|
|
|
iounmap(base);
|
|
|
|
release_mem_region(res->start, resource_size(res));
|
2018-12-14 04:10:24 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-01-28 03:25:54 +00:00
|
|
|
static void qcom_cpufreq_ready(struct cpufreq_policy *policy)
|
|
|
|
{
|
|
|
|
struct qcom_cpufreq_data *data = policy->driver_data;
|
|
|
|
|
|
|
|
if (data->throttle_irq >= 0)
|
|
|
|
enable_irq(data->throttle_irq);
|
|
|
|
}
|
|
|
|
|
2018-12-14 04:10:24 +00:00
|
|
|
static struct freq_attr *qcom_cpufreq_hw_attr[] = {
|
|
|
|
&cpufreq_freq_attr_scaling_available_freqs,
|
|
|
|
&cpufreq_freq_attr_scaling_boost_freqs,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct cpufreq_driver cpufreq_qcom_hw_driver = {
|
2021-02-02 04:55:11 +00:00
|
|
|
.flags = CPUFREQ_NEED_INITIAL_FREQ_CHECK |
|
2019-01-29 04:55:09 +00:00
|
|
|
CPUFREQ_HAVE_GOVERNOR_PER_POLICY |
|
|
|
|
CPUFREQ_IS_COOLING_DEV,
|
2018-12-14 04:10:24 +00:00
|
|
|
.verify = cpufreq_generic_frequency_table_verify,
|
|
|
|
.target_index = qcom_cpufreq_hw_target_index,
|
|
|
|
.get = qcom_cpufreq_hw_get,
|
|
|
|
.init = qcom_cpufreq_hw_cpu_init,
|
|
|
|
.exit = qcom_cpufreq_hw_cpu_exit,
|
2022-03-26 15:51:53 +00:00
|
|
|
.online = qcom_cpufreq_hw_cpu_online,
|
|
|
|
.offline = qcom_cpufreq_hw_cpu_offline,
|
2021-08-10 06:54:36 +00:00
|
|
|
.register_em = cpufreq_register_em_with_opp,
|
2018-12-14 04:10:24 +00:00
|
|
|
.fast_switch = qcom_cpufreq_hw_fast_switch,
|
|
|
|
.name = "qcom-cpufreq-hw",
|
|
|
|
.attr = qcom_cpufreq_hw_attr,
|
2022-01-28 03:25:54 +00:00
|
|
|
.ready = qcom_cpufreq_ready,
|
2018-12-14 04:10:24 +00:00
|
|
|
};
|
|
|
|
|
2022-11-17 05:31:44 +00:00
|
|
|
static unsigned long qcom_cpufreq_hw_recalc_rate(struct clk_hw *hw, unsigned long parent_rate)
|
|
|
|
{
|
|
|
|
struct qcom_cpufreq_data *data = container_of(hw, struct qcom_cpufreq_data, cpu_clk);
|
|
|
|
|
|
|
|
return qcom_lmh_get_throttle_freq(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct clk_ops qcom_cpufreq_hw_clk_ops = {
|
|
|
|
.recalc_rate = qcom_cpufreq_hw_recalc_rate,
|
|
|
|
};
|
|
|
|
|
2018-12-14 04:10:24 +00:00
|
|
|
static int qcom_cpufreq_hw_driver_probe(struct platform_device *pdev)
|
|
|
|
{
|
2022-11-17 05:31:44 +00:00
|
|
|
struct clk_hw_onecell_data *clk_data;
|
2022-11-02 09:00:37 +00:00
|
|
|
struct device *dev = &pdev->dev;
|
2022-12-20 13:39:10 +00:00
|
|
|
struct device_node *soc_node;
|
2020-06-22 08:16:48 +00:00
|
|
|
struct device *cpu_dev;
|
2018-12-14 04:10:24 +00:00
|
|
|
struct clk *clk;
|
2022-12-20 13:39:10 +00:00
|
|
|
int ret, i, num_domains, reg_sz;
|
2018-12-14 04:10:24 +00:00
|
|
|
|
2022-11-02 09:00:37 +00:00
|
|
|
clk = clk_get(dev, "xo");
|
2018-12-14 04:10:24 +00:00
|
|
|
if (IS_ERR(clk))
|
|
|
|
return PTR_ERR(clk);
|
|
|
|
|
|
|
|
xo_rate = clk_get_rate(clk);
|
|
|
|
clk_put(clk);
|
|
|
|
|
2022-11-02 09:00:37 +00:00
|
|
|
clk = clk_get(dev, "alternate");
|
2018-12-14 04:10:24 +00:00
|
|
|
if (IS_ERR(clk))
|
|
|
|
return PTR_ERR(clk);
|
|
|
|
|
|
|
|
cpu_hw_rate = clk_get_rate(clk) / CLK_HW_DIV;
|
|
|
|
clk_put(clk);
|
|
|
|
|
2020-09-08 07:57:12 +00:00
|
|
|
cpufreq_qcom_hw_driver.driver_data = pdev;
|
2018-12-14 04:10:24 +00:00
|
|
|
|
2020-06-22 08:16:48 +00:00
|
|
|
/* Check for optional interconnect paths on CPU0 */
|
|
|
|
cpu_dev = get_cpu_device(0);
|
|
|
|
if (!cpu_dev)
|
|
|
|
return -EPROBE_DEFER;
|
|
|
|
|
|
|
|
ret = dev_pm_opp_of_find_icc_paths(cpu_dev, NULL);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2022-11-02 09:00:36 +00:00
|
|
|
/* Allocate qcom_cpufreq_data based on the available frequency domains in DT */
|
2022-12-20 13:39:10 +00:00
|
|
|
soc_node = of_get_parent(dev->of_node);
|
|
|
|
if (!soc_node)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
ret = of_property_read_u32(soc_node, "#address-cells", ®_sz);
|
|
|
|
if (ret)
|
|
|
|
goto of_exit;
|
|
|
|
|
|
|
|
ret = of_property_read_u32(soc_node, "#size-cells", &i);
|
|
|
|
if (ret)
|
|
|
|
goto of_exit;
|
|
|
|
|
|
|
|
reg_sz += i;
|
|
|
|
|
|
|
|
num_domains = of_property_count_elems_of_size(dev->of_node, "reg", sizeof(u32) * reg_sz);
|
2022-11-02 09:00:36 +00:00
|
|
|
if (num_domains <= 0)
|
|
|
|
return num_domains;
|
|
|
|
|
2022-11-02 09:00:37 +00:00
|
|
|
qcom_cpufreq.data = devm_kzalloc(dev, sizeof(struct qcom_cpufreq_data) * num_domains,
|
2022-11-02 09:00:36 +00:00
|
|
|
GFP_KERNEL);
|
|
|
|
if (!qcom_cpufreq.data)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2022-11-02 09:00:38 +00:00
|
|
|
qcom_cpufreq.soc_data = of_device_get_match_data(dev);
|
|
|
|
|
2022-11-17 05:31:44 +00:00
|
|
|
clk_data = devm_kzalloc(dev, struct_size(clk_data, hws, num_domains), GFP_KERNEL);
|
|
|
|
if (!clk_data)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
clk_data->num = num_domains;
|
|
|
|
|
2022-11-02 09:00:36 +00:00
|
|
|
for (i = 0; i < num_domains; i++) {
|
|
|
|
struct qcom_cpufreq_data *data = &qcom_cpufreq.data[i];
|
2022-11-17 05:31:44 +00:00
|
|
|
struct clk_init_data clk_init = {};
|
2022-11-02 09:00:36 +00:00
|
|
|
struct resource *res;
|
|
|
|
void __iomem *base;
|
|
|
|
|
|
|
|
base = devm_platform_get_and_ioremap_resource(pdev, i, &res);
|
|
|
|
if (IS_ERR(base)) {
|
2022-11-02 09:00:37 +00:00
|
|
|
dev_err(dev, "Failed to map resource %pR\n", res);
|
2022-11-02 09:00:36 +00:00
|
|
|
return PTR_ERR(base);
|
|
|
|
}
|
|
|
|
|
|
|
|
data->base = base;
|
|
|
|
data->res = res;
|
2022-11-17 05:31:44 +00:00
|
|
|
|
|
|
|
/* Register CPU clock for each frequency domain */
|
|
|
|
clk_init.name = kasprintf(GFP_KERNEL, "qcom_cpufreq%d", i);
|
|
|
|
if (!clk_init.name)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
clk_init.flags = CLK_GET_RATE_NOCACHE;
|
|
|
|
clk_init.ops = &qcom_cpufreq_hw_clk_ops;
|
|
|
|
data->cpu_clk.init = &clk_init;
|
|
|
|
|
|
|
|
ret = devm_clk_hw_register(dev, &data->cpu_clk);
|
|
|
|
if (ret < 0) {
|
|
|
|
dev_err(dev, "Failed to register clock %d: %d\n", i, ret);
|
|
|
|
kfree(clk_init.name);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
clk_data->hws[i] = &data->cpu_clk;
|
|
|
|
kfree(clk_init.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = devm_of_clk_add_hw_provider(dev, of_clk_hw_onecell_get, clk_data);
|
|
|
|
if (ret < 0) {
|
|
|
|
dev_err(dev, "Failed to add clock provider\n");
|
|
|
|
return ret;
|
2022-11-02 09:00:36 +00:00
|
|
|
}
|
|
|
|
|
2018-12-14 04:10:24 +00:00
|
|
|
ret = cpufreq_register_driver(&cpufreq_qcom_hw_driver);
|
|
|
|
if (ret)
|
2022-11-02 09:00:37 +00:00
|
|
|
dev_err(dev, "CPUFreq HW driver failed to register\n");
|
2018-12-14 04:10:24 +00:00
|
|
|
else
|
2022-11-02 09:00:37 +00:00
|
|
|
dev_dbg(dev, "QCOM CPUFreq HW driver initialized\n");
|
2018-12-14 04:10:24 +00:00
|
|
|
|
2022-12-20 13:39:10 +00:00
|
|
|
of_exit:
|
|
|
|
of_node_put(soc_node);
|
|
|
|
|
2018-12-14 04:10:24 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int qcom_cpufreq_hw_driver_remove(struct platform_device *pdev)
|
|
|
|
{
|
|
|
|
return cpufreq_unregister_driver(&cpufreq_qcom_hw_driver);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct platform_driver qcom_cpufreq_hw_driver = {
|
|
|
|
.probe = qcom_cpufreq_hw_driver_probe,
|
|
|
|
.remove = qcom_cpufreq_hw_driver_remove,
|
|
|
|
.driver = {
|
|
|
|
.name = "qcom-cpufreq-hw",
|
|
|
|
.of_match_table = qcom_cpufreq_hw_match,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init qcom_cpufreq_hw_init(void)
|
|
|
|
{
|
|
|
|
return platform_driver_register(&qcom_cpufreq_hw_driver);
|
|
|
|
}
|
2019-10-21 12:15:15 +00:00
|
|
|
postcore_initcall(qcom_cpufreq_hw_init);
|
2018-12-14 04:10:24 +00:00
|
|
|
|
|
|
|
static void __exit qcom_cpufreq_hw_exit(void)
|
|
|
|
{
|
|
|
|
platform_driver_unregister(&qcom_cpufreq_hw_driver);
|
|
|
|
}
|
|
|
|
module_exit(qcom_cpufreq_hw_exit);
|
|
|
|
|
|
|
|
MODULE_DESCRIPTION("QCOM CPUFREQ HW Driver");
|
|
|
|
MODULE_LICENSE("GPL v2");
|