diff options
author | Nicholas Kazlauskas <[email protected]> | 2019-02-01 09:36:59 -0500 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2019-02-20 16:56:28 -0500 |
commit | 0921c41e19028314830b33daa681e46b46477c5e (patch) | |
tree | 54c0e1b8d624fd20e53a866dc6e85a62a9c618e8 /tools | |
parent | 8852ae9a82498207c15262b6294d14aea1796966 (diff) |
drm/amd/display: Fix negative cursor pos programming
[Why]
If the cursor pos passed from DM is less than the plane_state->dst_rect
top left corner then the unsigned cursor pos wraps around to a large
positive number since cursor pos is a u32.
There was an attempt to guard against this in hubp1_cursor_set_position
by checking the src_x_offset and src_y_offset and offseting the
cursor hotspot within hubp1_cursor_set_position.
However, the cursor position itself is still being programmed
incorrectly as a large value.
This manifests itself visually as the cursor disappearing or containing
strange artifacts near the middle of the screen on raven.
[How]
Don't subtract the destination rect top left corner from the pos but
add it to the hotspot instead. This happens before the pos gets
passed into hubp1_cursor_set_position.
This achieves the same result but avoids the subtraction wrap around.
With this fix the original cursor programming logic can be used again.
Signed-off-by: Nicholas Kazlauskas <[email protected]>
Reviewed-by: Charlene Liu <[email protected]>
Acked-by: Leo Li <[email protected]>
Acked-by: Murton Liu <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'tools')
0 files changed, 0 insertions, 0 deletions