Re: [PATCH v2 1/2] dt-bindings: usb: gadget: udc: add Axiado AX3000 and AX3005 UDC
Krzysztof Kozlowski <[email protected]>
| Newsgroups | org.ozlabs.lists.openbmc,org.infradead.lists.linux-arm-kernel,org.kernel.vger.linux-devicetree,org.kernel.vger.linux-kernel,org.kernel.vger.linux-usb |
|---|---|
| Message-ID | <20260821-woodoo-enlightened-bobcat-9315cb@quoll> |
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 <[email protected]> > + - Krutik Shah <[email protected]> > + - Prasad Bolisetty <[email protected]> > + > +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 <[email protected]> > +M: Krutik Shah <[email protected]> > +M: Prasad Bolisetty <[email protected]> > +L: [email protected] > +S: Supported > +F: Documentation/devicetree/bindings/usb/axiado,ax3000-udc.yaml > + > AYANEO PLATFORM EC DRIVER > M: Antheas Kapenekakis <[email protected]> > L: [email protected] > > -- > 2.34.1 >