devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Krishna Chaitanya Chundru <quic_krichai@quicinc.com>
Cc: "Bjorn Andersson" <andersson@kernel.org>,
	"Konrad Dybcio" <konrad.dybcio@linaro.org>,
	"Rob Herring" <robh@kernel.org>,
	"Krzysztof Kozlowski" <krzysztof.kozlowski+dt@linaro.org>,
	"Conor Dooley" <conor+dt@kernel.org>,
	"Manivannan Sadhasivam" <manivannan.sadhasivam@linaro.org>,
	"Lorenzo Pieralisi" <lpieralisi@kernel.org>,
	"Krzysztof Wilczyński" <kw@linux.com>,
	"Bjorn Helgaas" <bhelgaas@google.com>,
	johan+linaro@kernel.org, bmasney@redhat.com, djakov@kernel.org,
	"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
	linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org,
	LKML <linux-kernel@vger.kernel.org>,
	linux-pci@vger.kernel.org, vireshk@kernel.org,
	quic_vbadigan@quicinc.com, quic_skananth@quicinc.com,
	quic_nitegupt@quicinc.com, quic_parass@quicinc.com,
	krzysztof.kozlowski@linaro.org
Subject: Re: [PATCH v14 3/4] PCI: Bring the PCIe speed to MBps logic to new pcie_link_speed_to_mbps()
Date: Sun, 23 Jun 2024 18:26:03 +0300 (EEST)	[thread overview]
Message-ID: <e501971f-e9e1-d87a-ca44-b2be61f79f3e@linux.intel.com> (raw)
In-Reply-To: <3ed39bb0-f1bb-6973-21e5-aaa34db8013e@quicinc.com>

[-- Attachment #1: Type: text/plain, Size: 3535 bytes --]

On Wed, 19 Jun 2024, Krishna Chaitanya Chundru wrote:

> 
> 
> On 6/14/2024 6:02 PM, Ilpo Järvinen wrote:
> > On Sun, 9 Jun 2024, Krishna chaitanya chundru wrote:
> > 
> > > Bring the switch case in pcie_link_speed_mbps() to new function to
> > > the header file so that it can be used in other places like
> > > in controller driver.
> > > 
> > > Signed-off-by: Krishna chaitanya chundru <quic_krichai@quicinc.com>
> > > Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
> > > Acked-by: Bjorn Helgaas <bhelgaas@google.com>
> > > ---
> > >   drivers/pci/pci.c | 19 +------------------
> > >   drivers/pci/pci.h | 22 ++++++++++++++++++++++
> > >   2 files changed, 23 insertions(+), 18 deletions(-)
> > > 
> > > diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
> > > index d2c388761ba9..6e50fa89b913 100644
> > > --- a/drivers/pci/pci.c
> > > +++ b/drivers/pci/pci.c
> > > @@ -6027,24 +6027,7 @@ int pcie_link_speed_mbps(struct pci_dev *pdev)
> > >   	if (err)
> > >   		return err;
> > >   -	switch (to_pcie_link_speed(lnksta)) {
> > > -	case PCIE_SPEED_2_5GT:
> > > -		return 2500;
> > > -	case PCIE_SPEED_5_0GT:
> > > -		return 5000;
> > > -	case PCIE_SPEED_8_0GT:
> > > -		return 8000;
> > > -	case PCIE_SPEED_16_0GT:
> > > -		return 16000;
> > > -	case PCIE_SPEED_32_0GT:
> > > -		return 32000;
> > > -	case PCIE_SPEED_64_0GT:
> > > -		return 64000;
> > > -	default:
> > > -		break;
> > > -	}
> > > -
> > > -	return -EINVAL;
> > > +	return pcie_link_speed_to_mbps(to_pcie_link_speed(lnksta));
> > 
> > pcie_link_speed_mbps() calls pcie_link_speed_to_mbps(), seems quite
> > confusing to me. Perhaps renaming one to pcie_dev_speed_mbps() would help
> > against the almost identical naming.
> > 
> > In general, I don't like moving that code into a header file, did you
> > check how large footprint the new function is (when it's not inlined)?
> > 
> if we remove this patch we see difference of 8, I think it should be fine.
> with change
> aarch64-linux-gnu-size ../drivers/pci/pci.o
>    text    data     bss     dec     hex filename
>   41440    1334      64   42838    a756 ../kobj/drivers/pci/pci.o
> without the change
> text    data     bss     dec     hex filename
>   41432    1334      64   42830    a74e ../kobj/drivers/pci/pci.o

Thanks for checking it out, seems the inline here was a non-problem.

-- 
 i.

> > Unrelated to this patch, it would be nice if LNKSTA register read would
> > not be needed at all here but since cur_bus_speed is what it is currently,
> > it's just wishful thinking.
> > 
> > >   }
> > >   EXPORT_SYMBOL(pcie_link_speed_mbps);
> > >   diff --git a/drivers/pci/pci.h b/drivers/pci/pci.h
> > > index 1b021579f26a..391a5cd388bd 100644
> > > --- a/drivers/pci/pci.h
> > > +++ b/drivers/pci/pci.h
> > > @@ -333,6 +333,28 @@ void pci_bus_put(struct pci_bus *bus);
> > >   	 (speed) == PCIE_SPEED_2_5GT  ?  2500*8/10 : \
> > >   	 0)
> > >   +static inline int pcie_link_speed_to_mbps(enum pci_bus_speed speed)
> > > +{
> > > +	switch (speed) {
> > > +	case PCIE_SPEED_2_5GT:
> > > +		return 2500;
> > > +	case PCIE_SPEED_5_0GT:
> > > +		return 5000;
> > > +	case PCIE_SPEED_8_0GT:
> > > +		return 8000;
> > > +	case PCIE_SPEED_16_0GT:
> > > +		return 16000;
> > > +	case PCIE_SPEED_32_0GT:
> > > +		return 32000;
> > > +	case PCIE_SPEED_64_0GT:
> > > +		return 64000;
> > > +	default:
> > > +		break;
> > > +	}
> > > +
> > > +	return -EINVAL;
> > > +}
> > 
> > 
> > 
> 

  reply	other threads:[~2024-06-23 15:26 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-09  2:38 [PATCH v14 0/4] PCI: qcom: Add support for OPP Krishna chaitanya chundru
2024-06-09  2:38 ` [PATCH v14 1/4] PCI: qcom: Add ICC bandwidth vote for CPU to PCIe path Krishna chaitanya chundru
2024-06-14 12:14   ` Ilpo Järvinen
2024-06-18  7:22     ` Manivannan Sadhasivam
2024-06-09  2:38 ` [PATCH v14 2/4] dt-bindings: pci: qcom: Add OPP table Krishna chaitanya chundru
2024-06-09  2:38 ` [PATCH v14 3/4] PCI: Bring the PCIe speed to MBps logic to new pcie_link_speed_to_mbps() Krishna chaitanya chundru
2024-06-14 12:32   ` Ilpo Järvinen
2024-06-19 14:30     ` Krishna Chaitanya Chundru
2024-06-19 14:54     ` Krishna Chaitanya Chundru
2024-06-23 15:26       ` Ilpo Järvinen [this message]
2024-06-09  2:38 ` [PATCH v14 4/4] PCI: qcom: Add OPP support to scale performance Krishna chaitanya chundru
2024-06-14 12:42   ` Ilpo Järvinen
2024-06-19 14:31     ` Krishna Chaitanya Chundru

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=e501971f-e9e1-d87a-ca44-b2be61f79f3e@linux.intel.com \
    --to=ilpo.jarvinen@linux.intel.com \
    --cc=andersson@kernel.org \
    --cc=bhelgaas@google.com \
    --cc=bmasney@redhat.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=djakov@kernel.org \
    --cc=johan+linaro@kernel.org \
    --cc=konrad.dybcio@linaro.org \
    --cc=krzk+dt@kernel.org \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=krzysztof.kozlowski@linaro.org \
    --cc=kw@linux.com \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=lpieralisi@kernel.org \
    --cc=manivannan.sadhasivam@linaro.org \
    --cc=quic_krichai@quicinc.com \
    --cc=quic_nitegupt@quicinc.com \
    --cc=quic_parass@quicinc.com \
    --cc=quic_skananth@quicinc.com \
    --cc=quic_vbadigan@quicinc.com \
    --cc=robh@kernel.org \
    --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).