mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-05-01 15:15:19 -04:00
drm/armada: add plane size/location accessors
Add accessors for getting the register values for the plane from the plane state. This will allow us to generate the values when validating the plane rather than when programming, which allows us to fix the interlace handling without adding lots of additional handling in the update functions. Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
This commit is contained in:
@@ -173,14 +173,14 @@ static void armada_drm_primary_plane_atomic_update(struct drm_plane *plane,
|
||||
val |= CFG_PDWN256x24;
|
||||
armada_reg_queue_mod(regs, idx, 0, val, LCD_SPU_SRAM_PARA1);
|
||||
}
|
||||
val = armada_rect_hw_fp(&state->src);
|
||||
if (armada_rect_hw_fp(&old_state->src) != val)
|
||||
val = armada_src_hw(state);
|
||||
if (armada_src_hw(old_state) != val)
|
||||
armada_reg_queue_set(regs, idx, val, LCD_SPU_GRA_HPXL_VLN);
|
||||
val = armada_rect_yx(&state->dst);
|
||||
if (armada_rect_yx(&old_state->dst) != val)
|
||||
val = armada_dst_yx(state);
|
||||
if (armada_dst_yx(old_state) != val)
|
||||
armada_reg_queue_set(regs, idx, val, LCD_SPU_GRA_OVSA_HPXL_VLN);
|
||||
val = armada_rect_hw(&state->dst);
|
||||
if (armada_rect_hw(&old_state->dst) != val)
|
||||
val = armada_dst_hw(state);
|
||||
if (armada_dst_hw(old_state) != val)
|
||||
armada_reg_queue_set(regs, idx, val, LCD_SPU_GZM_HPXL_VLN);
|
||||
if (old_state->src.x1 != state->src.x1 ||
|
||||
old_state->src.y1 != state->src.y1 ||
|
||||
|
||||
Reference in New Issue
Block a user