public inbox for cip-dev@lists.cip-project.org
 help / color / mirror / Atom feed
From: "Pavel Machek" <pavel@ucw.cz>
To: cip-dev@lists.cip-project.org
Cc: Pavel Machek <pavel@denx.de>,
	Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>,
	Biju Das <biju.das.jz@bp.renesas.com>
Subject: Re: [cip-dev] [PATCH 4.19.y-cip 1/6] PCI: rcar: Move shareable code to a common file
Date: Fri, 23 Oct 2020 22:32:57 +0200	[thread overview]
Message-ID: <20201023203257.GA10156@duo.ucw.cz> (raw)
In-Reply-To: <OSBPR01MB5048EA292D626F32EB60B393AA1A0@OSBPR01MB5048.jpnprd01.prod.outlook.com>


[-- Attachment #1.1: Type: text/plain, Size: 911 bytes --]

Hi!

> > > +int rcar_pcie_wait_for_dl(struct rcar_pcie *pcie)
> > > +{
> > > +	unsigned int timeout = 10000;
> > > +
> > > +	while (timeout--) {
> > > +		if ((rcar_pci_read_reg(pcie, PCIETSTR) & DATA_LINK_ACTIVE))
> > > +			return 0;
> > > +
> > > +		udelay(5);
> > > +		cpu_relax();
> > > +	}
> > > +
> > > +	return -ETIMEDOUT;
> > > +}
> > 
> > This has same problem. Plus, I don't believe cpu_relax() is good idea
> > there. Relaxing CPU every 5usec will not change anything.
> > 
> Agreed (as above).  wrt cpu_relax() I believe this was added to improve the performance of other HW threads.
>

Yes, but you'd need to call it in a loop. It will be effective if done
inside udelay(), but not like this.

Best regards,
								Pavel

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]

[-- Attachment #2: Type: text/plain, Size: 420 bytes --]


-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#5671): https://lists.cip-project.org/g/cip-dev/message/5671
Mute This Topic: https://lists.cip-project.org/mt/77756293/4520388
Group Owner: cip-dev+owner@lists.cip-project.org
Unsubscribe: https://lists.cip-project.org/g/cip-dev/leave/8129055/727948398/xyzzy [cip-dev@archiver.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-


  reply	other threads:[~2020-10-23 20:33 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-23 16:57 [cip-dev] [PATCH 4.19.y-cip 0/6] Add PCIe EP driver to Renesas R-Car Gen3 and RZ/G2x Lad Prabhakar
2020-10-23 16:58 ` [cip-dev] [PATCH 4.19.y-cip 1/6] PCI: rcar: Move shareable code to a common file Lad Prabhakar
2020-10-23 19:40   ` Pavel Machek
2020-10-23 19:58     ` Lad Prabhakar
2020-10-23 20:32       ` Pavel Machek [this message]
2020-10-23 16:58 ` [cip-dev] [PATCH 4.19.y-cip 2/6] PCI: rcar: Fix calculating mask for PCIEPAMR register Lad Prabhakar
2020-10-23 16:58 ` [cip-dev] [PATCH 4.19.y-cip 3/6] dt-bindings: PCI: rcar: Add bindings for R-Car PCIe endpoint controller Lad Prabhakar
2020-10-23 16:58 ` [cip-dev] [PATCH 4.19.y-cip 4/6] PCI: rcar: Add endpoint mode support Lad Prabhakar
2020-10-23 19:41   ` Pavel Machek
2020-10-23 20:16     ` Lad Prabhakar
2020-10-23 20:34       ` Pavel Machek
2020-10-23 16:58 ` [cip-dev] [PATCH 4.19.y-cip 5/6] arm64: defconfig: Enable R-Car PCIe endpoint driver Lad Prabhakar
2020-10-23 16:58 ` [cip-dev] [PATCH 4.19.y-cip 6/6] misc: pci_endpoint_test: Add Device ID for RZ/G2E PCIe controller Lad Prabhakar
2020-10-23 19:36 ` [cip-dev] [PATCH 4.19.y-cip 0/6] Add PCIe EP driver to Renesas R-Car Gen3 and RZ/G2x Pavel Machek
2020-10-23 19:46   ` Lad Prabhakar

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=20201023203257.GA10156@duo.ucw.cz \
    --to=pavel@ucw.cz \
    --cc=biju.das.jz@bp.renesas.com \
    --cc=cip-dev@lists.cip-project.org \
    --cc=nobuhiro1.iwamatsu@toshiba.co.jp \
    --cc=pavel@denx.de \
    /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