drm/amd/display: fix boot-up on vega10
Fixing null-deref on Vega10 due to regression after 'fix cursor related Pstate hang' change. Added null checks in setting cursor position. Signed-off-by: Roman Li <Roman.Li@amd.com> Reviewed-by: Eric Yang <eric.yang2@amd.com> Reviewed-by: Harry Wentland <Harry.Wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
5f353208c3
commit
dc75dd707c
|
@ -2928,22 +2928,27 @@ void dce110_set_cursor_position(struct pipe_ctx *pipe_ctx)
|
||||||
if (pipe_ctx->top_pipe && pipe_ctx->plane_state != pipe_ctx->top_pipe->plane_state)
|
if (pipe_ctx->top_pipe && pipe_ctx->plane_state != pipe_ctx->top_pipe->plane_state)
|
||||||
pos_cpy.enable = false;
|
pos_cpy.enable = false;
|
||||||
|
|
||||||
ipp->funcs->ipp_cursor_set_position(ipp, &pos_cpy, ¶m);
|
if (ipp->funcs->ipp_cursor_set_position)
|
||||||
mi->funcs->set_cursor_position(mi, &pos_cpy, ¶m);
|
ipp->funcs->ipp_cursor_set_position(ipp, &pos_cpy, ¶m);
|
||||||
|
if (mi->funcs->set_cursor_position)
|
||||||
|
mi->funcs->set_cursor_position(mi, &pos_cpy, ¶m);
|
||||||
}
|
}
|
||||||
|
|
||||||
void dce110_set_cursor_attribute(struct pipe_ctx *pipe_ctx)
|
void dce110_set_cursor_attribute(struct pipe_ctx *pipe_ctx)
|
||||||
{
|
{
|
||||||
struct dc_cursor_attributes *attributes = &pipe_ctx->stream->cursor_attributes;
|
struct dc_cursor_attributes *attributes = &pipe_ctx->stream->cursor_attributes;
|
||||||
|
|
||||||
pipe_ctx->plane_res.ipp->funcs->ipp_cursor_set_attributes(
|
if (pipe_ctx->plane_res.ipp->funcs->ipp_cursor_set_attributes)
|
||||||
|
pipe_ctx->plane_res.ipp->funcs->ipp_cursor_set_attributes(
|
||||||
pipe_ctx->plane_res.ipp, attributes);
|
pipe_ctx->plane_res.ipp, attributes);
|
||||||
|
|
||||||
pipe_ctx->plane_res.mi->funcs->set_cursor_attributes(
|
if (pipe_ctx->plane_res.mi->funcs->set_cursor_attributes)
|
||||||
pipe_ctx->plane_res.mi, attributes);
|
pipe_ctx->plane_res.mi->funcs->set_cursor_attributes(
|
||||||
|
pipe_ctx->plane_res.mi, attributes);
|
||||||
|
|
||||||
pipe_ctx->plane_res.xfm->funcs->set_cursor_attributes(
|
if (pipe_ctx->plane_res.xfm->funcs->set_cursor_attributes)
|
||||||
pipe_ctx->plane_res.xfm, attributes);
|
pipe_ctx->plane_res.xfm->funcs->set_cursor_attributes(
|
||||||
|
pipe_ctx->plane_res.xfm, attributes);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ready_shared_resources(struct dc *dc, struct dc_state *context) {}
|
static void ready_shared_resources(struct dc *dc, struct dc_state *context) {}
|
||||||
|
|
Loading…
Reference in New Issue