Commit dd55d12c authored by Andrey Grodzovsky's avatar Andrey Grodzovsky Committed by Alex Deucher

drm/amdgpu: Add a few members to support DAL atomic refactor.

Signed-off-by: default avatarAndrey Grodzovsky <Andrey.Grodzovsky@amd.com>
Reviewed-by: default avatarHarry Wentland <harry.wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent b0fb632f
...@@ -310,6 +310,9 @@ struct amdgpu_display_funcs { ...@@ -310,6 +310,9 @@ struct amdgpu_display_funcs {
struct amdgpu_framebuffer { struct amdgpu_framebuffer {
struct drm_framebuffer base; struct drm_framebuffer base;
struct drm_gem_object *obj; struct drm_gem_object *obj;
/* caching for later use */
uint64_t address;
}; };
struct amdgpu_fbdev { struct amdgpu_fbdev {
...@@ -430,6 +433,7 @@ struct amdgpu_crtc { ...@@ -430,6 +433,7 @@ struct amdgpu_crtc {
uint32_t flip_flags; uint32_t flip_flags;
/* After Set Mode stream will be non-NULL */ /* After Set Mode stream will be non-NULL */
const struct dc_stream *stream; const struct dc_stream *stream;
struct drm_pending_vblank_event *event;
}; };
struct amdgpu_encoder_atom_dig { struct amdgpu_encoder_atom_dig {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment