1fd249266SWenjing Liu /*
2fd249266SWenjing Liu  * Copyright 2022 Advanced Micro Devices, Inc.
3fd249266SWenjing Liu  *
4fd249266SWenjing Liu  * Permission is hereby granted, free of charge, to any person obtaining a
5fd249266SWenjing Liu  * copy of this software and associated documentation files (the "Software"),
6fd249266SWenjing Liu  * to deal in the Software without restriction, including without limitation
7fd249266SWenjing Liu  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8fd249266SWenjing Liu  * and/or sell copies of the Software, and to permit persons to whom the
9fd249266SWenjing Liu  * Software is furnished to do so, subject to the following conditions:
10fd249266SWenjing Liu  *
11fd249266SWenjing Liu  * The above copyright notice and this permission notice shall be included in
12fd249266SWenjing Liu  * all copies or substantial portions of the Software.
13fd249266SWenjing Liu  *
14fd249266SWenjing Liu  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15fd249266SWenjing Liu  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16fd249266SWenjing Liu  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17fd249266SWenjing Liu  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18fd249266SWenjing Liu  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19fd249266SWenjing Liu  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20fd249266SWenjing Liu  * OTHER DEALINGS IN THE SOFTWARE.
21fd249266SWenjing Liu  *
22fd249266SWenjing Liu  * Authors: AMD
23fd249266SWenjing Liu  *
24fd249266SWenjing Liu  */
25fd249266SWenjing Liu #ifndef __DC_VIRTUAL_LINK_HWSS_H__
26fd249266SWenjing Liu #define __DC_VIRTUAL_LINK_HWSS_H__
27fd249266SWenjing Liu 
28fd249266SWenjing Liu #include "core_types.h"
29fd249266SWenjing Liu 
30fd249266SWenjing Liu void virtual_setup_stream_encoder(struct pipe_ctx *pipe_ctx);
31*3eccf76cSTom Rix void virtual_setup_stream_attribute(struct pipe_ctx *pipe_ctx);
32fd249266SWenjing Liu void virtual_reset_stream_encoder(struct pipe_ctx *pipe_ctx);
33fd249266SWenjing Liu const struct link_hwss *get_virtual_link_hwss(void);
34fd249266SWenjing Liu 
35fd249266SWenjing Liu #endif /* __DC_VIRTUAL_LINK_HWSS_H__ */
36