1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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;
};
};
};
|