-
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.
Merge tag 'du-next-20191218' of git://linuxtv.org/pinchartl/media int…
…o drm-next R-Car Display Unit changes: - Color Management Module support - LVDS encoder dual-link support enhancements - R8A77980 support Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> From: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Link: https://patchwork.freedesktop.org/patch/msgid/20191218151710.GA13830@pendragon.ideasonboard.com
- Loading branch information
Showing
17 changed files
with
856 additions
and
155 deletions.
There are no files selected for viewing
67 changes: 67 additions & 0 deletions
67
Documentation/devicetree/bindings/display/renesas,cmm.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,67 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/display/renesas,cmm.yaml# | ||
$schema: http://devicetree.org/meta-schemas/core.yaml# | ||
|
||
title: Renesas R-Car Color Management Module (CMM) | ||
|
||
maintainers: | ||
- Laurent Pinchart <laurent.pinchart@ideasonboard.com> | ||
- Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> | ||
- Jacopo Mondi <jacopo+renesas@jmondi.org> | ||
|
||
description: |+ | ||
Renesas R-Car color management module connected to R-Car DU video channels. | ||
It provides image enhancement functions such as 1-D look-up tables (LUT), | ||
3-D look-up tables (CLU), 1D-histogram generation (HGO), and color | ||
space conversion (CSC). | ||
properties: | ||
compatible: | ||
oneOf: | ||
- items: | ||
- enum: | ||
- renesas,r8a7795-cmm | ||
- renesas,r8a7796-cmm | ||
- renesas,r8a77965-cmm | ||
- renesas,r8a77990-cmm | ||
- renesas,r8a77995-cmm | ||
- const: renesas,rcar-gen3-cmm | ||
- items: | ||
- const: renesas,rcar-gen2-cmm | ||
|
||
reg: | ||
maxItems: 1 | ||
|
||
clocks: | ||
maxItems: 1 | ||
|
||
resets: | ||
maxItems: 1 | ||
|
||
power-domains: | ||
maxItems: 1 | ||
|
||
required: | ||
- compatible | ||
- reg | ||
- clocks | ||
- resets | ||
- power-domains | ||
|
||
additionalProperties: false | ||
|
||
examples: | ||
- | | ||
#include <dt-bindings/clock/r8a7796-cpg-mssr.h> | ||
#include <dt-bindings/power/r8a7796-sysc.h> | ||
cmm0: cmm@fea40000 { | ||
compatible = "renesas,r8a7796-cmm", | ||
"renesas,rcar-gen3-cmm"; | ||
reg = <0 0xfea40000 0 0x1000>; | ||
power-domains = <&sysc R8A7796_PD_ALWAYS_ON>; | ||
clocks = <&cpg CPG_MOD 711>; | ||
resets = <&cpg 711>; | ||
}; |
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
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
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
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
Oops, something went wrong.