mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-12-07 21:22:10 -05:00
changelogs: https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.12.58 Removed upstreamed patches: 1. target/linux/generic/backport-6.12/612-01-v6.17-net-dsa-tag_brcm-legacy-reorganize-functions.patch Upstream: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.12.58&id=a4daaf063f8269a5881154c5b77c5ef6639d65d3 2. target/linux/qualcommax/patches-6.12/0151-arm64-qcom-ipq6018-nss_port5.patch Upstream: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.12.58&id=9a7a5d50ee2e035325de9c720e4842d6759d2374 3. target/linux/realtek/patches-6.12/020-01-v6.18-timer-rtl-otto-work-around-dying-timers.patch Upstream: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.12.58&id=d0e217b33d42bfe52ef7ef447916a23a586e6e5c 4. target/linux/realtek/patches-6.12/020-03-v6.18-timer-rtl-otto-do-not-interfere-with-interrupts.patch Upstream: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v6.12.58&id=8cc561dd9d02f1753ae34dfdd565662828be9a9d Additional changes: - Manually adapted bcm27xx patch: * 950-0410-media-i2c-adv7180-Add-support-for-V4L2_CID_LINK_FREQ.patch Rebased and adjusted for kernel 6.12 to fix context conflicts. - Synced lantiq DTS (danube.dtsi) with upstream bindings to fix DT validation issues on kernel 6.12. - Manually adapted DTS to match OpenWrt's lantiq DTS layout. Compile-tested on x86_64 Run-tested on x86_64 Signed-off-by: gongzi miao <miaogongzi0227@gmail.com> Link: https://github.com/openwrt/openwrt/pull/20777 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
135 lines
5.2 KiB
Diff
135 lines
5.2 KiB
Diff
From fd59b838dd90452f61a17dc9e5ff175205003068 Mon Sep 17 00:00:00 2001
|
|
From: Christian Marangi <ansuelsmth@gmail.com>
|
|
Date: Thu, 15 Sep 2022 18:49:43 +0200
|
|
Subject: [PATCH] OPP: Provide old opp to config_clks on _set_opp
|
|
|
|
With the target opp, also pass the old opp to config_clks function.
|
|
This can be useful when a driver needs to take decision on what fequency
|
|
to set based on what is the current frequency without using a
|
|
clk_get_freq call.
|
|
Update the only user of custom config_clks (tegra30 devfreq driver) to
|
|
this new implementation.
|
|
|
|
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
|
|
---
|
|
drivers/devfreq/tegra30-devfreq.c | 5 +++--
|
|
drivers/opp/core.c | 11 ++++++-----
|
|
include/linux/pm_opp.h | 11 ++++++-----
|
|
3 files changed, 15 insertions(+), 12 deletions(-)
|
|
|
|
--- a/drivers/devfreq/tegra30-devfreq.c
|
|
+++ b/drivers/devfreq/tegra30-devfreq.c
|
|
@@ -823,8 +823,9 @@ static int devm_tegra_devfreq_init_hw(st
|
|
|
|
static int tegra_devfreq_config_clks_nop(struct device *dev,
|
|
struct opp_table *opp_table,
|
|
- struct dev_pm_opp *opp, void *data,
|
|
- bool scaling_down)
|
|
+ struct dev_pm_opp *old_opp,
|
|
+ struct dev_pm_opp *opp,
|
|
+ void *data, bool scaling_down)
|
|
{
|
|
/* We want to skip clk configuration via dev_pm_opp_set_opp() */
|
|
return 0;
|
|
--- a/drivers/opp/core.c
|
|
+++ b/drivers/opp/core.c
|
|
@@ -965,7 +965,8 @@ static int _set_opp_voltage(struct devic
|
|
|
|
static int
|
|
_opp_config_clk_single(struct device *dev, struct opp_table *opp_table,
|
|
- struct dev_pm_opp *opp, void *data, bool scaling_down)
|
|
+ struct dev_pm_opp *old_opp, struct dev_pm_opp *opp,
|
|
+ void *data, bool scaling_down)
|
|
{
|
|
unsigned long *target = data;
|
|
unsigned long freq;
|
|
@@ -997,8 +998,8 @@ _opp_config_clk_single(struct device *de
|
|
* the order in which they are present in the array while scaling up.
|
|
*/
|
|
int dev_pm_opp_config_clks_simple(struct device *dev,
|
|
- struct opp_table *opp_table, struct dev_pm_opp *opp, void *data,
|
|
- bool scaling_down)
|
|
+ struct opp_table *opp_table, struct dev_pm_opp *old_opp,
|
|
+ struct dev_pm_opp *opp, void *data, bool scaling_down)
|
|
{
|
|
int ret, i;
|
|
|
|
@@ -1265,7 +1266,7 @@ static int _set_opp(struct device *dev,
|
|
}
|
|
|
|
if (opp_table->config_clks) {
|
|
- ret = opp_table->config_clks(dev, opp_table, opp, clk_data, scaling_down);
|
|
+ ret = opp_table->config_clks(dev, opp_table, old_opp, opp, clk_data, scaling_down);
|
|
if (ret)
|
|
return ret;
|
|
}
|
|
@@ -1344,7 +1345,7 @@ int dev_pm_opp_set_rate(struct device *d
|
|
* equivalent to a clk_set_rate()
|
|
*/
|
|
if (!_get_opp_count(opp_table)) {
|
|
- ret = opp_table->config_clks(dev, opp_table, NULL,
|
|
+ ret = opp_table->config_clks(dev, opp_table, NULL, NULL,
|
|
&target_freq, false);
|
|
goto put_opp_table;
|
|
}
|
|
--- a/drivers/ufs/core/ufshcd.c
|
|
+++ b/drivers/ufs/core/ufshcd.c
|
|
@@ -1122,8 +1122,8 @@ out:
|
|
}
|
|
|
|
int ufshcd_opp_config_clks(struct device *dev, struct opp_table *opp_table,
|
|
- struct dev_pm_opp *opp, void *data,
|
|
- bool scaling_down)
|
|
+ struct dev_pm_opp *old_opp, struct dev_pm_opp *opp,
|
|
+ void *data, bool scaling_down)
|
|
{
|
|
struct ufs_hba *hba = dev_get_drvdata(dev);
|
|
struct list_head *head = &hba->clk_list_head;
|
|
--- a/include/linux/pm_opp.h
|
|
+++ b/include/linux/pm_opp.h
|
|
@@ -50,7 +50,8 @@ typedef int (*config_regulators_t)(struc
|
|
struct dev_pm_opp *old_opp, struct dev_pm_opp *new_opp,
|
|
struct regulator **regulators, unsigned int count);
|
|
|
|
-typedef int (*config_clks_t)(struct device *dev, struct opp_table *opp_table,
|
|
+typedef int (*config_clks_t)(struct device *dev,
|
|
+ struct opp_table *opp_table, struct dev_pm_opp *old_opp,
|
|
struct dev_pm_opp *opp, void *data, bool scaling_down);
|
|
|
|
/**
|
|
@@ -184,8 +185,8 @@ int dev_pm_opp_set_config(struct device
|
|
int devm_pm_opp_set_config(struct device *dev, struct dev_pm_opp_config *config);
|
|
void dev_pm_opp_clear_config(int token);
|
|
int dev_pm_opp_config_clks_simple(struct device *dev,
|
|
- struct opp_table *opp_table, struct dev_pm_opp *opp, void *data,
|
|
- bool scaling_down);
|
|
+ struct opp_table *opp_table, struct dev_pm_opp *old_opp,
|
|
+ struct dev_pm_opp *opp, void *data, bool scaling_down);
|
|
|
|
struct dev_pm_opp *dev_pm_opp_xlate_required_opp(struct opp_table *src_table, struct opp_table *dst_table, struct dev_pm_opp *src_opp);
|
|
int dev_pm_opp_xlate_performance_state(struct opp_table *src_table, struct opp_table *dst_table, unsigned int pstate);
|
|
@@ -395,8 +396,8 @@ static inline int devm_pm_opp_set_config
|
|
static inline void dev_pm_opp_clear_config(int token) {}
|
|
|
|
static inline int dev_pm_opp_config_clks_simple(struct device *dev,
|
|
- struct opp_table *opp_table, struct dev_pm_opp *opp, void *data,
|
|
- bool scaling_down)
|
|
+ struct opp_table *opp_table, struct dev_pm_opp *old_opp,
|
|
+ struct dev_pm_opp *opp, void *data, bool scaling_down)
|
|
{
|
|
return -EOPNOTSUPP;
|
|
}
|
|
--- a/include/ufs/ufshcd.h
|
|
+++ b/include/ufs/ufshcd.h
|
|
@@ -1333,8 +1333,8 @@ void ufshcd_mcq_enable(struct ufs_hba *h
|
|
void ufshcd_mcq_config_esi(struct ufs_hba *hba, struct msi_msg *msg);
|
|
|
|
int ufshcd_opp_config_clks(struct device *dev, struct opp_table *opp_table,
|
|
- struct dev_pm_opp *opp, void *data,
|
|
- bool scaling_down);
|
|
+ struct dev_pm_opp *old_opp, struct dev_pm_opp *opp,
|
|
+ void *data, bool scaling_down);
|
|
/**
|
|
* ufshcd_set_variant - set variant specific data to the hba
|
|
* @hba: per adapter instance
|