dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Viresh Kumar <viresh.kumar@linaro.org>
To: Dmitry Osipenko <digetx@gmail.com>
Cc: Peter De Schrijver <pdeschrijver@nvidia.com>,
	Krzysztof Kozlowski <krzk@kernel.org>,
	Mikko Perttunen <cyndis@kapsi.fi>,
	dri-devel@lists.freedesktop.org,
	Nicolas Chauvet <kwizart@gmail.com>,
	Stephen Boyd <sboyd@kernel.org>,
	Viresh Kumar <vireshk@kernel.org>,
	Michael Turquette <mturquette@baylibre.com>,
	linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org,
	Rob Herring <robh+dt@kernel.org>,
	Jonathan Hunter <jonathanh@nvidia.com>,
	Chanwoo Choi <cw00.choi@samsung.com>,
	Kyungmin Park <kyungmin.park@samsung.com>,
	Thierry Reding <thierry.reding@gmail.com>,
	MyungJoo Ham <myungjoo.ham@samsung.com>,
	Peter Geis <pgwipeout@gmail.com>,
	linux-tegra@vger.kernel.org,
	Georgi Djakov <georgi.djakov@linaro.org>
Subject: Re: [PATCH v9 07/17] PM / devfreq: tegra30: Support interconnect and OPPs from device-tree
Date: Wed, 18 Nov 2020 09:51:17 +0530	[thread overview]
Message-ID: <20201118042117.q6nkwm7exakgfvu3@vireshk-i7> (raw)
In-Reply-To: <956315a9-e806-3b18-6792-f01057a6c511@gmail.com>

On 17-11-20, 17:17, Dmitry Osipenko wrote:
> 17.11.2020 13:07, Viresh Kumar пишет:
> > On 16-11-20, 00:29, Dmitry Osipenko wrote:
> >> This patch moves ACTMON driver away from generating OPP table by itself,
> >> transitioning it to use the table which comes from device-tree. This
> >> change breaks compatibility with older device-trees in order to bring
> >> support for the interconnect framework to the driver. This is a mandatory
> >> change which needs to be done in order to implement interconnect-based
> >> memory DVFS. Users of legacy device-trees will get a message telling that
> >> theirs DT needs to be upgraded. Now ACTMON issues memory bandwidth request
> >> using dev_pm_opp_set_bw(), instead of driving EMC clock rate directly.
> >>
> >> Tested-by: Peter Geis <pgwipeout@gmail.com>
> >> Tested-by: Nicolas Chauvet <kwizart@gmail.com>
> >> Acked-by: Chanwoo Choi <cw00.choi@samsung.com>
> >> Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
> >> ---
> >>  drivers/devfreq/tegra30-devfreq.c | 86 ++++++++++++++++---------------
> >>  1 file changed, 44 insertions(+), 42 deletions(-)
> >>
> >> diff --git a/drivers/devfreq/tegra30-devfreq.c b/drivers/devfreq/tegra30-devfreq.c
> >> index 38cc0d014738..ed6d4469c8c7 100644
> >> --- a/drivers/devfreq/tegra30-devfreq.c
> >> +++ b/drivers/devfreq/tegra30-devfreq.c
> >> @@ -19,6 +19,8 @@
> >>  #include <linux/reset.h>
> >>  #include <linux/workqueue.h>
> >>  
> >> +#include <soc/tegra/fuse.h>
> >> +
> >>  #include "governor.h"
> >>  
> >>  #define ACTMON_GLB_STATUS					0x0
> >> @@ -155,6 +157,7 @@ struct tegra_devfreq_device {
> >>  
> >>  struct tegra_devfreq {
> >>  	struct devfreq		*devfreq;
> >> +	struct opp_table	*opp_table;
> >>  
> >>  	struct reset_control	*reset;
> >>  	struct clk		*clock;
> >> @@ -612,34 +615,19 @@ static void tegra_actmon_stop(struct tegra_devfreq *tegra)
> >>  static int tegra_devfreq_target(struct device *dev, unsigned long *freq,
> >>  				u32 flags)
> >>  {
> >> -	struct tegra_devfreq *tegra = dev_get_drvdata(dev);
> >> -	struct devfreq *devfreq = tegra->devfreq;
> >>  	struct dev_pm_opp *opp;
> >> -	unsigned long rate;
> >> -	int err;
> >> +	int ret;
> >>  
> >>  	opp = devfreq_recommended_opp(dev, freq, flags);
> >>  	if (IS_ERR(opp)) {
> >>  		dev_err(dev, "Failed to find opp for %lu Hz\n", *freq);
> >>  		return PTR_ERR(opp);
> >>  	}
> >> -	rate = dev_pm_opp_get_freq(opp);
> >> -	dev_pm_opp_put(opp);
> >> -
> >> -	err = clk_set_min_rate(tegra->emc_clock, rate * KHZ);
> >> -	if (err)
> >> -		return err;
> >> -
> >> -	err = clk_set_rate(tegra->emc_clock, 0);
> >> -	if (err)
> >> -		goto restore_min_rate;
> >>  
> >> -	return 0;
> >> -
> >> -restore_min_rate:
> >> -	clk_set_min_rate(tegra->emc_clock, devfreq->previous_freq);
> >> +	ret = dev_pm_opp_set_bw(dev, opp);
> >> +	dev_pm_opp_put(opp);
> >>  
> >> -	return err;
> >> +	return ret;
> >>  }
> >>  
> >>  static int tegra_devfreq_get_dev_status(struct device *dev,
> >> @@ -655,7 +643,7 @@ static int tegra_devfreq_get_dev_status(struct device *dev,
> >>  	stat->private_data = tegra;
> >>  
> >>  	/* The below are to be used by the other governors */
> >> -	stat->current_frequency = cur_freq;
> >> +	stat->current_frequency = cur_freq * KHZ;
> >>  
> >>  	actmon_dev = &tegra->devices[MCALL];
> >>  
> >> @@ -705,7 +693,12 @@ static int tegra_governor_get_target(struct devfreq *devfreq,
> >>  		target_freq = max(target_freq, dev->target_freq);
> >>  	}
> >>  
> >> -	*freq = target_freq;
> >> +	/*
> >> +	 * tegra-devfreq driver operates with KHz units, while OPP table
> >> +	 * entries use Hz units. Hence we need to convert the units for the
> >> +	 * devfreq core.
> >> +	 */
> >> +	*freq = target_freq * KHZ;
> >>  
> >>  	return 0;
> >>  }
> >> @@ -774,6 +767,7 @@ static struct devfreq_governor tegra_devfreq_governor = {
> >>  
> >>  static int tegra_devfreq_probe(struct platform_device *pdev)
> >>  {
> >> +	u32 hw_version = BIT(tegra_sku_info.soc_speedo_id);
> >>  	struct tegra_devfreq_device *dev;
> >>  	struct tegra_devfreq *tegra;
> >>  	struct devfreq *devfreq;
> >> @@ -781,6 +775,13 @@ static int tegra_devfreq_probe(struct platform_device *pdev)
> >>  	long rate;
> >>  	int err;
> >>  
> >> +	/* legacy device-trees don't have OPP table and must be updated */
> >> +	if (!device_property_present(&pdev->dev, "operating-points-v2")) {
> >> +		dev_err(&pdev->dev,
> >> +			"OPP table not found, please update your device tree\n");
> >> +		return -ENODEV;
> >> +	}
> >> +
> > 
> > You forgot to remove this ?
> 
> Yes, good catch. I'm planning to replace this code with a common helper
> sometime soon, so if there won't be another reasons to make a new
> revision, then I'd prefer to keep it as-is for now.

You should just replace this patch only with a version of V9.1 and you
aren't really required to resend the whole series. And you should fix
it before it gets merged. This isn't a formatting issue which we just
let through. I trust you when you say that you will fix it, but this
must be fixed now.

-- 
viresh
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  reply	other threads:[~2020-11-18  8:02 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-15 21:29 [PATCH v9 00/17] Introduce memory interconnect for NVIDIA Tegra SoCs Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 01/17] memory: tegra30: Support interconnect framework Dmitry Osipenko
2020-11-17 20:24   ` Georgi Djakov
2020-11-17 22:02     ` Dmitry Osipenko
2020-11-18 15:30       ` Georgi Djakov
2020-11-19 12:07         ` Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 02/17] memory: tegra124-emc: Make driver modular Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 03/17] memory: tegra124-emc: Continue probing if timings are missing in device-tree Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 04/17] memory: tegra124: Support interconnect framework Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 05/17] drm/tegra: dc: Support memory bandwidth management Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 06/17] drm/tegra: dc: Extend debug stats with total number of events Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 07/17] PM / devfreq: tegra30: Support interconnect and OPPs from device-tree Dmitry Osipenko
2020-11-17 10:07   ` Viresh Kumar
2020-11-17 14:17     ` Dmitry Osipenko
2020-11-18  4:21       ` Viresh Kumar [this message]
2020-11-19 21:04         ` Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 08/17] PM / devfreq: tegra30: Separate configurations per-SoC generation Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 09/17] PM / devfreq: tegra20: Deprecate in a favor of emc-stat based driver Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 10/17] ARM: tegra: Correct EMC registers size in Tegra20 device-tree Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 11/17] ARM: tegra: Add interconnect properties to " Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 12/17] ARM: tegra: Add interconnect properties to Tegra30 device-tree Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 13/17] ARM: tegra: Add interconnect properties to Tegra124 device-tree Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 14/17] ARM: tegra: Add nvidia, memory-controller phandle to Tegra20 EMC device-tree Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 15/17] ARM: tegra: Add EMC OPP properties to Tegra20 device-trees Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 16/17] ARM: tegra: Add EMC OPP and ICC properties to Tegra30 EMC and ACTMON device-tree nodes Dmitry Osipenko
2020-11-15 21:29 ` [PATCH v9 17/17] ARM: tegra: Add EMC OPP and ICC properties to Tegra124 " Dmitry Osipenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201118042117.q6nkwm7exakgfvu3@vireshk-i7 \
    --to=viresh.kumar@linaro.org \
    --cc=cw00.choi@samsung.com \
    --cc=cyndis@kapsi.fi \
    --cc=digetx@gmail.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=georgi.djakov@linaro.org \
    --cc=jonathanh@nvidia.com \
    --cc=krzk@kernel.org \
    --cc=kwizart@gmail.com \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-tegra@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=myungjoo.ham@samsung.com \
    --cc=pdeschrijver@nvidia.com \
    --cc=pgwipeout@gmail.com \
    --cc=robh+dt@kernel.org \
    --cc=sboyd@kernel.org \
    --cc=thierry.reding@gmail.com \
    --cc=vireshk@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).