Commit 79b06f0c authored by Harry Wentland's avatar Harry Wentland Committed by Alex Deucher

drm/amd/display: Stub new resource objects

We want to split pipe_ctx into plane and stream resource objects.
Signed-off-by: default avatarHarry Wentland <harry.wentland@amd.com>
Reviewed-by: default avatarTony Cheng <Tony.Cheng@amd.com>
Acked-by: default avatarHarry Wentland <Harry.Wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 0a8f43ff
...@@ -152,10 +152,21 @@ struct resource_pool { ...@@ -152,10 +152,21 @@ struct resource_pool {
const struct resource_caps *res_cap; const struct resource_caps *res_cap;
}; };
struct stream_resource {
int stub;
};
struct plane_resource {
int stub;
};
struct pipe_ctx { struct pipe_ctx {
struct dc_plane_state *plane_state; struct dc_plane_state *plane_state;
struct dc_stream_state *stream; struct dc_stream_state *stream;
struct plane_resource plane_res;
struct stream_resource stream_res;
struct mem_input *mi; struct mem_input *mi;
struct input_pixel_processor *ipp; struct input_pixel_processor *ipp;
struct transform *xfm; struct transform *xfm;
......
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