xref: /freebsd/sys/contrib/device-tree/Bindings/usb/nxp,lpc3220-udc.yaml (revision 833e5d42ab135b0238e61c5b3c19b8619677cbfa)
1*833e5d42SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2*833e5d42SEmmanuel Vadot%YAML 1.2
3*833e5d42SEmmanuel Vadot---
4*833e5d42SEmmanuel Vadot$id: http://devicetree.org/schemas/usb/nxp,lpc3220-udc.yaml#
5*833e5d42SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*833e5d42SEmmanuel Vadot
7*833e5d42SEmmanuel Vadottitle: NXP LPC32xx SoC USB Device Controller (UDC)
8*833e5d42SEmmanuel Vadot
9*833e5d42SEmmanuel Vadotmaintainers:
10*833e5d42SEmmanuel Vadot  - Frank Li <Frank.Li@nxp.com>
11*833e5d42SEmmanuel Vadot
12*833e5d42SEmmanuel Vadotproperties:
13*833e5d42SEmmanuel Vadot  compatible:
14*833e5d42SEmmanuel Vadot    const: nxp,lpc3220-udc
15*833e5d42SEmmanuel Vadot
16*833e5d42SEmmanuel Vadot  reg:
17*833e5d42SEmmanuel Vadot    maxItems: 1
18*833e5d42SEmmanuel Vadot
19*833e5d42SEmmanuel Vadot  interrupts:
20*833e5d42SEmmanuel Vadot    items:
21*833e5d42SEmmanuel Vadot      - description: USB Device Low Priority Interrupt
22*833e5d42SEmmanuel Vadot      - description: USB Device High Priority Interrupt
23*833e5d42SEmmanuel Vadot      - description: USB Device DMA Interrupt
24*833e5d42SEmmanuel Vadot      - description: External USB Transceiver Interrupt (OTG ATX)
25*833e5d42SEmmanuel Vadot
26*833e5d42SEmmanuel Vadot  clocks:
27*833e5d42SEmmanuel Vadot    maxItems: 1
28*833e5d42SEmmanuel Vadot
29*833e5d42SEmmanuel Vadot  transceiver:
30*833e5d42SEmmanuel Vadot    description:
31*833e5d42SEmmanuel Vadot      phandle of the associated ISP1301 device - this is necessary for
32*833e5d42SEmmanuel Vadot      the UDC controller for connecting to the USB physical layer
33*833e5d42SEmmanuel Vadot
34*833e5d42SEmmanuel Vadotrequired:
35*833e5d42SEmmanuel Vadot  - compatible
36*833e5d42SEmmanuel Vadot  - reg
37*833e5d42SEmmanuel Vadot  - interrupts
38*833e5d42SEmmanuel Vadot  - transceiver
39*833e5d42SEmmanuel Vadot
40*833e5d42SEmmanuel VadotadditionalProperties: false
41*833e5d42SEmmanuel Vadot
42*833e5d42SEmmanuel Vadotexamples:
43*833e5d42SEmmanuel Vadot  - |
44*833e5d42SEmmanuel Vadot    usbd@31020000 {
45*833e5d42SEmmanuel Vadot        compatible = "nxp,lpc3220-udc";
46*833e5d42SEmmanuel Vadot        reg = <0x31020000 0x300>;
47*833e5d42SEmmanuel Vadot        interrupt-parent = <&mic>;
48*833e5d42SEmmanuel Vadot        interrupts = <0x3d 0>, <0x3e 0>, <0x3c 0>, <0x3a 0>;
49*833e5d42SEmmanuel Vadot        transceiver = <&isp1301>;
50*833e5d42SEmmanuel Vadot    };
51