intel_dp_link_training.c 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. /*
  2. * Copyright © 2008-2015 Intel Corporation
  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 (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21. * IN THE SOFTWARE.
  22. */
  23. #include "intel_drv.h"
  24. static void
  25. intel_get_adjust_train(struct intel_dp *intel_dp,
  26. const uint8_t link_status[DP_LINK_STATUS_SIZE])
  27. {
  28. uint8_t v = 0;
  29. uint8_t p = 0;
  30. int lane;
  31. uint8_t voltage_max;
  32. uint8_t preemph_max;
  33. for (lane = 0; lane < intel_dp->lane_count; lane++) {
  34. uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
  35. uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
  36. if (this_v > v)
  37. v = this_v;
  38. if (this_p > p)
  39. p = this_p;
  40. }
  41. voltage_max = intel_dp_voltage_max(intel_dp);
  42. if (v >= voltage_max)
  43. v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
  44. preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
  45. if (p >= preemph_max)
  46. p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
  47. for (lane = 0; lane < 4; lane++)
  48. intel_dp->train_set[lane] = v | p;
  49. }
  50. static bool
  51. intel_dp_set_link_train(struct intel_dp *intel_dp,
  52. uint8_t dp_train_pat)
  53. {
  54. uint8_t buf[sizeof(intel_dp->train_set) + 1];
  55. int ret, len;
  56. intel_dp_program_link_training_pattern(intel_dp, dp_train_pat);
  57. buf[0] = dp_train_pat;
  58. if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) ==
  59. DP_TRAINING_PATTERN_DISABLE) {
  60. /* don't write DP_TRAINING_LANEx_SET on disable */
  61. len = 1;
  62. } else {
  63. /* DP_TRAINING_LANEx_SET follow DP_TRAINING_PATTERN_SET */
  64. memcpy(buf + 1, intel_dp->train_set, intel_dp->lane_count);
  65. len = intel_dp->lane_count + 1;
  66. }
  67. ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_PATTERN_SET,
  68. buf, len);
  69. return ret == len;
  70. }
  71. static bool
  72. intel_dp_reset_link_train(struct intel_dp *intel_dp,
  73. uint8_t dp_train_pat)
  74. {
  75. if (!intel_dp->train_set_valid)
  76. memset(intel_dp->train_set, 0, sizeof(intel_dp->train_set));
  77. intel_dp_set_signal_levels(intel_dp);
  78. return intel_dp_set_link_train(intel_dp, dp_train_pat);
  79. }
  80. static bool
  81. intel_dp_update_link_train(struct intel_dp *intel_dp)
  82. {
  83. int ret;
  84. intel_dp_set_signal_levels(intel_dp);
  85. ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_LANE0_SET,
  86. intel_dp->train_set, intel_dp->lane_count);
  87. return ret == intel_dp->lane_count;
  88. }
  89. /* Enable corresponding port and start training pattern 1 */
  90. static void
  91. intel_dp_link_training_clock_recovery(struct intel_dp *intel_dp)
  92. {
  93. int i;
  94. uint8_t voltage;
  95. int voltage_tries, loop_tries;
  96. uint8_t link_config[2];
  97. uint8_t link_bw, rate_select;
  98. if (intel_dp->prepare_link_retrain)
  99. intel_dp->prepare_link_retrain(intel_dp);
  100. intel_dp_compute_rate(intel_dp, intel_dp->link_rate,
  101. &link_bw, &rate_select);
  102. /* Write the link configuration data */
  103. link_config[0] = link_bw;
  104. link_config[1] = intel_dp->lane_count;
  105. if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
  106. link_config[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
  107. drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_BW_SET, link_config, 2);
  108. if (intel_dp->num_sink_rates)
  109. drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_RATE_SET,
  110. &rate_select, 1);
  111. link_config[0] = 0;
  112. link_config[1] = DP_SET_ANSI_8B10B;
  113. drm_dp_dpcd_write(&intel_dp->aux, DP_DOWNSPREAD_CTRL, link_config, 2);
  114. intel_dp->DP |= DP_PORT_EN;
  115. /* clock recovery */
  116. if (!intel_dp_reset_link_train(intel_dp,
  117. DP_TRAINING_PATTERN_1 |
  118. DP_LINK_SCRAMBLING_DISABLE)) {
  119. DRM_ERROR("failed to enable link training\n");
  120. return;
  121. }
  122. voltage = 0xff;
  123. voltage_tries = 0;
  124. loop_tries = 0;
  125. for (;;) {
  126. uint8_t link_status[DP_LINK_STATUS_SIZE];
  127. drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
  128. if (!intel_dp_get_link_status(intel_dp, link_status)) {
  129. DRM_ERROR("failed to get link status\n");
  130. break;
  131. }
  132. if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
  133. DRM_DEBUG_KMS("clock recovery OK\n");
  134. break;
  135. }
  136. /*
  137. * if we used previously trained voltage and pre-emphasis values
  138. * and we don't get clock recovery, reset link training values
  139. */
  140. if (intel_dp->train_set_valid) {
  141. DRM_DEBUG_KMS("clock recovery not ok, reset");
  142. /* clear the flag as we are not reusing train set */
  143. intel_dp->train_set_valid = false;
  144. if (!intel_dp_reset_link_train(intel_dp,
  145. DP_TRAINING_PATTERN_1 |
  146. DP_LINK_SCRAMBLING_DISABLE)) {
  147. DRM_ERROR("failed to enable link training\n");
  148. return;
  149. }
  150. continue;
  151. }
  152. /* Check to see if we've tried the max voltage */
  153. for (i = 0; i < intel_dp->lane_count; i++)
  154. if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)
  155. break;
  156. if (i == intel_dp->lane_count) {
  157. ++loop_tries;
  158. if (loop_tries == 5) {
  159. DRM_ERROR("too many full retries, give up\n");
  160. break;
  161. }
  162. intel_dp_reset_link_train(intel_dp,
  163. DP_TRAINING_PATTERN_1 |
  164. DP_LINK_SCRAMBLING_DISABLE);
  165. voltage_tries = 0;
  166. continue;
  167. }
  168. /* Check to see if we've tried the same voltage 5 times */
  169. if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) == voltage) {
  170. ++voltage_tries;
  171. if (voltage_tries == 5) {
  172. DRM_ERROR("too many voltage retries, give up\n");
  173. break;
  174. }
  175. } else
  176. voltage_tries = 0;
  177. voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
  178. /* Update training set as requested by target */
  179. intel_get_adjust_train(intel_dp, link_status);
  180. if (!intel_dp_update_link_train(intel_dp)) {
  181. DRM_ERROR("failed to update link training\n");
  182. break;
  183. }
  184. }
  185. }
  186. /*
  187. * Pick training pattern for channel equalization. Training Pattern 3 for HBR2
  188. * or 1.2 devices that support it, Training Pattern 2 otherwise.
  189. */
  190. static u32 intel_dp_training_pattern(struct intel_dp *intel_dp)
  191. {
  192. u32 training_pattern = DP_TRAINING_PATTERN_2;
  193. bool source_tps3, sink_tps3;
  194. /*
  195. * Intel platforms that support HBR2 also support TPS3. TPS3 support is
  196. * also mandatory for downstream devices that support HBR2. However, not
  197. * all sinks follow the spec.
  198. *
  199. * Due to WaDisableHBR2 SKL < B0 is the only exception where TPS3 is
  200. * supported in source but still not enabled.
  201. */
  202. source_tps3 = intel_dp_source_supports_hbr2(intel_dp);
  203. sink_tps3 = drm_dp_tps3_supported(intel_dp->dpcd);
  204. if (source_tps3 && sink_tps3) {
  205. training_pattern = DP_TRAINING_PATTERN_3;
  206. } else if (intel_dp->link_rate == 540000) {
  207. if (!source_tps3)
  208. DRM_DEBUG_KMS("5.4 Gbps link rate without source HBR2/TPS3 support\n");
  209. if (!sink_tps3)
  210. DRM_DEBUG_KMS("5.4 Gbps link rate without sink TPS3 support\n");
  211. }
  212. return training_pattern;
  213. }
  214. static void
  215. intel_dp_link_training_channel_equalization(struct intel_dp *intel_dp)
  216. {
  217. bool channel_eq = false;
  218. int tries, cr_tries;
  219. u32 training_pattern;
  220. training_pattern = intel_dp_training_pattern(intel_dp);
  221. /* channel equalization */
  222. if (!intel_dp_set_link_train(intel_dp,
  223. training_pattern |
  224. DP_LINK_SCRAMBLING_DISABLE)) {
  225. DRM_ERROR("failed to start channel equalization\n");
  226. return;
  227. }
  228. tries = 0;
  229. cr_tries = 0;
  230. channel_eq = false;
  231. for (;;) {
  232. uint8_t link_status[DP_LINK_STATUS_SIZE];
  233. if (cr_tries > 5) {
  234. DRM_ERROR("failed to train DP, aborting\n");
  235. break;
  236. }
  237. drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
  238. if (!intel_dp_get_link_status(intel_dp, link_status)) {
  239. DRM_ERROR("failed to get link status\n");
  240. break;
  241. }
  242. /* Make sure clock is still ok */
  243. if (!drm_dp_clock_recovery_ok(link_status,
  244. intel_dp->lane_count)) {
  245. intel_dp->train_set_valid = false;
  246. intel_dp_link_training_clock_recovery(intel_dp);
  247. intel_dp_set_link_train(intel_dp,
  248. training_pattern |
  249. DP_LINK_SCRAMBLING_DISABLE);
  250. cr_tries++;
  251. continue;
  252. }
  253. if (drm_dp_channel_eq_ok(link_status,
  254. intel_dp->lane_count)) {
  255. channel_eq = true;
  256. break;
  257. }
  258. /* Try 5 times, then try clock recovery if that fails */
  259. if (tries > 5) {
  260. intel_dp->train_set_valid = false;
  261. intel_dp_link_training_clock_recovery(intel_dp);
  262. intel_dp_set_link_train(intel_dp,
  263. training_pattern |
  264. DP_LINK_SCRAMBLING_DISABLE);
  265. tries = 0;
  266. cr_tries++;
  267. continue;
  268. }
  269. /* Update training set as requested by target */
  270. intel_get_adjust_train(intel_dp, link_status);
  271. if (!intel_dp_update_link_train(intel_dp)) {
  272. DRM_ERROR("failed to update link training\n");
  273. break;
  274. }
  275. ++tries;
  276. }
  277. intel_dp_set_idle_link_train(intel_dp);
  278. if (channel_eq) {
  279. intel_dp->train_set_valid = true;
  280. DRM_DEBUG_KMS("Channel EQ done. DP Training successful\n");
  281. }
  282. }
  283. void intel_dp_stop_link_train(struct intel_dp *intel_dp)
  284. {
  285. intel_dp_set_link_train(intel_dp,
  286. DP_TRAINING_PATTERN_DISABLE);
  287. }
  288. void
  289. intel_dp_start_link_train(struct intel_dp *intel_dp)
  290. {
  291. intel_dp_link_training_clock_recovery(intel_dp);
  292. intel_dp_link_training_channel_equalization(intel_dp);
  293. }