b38b4183d2
Add common properties appearing in DTSes (iommus, power-domains) to fix dtbs_check warnings like: arch/arm/boot/dts/exynos4210-i9100.dt.yaml: rotator@12810000: 'iommus', 'power-domains' do not match any of the regexes: 'pinctrl-[0-9]+' Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Link: https://lore.kernel.org/r/20200923150339.12497-1-krzk@kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
57 lines
957 B
YAML
57 lines
957 B
YAML
# SPDX-License-Identifier: GPL-2.0
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/gpu/samsung-rotator.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Samsung SoC Image Rotator
|
|
|
|
maintainers:
|
|
- Inki Dae <inki.dae@samsung.com>
|
|
|
|
properties:
|
|
compatible:
|
|
enum:
|
|
- "samsung,s5pv210-rotator"
|
|
- "samsung,exynos4210-rotator"
|
|
- "samsung,exynos4212-rotator"
|
|
- "samsung,exynos5250-rotator"
|
|
reg:
|
|
maxItems: 1
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
iommus:
|
|
maxItems: 1
|
|
|
|
power-domains:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
maxItems: 1
|
|
|
|
clock-names:
|
|
items:
|
|
- const: rotator
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- interrupts
|
|
- clocks
|
|
- clock-names
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
rotator@12810000 {
|
|
compatible = "samsung,exynos4210-rotator";
|
|
reg = <0x12810000 0x1000>;
|
|
interrupts = <0 83 0>;
|
|
clocks = <&clock 278>;
|
|
clock-names = "rotator";
|
|
};
|
|
|