2017-09-12 19:58:20 +00:00
|
|
|
/*
|
|
|
|
* dce100_resource.h
|
|
|
|
*
|
|
|
|
* Created on: 2016-01-20
|
|
|
|
* Author: qyang
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DCE100_RESOURCE_H_
|
|
|
|
#define DCE100_RESOURCE_H_
|
|
|
|
|
2017-08-01 19:00:25 +00:00
|
|
|
struct dc;
|
2017-09-12 19:58:20 +00:00
|
|
|
struct resource_pool;
|
|
|
|
struct dc_validation_set;
|
|
|
|
|
|
|
|
struct resource_pool *dce100_create_resource_pool(
|
|
|
|
uint8_t num_virtual_links,
|
2017-08-01 19:00:25 +00:00
|
|
|
struct dc *dc);
|
2017-09-12 19:58:20 +00:00
|
|
|
|
2017-10-03 16:54:18 +00:00
|
|
|
enum dc_status dce100_validate_plane(const struct dc_plane_state *plane_state, struct dc_caps *caps);
|
2017-07-26 19:51:31 +00:00
|
|
|
|
2017-08-25 20:33:40 +00:00
|
|
|
enum dc_status dce100_add_stream_to_ctx(
|
|
|
|
struct dc *dc,
|
|
|
|
struct dc_state *new_ctx,
|
|
|
|
struct dc_stream_state *dc_stream);
|
|
|
|
|
2017-09-12 19:58:20 +00:00
|
|
|
#endif /* DCE100_RESOURCE_H_ */
|