brintos

brintos / linux-shallow public Read only

0
0
Text · 838 B · be33f03 Raw
48 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/phy/marvell,pxa1928-usb-phy.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Marvell PXA1928 USB/HSIC PHY8 9maintainers:10  - Duje Mihanović <duje.mihanovic@skole.hr>11 12properties:13  compatible:14    enum:15      - marvell,pxa1928-usb-phy16      - marvell,pxa1928-hsic-phy17 18  reg:19    maxItems: 120 21  clocks:22    maxItems: 123 24  '#phy-cells':25    const: 026 27  resets:28    maxItems: 129 30required:31  - compatible32  - reg33  - clocks34  - '#phy-cells'35 36additionalProperties: false37 38examples:39  - |40    #include <dt-bindings/clock/marvell,pxa1928.h>41 42    usbphy: phy@7000 {43        compatible = "marvell,pxa1928-usb-phy";44        reg = <0x7000 0xe0>;45        clocks = <&apmu PXA1928_CLK_USB>;46        #phy-cells = <0>;47    };48