diff options
| author | Guchun Chen <guchunc@codeaurora.org> | 2018-11-01 18:36:11 +0800 |
|---|---|---|
| committer | Guchun Chen <guchunc@codeaurora.org> | 2019-02-26 11:50:34 +0800 |
| commit | 4a0416cb5eef123c0bc7b9dccb47876f16995ae4 (patch) | |
| tree | aab5ac77fad949a486aa0c0912db28d9b7e7bed4 /Documentation/devicetree/bindings | |
| parent | ace476d5d234e54233d8f0d2d54823fb55bba0b5 (diff) | |
drm: msm: sde: reduce black screen duration from null commit
User may send null commit without any plane attached to kernel.
In kernel, these null commits will clear mixer blendstage for
all pipes, and power on screen with black background color.
However, when bootloader splash is on, this operation will
override the splash, which brings long black screen duration
between splash and user UI. So this patch is to fix this.
Change-Id: I3a34ab2ad421f40bd315eb2874fea5dc33d3ccfb
Signed-off-by: Guchun Chen <guchunc@codeaurora.org>
Diffstat (limited to 'Documentation/devicetree/bindings')
| -rw-r--r-- | Documentation/devicetree/bindings/display/msm/splash.txt | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/display/msm/splash.txt b/Documentation/devicetree/bindings/display/msm/splash.txt new file mode 100644 index 000000000000..02a7148e9f5d --- /dev/null +++ b/Documentation/devicetree/bindings/display/msm/splash.txt @@ -0,0 +1,32 @@ +Qualcomm Technologies, Inc. SDE early splash support + +Optional properties: +- qcom,sde-plane-id: reserved plane id +- qcom,plane-name: reserved plane name +- qcom,pipe-early-release: dedicated for splash layer(not early RVC) + +Example: + +/ { + qcom,sde-reserved-plane { + qcom,sde-plane-id@0 { + reg = <0x0>; + qcom,plane-name = "vig0"; + }; + qcom,sde-plane-id@1 { + reg = <0x1>; + qcom,plane-name = "rgb0"; + qcom,pipe-early-release; + }; + qcom,sde-plane-id@2 { + reg = <0x2>; + qcom,plane-name = "rgb1"; + qcom,pipe-early-release; + }; + qcom,sde-plane-id@3 { + reg = <0x3>; + qcom,plane-name = "rgb2"; + qcom,pipe-early-release; + }; + }; +}; |
