Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[media] dt-bindings: Add Renesas R-Car FDP1 bindings

The FDP1 is a de-interlacing module which converts interlaced video to
progressive video. It is also capable of performing pixel format conversion
between YCbCr/YUV formats and RGB formats.

Signed-off-by: Kieran Bingham <kieran+renesas@bingham.xyz>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>

authored by

Kieran Bingham and committed by
Mauro Carvalho Chehab
3547d32b 446e4125

+37
+37
Documentation/devicetree/bindings/media/renesas,fdp1.txt
··· 1 + Renesas R-Car Fine Display Processor (FDP1) 2 + ------------------------------------------- 3 + 4 + The FDP1 is a de-interlacing module which converts interlaced video to 5 + progressive video. It is capable of performing pixel format conversion between 6 + YCbCr/YUV formats and RGB formats. Only YCbCr/YUV formats are supported as 7 + an input to the module. 8 + 9 + Required properties: 10 + 11 + - compatible: must be "renesas,fdp1" 12 + - reg: the register base and size for the device registers 13 + - interrupts : interrupt specifier for the FDP1 instance 14 + - clocks: reference to the functional clock 15 + 16 + Optional properties: 17 + 18 + - power-domains: reference to the power domain that the FDP1 belongs to, if 19 + any. 20 + - renesas,fcp: a phandle referencing the FCP that handles memory accesses 21 + for the FDP1. Not needed on Gen2, mandatory on Gen3. 22 + 23 + Please refer to the binding documentation for the clock and/or power domain 24 + providers for more details. 25 + 26 + 27 + Device node example 28 + ------------------- 29 + 30 + fdp1@fe940000 { 31 + compatible = "renesas,fdp1"; 32 + reg = <0 0xfe940000 0 0x2400>; 33 + interrupts = <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>; 34 + clocks = <&cpg CPG_MOD 119>; 35 + power-domains = <&sysc R8A7795_PD_A3VP>; 36 + renesas,fcp = <&fcpf0>; 37 + };