gpio: rcar: Fix runtime PM imbalance on error
[linux/fpc-iii.git] / Documentation / devicetree / bindings / gpu / samsung-rotator.yaml
blob665c6e3b31d3223874211f0364fc8fedf52e2c7a
1 # SPDX-License-Identifier: GPL-2.0
2 %YAML 1.2
3 ---
4 $id: http://devicetree.org/schemas/gpu/samsung-rotator.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Samsung SoC Image Rotator
9 maintainers:
10   - Inki Dae <inki.dae@samsung.com>
12 properties:
13   compatible:
14     enum:
15       - "samsung,s5pv210-rotator"
16       - "samsung,exynos4210-rotator"
17       - "samsung,exynos4212-rotator"
18       - "samsung,exynos5250-rotator"
19   reg:
20     maxItems: 1
22   interrupts:
23     maxItems: 1
25   clocks:
26     maxItems: 1
28   clock-names:
29     items:
30       - const: rotator
32 required:
33   - compatible
34   - reg
35   - interrupts
36   - clocks
37   - clock-names
39 additionalProperties: false
41 examples:
42   - |
43     rotator@12810000 {
44         compatible = "samsung,exynos4210-rotator";
45         reg = <0x12810000 0x1000>;
46         interrupts = <0 83 0>;
47         clocks = <&clock 278>;
48         clock-names = "rotator";
49     };