All of lore.kernel.org
 help / color / mirror / Atom feed
From: Harm Berntsen <harm.berntsen@nedap.com>
To: u-boot@lists.denx.de
Subject: [PATCH 01/19] phy: nop-phy: Add standard usb-nop-xceiv compat string
Date: Tue, 6 Apr 2021 19:34:14 +0000	[thread overview]
Message-ID: <f865f2a1a9bc28fbd380cda1ca1fc75be0caa523.camel@nedap.com> (raw)
In-Reply-To: <20210402124812.186761-1-marex@denx.de>

On Fri, 2021-04-02 at 14:47 +0200, Marek Vasut wrote:
> The USB no-op PHY uses "usb-nop-xceiv" compatible string. This driver
> is
> compatible with USB no-op PHY, so add the compatible string.
> 
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Alexey Brodkin <alexey.brodkin@synopsys.com>
> Cc: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
> Cc: Fabio Estevam <festevam@gmail.com>
> Cc: Jean-Jacques Hiblot <jjhiblot@ti.com>
> Cc: Murali Karicheri <m-karicheri2@ti.com>
> Cc: Peng Fan <peng.fan@nxp.com>
> Cc: Stefano Babic <sbabic@denx.de>
> Cc: Ye Li <ye.li@nxp.com>
> Cc: uboot-imx <uboot-imx@nxp.com>
> ---
> ?drivers/phy/nop-phy.c | 1 +
> ?1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/phy/nop-phy.c b/drivers/phy/nop-phy.c
> index 84aac806230..9f12ebc0624 100644
> --- a/drivers/phy/nop-phy.c
> +++ b/drivers/phy/nop-phy.c
> @@ -43,6 +43,7 @@ static int nop_phy_probe(struct udevice *dev)
> ?
> ?static const struct udevice_id nop_phy_ids[] = {
> ????????{ .compatible = "nop-phy" },
> +???????{ .compatible = "usb-nop-xceiv" },
> ????????{ }
> ?};
> ?

Hi Marek,

I've tested this patch series on my IMX8MN board, the USB host
functionality works!

For other IMX8MN users who want to test this:

Add IMX8MN to the Kconfig:

--- a/drivers/usb/host/Kconfig
+++ b/drivers/usb/host/Kconfig
@@ -156,7 +156,7 @@ config USB_EHCI_MX6
 
 config USB_EHCI_MX7
        bool "Support for i.MX7 on-chip EHCI USB controller"
-       depends on ARCH_MX7 || IMX8MM
+       depends on ARCH_MX7 || IMX8MM || IMX8MN


And add the following to your board header:

#define CONFIG_MXC_USB_PORTSC  (PORT_PTS_UTMI | PORT_PTS_PTW)

Kind regards,
Harm Berntsen

  parent reply	other threads:[~2021-04-06 19:34 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-02 12:47 [PATCH 01/19] phy: nop-phy: Add standard usb-nop-xceiv compat string Marek Vasut
2021-04-02 12:47 ` [PATCH 02/19] arc: emsdp/iotdk: Use standard compatible string for USB no-op PHY Marek Vasut
2021-04-02 12:47 ` [PATCH 03/19] ARM: dts: k2g-evm: " Marek Vasut
2021-04-02 12:47 ` [PATCH 04/19] ARM: dts: imx8mm: Replace deprecated fsl, usbphy DT props with phys Marek Vasut
2021-04-02 12:47 ` [PATCH 05/19] ARM: dts: imx8mm: Add power domain nodes Marek Vasut
2021-04-04 23:24   ` Jaehoon Chung
2021-04-02 12:47 ` [PATCH 06/19] imx: power-domain: Add fsl, imx8mm-gpc compatible string Marek Vasut
2021-04-04 23:26   ` Jaehoon Chung
2021-04-02 12:48 ` [PATCH 07/19] usb: ehci-mx6: Turn off Vbus on probe failure Marek Vasut
2021-04-02 12:48 ` [PATCH 08/19] usb: ehci-mx6: Add DM clock support Marek Vasut
2021-04-02 12:48 ` [PATCH 09/19] usb: ehci-mx6: Unify USBNC registers Marek Vasut
2021-04-02 12:48 ` [PATCH 10/19] usb: ehci-mx6: Parse USB PHY and MISC offsets from DT Marek Vasut
2021-04-02 12:48 ` [PATCH 11/19] usb: ehci-mx6: Split ehci_mx6_common_init() Marek Vasut
2021-04-02 12:48 ` [PATCH 12/19] usb: ehci-mx6: Pass PHY address to usb_*_phy*() Marek Vasut
2021-04-02 12:48 ` [PATCH 13/19] usb: ehci-mx6: Split usb_power_config() Marek Vasut
2021-04-02 12:48 ` [PATCH 14/19] usb: ehci-mx6: Pass MISC address to usb_oc_config() Marek Vasut
2021-04-02 12:48 ` [PATCH 15/19] usb: ehci-mx6: Use portnr in DM only if PHY is disabled Marek Vasut
2021-04-02 12:48 ` [PATCH 16/19] usb: ehci-mx6: Add generic EHCI PHY support Marek Vasut
2021-04-02 12:48 ` [PATCH 17/19] usb: ehci-mx6: Add fsl,imx7d-usb compatible string Marek Vasut
2021-04-02 12:48 ` [PATCH 18/19] usb: ehci-mx6: Add iMX8M support Marek Vasut
2021-04-02 12:48 ` [PATCH 19/19] ARM: imx8m: verdin-imx8mm: Enable USB Host support Marek Vasut
2021-04-07  7:07   ` Oleksandr Suvorov
2021-04-08  7:08   ` Marcel Ziswiler
2021-04-10  0:48     ` Marek Vasut
2021-04-06 19:34 ` Harm Berntsen [this message]
2021-04-06 19:53   ` [PATCH 01/19] phy: nop-phy: Add standard usb-nop-xceiv compat string Marek Vasut

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=f865f2a1a9bc28fbd380cda1ca1fc75be0caa523.camel@nedap.com \
    --to=harm.berntsen@nedap.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 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.