-
Notifications
You must be signed in to change notification settings - Fork 5
/
panel.py
306 lines (241 loc) · 9.51 KB
/
panel.py
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
# SPDX-License-Identifier: GPL-2.0-only
from __future__ import annotations
import itertools
from dataclasses import dataclass
from enum import Enum, unique
from typing import Iterator, List, Optional
import libfdt
import mipi
from fdt2 import Fdt2
@unique
class Mode(Enum):
VIDEO_MODE = 'dsi_video_mode', ['MIPI_DSI_MODE_VIDEO']
CMD_MODE = 'dsi_cmd_mode', []
def __new__(cls, value: str, flags: List[str]) -> Mode:
obj = object.__new__(cls)
obj._value_ = value
obj.flags = flags
return obj
@unique
class TrafficMode(Enum):
SYNC_PULSE = 'non_burst_sync_pulse', ['MIPI_DSI_MODE_VIDEO_SYNC_PULSE']
SYNC_EVENT = 'non_burst_sync_event', []
BURST_MODE = 'burst_mode', ['MIPI_DSI_MODE_VIDEO_BURST']
def __new__(cls, value: str, flags: List[str]) -> TrafficMode:
obj = object.__new__(cls)
obj._value_ = value
obj.flags = flags
return obj
@staticmethod
def parse(prop: libfdt.Property) -> Optional[TrafficMode]:
if prop.is_str():
return TrafficMode(prop.as_str())
print(f"WARNING: qcom,mdss-dsi-traffic-mode is not a null terminated string:", prop)
# Some Samsung panels have the traffic mode as index for some reason
if len(prop) == 4:
i = prop.as_uint32()
traffic_modes = list(TrafficMode.__members__.values())
if i < len(traffic_modes):
print(f"Interpreting qcom,mdss-dsi-traffic-mode as numeric index: {i} == {traffic_modes[i]}")
return traffic_modes[i]
# Use the default in mdss_dsi_panel.c
print("Falling back to MIPI_DSI_MODE_VIDEO_SYNC_PULSE")
return TrafficMode.SYNC_PULSE
@unique
class LaneMap(Enum):
MAP_0123 = [0, 1, 2, 3]
MAP_3012 = [3, 0, 1, 2]
MAP_2301 = [2, 3, 0, 1]
MAP_1230 = [1, 2, 3, 0]
MAP_0321 = [0, 3, 2, 1]
MAP_1032 = [1, 0, 3, 2]
MAP_2103 = [2, 1, 0, 3]
MAP_3210 = [3, 2, 1, 0]
def __new__(cls, log2phys: List[int]) -> LaneMap:
obj = object.__new__(cls)
obj._value_ = "lane_map_" + ''.join(map(str, log2phys))
# Logical lane -> physical lane (used in downstream)
obj.log2phys = log2phys
# Physical lane -> logical lane (used in mainline)
obj.phys2log = [0, 0, 0, 0]
for i, n in enumerate(log2phys):
obj.phys2log[n] = i
return obj
@staticmethod
def parse(prop: Optional[libfdt.Property]) -> LaneMap:
if not prop:
return LaneMap.MAP_0123
if prop.is_str(): # Null terminated string
return LaneMap(prop.as_str())
print(f"WARNING: qcom,mdss-dsi-lane-map is not a null terminated string:", prop)
return LaneMap.MAP_0123
@unique
class BacklightControl(Enum):
PWM = 'bl_ctrl_pwm'
DCS = 'bl_ctrl_dcs'
WLED = 'bl_ctrl_wled'
SAMSUNG_PWM = 'bl_ctrl_ss_pwm'
class Dimension:
@unique
class Type(Enum):
HORIZONTAL = 'h', 'width'
VERTICAL = 'v', 'height'
def __init__(self, prefix: str, size: str) -> None:
self.prefix = prefix
self.size = size
def __init__(self, fdt: Fdt2, panel_node: int, mode_node: int, t: Type) -> None:
self.type = type
self.px = fdt.getprop(mode_node, f'qcom,mdss-dsi-panel-{t.size}').as_int32()
self.fp = fdt.getprop(mode_node, f'qcom,mdss-dsi-{t.prefix}-front-porch').as_int32()
self.bp = fdt.getprop(mode_node, f'qcom,mdss-dsi-{t.prefix}-back-porch').as_int32()
self.pw = fdt.getprop(mode_node, f'qcom,mdss-dsi-{t.prefix}-pulse-width').as_int32()
self.size = fdt.getprop_int32(panel_node, f'qcom,mdss-pan-physical-{t.size}-dimension')
@dataclass
class Command:
type: mipi.Transaction
last: bool
vc: int
ack: bool
wait: int
payload: bytes
generated: str = None
class CommandSequence:
generated: str = ''
@unique
class State(Enum):
LP_MODE = 'dsi_lp_mode'
HS_MODE = 'dsi_hs_mode'
def __init__(self, fdt: Fdt2, node: int, cmd: str) -> None:
self.state = CommandSequence.State(fdt.getprop(node, f'qcom,mdss-dsi-{cmd}-command-state').as_str())
self.seq = []
prop = fdt.getprop_or_none(node, f'qcom,mdss-dsi-{cmd}-command')
if prop is None:
print(f'Warning: qcom,mdss-dsi-{cmd}-command does not exist')
return # No commands
itr = iter(prop)
if cmd == 'on':
# WHY SONY, WHY?????? Just put it in on-command...
init = fdt.getprop_or_none(node, 'somc,mdss-dsi-init-command')
if init:
itr = itertools.chain(init, itr)
for dtype in itr:
last, vc, ack, wait = next(itr), next(itr), next(itr), next(itr)
dlen = next(itr) << 8 | next(itr)
payload = bytes(next(itr) for _ in range(0, dlen))
t = mipi.Transaction(dtype)
# Very often there are too many arguments encoded in the command stream.
# These are redundant, because they would be never sent anyway.
max_dlen = t.max_args + 1
if 0 < max_dlen < dlen:
payload = payload[:max_dlen]
self.seq.append(Command(t, last, vc, ack, wait, payload))
def _remove_prefixes(text: str, *args: str) -> str:
for prefix in args:
text = text[len(prefix):] if text.startswith(prefix) else text
return text
def _replace_all(text: str, *args: str) -> str:
for replace in args:
text = text.replace(replace, '')
return text
def _remove_before(text: str, sub: str) -> str:
i = text.find(sub)
return text[i + 1:] if i >= 0 else text
def _find_mode_node(fdt: Fdt2, node: int) -> int:
timings_node = fdt.subnode_or_none(node, "qcom,mdss-dsi-display-timings")
if timings_node is None:
return node
mode_node = None
for timing in fdt.subnodes(timings_node):
if mode_node:
print("WARNING: Multiple display timings are not supported yet, using first!")
break
mode_node = timing
assert mode_node, "No display timings found"
return mode_node
class Panel:
def __init__(self, name: str, fdt: Fdt2, node: int) -> None:
self.name = name
self.id = _remove_before(_remove_prefixes(fdt.get_name(node), 'qcom,mdss_dsi_', 'ss_dsi_panel_', 'mot_').lower(), ',')
print(f'Parsing: {self.id} ({name})')
self.short_id = _replace_all(self.id, '_panel', '_video', '_vid', '_cmd',
'_hd', '_qhd', '_720p', '_1080p',
'_wvga', '_fwvga', '_qvga', '_xga', '_wxga')
# Newer SoCs can use panels in different modes (resolution, refresh rate etc).
# We don't support this properly yet but many panels just have a single mode
# ("timing") defined, so let's try to support this here.
mode_node = _find_mode_node(fdt, node)
self.h = Dimension(fdt, node, mode_node, Dimension.Type.HORIZONTAL)
self.v = Dimension(fdt, node, mode_node, Dimension.Type.VERTICAL)
self.framerate = fdt.getprop(mode_node, 'qcom,mdss-dsi-panel-framerate').as_int32()
self.bpp = fdt.getprop(node, 'qcom,mdss-dsi-bpp').as_int32()
self.mode = Mode(fdt.getprop(node, 'qcom,mdss-dsi-panel-type').as_str())
self.traffic_mode = TrafficMode.parse(fdt.getprop(node, 'qcom,mdss-dsi-traffic-mode'))
backlight = fdt.getprop_or_none(node, 'qcom,mdss-dsi-bl-pmic-control-type')
self.backlight = BacklightControl(backlight.as_str()) if backlight else None
self.max_brightness = fdt.getprop_int32(node, 'qcom,mdss-dsi-bl-max-level', None)
if self.backlight == BacklightControl.DCS and self.max_brightness is None:
print("WARNING: DCS backlight without maximum brightness, ignoring...")
self.backlight = None
self.lanes = 0
while fdt.getprop_or_none(node, f'qcom,mdss-dsi-lane-{self.lanes}-state') is not None:
self.lanes += 1
self.lane_map = LaneMap.parse(fdt.getprop_or_none(node, 'qcom,mdss-dsi-lane-map'))
self.flags = self.mode.flags + self.traffic_mode.flags
if fdt.getprop_int32(node, 'qcom,mdss-dsi-h-sync-pulse') != 0:
self.flags.append('MIPI_DSI_MODE_VIDEO_HSE')
if fdt.getprop_or_none(node, 'qcom,mdss-dsi-tx-eot-append') is None:
self.flags.append('MIPI_DSI_MODE_EOT_PACKET')
if fdt.getprop_or_none(node, 'qcom,mdss-dsi-force-clock-lane-hs') is None \
and fdt.getprop_or_none(node, 'qcom,mdss-dsi-force-clk-lane-hs') is None:
self.flags.append('MIPI_DSI_CLOCK_NON_CONTINUOUS')
reset_seq = fdt.getprop_or_none(node, 'qcom,mdss-dsi-reset-sequence')
if reset_seq is not None:
itr = iter(reset_seq.as_uint32_array())
self.reset_seq = list(zip(itr, itr))
else:
self.reset_seq = None
self.cmds = {
'on': CommandSequence(fdt, mode_node, 'on'),
'off': CommandSequence(fdt, mode_node, 'off')
}
# If all commands are sent in LPM, add flag globally
if self.cmds['on'].state == CommandSequence.State.LP_MODE == self.cmds['off'].state:
self.flags.append('MIPI_DSI_MODE_LPM')
if self.bpp == 24:
self.format = 'MIPI_DSI_FMT_RGB888'
else:
raise ValueError(f'Unsupported bpp: {self.bpp} (TODO)')
# Sony </3
prop = fdt.getprop_or_none(node, 'somc,mdss-phy-size-mm')
if prop:
phy_size_mm = prop.as_uint32_array()
self.h.size = phy_size_mm[0]
self.v.size = phy_size_mm[1]
@staticmethod
def parse(fdt: Fdt2, node: int) -> Panel:
name = fdt.getprop_or_none(node, 'qcom,mdss-dsi-panel-name')
return name and Panel(name.as_str(), fdt, node)
@staticmethod
def find(fdt: Fdt2) -> Iterator[Panel]:
for mdp in fdt.find_by_compatible('qcom,mdss_mdp'):
for sub in fdt.subnodes(mdp):
panel = Panel.parse(fdt, sub)
if panel:
yield panel
# Newer device trees do not necessarily have panels below MDP,
# search for qcom,dsi-display node instead
panel_phandles = set()
for display in fdt.find_by_compatible('qcom,dsi-display'):
# On even newer SoCs there is another node with qcom,dsi-display-list
displays = fdt.getprop_or_none(display, 'qcom,dsi-display-list')
if displays is None:
panel_phandles.add(fdt.getprop(display, 'qcom,dsi-panel').as_uint32())
else:
for display_phandle in displays.as_uint32_array():
display = fdt.node_offset_by_phandle(display_phandle)
panel_phandles.add(fdt.getprop(display, 'qcom,dsi-panel').as_uint32())
for phandle in panel_phandles:
offset = fdt.node_offset_by_phandle(phandle)
panel = Panel.parse(fdt, offset)
if panel:
yield panel