All of lore.kernel.org
 help / color / mirror / Atom feed
From: Neil Armstrong <narmstrong@baylibre.com>
To: u-boot@lists.denx.de
Cc: u-boot-amlogic@groups.io, Art Nikpal <email2tema@gmail.com>
Subject: Re: [PATCH] pci: pcie_dw_meson: fix usb fail when pci link fails to go up
Date: Tue, 21 Sep 2021 09:27:28 +0200	[thread overview]
Message-ID: <160d1e30-f95a-948c-8fb6-6083c6722ca0@baylibre.com> (raw)
In-Reply-To: <20210908123212.382716-1-narmstrong@baylibre.com>

On 08/09/2021 14:32, Neil Armstrong wrote:
> On Amlogic A311D, when the PCIe link fails disabling the related clocks
> makes USB fail. For an unknown reason, this doesn happen on the S905D3 SoC.
> 
> Mimic the Linux behavior by not considering a link failure a probe failure,
> and continue even if the PCIe link is down.
> 
> Reported-by: Art Nikpal <email2tema@gmail.com>
> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
> ---
>  drivers/pci/pcie_dw_meson.c | 8 +-------
>  1 file changed, 1 insertion(+), 7 deletions(-)
> 
> diff --git a/drivers/pci/pcie_dw_meson.c b/drivers/pci/pcie_dw_meson.c
> index 0525ecbea6..07da9fa533 100644
> --- a/drivers/pci/pcie_dw_meson.c
> +++ b/drivers/pci/pcie_dw_meson.c
> @@ -319,15 +319,9 @@ static int meson_pcie_init_port(struct udevice *dev)
>  
>  	pcie_dw_setup_host(&priv->dw);
>  
> -	ret = meson_pcie_link_up(priv, LINK_SPEED_GEN_2);
> -	if (ret < 0)
> -		goto err_link_up;
> +	meson_pcie_link_up(priv, LINK_SPEED_GEN_2);
>  
>  	return 0;
> -err_link_up:
> -	clk_disable(&priv->clk_port);
> -	clk_disable(&priv->clk_general);
> -	clk_disable(&priv->clk_pclk);
>  err_deassert_bulk:
>  	reset_assert_bulk(&priv->rsts);
>  err_power_off_phy:
> 


Applied to u-boot-amlogic-next

Neil

      parent reply	other threads:[~2021-09-21  7:27 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-08 12:32 [PATCH] pci: pcie_dw_meson: fix usb fail when pci link fails to go up Neil Armstrong
2021-09-08 12:59 ` Bin Meng
2021-09-21  7:27 ` Neil Armstrong [this message]

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=160d1e30-f95a-948c-8fb6-6083c6722ca0@baylibre.com \
    --to=narmstrong@baylibre.com \
    --cc=email2tema@gmail.com \
    --cc=u-boot-amlogic@groups.io \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.