From: Krzysztof Kozlowski <krzk@kernel.org>
To: Naveen Kumar Rajgiri Bassappa <rbnaveenkumar@axiado.com>
Cc: Krutik Shah <krutikshah@axiado.com>,
Prasad Bolisetty <pbolisetty@axiado.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Tzu-Hao Wei <twei@axiado.com>,
Karthikeyan Mitran <kmitran@axiado.com>,
Philipp Zabel <p.zabel@pengutronix.de>,
linux-usb@vger.kernel.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, openbmc@lists.ozlabs.org
Subject: Re: [PATCH v2 1/2] dt-bindings: usb: gadget: udc: add Axiado AX3000 and AX3005 UDC
Date: Fri, 21 Aug 2026 09:41:13 +0200 [thread overview]
Message-ID: <20260821-woodoo-enlightened-bobcat-9315cb@quoll> (raw)
In-Reply-To: <20260817-axiado-ax3000-usb-device-controller-v2-1-0ef033dd0a68@axiado.com>
On Mon, Aug 17, 2026 at 10:57:13PM -0700, Naveen Kumar Rajgiri Bassappa wrote:
> +title: Axiado AX3000/AX3005 USB Device Controller
> +
> +maintainers:
> + - Naveen Kumar Rajgiri Bassappa <rbnaveenkumar@axiado.com>
> + - Krutik Shah <krutikshah@axiado.com>
> + - Prasad Bolisetty <pbolisetty@axiado.com>
> +
> +description:
> + Axiado USB Device Controller (UDC) is used on the AX3000 and AX3005
> + SoCs. This controller is based on a Corigine USB IP core and provides
> + SuperSpeed (5 Gb/s) or High-Speed (480 Mb/s) operation, selected by the
> + maximum-speed property. It supports control, bulk, interrupt, and
> + isochronous transfer types across multiple configurable endpoints. The
> + node describes the memory-mapped register region, interrupt line, and
> + other required properties for the UDC hardware.
Did you implement my comment?
> +
> +properties:
> + compatible:
> + oneOf:
> + - const: axiado,ax3000-udc
> + - items:
> + - const: axiado,ax3005-udc
> + - const: axiado,ax3000-udc
> +
> + reg:
> + maxItems: 1
> +
> + interrupts:
> + maxItems: 1
> +
> + clocks:
> + maxItems: 1
> +
> + resets:
> + maxItems: 1
> +
> + phys:
> + maxItems: 1
> +
> + maximum-speed:
> + enum: [super-speed, high-speed]
You miss referencing proper schema to get such property or you should
not come with own generic properties. IOW, look at other bindings how
they define a proper UDC device schema.
I also do not see a need for this, compatible defines max speed.
> +
> +required:
> + - compatible
> + - reg
> + - interrupts
> +
> +additionalProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/interrupt-controller/arm-gic.h>
> + #include <dt-bindings/interrupt-controller/irq.h>
> +
> + soc {
> + #address-cells = <2>;
> + #size-cells = <2>;
> +
> + usb@81200000 {
> + compatible = "axiado,ax3000-udc";
> + reg = <0x0 0x81200000 0x0 0x00100000>;
> + interrupt-parent = <&gic500>;
> + interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>;
resets, phys. Make example complete.
> + maximum-speed = "high-speed";
> + };
> + };
> diff --git a/MAINTAINERS b/MAINTAINERS
> index a674e36529f7..36af69fb965b 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -4468,6 +4468,14 @@ F: Documentation/devicetree/bindings/spi/axiado,ax3000-spi.yaml
> F: drivers/spi/spi-axiado.c
> F: drivers/spi/spi-axiado.h
>
> +AXIADO USB UDC DRIVER
> +M: Naveen Kumar Rajgiri Bassappa <rbnaveenkumar@axiado.com>
> +M: Krutik Shah <krutikshah@axiado.com>
> +M: Prasad Bolisetty <pbolisetty@axiado.com>
> +L: linux-usb@vger.kernel.org
> +S: Supported
> +F: Documentation/devicetree/bindings/usb/axiado,ax3000-udc.yaml
> +
> AYANEO PLATFORM EC DRIVER
> M: Antheas Kapenekakis <lkml@antheas.dev>
> L: platform-driver-x86@vger.kernel.org
>
> --
> 2.34.1
>
next prev parent reply other threads:[~2026-08-21 7:41 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-18 5:57 [PATCH v2 0/2] Axiado AX3000 and AX3005 USB Device Controller (UDC) Naveen Kumar Rajgiri Bassappa
2026-08-18 5:57 ` [PATCH v2 1/2] dt-bindings: usb: gadget: udc: add Axiado AX3000 and AX3005 UDC Naveen Kumar Rajgiri Bassappa
2026-08-21 7:41 ` Krzysztof Kozlowski [this message]
[not found] ` <20260817-axiado-ax3000-usb-device-controller-v2-2-0ef033dd0a68@axiado.com>
2026-08-24 15:33 ` [PATCH v2 2/2] usb: gadget: udc: add Axiado AX3000 and AX3005 UDC driver Philipp Zabel
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=20260821-woodoo-enlightened-bobcat-9315cb@quoll \
--to=krzk@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=kmitran@axiado.com \
--cc=krutikshah@axiado.com \
--cc=krzk+dt@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=openbmc@lists.ozlabs.org \
--cc=p.zabel@pengutronix.de \
--cc=pbolisetty@axiado.com \
--cc=rbnaveenkumar@axiado.com \
--cc=robh@kernel.org \
--cc=twei@axiado.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox