lkml.org 
[lkml]   [2022]   [Nov]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    Date
    From
    SubjectRe: [PATCH] clk: qcom: gdsc: Remove direct runtime PM calls
    On Tue, Nov 01, 2022 at 08:29:20PM -0700, Stephen Boyd wrote:
    > Quoting Bjorn Andersson (2022-11-01 19:49:27)
    > > On Tue, Nov 01, 2022 at 04:34:21PM -0700, Stephen Boyd wrote:
    > > > We shouldn't be calling runtime PM APIs from within the genpd
    > > > enable/disable path for a couple reasons.
    > > [..][
    > > > Upon closer inspection, calling runtime PM APIs like this in the GDSC
    > > > driver doesn't make sense. It was intended to make sure the GDSC for the
    > > > clock controller providing other GDSCs was enabled, specifically the
    > > > MMCX GDSC for the display clk controller on SM8250 (sm8250-dispcc), so
    > > > that GDSC register accesses succeeded. That will already happen because
    > > > we make the 'dev->pm_domain' a parent domain of each GDSC we register in
    > > > gdsc_register() via pm_genpd_add_subdomain(). When any of these GDSCs
    > > > are accessed, we'll enable the parent domain (in this specific case
    > > > MMCX).
    > > >
    > >
    > > It's correct that adding the GDSCs as subdomains for the device's
    > > parent-domain will ensure that enabling a GDSC will propagate up and
    > > turn on the (typically) rpmhpd resource.
    > >
    > > But the purpose for the explicit calls was to ensure that the clock
    > > controller itself is accessible. It's been a while since I looked at
    > > this, but iirc letting MMCX to turn off would cause the register access
    > > during dispcc probing to fail - similar to how
    > > clk_pm_runtime_get()/put() ensures the clock registers are accessible.
    >
    > The dispcc and videocc on sm8250 don't use pm_clk APIs. They do use
    > pm_runtime APIs during probe (i.e. pm_runtime_resume_and_get()). That
    > will enable the MMCX domain and keep it on.

    There's a corresponding pm_runtime_put() at the end of
    disp_cc_sm8250_probe(), so this vote should be released.

    While registering clocks, the framework will clk_pm_runtime_get()/put()
    while accessing registers. The argument that was given when introducing
    the calls in the probe was the same, covering the direct regmap
    accesses...

    And I guess it avoids flipping the genpd on/off for each resource being
    accessed.

    > Then when the GDSCs are
    > registered it will create genpds for each GDSC and make them subdomains
    > of the 'dev->pm_domain' genpd for MMCX. If the GDSCs are enabled at
    > probe time they will increment the count on MMCX to put the count into
    > sync between MMCX and the GDSC provided.
    >

    This does not fit my argument; if the purpose is for pm_runtime to
    provide access to the registers (and the subdomain ensuring that the
    GDSC is powered), we should have a pm_runtime_put() after each operation
    (analog to clk_pm_runtime_put()).

    > The clk framework also has runtime PM calls throughout the code to make
    > sure the device is runtime resumed when it is accessed. Maybe the
    > problem is if probe defers and enough runtime puts are called to runtime
    > suspend the device thus disabling MMCX?

    Iirc the problem at hand was really that without any other votes for
    MMCX, the register accesses during probe, gdsc and reset registration
    would access registers without power.

    > Can MMCX really ever be disabled
    > or does disabling it act as a one way disable where you can never enable
    > it again?
    >

    I've not seen any indications of that.

    Only the side effect that if you set_performance_state() MMCX lower than
    required during continuous splash the whole SoC get hosed.

    > Or maybe this is the problem where not all constraints are determined
    > yet but we're letting runtime PM put calls from the dispcc device shut
    > down the entire multimedia subsystem while other devices that are within
    > the same domain haven't probed and been able to sync their state but
    > they're actively accessing the bus (i.e. continuous splash screen). I
    > could see this problem being avoided by the pm_runtime_get() call in
    > gdsc registration keeping MMCX on forever because there isn't a matching
    > put anywhere.
    >

    This implementation predates 41fff779d794 ("clk: qcom: gdsc: Bump parent
    usage count when GDSC is found enabled"), so no this was not introduced
    to hide the issue of
    yet-to-be-probed-devices-not-voting-for-their-resources.

    This problem has been avoided by tying rpmhpd to sync_state and
    requiring that people boot their systems with pd_ignore_unused.

    > >
    > > Perhaps I misunderstood something in the process, or lost track of the
    > > actual issues?
    >
    > I dunno. It clearly is a problem to call runtime PM in the noirq phase
    > of system suspend though.

    We definitely need to ensure that this whole setup plays by the rules!

    Regards,
    Bjorn

    \
     
     \ /
      Last update: 2022-11-02 05:30    [W:2.555 / U:0.060 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site