xref: /openbmc/linux/drivers/gpu/drm/i915/display/intel_dp_mst.h (revision fb71a336cdc2ec45507b37c0690130a5e39f9733)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2019 Intel Corporation
4  */
5 
6 #ifndef __INTEL_DP_MST_H__
7 #define __INTEL_DP_MST_H__
8 
9 struct intel_digital_port;
10 
11 int intel_dp_mst_encoder_init(struct intel_digital_port *intel_dig_port, int conn_id);
12 void intel_dp_mst_encoder_cleanup(struct intel_digital_port *intel_dig_port);
13 int intel_dp_mst_encoder_active_links(struct intel_digital_port *intel_dig_port);
14 
15 #endif /* __INTEL_DP_MST_H__ */
16