All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yao Zi <me@ziyao.cc>
To: Quentin Schulz <quentin.schulz@cherry.de>,
	alice.guo@oss.nxp.com, "NXP i.MX U-Boot Team" <uboot-imx@nxp.com>,
	u-boot@lists.denx.de
Cc: Stefano Babic <sbabic@nabladev.com>,
	Fabio Estevam <festevam@gmail.com>, Tom Rini <trini@konsulko.com>,
	Marek Vasut <marex@denx.de>,
	Marek Vasut <marek.vasut@mailbox.org>, Ye Li <ye.li@nxp.com>,
	Tim Harvey <tharvey@gateworks.com>, Peng Fan <peng.fan@nxp.com>,
	Mattijs Korpershoek <mkorpershoek@kernel.org>,
	Lukasz Majewski <lukma@denx.de>, Sherry Sun <sherry.sun@nxp.com>,
	Kever Yang <kever.yang@rock-chips.com>,
	Jonas Karlman <jonas@kwiboo.se>,
	George Chan <gchan9527@gmail.com>, Simon Glass <sjg@chromium.org>,
	David Zang <davidzangcs@gmail.com>, Alice Guo <alice.guo@nxp.com>
Subject: Re: [PATCH v1 5/7] usb: Kconfig: imply DM_USB_GADGET
Date: Tue, 16 Dec 2025 10:07:35 +0000	[thread overview]
Message-ID: <aUEvZyIU4YMiSwUJ@pie> (raw)
In-Reply-To: <13e5946a-26d7-4b60-91f1-df9a3ba36f52@cherry.de>

On Tue, Dec 16, 2025 at 10:49:47AM +0100, Quentin Schulz wrote:
> Hi Alice,
> 
> On 12/16/25 7:38 AM, alice.guo@oss.nxp.com wrote:
> > From: Sherry Sun <sherry.sun@nxp.com>
> > 
> > Since the ci_udc driver has been converted to DM driver, the
> > CONFIG_DM_USB_GADGET should also be selected when CONFIG_CI_UDC
> > is enabled, then we can use DM ci_udc driver.
> > 
> 
> Is DM_USB_GADGET *required* for CI_UDC to work? "imply" allows to have
> DM_USB_GADGET=y AND CI_UDC=n, which is probably not what you want. You
> probably simply want "depends on DM_USB_GADGET"

And if DM_USB_GADGET is required for CI_UDC to work after PATCH 4 which
does the convert, this patch should probably be merged with PATCH 4, or
we will have unfunctional commits, affecting bisectibility.

> > Signed-off-by: Sherry Sun <sherry.sun@nxp.com>
> > Signed-off-by: Alice Guo <alice.guo@nxp.com>
> > Reviewed-by: Ye Li <ye.li@nxp.com>
> 
> Please do not provide Reviewed-by on the first version of a patch,
> Reviewed-by, Acked-by, Tested-by, etc.... should be given publicly on the
> mailing list. We don't know if Ye Li actually reviewed it or if you
> unilaterally decided they reviewed it. We don't know if we can trust it...
> which we shouldn't have to figure out.
> 
> Cheers,
> Quentin

Best regards,
Yao Zi

  reply	other threads:[~2025-12-16 10:07 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-16  6:38 [PATCH 0/7] Enable USB in device mode on i.MX8ULP EVK alice.guo
2025-12-16  6:38 ` [PATCH v1 1/7] usb: ehci-mx6: Move USB PHY register definitions to common header alice.guo
2025-12-16  6:38 ` [PATCH v1 2/7] usb: ehci-mx6: Fix usb_oc_config() for i.MX7/8M/9/7ULP/8 and 8ULP platforms alice.guo
2025-12-16 11:15   ` Marek Vasut
2025-12-25 10:41     ` 回复: " Alice Guo (OSS)
2025-12-25 20:56       ` Marek Vasut
2025-12-16  6:38 ` [PATCH v1 3/7] usb: ehci-mx6: Extract PHY initialization into reusable function alice.guo
2025-12-16  9:52   ` [PATCH v1 3/7] usb: ehci-mx6: Extract PHY initialization into reusable functionr Yao Zi
2025-12-16 11:17   ` [PATCH v1 3/7] usb: ehci-mx6: Extract PHY initialization into reusable function Marek Vasut
2025-12-25 10:49     ` 回复: " Alice Guo (OSS)
2025-12-16  6:38 ` [PATCH v1 4/7] usb: ci_udc: Convert driver to DM_USB_GADGET alice.guo
2025-12-16 10:00   ` Yao Zi
2025-12-16 11:19   ` Marek Vasut
2025-12-16 14:07   ` Tom Rini
2025-12-16  6:38 ` [PATCH v1 5/7] usb: Kconfig: imply DM_USB_GADGET alice.guo
2025-12-16  9:49   ` Quentin Schulz
2025-12-16 10:07     ` Yao Zi [this message]
2025-12-25 10:16     ` 回复: " Alice Guo (OSS)
2025-12-25 15:06       ` Tom Rini
2025-12-16  6:38 ` [PATCH v1 6/7] usb: gadget: ci_udc: Add i.MX8ULP support alice.guo
2025-12-16  6:38 ` [PATCH v1 7/7] imx8ulp_evk: Enable USB controller at 0x29920000 in device mode alice.guo

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=aUEvZyIU4YMiSwUJ@pie \
    --to=me@ziyao.cc \
    --cc=alice.guo@nxp.com \
    --cc=alice.guo@oss.nxp.com \
    --cc=davidzangcs@gmail.com \
    --cc=festevam@gmail.com \
    --cc=gchan9527@gmail.com \
    --cc=jonas@kwiboo.se \
    --cc=kever.yang@rock-chips.com \
    --cc=lukma@denx.de \
    --cc=marek.vasut@mailbox.org \
    --cc=marex@denx.de \
    --cc=mkorpershoek@kernel.org \
    --cc=peng.fan@nxp.com \
    --cc=quentin.schulz@cherry.de \
    --cc=sbabic@nabladev.com \
    --cc=sherry.sun@nxp.com \
    --cc=sjg@chromium.org \
    --cc=tharvey@gateworks.com \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=uboot-imx@nxp.com \
    --cc=ye.li@nxp.com \
    /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.