-
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.
media: dt-bindings: media: Add Allwinner H3 Deinterlace binding
Allwinner H3 Deinterlace core is used for deinterlacing interlaced video content. Core can also be found on some later SoCs, like H5 and R40. Acked-by: Maxime Ripard <mripard@kernel.org> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Jernej Skrabec <jernej.skrabec@siol.net> Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
- Loading branch information
Jernej Skrabec
authored and
Mauro Carvalho Chehab
committed
Oct 24, 2019
1 parent
76df2e6
commit 713e6a2
Showing
1 changed file
with
76 additions
and
0 deletions.
There are no files selected for viewing
76 changes: 76 additions & 0 deletions
76
Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.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,76 @@ | ||
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/media/allwinner,sun8i-h3-deinterlace.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Allwinner H3 Deinterlace Device Tree Bindings | ||
|
||
maintainers: | ||
- Jernej Skrabec <jernej.skrabec@siol.net> | ||
- Chen-Yu Tsai <wens@csie.org> | ||
- Maxime Ripard <mripard@kernel.org> | ||
|
||
description: |- | ||
The Allwinner H3 and later has a deinterlace core used for | ||
deinterlacing interlaced video content. | ||
properties: | ||
compatible: | ||
const: allwinner,sun8i-h3-deinterlace | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
interrupts: | ||
maxItems: 1 | ||
|
||
clocks: | ||
items: | ||
- description: Deinterlace interface clock | ||
- description: Deinterlace module clock | ||
- description: Deinterlace DRAM clock | ||
|
||
clock-names: | ||
items: | ||
- const: bus | ||
- const: mod | ||
- const: ram | ||
|
||
resets: | ||
maxItems: 1 | ||
|
||
interconnects: | ||
maxItems: 1 | ||
|
||
interconnect-names: | ||
const: dma-mem | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- interrupts | ||
- clocks | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/interrupt-controller/arm-gic.h> | ||
#include <dt-bindings/clock/sun8i-h3-ccu.h> | ||
#include <dt-bindings/reset/sun8i-h3-ccu.h> | ||
deinterlace: deinterlace@1400000 { | ||
compatible = "allwinner,sun8i-h3-deinterlace"; | ||
reg = <0x01400000 0x20000>; | ||
clocks = <&ccu CLK_BUS_DEINTERLACE>, | ||
<&ccu CLK_DEINTERLACE>, | ||
<&ccu CLK_DRAM_DEINTERLACE>; | ||
clock-names = "bus", "mod", "ram"; | ||
resets = <&ccu RST_BUS_DEINTERLACE>; | ||
interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>; | ||
interconnects = <&mbus 9>; | ||
interconnect-names = "dma-mem"; | ||
}; | ||
... |