LKML Archive on lore.kernel.org help / color / mirror / Atom feed
From: Doug Anderson <dianders@chromium.org> To: Maulik Shah <mkshah@codeaurora.org> Cc: Stephen Boyd <swboyd@chromium.org>, Matthias Kaehlcke <mka@chromium.org>, Evan Green <evgreen@chromium.org>, Bjorn Andersson <bjorn.andersson@linaro.org>, LKML <linux-kernel@vger.kernel.org>, linux-arm-msm <linux-arm-msm@vger.kernel.org>, Andy Gross <agross@kernel.org>, Rajendra Nayak <rnayak@codeaurora.org>, Lina Iyer <ilina@codeaurora.org>, lsrao@codeaurora.org Subject: Re: [PATCH v10 2/3] soc: qcom: rpmh: Update dirty flag only when data changes Date: Wed, 4 Mar 2020 15:21:41 -0800 [thread overview] Message-ID: <CAD=FV=VOARbQzY_p-SyDFu0mzFROp8nV9E=sraNrykWiySwEpw@mail.gmail.com> (raw) In-Reply-To: <1583238415-18686-3-git-send-email-mkshah@codeaurora.org> Hi, On Tue, Mar 3, 2020 at 4:27 AM Maulik Shah <mkshah@codeaurora.org> wrote: > > Currently rpmh ctrlr dirty flag is set for all cases regardless of data > is really changed or not. Add changes to update dirty flag when data is > changed to newer values. Update dirty flag everytime when data in batch > cache is updated since rpmh_flush() may get invoked from any CPU instead > of only last CPU going to low power mode. > > Also move dirty flag updates to happen from within cache_lock and remove > unnecessary INIT_LIST_HEAD() call and a default case from switch. > > Fixes: 600513dfeef3 ("drivers: qcom: rpmh: cache sleep/wake state requests") > Signed-off-by: Maulik Shah <mkshah@codeaurora.org> > Reviewed-by: Srinivas Rao L <lsrao@codeaurora.org> > Reviewed-by: Evan Green <evgreen@chromium.org> > --- > drivers/soc/qcom/rpmh.c | 21 +++++++++++++-------- > 1 file changed, 13 insertions(+), 8 deletions(-) > > diff --git a/drivers/soc/qcom/rpmh.c b/drivers/soc/qcom/rpmh.c > index eb0ded0..f28afe4 100644 > --- a/drivers/soc/qcom/rpmh.c > +++ b/drivers/soc/qcom/rpmh.c > @@ -133,26 +133,30 @@ static struct cache_req *cache_rpm_request(struct rpmh_ctrlr *ctrlr, > > req->addr = cmd->addr; > req->sleep_val = req->wake_val = UINT_MAX; > - INIT_LIST_HEAD(&req->list); > list_add_tail(&req->list, &ctrlr->cache); > > existing: > switch (state) { > case RPMH_ACTIVE_ONLY_STATE: > - if (req->sleep_val != UINT_MAX) > + if (req->sleep_val != UINT_MAX) { > req->wake_val = cmd->data; > + ctrlr->dirty = true; > + } You could maybe avoid a few additional "dirty" cases by changing the above "if" to: if (req->sleep_val != UINT_MAX && (req->wake_val != cmd->data) ...since otherwise writing an "ACTIVE_ONLY" thing over and over again with the same value would keep saying "dirty". Looking at this code makes me wonder a bit about how it's supposed to work, though. Let's look at a sequence of 3 commands called in two different orders: rpmh_write(RPMH_WAKE_ONLY_STATE, addr=0x10, data=0xaa); rpmh_write(RPMH_ACTIVE_ONLY_STATE, addr=0x10, data=0x99); rpmh_write(RPMH_SLEEP_STATE, addr=0x10, data=0xbb); ==> End result will be a cache entry (addr=0x10, wake=0xaa, sleep=0xbb) rpmh_write(RPMH_SLEEP_STATE, addr=0x10, data=0xbb); rpmh_write(RPMH_WAKE_ONLY_STATE, addr=0x10, data=0xaa); rpmh_write(RPMH_ACTIVE_ONLY_STATE, addr=0x10, data=0x99); ==> End result will be a cache entry (addr=0x10, wake=0x99, sleep=0xbb) Said another way, it seems weird that a vote for "active" counts as a vote for "wake", but only if a sleep vote was made beforehand? Howzat? Maybe at one point in time it was assumed that wake's point was just to undo sleep? That is, if: state_orig = /* the state before sleep happens */ state_sleep = apply(state_orig, sleep_actions) state_wake = apply(state_sleep, wake_actions) The code is assuming "state_orig == state_wake". ...it sorta makes sense that "state_orig == state_wake" would be true, but if we were really making that requirement we really should have structured RPMH's APIs differently. We shouldn't have even allowed the callers to specify "WAKE_ONLY" state and we should have just constructed it from the "ACTIVE_ONLY" state. To summarize: a) If the only allowable use of "WAKE_ONLY" is to undo "SLEEP_ONLY" then we should re-think the API and stop letting callers to rpmh_write(), rpmh_write_async(), or rpmh_write_batch() ever specify "WAKE_ONLY". The code should just assume that "wake_only = active_only if (active_only != sleep_only)". In other words, RPMH should programmatically figure out the "wake" state based on the sleep/active state and not force callers to do this. b) If "WAKE_ONLY" is allowed to do other things (or if it's not RPMH's job to enforce/assume this) then we should fully skip calling cache_rpm_request() for RPMH_ACTIVE_ONLY_STATE. NOTE: this discussion also makes me wonder about the is_req_valid() function. That will skip sending a sleep/wake entry if the sleep and wake entries are equal to each other. ...but if sleep and wake are both different than "active" it'll be a problem. > break; > case RPMH_WAKE_ONLY_STATE: > - req->wake_val = cmd->data; > + if (req->wake_val != cmd->data) { > + req->wake_val = cmd->data; > + ctrlr->dirty = true; As far as I can tell from the code, you can also avoid dirty if req->sleep_val == UINT_MAX since nothing will be sent if either sleep_val or wake_val are UINT_MAX. Same in the sleep case where we can avoid dirty if wake_val == UINT_MAX. > + } > break; > case RPMH_SLEEP_STATE: > - req->sleep_val = cmd->data; > - break; > - default: > + if (req->sleep_val != cmd->data) { > + req->sleep_val = cmd->data; > + ctrlr->dirty = true; > + } > break; > } I wonder if instead of putting the dirty everywhere above it's better to cache the old value before the switch, then do: ctrl->dirty = (req->sleep_val != old_sleep_val || req->wake_val != old_wake_val) && req->sleep_val != UINT_MAX && req->wake_val != UINT_MAX; -Doug
next prev parent reply other threads:[~2020-03-04 23:21 UTC|newest] Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-03-03 12:26 [PATCH v10 0/3] Invoke rpmh_flush for non OSI targets Maulik Shah 2020-03-03 12:26 ` [PATCH v10 1/3] arm64: dts: qcom: sc7180: Add cpuidle low power states Maulik Shah 2020-03-03 12:26 ` [PATCH v10 2/3] soc: qcom: rpmh: Update dirty flag only when data changes Maulik Shah 2020-03-04 23:21 ` Doug Anderson [this message] 2020-03-05 11:10 ` Maulik Shah 2020-03-05 22:22 ` Doug Anderson 2020-03-10 11:03 ` Maulik Shah 2020-03-10 15:46 ` Doug Anderson 2020-03-11 5:40 ` Maulik Shah 2020-03-03 12:26 ` [PATCH v10 3/3] soc: qcom: rpmh: Invoke rpmh_flush() for dirty caches Maulik Shah 2020-03-04 23:22 ` Doug Anderson 2020-03-05 11:30 ` Maulik Shah 2020-03-05 22:20 ` Doug Anderson 2020-03-10 11:00 ` Maulik Shah
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='CAD=FV=VOARbQzY_p-SyDFu0mzFROp8nV9E=sraNrykWiySwEpw@mail.gmail.com' \ --to=dianders@chromium.org \ --cc=agross@kernel.org \ --cc=bjorn.andersson@linaro.org \ --cc=evgreen@chromium.org \ --cc=ilina@codeaurora.org \ --cc=linux-arm-msm@vger.kernel.org \ --cc=linux-kernel@vger.kernel.org \ --cc=lsrao@codeaurora.org \ --cc=mka@chromium.org \ --cc=mkshah@codeaurora.org \ --cc=rnayak@codeaurora.org \ --cc=swboyd@chromium.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: linkBe 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).