From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Boyd Subject: Re: [RFC PATCH] clk: qcom: clk-rpmh: Add IPA clock support Date: Tue, 04 Dec 2018 23:15:48 -0800 Message-ID: <154399414865.88331.2447825064224349951@swboyd.mtv.corp.google.com> References: <1543895413-1553-1-git-send-email-daidavid1@codeaurora.org> <1543895413-1553-2-git-send-email-daidavid1@codeaurora.org> <154395145491.88331.1174781210192403998@swboyd.mtv.corp.google.com> <8dafe631-4b16-94cd-392e-84728f2bb382@linaro.org> <154396284056.88331.12279283832884556349@swboyd.mtv.corp.google.com> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org To: Alex Elder , David Dai , linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org Cc: georgi.djakov@linaro.org, bjorn.andersson@linaro.org, evgreen@google.com, tdas@codeaurora.org List-Id: linux-arm-msm@vger.kernel.org Quoting David Dai (2018-12-04 17:14:10) > = > On 12/4/2018 2:34 PM, Stephen Boyd wrote: > > Quoting Alex Elder (2018-12-04 13:41:47) > >> On 12/4/18 1:24 PM, Stephen Boyd wrote: > >>> Quoting David Dai (2018-12-03 19:50:13) > >>>> Add IPA clock support by extending the current clk rpmh driver to su= pport > >>>> clocks that are managed by a different type of RPMh resource known as > >>>> Bus Clock Manager(BCM). > >>> Yes, but why? Does the IPA driver need to set clk rates and that some= how > >>> doesn't work as a bandwidth request? > >> The IPA core clock is a *clock*, not a bus. Representing it as if > >> it were a bus, abusing the interconnect interface--pretending a bandwi= dth > >> request is really a clock rate request--is kind of kludgy. I think Bj= orn > >> and David (and maybe Georgi? I don't know) decided a long time ago that > >> exposing this as a clock is the right way to do it. I agree with that. > >> > > But then we translate that clock rate into a bandwidth request to the > > BCM hardware? Seems really weird because it's doing the opposite of what > > you say is abusive. What does the IPA driver plan to do with this clk? > > Calculate a frequency by knowing that it really boils down to some > > bandwidth that then gets converted back into some clock frequency? Do we > > have the user somewhere that can be pointed to? > The clock rate is translated into a unitless threshold value sent as = > part of the rpmh msg > that BCM takes to select a performance. In this case, the unit = > conversion is based on > the unit value read from the aux data which is in Khz. I understand that = > this wasn't > explicitly mentioned anywhere and I'll improve on that next patch. = How is this different from bus bandwidth requests? In those cases the bandwidth is calculated in bits per second or something like that, and written to the hardware so it can convert that bandwidth into kHz and set a bus clk frequency in the clock controller? So in the IPA case we've skipped the bps to kHz conversion step and gone straight to the clk frequency setting part? Is a BCM able to aggregate units of bandwidth or kHz depending on how it's configured and this BCM is configured for kHz? > Here's a link to > the IPA driver implementation: https://lkml.org/lkml/2018/11/7/220 Thanks for the link. It looks like the IPA driver hard codes a rate of 75 MHz.