14562236bSHarry Wentland /*
24562236bSHarry Wentland  * Copyright 2012-15 Advanced Micro Devices, Inc.
34562236bSHarry Wentland  *
44562236bSHarry Wentland  * Permission is hereby granted, free of charge, to any person obtaining a
54562236bSHarry Wentland  * copy of this software and associated documentation files (the "Software"),
64562236bSHarry Wentland  * to deal in the Software without restriction, including without limitation
74562236bSHarry Wentland  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
84562236bSHarry Wentland  * and/or sell copies of the Software, and to permit persons to whom the
94562236bSHarry Wentland  * Software is furnished to do so, subject to the following conditions:
104562236bSHarry Wentland  *
114562236bSHarry Wentland  * The above copyright notice and this permission notice shall be included in
124562236bSHarry Wentland  * all copies or substantial portions of the Software.
134562236bSHarry Wentland  *
144562236bSHarry Wentland  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
154562236bSHarry Wentland  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
164562236bSHarry Wentland  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
174562236bSHarry Wentland  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
184562236bSHarry Wentland  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
194562236bSHarry Wentland  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
204562236bSHarry Wentland  * OTHER DEALINGS IN THE SOFTWARE.
214562236bSHarry Wentland  *
224562236bSHarry Wentland  * Authors: AMD
234562236bSHarry Wentland  *
244562236bSHarry Wentland  */
254562236bSHarry Wentland 
264562236bSHarry Wentland #include "dm_services.h"
274562236bSHarry Wentland #include "virtual_stream_encoder.h"
284562236bSHarry Wentland 
294562236bSHarry Wentland static void virtual_stream_encoder_dp_set_stream_attribute(
304562236bSHarry Wentland 	struct stream_encoder *enc,
314562236bSHarry Wentland 	struct dc_crtc_timing *crtc_timing,
32bb1cb98eSNikola Cornij 	enum dc_color_space output_color_space,
33bb1cb98eSNikola Cornij 	uint32_t enable_sdp_splitting) {}
344562236bSHarry Wentland 
354562236bSHarry Wentland static void virtual_stream_encoder_hdmi_set_stream_attribute(
364562236bSHarry Wentland 	struct stream_encoder *enc,
374562236bSHarry Wentland 	struct dc_crtc_timing *crtc_timing,
384562236bSHarry Wentland 	int actual_pix_clk_khz,
394562236bSHarry Wentland 	bool enable_audio) {}
404562236bSHarry Wentland 
414562236bSHarry Wentland static void virtual_stream_encoder_dvi_set_stream_attribute(
424562236bSHarry Wentland 	struct stream_encoder *enc,
434562236bSHarry Wentland 	struct dc_crtc_timing *crtc_timing,
444562236bSHarry Wentland 	bool is_dual_link) {}
454562236bSHarry Wentland 
464562236bSHarry Wentland static void virtual_stream_encoder_set_mst_bandwidth(
474562236bSHarry Wentland 	struct stream_encoder *enc,
484562236bSHarry Wentland 	struct fixed31_32 avg_time_slots_per_mtp) {}
494562236bSHarry Wentland 
504562236bSHarry Wentland static void virtual_stream_encoder_update_hdmi_info_packets(
514562236bSHarry Wentland 	struct stream_encoder *enc,
524562236bSHarry Wentland 	const struct encoder_info_frame *info_frame) {}
534562236bSHarry Wentland 
544562236bSHarry Wentland static void virtual_stream_encoder_stop_hdmi_info_packets(
554562236bSHarry Wentland 	struct stream_encoder *enc) {}
564562236bSHarry Wentland 
5715e17335SCharlene Liu static void virtual_stream_encoder_set_avmute(
5815e17335SCharlene Liu 	struct stream_encoder *enc,
5915e17335SCharlene Liu 	bool enable) {}
604562236bSHarry Wentland static void virtual_stream_encoder_update_dp_info_packets(
614562236bSHarry Wentland 	struct stream_encoder *enc,
624562236bSHarry Wentland 	const struct encoder_info_frame *info_frame) {}
634562236bSHarry Wentland 
644562236bSHarry Wentland static void virtual_stream_encoder_stop_dp_info_packets(
654562236bSHarry Wentland 	struct stream_encoder *enc) {}
664562236bSHarry Wentland 
674562236bSHarry Wentland static void virtual_stream_encoder_dp_blank(
684562236bSHarry Wentland 	struct stream_encoder *enc) {}
694562236bSHarry Wentland 
704562236bSHarry Wentland static void virtual_stream_encoder_dp_unblank(
714562236bSHarry Wentland 	struct stream_encoder *enc,
724562236bSHarry Wentland 	const struct encoder_unblank_param *param) {}
734562236bSHarry Wentland 
744562236bSHarry Wentland static void virtual_audio_mute_control(
754562236bSHarry Wentland 	struct stream_encoder *enc,
764562236bSHarry Wentland 	bool mute) {}
774562236bSHarry Wentland 
78ca4d9b3aSHarry Wentland #ifdef CONFIG_DRM_AMD_DC_DCN2_0
79ca4d9b3aSHarry Wentland #endif
80ca4d9b3aSHarry Wentland 
814562236bSHarry Wentland static const struct stream_encoder_funcs virtual_str_enc_funcs = {
82ca4d9b3aSHarry Wentland #ifdef CONFIG_DRM_AMD_DC_DCN2_0
83ca4d9b3aSHarry Wentland #endif
844562236bSHarry Wentland 	.dp_set_stream_attribute =
854562236bSHarry Wentland 		virtual_stream_encoder_dp_set_stream_attribute,
864562236bSHarry Wentland 	.hdmi_set_stream_attribute =
874562236bSHarry Wentland 		virtual_stream_encoder_hdmi_set_stream_attribute,
884562236bSHarry Wentland 	.dvi_set_stream_attribute =
894562236bSHarry Wentland 		virtual_stream_encoder_dvi_set_stream_attribute,
904562236bSHarry Wentland 	.set_mst_bandwidth =
914562236bSHarry Wentland 		virtual_stream_encoder_set_mst_bandwidth,
924562236bSHarry Wentland 	.update_hdmi_info_packets =
934562236bSHarry Wentland 		virtual_stream_encoder_update_hdmi_info_packets,
944562236bSHarry Wentland 	.stop_hdmi_info_packets =
954562236bSHarry Wentland 		virtual_stream_encoder_stop_hdmi_info_packets,
964562236bSHarry Wentland 	.update_dp_info_packets =
974562236bSHarry Wentland 		virtual_stream_encoder_update_dp_info_packets,
984562236bSHarry Wentland 	.stop_dp_info_packets =
994562236bSHarry Wentland 		virtual_stream_encoder_stop_dp_info_packets,
1004562236bSHarry Wentland 	.dp_blank =
1014562236bSHarry Wentland 		virtual_stream_encoder_dp_blank,
1024562236bSHarry Wentland 	.dp_unblank =
1034562236bSHarry Wentland 		virtual_stream_encoder_dp_unblank,
1044562236bSHarry Wentland 
1054562236bSHarry Wentland 	.audio_mute_control = virtual_audio_mute_control,
10615e17335SCharlene Liu 	.set_avmute = virtual_stream_encoder_set_avmute,
1074562236bSHarry Wentland };
1084562236bSHarry Wentland 
1094562236bSHarry Wentland bool virtual_stream_encoder_construct(
1104562236bSHarry Wentland 	struct stream_encoder *enc,
1114562236bSHarry Wentland 	struct dc_context *ctx,
1124562236bSHarry Wentland 	struct dc_bios *bp)
1134562236bSHarry Wentland {
1144562236bSHarry Wentland 	if (!enc)
1154562236bSHarry Wentland 		return false;
1164562236bSHarry Wentland 	if (!bp)
1174562236bSHarry Wentland 		return false;
1184562236bSHarry Wentland 
1194562236bSHarry Wentland 	enc->funcs = &virtual_str_enc_funcs;
1204562236bSHarry Wentland 	enc->ctx = ctx;
1214562236bSHarry Wentland 	enc->id = ENGINE_ID_VIRTUAL;
1224562236bSHarry Wentland 	enc->bp = bp;
1234562236bSHarry Wentland 
1244562236bSHarry Wentland 	return true;
1254562236bSHarry Wentland }
1264562236bSHarry Wentland 
1274562236bSHarry Wentland struct stream_encoder *virtual_stream_encoder_create(
1284562236bSHarry Wentland 	struct dc_context *ctx, struct dc_bios *bp)
1294562236bSHarry Wentland {
1302004f45eSHarry Wentland 	struct stream_encoder *enc = kzalloc(sizeof(*enc), GFP_KERNEL);
1314562236bSHarry Wentland 
1324562236bSHarry Wentland 	if (!enc)
1334562236bSHarry Wentland 		return NULL;
1344562236bSHarry Wentland 
1354562236bSHarry Wentland 	if (virtual_stream_encoder_construct(enc, ctx, bp))
1364562236bSHarry Wentland 		return enc;
1374562236bSHarry Wentland 
1384562236bSHarry Wentland 	BREAK_TO_DEBUGGER();
1392004f45eSHarry Wentland 	kfree(enc);
1404562236bSHarry Wentland 	return NULL;
1414562236bSHarry Wentland }
1424562236bSHarry Wentland 
143