brintos

brintos / linux-shallow public Read only

0
0
Text · 949 B · 18bf44e Raw
57 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/gpu/samsung-rotator.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Samsung SoC Image Rotator8 9maintainers:10  - Inki Dae <inki.dae@samsung.com>11 12properties:13  compatible:14    enum:15      - samsung,s5pv210-rotator16      - samsung,exynos4210-rotator17      - samsung,exynos4212-rotator18      - samsung,exynos5250-rotator19 20  reg:21    maxItems: 122 23  interrupts:24    maxItems: 125 26  iommus:27    maxItems: 128 29  power-domains:30    maxItems: 131 32  clocks:33    maxItems: 134 35  clock-names:36    items:37      - const: rotator38 39required:40  - compatible41  - reg42  - interrupts43  - clocks44  - clock-names45 46additionalProperties: false47 48examples:49  - |50    rotator@12810000 {51        compatible = "samsung,exynos4210-rotator";52        reg = <0x12810000 0x1000>;53        interrupts = <0 83 0>;54        clocks = <&clock 278>;55        clock-names = "rotator";56    };57