mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Ng, Adrian Ho Yin" <adrian.ho.yin.ng@altera.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>,
	Thinh Nguyen <Thinh.Nguyen@synopsys.com>,
	linux-usb@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v7 0/2] usb: dwc3: add Altera Agilex5 DWC3 support
Date: Sat, 19 Sep 2026 00:46:22 +0800	[thread overview]
Message-ID: <6d259ee3-a737-4074-9066-3b01e3673e1c@altera.com> (raw)
In-Reply-To: <cover.1789114385.git.adrian.ho.yin.ng@altera.com>

On 9/11/2026 5:04 PM, adrian.ho.yin.ng@altera.com wrote:
> From: Adrian Ng Ho Yin <adrian.ho.yin.ng@altera.com>
> 
> Agilex5 integrates a Synopsys DesignWare USB3 controller that is probed
> through dwc3-generic-plat. This series adds:
> 
> 1. dt-bindings for compatible "altr,agilex5-dwc3"
> 2. matching entry in dwc3-generic-plat
> 
> arm64 DTS enablement is posted separately.
> 
Hi All,

Gentle reminder for this patchset.
The device tree patch has been applied by the DT maintainer.
https://lore.kernel.org/all/02d94760-6e5e-40cf-9354-63b9bca5d682@kernel.org/

Thanks
Adrian
> ---
> changelog:
> v6->v7:
> * Drop arm64 DTS patches from this series (DTS must not be mixed into a
>    USB-targeted series). DTS is reposted separately.
> 
> v6 patch link:
> https://lore.kernel.org/all/cover.1788886615.git.adrian.ho.yin.ng@altera.com/
> 
> v5->v6:
> * Make snps,dis_u2_susphy_quirk and snps,dis_u3_susphy_quirk required.
> 
> v5 patch link:
> https://lore.kernel.org/all/cover.1788757821.git.adrian.ho.yin.ng@altera.com/
> 
> v4->v5:
> * Binding: replace unevaluatedProperties: false with additionalProperties:
>    false, and allow only the extra DWC3 properties used on this SoC via
>    "foo: true".
> 
> v4 patch link:
> https://lore.kernel.org/all/cover.1788503540.git.adrian.ho.yin.ng@altera.com/
> 
> v3->v4:
> * Drop clk binding/driver patches; reuse AGILEX5_USB31_SUSPEND_CLK for
>    both "ref" and "suspend".
> * Update altr,agilex5-dwc3.yaml per review.
> * Limit the series to USB binding, DTS, and dwc3-generic-plat.
> 
> v3 patch link:
> https://lore.kernel.org/all/cover.1786518803.git.adrian.ho.yin.ng@altera.com/
> 
> v2->v3:
> * Drop dma_addressable_bits; describe 40-bit DMA limit with dma-ranges.
> * Keep Agilex5 support in dwc3-generic-plat as a compatible match only.
> 
> v2 patch link:
> https://lore.kernel.org/all/cover.1765249127.git.adrianhoyin.ng@altera.com/
> 
> v1->v2:
> * Flattened model + dwc3-generic-plat instead of dwc3-of-simple.
> * Split USB3 add vs USB0 disable in DTS (still wrongly kept in USB
>    series until v7).
> 
> v1 patch link:
> https://lore.kernel.org/all/cover.1762839776.git.adrianhoyin.ng@altera.com/
> ---
> 
> Adrian Ng Ho Yin (2):
>    dt-bindings: usb: add Altera Agilex5 DWC3 controller
>    usb: dwc3: add Altera Agilex5 support to generic platform driver
> 
>   .../bindings/usb/altr,agilex5-dwc3.yaml       | 112 ++++++++++++++++++
>   drivers/usb/dwc3/dwc3-generic-plat.c          |   1 +
>   2 files changed, 113 insertions(+)
>   create mode 100644 Documentation/devicetree/bindings/usb/altr,agilex5-dwc3.yaml
> 
> 
> base-commit: bc35965f6940a9bf834d54187b6088b8eb09206d


  parent reply	other threads:[~2026-09-18 16:46 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-08 17:04 [PATCH v6 0/4] Add USB3.1 support for Agilex5 Adrian Ng Ho Yin
2026-09-08 17:04 ` [PATCH v6 1/4] dt-bindings: usb: add Altera Agilex5 DWC3 controller Adrian Ng Ho Yin
2026-09-11  7:21   ` Krzysztof Kozlowski
2026-09-08 17:04 ` [PATCH v6 2/4] arm64: dts: intel: agilex5: add USB3.1 controller node Adrian Ng Ho Yin
2026-09-11  7:21   ` Krzysztof Kozlowski
2026-09-11  7:58     ` NG, ADRIAN HO YIN
2026-09-08 17:04 ` [PATCH v6 3/4] arm64: dts: intel: agilex5: remove usb0 in Agilex5 SoCDK Adrian Ng Ho Yin
2026-09-11  7:22   ` Krzysztof Kozlowski
2026-09-11  7:59     ` NG, ADRIAN HO YIN
2026-09-08 17:04 ` [PATCH v6 4/4] usb: dwc3: add Altera Agilex5 support to generic platform driver Adrian Ng Ho Yin
2026-09-11  9:04 ` [PATCH v7 0/2] usb: dwc3: add Altera Agilex5 DWC3 support adrian.ho.yin.ng
2026-09-11  9:04   ` [PATCH v7 1/2] dt-bindings: usb: add Altera Agilex5 DWC3 controller adrian.ho.yin.ng
2026-09-11  9:04   ` [PATCH v7 2/2] usb: dwc3: add Altera Agilex5 support to generic platform driver adrian.ho.yin.ng
2026-09-18 16:46   ` Ng, Adrian Ho Yin [this message]
2026-09-18 22:03     ` [PATCH v7 0/2] usb: dwc3: add Altera Agilex5 DWC3 support Thinh Nguyen

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=6d259ee3-a737-4074-9066-3b01e3673e1c@altera.com \
    --to=adrian.ho.yin.ng@altera.com \
    --cc=Thinh.Nguyen@synopsys.com \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=robh@kernel.org \
    /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

all inboxes | Powered by JetHome®