forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dt-bindings: display: convert faraday,tve200
Converts display/faraday,tve200.txt to yaml. Signed-off-by: Corentin Labbe <clabbe@baylibre.com> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Link: https://patchwork.freedesktop.org/patch/msgid/20210519203547.837237-1-clabbe@baylibre.com
- Loading branch information
Showing
2 changed files
with
68 additions
and
54 deletions.
There are no files selected for viewing
54 changes: 0 additions & 54 deletions
54
Documentation/devicetree/bindings/display/faraday,tve200.txt
This file was deleted.
Oops, something went wrong.
68 changes: 68 additions & 0 deletions
68
Documentation/devicetree/bindings/display/faraday,tve200.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/display/faraday,tve200.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Faraday TV Encoder TVE200 | ||
|
||
maintainers: | ||
- Linus Walleij <linus.walleij@linaro.org> | ||
|
||
properties: | ||
compatible: | ||
oneOf: | ||
- const: faraday,tve200 | ||
- items: | ||
- const: cortina,gemini-tvc | ||
- const: faraday,tve200 | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
interrupts: | ||
minItems: 1 | ||
|
||
clock-names: | ||
items: | ||
- const: PCLK | ||
- const: TVE | ||
|
||
clocks: | ||
minItems: 2 | ||
|
||
resets: | ||
minItems: 1 | ||
|
||
port: | ||
$ref: /schemas/graph.yaml#/properties/port | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- interrupts | ||
- clock-names | ||
- clocks | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/clock/cortina,gemini-clock.h> | ||
#include <dt-bindings/interrupt-controller/irq.h> | ||
#include <dt-bindings/reset/cortina,gemini-reset.h> | ||
display-controller@6a000000 { | ||
compatible = "faraday,tve200"; | ||
reg = <0x6a000000 0x1000>; | ||
interrupts = <13 IRQ_TYPE_EDGE_RISING>; | ||
resets = <&syscon GEMINI_RESET_TVC>; | ||
clocks = <&syscon GEMINI_CLK_GATE_TVC>, | ||
<&syscon GEMINI_CLK_TVC>; | ||
clock-names = "PCLK", "TVE"; | ||
port { | ||
display_out: endpoint { | ||
remote-endpoint = <&panel_in>; | ||
}; | ||
}; | ||
}; |