public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Marcel Ziswiler <marcel.ziswiler@toradex.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 3/3] apalis_t30: fix optional pcie port reset for reliable pcie operation
Date: Wed, 9 Aug 2017 14:53:17 +0000	[thread overview]
Message-ID: <1502290394.27304.11.camel@toradex.com> (raw)
In-Reply-To: <e88e26b0-a414-ef47-81a9-874854bcf78b@wwwdotorg.org>

Hi Stephen

On Tue, 2017-08-08 at 10:14 -0600, Stephen Warren wrote:
> On 08/08/2017 06:43 AM, Marcel Ziswiler wrote:
> > From: Marcel Ziswiler <marcel.ziswiler@toradex.com>
> > 
> > Allow optionally bringing up the Apalis type specific 4 lane PCIe
> > port
> > as well as the PCIe switch as found on the Apalis Evaluation board.
> > In
> > order to avoid violating the PCIe reset timing do this by
> > overriding the
> > tegra_pcie_board_port_reset() function. Note however that both the
> > Apalis type specific 4 lane PCIe port as well as the regular Apalis
> > PCIe
> > port are also left disabled in the device tree by default.
> > diff --git a/board/toradex/apalis_t30/apalis_t30.c
> > b/board/toradex/apalis_t30/apalis_t30.c
> > +#ifdef APALIS_T30_PCIE_EVALBOARD_INIT
> > +#define PEX_PERST_N	TEGRA_GPIO(S, 7) /* Apalis GPIO7 */
> > +#define RESET_MOCI_CTRL	TEGRA_GPIO(I, 4)
> > +#endif /* APALIS_T30_PCIE_EVALBOARD_INIT */
> 
> Shouldn't that be a CONFIG_xxx option (defined in Kconfig) rather
> than 
> something new added to the old-style config header?

Yes, of course. Excuse my nostalgia (;-p).

> > +void tegra_pcie_board_port_reset(void *port)
> > +{
> > +	int index = tegra_pcie_port_index_of_port(port);
> > +	if (index == 2) { /* I210 Gigabit Ethernet Controller (On-
> > module) */
> > +		tegra_pcie_port_reset(port);
> 
> I think it'd read better if the } were here rather than wrapping it
> onto 
> the else line; a special case where ifdefs are involved.

Agreed.

> > +#ifdef APALIS_T30_PCIE_EVALBOARD_INIT
> > +	} else if (index == 1) { /* Apalis PCIe */
> > +		/*
> > +		 * As port 0 and 1 share the same RESET_MOCI only
> > assert it once
> > +		 * for both ports below to avoid loosing the
> > previously brought
> > +		 * up port again.
> > +		 */
> 
> How do you know that port 0 gets reset first then port 1?

I of course know from looking at resp. driver but agreed this is kind
of an internal implementation thing which may change in the future
which would break this.

> Also, how do 
> you know that the user isn't going to initialize PCIe multiple times
> and 
> expect the HW to get reset when they do?

Good question. However after having it implemented as requested below
keeping status and such it turns out there is no easy way to ever re-
initialise at least not with nowadays driver model in place (e.g. see
DM_FLAG_ACTIVATED in device_probe() of drivers/core/device.c). Or did I
miss anything?

> This HW design seems fragile,

Agreed, however it is kind of the typical case when there are certain
HW chip erratas which the board designers decide not to fix in hardware
but rather relying on a software workaround.
 
> but I suppose it's rather difficult to change already-shipped HW:-)
> To 
> address some of the issues, does it make sense to keep state in this 
> function and do the reset the first time either index 0 or 1 is
> reset, 
> and not the second time, so this code doesn't care about the order? 

Yes, I actually implemented it that way now but as mentioned above I
don't think there is any easy way to ever cause any re-enumeration.

> To 
> account for re-initialization, you could perhaps do the reset every
> even 
> (second) time the function is called for index 0 or 1, not just the
> first.

Yes, that's exactly how the upcoming v2 does it.

> Aside from that, this series seems fine.

Thanks, Stephen.

Cheers

Marcel

  reply	other threads:[~2017-08-09 14:53 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-08-08 12:43 [U-Boot] [PATCH 0/3] fix apalis_t30 optional pcie operation Marcel Ziswiler
2017-08-08 12:43 ` [U-Boot] [PATCH 1/3] apalis_t30: describe pcie ports Marcel Ziswiler
2017-08-13 21:35   ` Simon Glass
2017-08-08 12:43 ` [U-Boot] [PATCH 2/3] apalis_t30: fix pcie port 0 and 1 pin muxing Marcel Ziswiler
2017-08-08 12:43 ` [U-Boot] [PATCH 3/3] apalis_t30: fix optional pcie port reset for reliable pcie operation Marcel Ziswiler
2017-08-08 16:14   ` Stephen Warren
2017-08-09 14:53     ` Marcel Ziswiler [this message]
2017-08-09 15:59       ` Stephen Warren

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=1502290394.27304.11.camel@toradex.com \
    --to=marcel.ziswiler@toradex.com \
    --cc=u-boot@lists.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