xref: /freebsd/sys/contrib/device-tree/Bindings/usb/fsl,ls1028a.yaml (revision b2d2a78ad80ec68d4a17f5aef97d21686cb1e29b)
1*b2d2a78aSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2*b2d2a78aSEmmanuel Vadot%YAML 1.2
3*b2d2a78aSEmmanuel Vadot---
4*b2d2a78aSEmmanuel Vadot$id: http://devicetree.org/schemas/usb/fsl,ls1028a.yaml#
5*b2d2a78aSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*b2d2a78aSEmmanuel Vadot
7*b2d2a78aSEmmanuel Vadottitle: Freescale layerscape SuperSpeed DWC3 USB SoC controller
8*b2d2a78aSEmmanuel Vadot
9*b2d2a78aSEmmanuel Vadotmaintainers:
10*b2d2a78aSEmmanuel Vadot  - Frank Li <Frank.Li@nxp.com>
11*b2d2a78aSEmmanuel Vadot
12*b2d2a78aSEmmanuel Vadotselect:
13*b2d2a78aSEmmanuel Vadot  properties:
14*b2d2a78aSEmmanuel Vadot    compatible:
15*b2d2a78aSEmmanuel Vadot      contains:
16*b2d2a78aSEmmanuel Vadot        enum:
17*b2d2a78aSEmmanuel Vadot          - fsl,ls1028a-dwc3
18*b2d2a78aSEmmanuel Vadot  required:
19*b2d2a78aSEmmanuel Vadot    - compatible
20*b2d2a78aSEmmanuel Vadot
21*b2d2a78aSEmmanuel Vadotproperties:
22*b2d2a78aSEmmanuel Vadot  compatible:
23*b2d2a78aSEmmanuel Vadot    items:
24*b2d2a78aSEmmanuel Vadot      - enum:
25*b2d2a78aSEmmanuel Vadot          - fsl,ls1028a-dwc3
26*b2d2a78aSEmmanuel Vadot      - const: snps,dwc3
27*b2d2a78aSEmmanuel Vadot
28*b2d2a78aSEmmanuel Vadot  reg:
29*b2d2a78aSEmmanuel Vadot    maxItems: 1
30*b2d2a78aSEmmanuel Vadot
31*b2d2a78aSEmmanuel Vadot  interrupts:
32*b2d2a78aSEmmanuel Vadot    maxItems: 1
33*b2d2a78aSEmmanuel Vadot
34*b2d2a78aSEmmanuel VadotunevaluatedProperties: false
35*b2d2a78aSEmmanuel Vadot
36*b2d2a78aSEmmanuel Vadotrequired:
37*b2d2a78aSEmmanuel Vadot  - compatible
38*b2d2a78aSEmmanuel Vadot  - reg
39*b2d2a78aSEmmanuel Vadot  - interrupts
40*b2d2a78aSEmmanuel Vadot
41*b2d2a78aSEmmanuel VadotallOf:
42*b2d2a78aSEmmanuel Vadot  - $ref: snps,dwc3.yaml#
43*b2d2a78aSEmmanuel Vadot
44*b2d2a78aSEmmanuel Vadotexamples:
45*b2d2a78aSEmmanuel Vadot  - |
46*b2d2a78aSEmmanuel Vadot    #include <dt-bindings/interrupt-controller/arm-gic.h>
47*b2d2a78aSEmmanuel Vadot
48*b2d2a78aSEmmanuel Vadot    usb@fe800000 {
49*b2d2a78aSEmmanuel Vadot        compatible = "fsl,ls1028a-dwc3", "snps,dwc3";
50*b2d2a78aSEmmanuel Vadot        reg = <0xfe800000 0x100000>;
51*b2d2a78aSEmmanuel Vadot        interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
52*b2d2a78aSEmmanuel Vadot    };
53