1 /* 2 * Copyright 2017 Advanced Micro Devices, Inc. 3 * 4 * Permission is hereby granted, free of charge, to any person obtaining a 5 * copy of this software and associated documentation files (the "Software"), 6 * to deal in the Software without restriction, including without limitation 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 * and/or sell copies of the Software, and to permit persons to whom the 9 * Software is furnished to do so, subject to the following conditions: 10 * 11 * The above copyright notice and this permission notice shall be included in 12 * all copies or substantial portions of the Software. 13 * 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20 * OTHER DEALINGS IN THE SOFTWARE. 21 * 22 */ 23 /* 24 * link_encoder.h 25 * 26 * Created on: Oct 6, 2015 27 * Author: yonsun 28 */ 29 30 #ifndef LINK_ENCODER_H_ 31 #define LINK_ENCODER_H_ 32 33 #include "grph_object_defs.h" 34 #include "signal_types.h" 35 #include "dc_types.h" 36 37 struct dc_context; 38 struct encoder_set_dp_phy_pattern_param; 39 struct link_mst_stream_allocation_table; 40 struct dc_link_settings; 41 struct link_training_settings; 42 struct pipe_ctx; 43 44 struct encoder_init_data { 45 enum channel_id channel; 46 struct graphics_object_id connector; 47 enum hpd_source_id hpd_source; 48 /* TODO: in DAL2, here was pointer to EventManagerInterface */ 49 struct graphics_object_id encoder; 50 struct dc_context *ctx; 51 enum transmitter transmitter; 52 }; 53 54 struct encoder_feature_support { 55 union { 56 struct { 57 uint32_t IS_HBR2_CAPABLE:1; 58 uint32_t IS_HBR3_CAPABLE:1; 59 uint32_t IS_TPS3_CAPABLE:1; 60 uint32_t IS_TPS4_CAPABLE:1; 61 uint32_t HDMI_6GB_EN:1; 62 uint32_t DP_IS_USB_C:1; 63 } bits; 64 uint32_t raw; 65 } flags; 66 67 enum dc_color_depth max_hdmi_deep_color; 68 unsigned int max_hdmi_pixel_clock; 69 bool hdmi_ycbcr420_supported; 70 bool dp_ycbcr420_supported; 71 bool fec_supported; 72 }; 73 74 union dpcd_psr_configuration { 75 struct { 76 unsigned char ENABLE : 1; 77 unsigned char TRANSMITTER_ACTIVE_IN_PSR : 1; 78 unsigned char CRC_VERIFICATION : 1; 79 unsigned char FRAME_CAPTURE_INDICATION : 1; 80 /* For eDP 1.4, PSR v2*/ 81 unsigned char LINE_CAPTURE_INDICATION : 1; 82 /* For eDP 1.4, PSR v2*/ 83 unsigned char IRQ_HPD_WITH_CRC_ERROR : 1; 84 unsigned char RESERVED : 2; 85 } bits; 86 unsigned char raw; 87 }; 88 89 union psr_error_status { 90 struct { 91 unsigned char LINK_CRC_ERROR :1; 92 unsigned char RFB_STORAGE_ERROR :1; 93 unsigned char RESERVED :6; 94 } bits; 95 unsigned char raw; 96 }; 97 98 union psr_sink_psr_status { 99 struct { 100 unsigned char SINK_SELF_REFRESH_STATUS :3; 101 unsigned char RESERVED :5; 102 } bits; 103 unsigned char raw; 104 }; 105 106 struct link_encoder { 107 const struct link_encoder_funcs *funcs; 108 int32_t aux_channel_offset; 109 struct dc_context *ctx; 110 struct graphics_object_id id; 111 struct graphics_object_id connector; 112 uint32_t output_signals; 113 enum engine_id preferred_engine; 114 struct encoder_feature_support features; 115 enum transmitter transmitter; 116 enum hpd_source_id hpd_source; 117 bool usbc_combo_phy; 118 }; 119 120 struct link_enc_state { 121 122 uint32_t dphy_fec_en; 123 uint32_t dphy_fec_ready_shadow; 124 uint32_t dphy_fec_active_status; 125 uint32_t dp_link_training_complete; 126 127 }; 128 129 struct link_encoder_funcs { 130 void (*read_state)( 131 struct link_encoder *enc, struct link_enc_state *s); 132 bool (*validate_output_with_stream)( 133 struct link_encoder *enc, const struct dc_stream_state *stream); 134 void (*hw_init)(struct link_encoder *enc); 135 void (*setup)(struct link_encoder *enc, 136 enum signal_type signal); 137 void (*enable_tmds_output)(struct link_encoder *enc, 138 enum clock_source_id clock_source, 139 enum dc_color_depth color_depth, 140 enum signal_type signal, 141 uint32_t pixel_clock); 142 void (*enable_dp_output)(struct link_encoder *enc, 143 const struct dc_link_settings *link_settings, 144 enum clock_source_id clock_source); 145 void (*enable_dp_mst_output)(struct link_encoder *enc, 146 const struct dc_link_settings *link_settings, 147 enum clock_source_id clock_source); 148 void (*enable_lvds_output)(struct link_encoder *enc, 149 enum clock_source_id clock_source, 150 uint32_t pixel_clock); 151 void (*disable_output)(struct link_encoder *link_enc, 152 enum signal_type signal); 153 void (*dp_set_lane_settings)(struct link_encoder *enc, 154 const struct link_training_settings *link_settings); 155 void (*dp_set_phy_pattern)(struct link_encoder *enc, 156 const struct encoder_set_dp_phy_pattern_param *para); 157 void (*update_mst_stream_allocation_table)( 158 struct link_encoder *enc, 159 const struct link_mst_stream_allocation_table *table); 160 void (*psr_program_dp_dphy_fast_training)(struct link_encoder *enc, 161 bool exit_link_training_required); 162 void (*psr_program_secondary_packet)(struct link_encoder *enc, 163 unsigned int sdp_transmit_line_num_deadline); 164 void (*connect_dig_be_to_fe)(struct link_encoder *enc, 165 enum engine_id engine, 166 bool connect); 167 void (*enable_hpd)(struct link_encoder *enc); 168 void (*disable_hpd)(struct link_encoder *enc); 169 bool (*is_dig_enabled)(struct link_encoder *enc); 170 unsigned int (*get_dig_frontend)(struct link_encoder *enc); 171 void (*destroy)(struct link_encoder **enc); 172 173 void (*fec_set_enable)(struct link_encoder *enc, 174 bool enable); 175 176 void (*fec_set_ready)(struct link_encoder *enc, 177 bool ready); 178 179 bool (*fec_is_active)(struct link_encoder *enc); 180 bool (*is_in_alt_mode) (struct link_encoder *enc); 181 182 void (*get_max_link_cap)(struct link_encoder *enc, 183 struct dc_link_settings *link_settings); 184 185 enum signal_type (*get_dig_mode)( 186 struct link_encoder *enc); 187 }; 188 189 #endif /* LINK_ENCODER_H_ */ 190