gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / Documentation / devicetree / bindings / phy / marvell,mmp3-hsic-phy.yaml
blob00609ace677c9a7ebd87dc1bb2eadda9de44f80b
1 # SPDX-License-Identifier: GPL-2.0-or-later
2 # Copyright 2019 Lubomir Rintel <lkundrak@v3.sk>
3 %YAML 1.2
4 ---
5 $id: "http://devicetree.org/schemas/phy/marvell,mmp3-hsic-phy.yaml#"
6 $schema: "http://devicetree.org/meta-schemas/core.yaml#"
8 title: Marvell MMP3 HSIC PHY
10 maintainers:
11   - Lubomir Rintel <lkundrak@v3.sk>
13 properties:
14   compatible:
15     const: marvell,mmp3-hsic-phy
17   reg:
18     maxItems: 1
19     description: base address of the device
21   reset-gpios:
22     maxItems: 1
23     description: GPIO connected to reset
25   "#phy-cells":
26     const: 0
28 required:
29   - compatible
30   - reg
31   - reset-gpios
32   - "#phy-cells"
34 additionalProperties: false
36 examples:
37   - |
38     #include <dt-bindings/gpio/gpio.h>
39     hsic-phy@f0001800 {
40             compatible = "marvell,mmp3-hsic-phy";
41             reg = <0xf0001800 0x40>;
42             reset-gpios = <&gpio 63 GPIO_ACTIVE_HIGH>;
43             #phy-cells = <0>;
44     };