All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ulf Hansson <ulf.hansson@linaro.org>
To: Dmitry Osipenko <digetx@gmail.com>
Cc: Thierry Reding <thierry.reding@gmail.com>,
	Jonathan Hunter <jonathanh@nvidia.com>,
	Viresh Kumar <vireshk@kernel.org>,
	Stephen Boyd <sboyd@kernel.org>,
	Peter De Schrijver <pdeschrijver@nvidia.com>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	linux-tegra <linux-tegra@vger.kernel.org>,
	Linux PM <linux-pm@vger.kernel.org>
Subject: Re: [PATCH v7 02/37] soc/tegra: pmc: Implement attach_dev() of power domain drivers
Date: Mon, 9 Aug 2021 16:15:23 +0200	[thread overview]
Message-ID: <CAPDyKFq+ExjbGrN=yUUXPKfN_fGrwY6EAYn9a6VUFFU_VjhC=g@mail.gmail.com> (raw)
In-Reply-To: <a5dfdf59-f5b5-d28e-6b02-b0c860ba8d80@gmail.com>

On Wed, 4 Aug 2021 at 23:17, Dmitry Osipenko <digetx@gmail.com> wrote:
>
> 04.08.2021 12:59, Ulf Hansson пишет:
> > On Mon, 2 Aug 2021 at 20:23, Dmitry Osipenko <digetx@gmail.com> wrote:
> >>
> >> 02.08.2021 17:48, Ulf Hansson пишет:
> >> ...
> >>>> +       if (!list_empty(&genpd->child_links)) {
> >>>> +               link = list_first_entry(&genpd->child_links, struct gpd_link,
> >>>> +                                       child_node);
> >>>> +               core_genpd = link->parent;
> >>>> +       } else {
> >>>> +               core_genpd = genpd;
> >>>> +       }
> >>>
> >>> This looks a bit odd to me. A genpd provider shouldn't need to walk
> >>> these links as these are considered internals to genpd. Normally this
> >>> needs lockings, etc.
> >>>
> >>> Why exactly do you need this?
> >>
> >> We have a chain of PMC domain -> core domain, both domains are created
> >> and liked together by this PMC driver. Devices are attached to either
> >> PMC domain or to core domain. PMC domain doesn't handle the performance
> >> changes, performance requests go down to the core domain.
> >
> > Did I get this right? The core domain is the parent to the PMC domain?
>
> You got this right.
>
> >>
> >> This is needed in order to translate the device's OPP into performance
> >> state of the core domain, based on the domain to which device is attached.
> >
> > So, the PMC domain doesn't have an OPP table associated with it, but
> > some of its attached devices may still have available OPPs, which
> > should be managed through the parent domain (core domain). Correct?
>
> Yes, the OPPs are specified only for the core domain.
>
> > Is there a DT patch in the series that I can look at that shows how
> > this is encoded?
>
> See patches which are adding domains and OPPs to DTs:
>
> https://patchwork.ozlabs.org/project/linux-tegra/patch/20210701232728.23591-34-digetx@gmail.com/
>
> https://patchwork.ozlabs.org/project/linux-tegra/patch/20210701232728.23591-35-digetx@gmail.com/

Thanks, this looks sane to me!

>
> > Hmm, I have the feeling that we should try to manage in some generic
> > way in genpd, rather than having to deal with it here.
>
> Still it requires a platform-specific knowledge. It could be some new
> genpd hook for the initialization. But I don't know what other platforms
> may want to initialize, so it's not clear to me how to make it generic.

Right. We may need some more thinking around this, if needed at all (see below).

>
> >>>> +
> >>>> +       pd_opp_table = dev_pm_opp_get_opp_table(&core_genpd->dev);
> >>>> +       if (IS_ERR(pd_opp_table)) {
> >>>> +               dev_err(&genpd->dev, "failed to get OPP table of %s: %pe\n",
> >>>> +                       dev_name(&core_genpd->dev), pd_opp_table);
> >>>> +               ret = PTR_ERR(pd_opp_table);
> >>>> +               goto put_dev_opp;
> >>>> +       }
> >>>> +
> >>>> +       pd_opp = dev_pm_opp_xlate_required_opp(opp_table, pd_opp_table, opp);
> >>>> +       if (IS_ERR(pd_opp)) {
> >>>> +               dev_err(&genpd->dev,
> >>>> +                       "failed to xlate required OPP for %luHz of %s: %pe\n",
> >>>> +                       rate, dev_name(dev), pd_opp);
> >>>> +               ret = PTR_ERR(pd_opp);
> >>>> +               goto put_pd_opp_table;
> >>>> +       }
> >>>> +
> >>>> +       /*
> >>>> +        * The initialized state will be applied by GENPD core on the first
> >>>> +        * RPM-resume of the device.  This means that drivers don't need to
> >>>> +        * explicitly initialize performance state.
> >>>> +        */
> >>>> +       state = pm_genpd_opp_to_performance_state(&core_genpd->dev, pd_opp);
> >>>> +       gpd_data->rpm_pstate = state;
> >>>
> >>> Could the above be replaced with Rajendra's suggestion [1], which
> >>> changes genpd to internally during attach, to set a default
> >>> performance state when there is a "required-opp" specified in the
> >>> device  node?
> >>
> >> It's not a "static" performance level here, but any level depending on
> >> h/w state left from bootloader and etc. The performance level
> >> corresponds to the voltage of the core domain, hence we need to
> >> initialize the voltage vote before device is resumed.
> >
> > Why not let the driver deal with this instead? It should be able to
> > probe its device, no matter what state the bootloader has put the
> > device into.
> >
> > To me, it sounds like a call to dev_pm_genpd_set_performance_state()
> > (perhaps via dev_pm_opp_set_opp() or dev_pm_opp_set_rate()) from the
> > driver itself, should be sufficient?
>
> We did that in a previous versions of this series where drivers were
> calling devm_tegra_core_dev_init_opp_table() helper during the probe to
> initialize performance state of the domain. Moving OPP state
> initialization into central place made drivers cleaner by removing the
> boilerplate code.

I am not against doing this in a central place, like $subject patch
suggests. As a matter of fact, it makes perfect sense to me.

However, what I am concerned about, is that you require to use genpd
internal data structures to do it. I think we should try to avoid
that.

>
> I can revert back to the previous variant, although this variant works
> well too.

I looked at that code and in that path we end up calling
dev_pm_opp_set_rate(), after it has initialized the opp table for the
device.

Rather than doing the OF parsing above to find out the current state
for the device, why can't you just call dev_pm_opp_set_rate() to
initialize a proper vote instead?

>
> > I understand that it means the domain may change the OPP during boot,
> > without respecting a vote for a device that has not been probed yet.
> > But is there a problem with this?
>
> Domains themselves don't change OPP, there is no problem with that. The
> point is to have cleaner code in the drivers.

Alright, this makes sense to me as well.

Kind regards
Uffe

  reply	other threads:[~2021-08-09 14:16 UTC|newest]

Thread overview: 58+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-01 23:26 [PATCH v7 00/37] NVIDIA Tegra power management patches for 5.15 Dmitry Osipenko
2021-07-01 23:26 ` [PATCH v7 01/37] soc/tegra: pmc: Temporarily disable PMC state syncing Dmitry Osipenko
2021-08-12 16:02   ` Dmitry Osipenko
2021-07-01 23:26 ` [PATCH v7 02/37] soc/tegra: pmc: Implement attach_dev() of power domain drivers Dmitry Osipenko
2021-08-02 14:48   ` Ulf Hansson
2021-08-02 18:23     ` Dmitry Osipenko
2021-08-04  9:59       ` Ulf Hansson
2021-08-04 21:16         ` Dmitry Osipenko
2021-08-09 14:15           ` Ulf Hansson [this message]
2021-08-09 23:56             ` Dmitry Osipenko
2021-08-10 10:51               ` Ulf Hansson
2021-08-11 19:30                 ` Dmitry Osipenko
2021-08-11 22:41                   ` Dmitry Osipenko
2021-08-12  1:40                     ` Dmitry Osipenko
2021-08-12 11:17                       ` Ulf Hansson
2021-08-12 16:24                         ` Dmitry Osipenko
2021-07-01 23:26 ` [PATCH v7 03/37] soc/tegra: Don't print error message when OPPs not available Dmitry Osipenko
2021-07-01 23:26 ` [PATCH v7 04/37] soc/tegra: Add devm_tegra_core_dev_init_opp_table_simple() Dmitry Osipenko
2021-07-01 23:26 ` [PATCH v7 05/37] dt-bindings: clock: tegra-car: Document new tegra-clocks node Dmitry Osipenko
2021-07-01 23:26 ` [PATCH v7 06/37] clk: tegra: Support runtime PM and power domain Dmitry Osipenko
2021-07-01 23:26 ` [PATCH v7 07/37] dt-bindings: host1x: Document OPP and power domain properties Dmitry Osipenko
2021-07-01 23:26 ` [PATCH v7 08/37] dt-bindings: host1x: Document Memory Client resets of Host1x, GR2D and GR3D Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 09/37] gpu: host1x: Add host1x_channel_stop() Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 10/37] gpu: host1x: Add runtime PM support Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 11/37] gpu: host1x: Add stub driver for MPE, VI, EPP and ISP Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 12/37] drm/tegra: dc: Support OPP and SoC core voltage scaling Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 13/37] drm/tegra: hdmi: Add OPP support Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 14/37] drm/tegra: gr2d: Support OPP and power management Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 15/37] drm/tegra: gr3d: " Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 16/37] drm/tegra: vic: Stop channel before suspending Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 17/37] usb: chipidea: tegra: Add runtime PM support Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 18/37] bus: tegra-gmi: " Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 19/37] pwm: tegra: Add runtime PM and OPP support Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 20/37] mmc: sdhci-tegra: " Dmitry Osipenko
2021-07-02  3:39   ` kernel test robot
2021-07-02  3:39     ` kernel test robot
2021-07-01 23:27 ` [PATCH v7 21/37] mtd: rawnand: tegra: Add runtime PM support Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 22/37] soc/tegra: fuse: Clear fuse->clk on driver probe failure Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 23/37] soc/tegra: fuse: Add runtime PM support Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 24/37] soc/tegra: fuse: Enable fuse clock on suspend Dmitry Osipenko
2021-07-21 16:00   ` Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 25/37] clk: tegra: Remove CLK_IS_CRITICAL flag from fuse clock Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 26/37] spi: tegra20-slink: Improve runtime PM usage Dmitry Osipenko
2021-07-02  8:29   ` kernel test robot
2021-07-02  8:29     ` kernel test robot
2021-07-01 23:27 ` [PATCH v7 27/37] spi: tegra20-slink: Add OPP support Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 28/37] memory: tegra20-emc: Add minimal runtime PM support Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 29/37] memory: tegra30-emc: " Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 30/37] media: dt: bindings: tegra-vde: Convert to schema Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 31/37] media: dt: bindings: tegra-vde: Document OPP and power domain Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 32/37] media: staging: tegra-vde: Support generic " Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 33/37] ARM: tegra: Add OPP tables and power domains to Tegra20 device-trees Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 34/37] ARM: tegra: Add OPP tables and power domains to Tegra30 device-trees Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 35/37] ARM: tegra: Add Memory Client resets to Tegra20 GR2D, GR3D and Host1x Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 36/37] ARM: tegra: Add Memory Client resets to Tegra30 " Dmitry Osipenko
2021-07-01 23:27 ` [PATCH v7 37/37] soc/tegra: pmc: Enable core domain support on Tegra20 and Tegra30 Dmitry Osipenko
2021-07-09 13:01 ` [PATCH v7 00/37] NVIDIA Tegra power management patches for 5.15 Ulf Hansson
2021-07-09 21:23   ` 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='CAPDyKFq+ExjbGrN=yUUXPKfN_fGrwY6EAYn9a6VUFFU_VjhC=g@mail.gmail.com' \
    --to=ulf.hansson@linaro.org \
    --cc=digetx@gmail.com \
    --cc=jonathanh@nvidia.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pm@vger.kernel.org \
    --cc=linux-tegra@vger.kernel.org \
    --cc=pdeschrijver@nvidia.com \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.