intel_dp_link_training.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  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_dp_dump_link_status(const uint8_t link_status[DP_LINK_STATUS_SIZE])
  26. {
  27. DRM_DEBUG_KMS("ln0_1:0x%x ln2_3:0x%x align:0x%x sink:0x%x adj_req0_1:0x%x adj_req2_3:0x%x",
  28. link_status[0], link_status[1], link_status[2],
  29. link_status[3], link_status[4], link_status[5]);
  30. }
  31. static void
  32. intel_get_adjust_train(struct intel_dp *intel_dp,
  33. const uint8_t link_status[DP_LINK_STATUS_SIZE])
  34. {
  35. uint8_t v = 0;
  36. uint8_t p = 0;
  37. int lane;
  38. uint8_t voltage_max;
  39. uint8_t preemph_max;
  40. for (lane = 0; lane < intel_dp->lane_count; lane++) {
  41. uint8_t this_v = drm_dp_get_adjust_request_voltage(link_status, lane);
  42. uint8_t this_p = drm_dp_get_adjust_request_pre_emphasis(link_status, lane);
  43. if (this_v > v)
  44. v = this_v;
  45. if (this_p > p)
  46. p = this_p;
  47. }
  48. voltage_max = intel_dp_voltage_max(intel_dp);
  49. if (v >= voltage_max)
  50. v = voltage_max | DP_TRAIN_MAX_SWING_REACHED;
  51. preemph_max = intel_dp_pre_emphasis_max(intel_dp, v);
  52. if (p >= preemph_max)
  53. p = preemph_max | DP_TRAIN_MAX_PRE_EMPHASIS_REACHED;
  54. for (lane = 0; lane < 4; lane++)
  55. intel_dp->train_set[lane] = v | p;
  56. }
  57. static bool
  58. intel_dp_set_link_train(struct intel_dp *intel_dp,
  59. uint8_t dp_train_pat)
  60. {
  61. uint8_t buf[sizeof(intel_dp->train_set) + 1];
  62. int ret, len;
  63. intel_dp_program_link_training_pattern(intel_dp, dp_train_pat);
  64. buf[0] = dp_train_pat;
  65. if ((dp_train_pat & DP_TRAINING_PATTERN_MASK) ==
  66. DP_TRAINING_PATTERN_DISABLE) {
  67. /* don't write DP_TRAINING_LANEx_SET on disable */
  68. len = 1;
  69. } else {
  70. /* DP_TRAINING_LANEx_SET follow DP_TRAINING_PATTERN_SET */
  71. memcpy(buf + 1, intel_dp->train_set, intel_dp->lane_count);
  72. len = intel_dp->lane_count + 1;
  73. }
  74. ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_PATTERN_SET,
  75. buf, len);
  76. return ret == len;
  77. }
  78. static bool
  79. intel_dp_reset_link_train(struct intel_dp *intel_dp,
  80. uint8_t dp_train_pat)
  81. {
  82. memset(intel_dp->train_set, 0, sizeof(intel_dp->train_set));
  83. intel_dp_set_signal_levels(intel_dp);
  84. return intel_dp_set_link_train(intel_dp, dp_train_pat);
  85. }
  86. static bool
  87. intel_dp_update_link_train(struct intel_dp *intel_dp)
  88. {
  89. int ret;
  90. intel_dp_set_signal_levels(intel_dp);
  91. ret = drm_dp_dpcd_write(&intel_dp->aux, DP_TRAINING_LANE0_SET,
  92. intel_dp->train_set, intel_dp->lane_count);
  93. return ret == intel_dp->lane_count;
  94. }
  95. static bool intel_dp_link_max_vswing_reached(struct intel_dp *intel_dp)
  96. {
  97. int lane;
  98. for (lane = 0; lane < intel_dp->lane_count; lane++)
  99. if ((intel_dp->train_set[lane] &
  100. DP_TRAIN_MAX_SWING_REACHED) == 0)
  101. return false;
  102. return true;
  103. }
  104. /* Enable corresponding port and start training pattern 1 */
  105. static bool
  106. intel_dp_link_training_clock_recovery(struct intel_dp *intel_dp)
  107. {
  108. uint8_t voltage;
  109. int voltage_tries, cr_tries, max_cr_tries;
  110. bool max_vswing_reached = false;
  111. uint8_t link_config[2];
  112. uint8_t link_bw, rate_select;
  113. if (intel_dp->prepare_link_retrain)
  114. intel_dp->prepare_link_retrain(intel_dp);
  115. intel_dp_compute_rate(intel_dp, intel_dp->link_rate,
  116. &link_bw, &rate_select);
  117. if (link_bw)
  118. DRM_DEBUG_KMS("Using LINK_BW_SET value %02x\n", link_bw);
  119. else
  120. DRM_DEBUG_KMS("Using LINK_RATE_SET value %02x\n", rate_select);
  121. /* Write the link configuration data */
  122. link_config[0] = link_bw;
  123. link_config[1] = intel_dp->lane_count;
  124. if (drm_dp_enhanced_frame_cap(intel_dp->dpcd))
  125. link_config[1] |= DP_LANE_COUNT_ENHANCED_FRAME_EN;
  126. drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_BW_SET, link_config, 2);
  127. /* eDP 1.4 rate select method. */
  128. if (!link_bw)
  129. drm_dp_dpcd_write(&intel_dp->aux, DP_LINK_RATE_SET,
  130. &rate_select, 1);
  131. link_config[0] = 0;
  132. link_config[1] = DP_SET_ANSI_8B10B;
  133. drm_dp_dpcd_write(&intel_dp->aux, DP_DOWNSPREAD_CTRL, link_config, 2);
  134. intel_dp->DP |= DP_PORT_EN;
  135. /* clock recovery */
  136. if (!intel_dp_reset_link_train(intel_dp,
  137. DP_TRAINING_PATTERN_1 |
  138. DP_LINK_SCRAMBLING_DISABLE)) {
  139. DRM_ERROR("failed to enable link training\n");
  140. return false;
  141. }
  142. /*
  143. * The DP 1.4 spec defines the max clock recovery retries value
  144. * as 10 but for pre-DP 1.4 devices we set a very tolerant
  145. * retry limit of 80 (4 voltage levels x 4 preemphasis levels x
  146. * x 5 identical voltage retries). Since the previous specs didn't
  147. * define a limit and created the possibility of an infinite loop
  148. * we want to prevent any sync from triggering that corner case.
  149. */
  150. if (intel_dp->dpcd[DP_DPCD_REV] >= DP_DPCD_REV_14)
  151. max_cr_tries = 10;
  152. else
  153. max_cr_tries = 80;
  154. voltage_tries = 1;
  155. for (cr_tries = 0; cr_tries < max_cr_tries; ++cr_tries) {
  156. uint8_t link_status[DP_LINK_STATUS_SIZE];
  157. drm_dp_link_train_clock_recovery_delay(intel_dp->dpcd);
  158. if (!intel_dp_get_link_status(intel_dp, link_status)) {
  159. DRM_ERROR("failed to get link status\n");
  160. return false;
  161. }
  162. if (drm_dp_clock_recovery_ok(link_status, intel_dp->lane_count)) {
  163. DRM_DEBUG_KMS("clock recovery OK\n");
  164. return true;
  165. }
  166. if (voltage_tries == 5) {
  167. DRM_DEBUG_KMS("Same voltage tried 5 times\n");
  168. return false;
  169. }
  170. if (max_vswing_reached) {
  171. DRM_DEBUG_KMS("Max Voltage Swing reached\n");
  172. return false;
  173. }
  174. voltage = intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK;
  175. /* Update training set as requested by target */
  176. intel_get_adjust_train(intel_dp, link_status);
  177. if (!intel_dp_update_link_train(intel_dp)) {
  178. DRM_ERROR("failed to update link training\n");
  179. return false;
  180. }
  181. if ((intel_dp->train_set[0] & DP_TRAIN_VOLTAGE_SWING_MASK) ==
  182. voltage)
  183. ++voltage_tries;
  184. else
  185. voltage_tries = 1;
  186. if (intel_dp_link_max_vswing_reached(intel_dp))
  187. max_vswing_reached = true;
  188. }
  189. DRM_ERROR("Failed clock recovery %d times, giving up!\n", max_cr_tries);
  190. return false;
  191. }
  192. /*
  193. * Pick training pattern for channel equalization. Training pattern 4 for HBR3
  194. * or for 1.4 devices that support it, training Pattern 3 for HBR2
  195. * or 1.2 devices that support it, Training Pattern 2 otherwise.
  196. */
  197. static u32 intel_dp_training_pattern(struct intel_dp *intel_dp)
  198. {
  199. bool source_tps3, sink_tps3, source_tps4, sink_tps4;
  200. /*
  201. * Intel platforms that support HBR3 also support TPS4. It is mandatory
  202. * for all downstream devices that support HBR3. There are no known eDP
  203. * panels that support TPS4 as of Feb 2018 as per VESA eDP_v1.4b_E1
  204. * specification.
  205. */
  206. source_tps4 = intel_dp_source_supports_hbr3(intel_dp);
  207. sink_tps4 = drm_dp_tps4_supported(intel_dp->dpcd);
  208. if (source_tps4 && sink_tps4) {
  209. return DP_TRAINING_PATTERN_4;
  210. } else if (intel_dp->link_rate == 810000) {
  211. if (!source_tps4)
  212. DRM_DEBUG_KMS("8.1 Gbps link rate without source HBR3/TPS4 support\n");
  213. if (!sink_tps4)
  214. DRM_DEBUG_KMS("8.1 Gbps link rate without sink TPS4 support\n");
  215. }
  216. /*
  217. * Intel platforms that support HBR2 also support TPS3. TPS3 support is
  218. * also mandatory for downstream devices that support HBR2. However, not
  219. * all sinks follow the spec.
  220. */
  221. source_tps3 = intel_dp_source_supports_hbr2(intel_dp);
  222. sink_tps3 = drm_dp_tps3_supported(intel_dp->dpcd);
  223. if (source_tps3 && sink_tps3) {
  224. return DP_TRAINING_PATTERN_3;
  225. } else if (intel_dp->link_rate >= 540000) {
  226. if (!source_tps3)
  227. DRM_DEBUG_KMS(">=5.4/6.48 Gbps link rate without source HBR2/TPS3 support\n");
  228. if (!sink_tps3)
  229. DRM_DEBUG_KMS(">=5.4/6.48 Gbps link rate without sink TPS3 support\n");
  230. }
  231. return DP_TRAINING_PATTERN_2;
  232. }
  233. static bool
  234. intel_dp_link_training_channel_equalization(struct intel_dp *intel_dp)
  235. {
  236. int tries;
  237. u32 training_pattern;
  238. uint8_t link_status[DP_LINK_STATUS_SIZE];
  239. bool channel_eq = false;
  240. training_pattern = intel_dp_training_pattern(intel_dp);
  241. /* Scrambling is disabled for TPS2/3 and enabled for TPS4 */
  242. if (training_pattern != DP_TRAINING_PATTERN_4)
  243. training_pattern |= DP_LINK_SCRAMBLING_DISABLE;
  244. /* channel equalization */
  245. if (!intel_dp_set_link_train(intel_dp,
  246. training_pattern)) {
  247. DRM_ERROR("failed to start channel equalization\n");
  248. return false;
  249. }
  250. for (tries = 0; tries < 5; tries++) {
  251. drm_dp_link_train_channel_eq_delay(intel_dp->dpcd);
  252. if (!intel_dp_get_link_status(intel_dp, link_status)) {
  253. DRM_ERROR("failed to get link status\n");
  254. break;
  255. }
  256. /* Make sure clock is still ok */
  257. if (!drm_dp_clock_recovery_ok(link_status,
  258. intel_dp->lane_count)) {
  259. intel_dp_dump_link_status(link_status);
  260. DRM_DEBUG_KMS("Clock recovery check failed, cannot "
  261. "continue channel equalization\n");
  262. break;
  263. }
  264. if (drm_dp_channel_eq_ok(link_status,
  265. intel_dp->lane_count)) {
  266. channel_eq = true;
  267. DRM_DEBUG_KMS("Channel EQ done. DP Training "
  268. "successful\n");
  269. break;
  270. }
  271. /* Update training set as requested by target */
  272. intel_get_adjust_train(intel_dp, link_status);
  273. if (!intel_dp_update_link_train(intel_dp)) {
  274. DRM_ERROR("failed to update link training\n");
  275. break;
  276. }
  277. }
  278. /* Try 5 times, else fail and try at lower BW */
  279. if (tries == 5) {
  280. intel_dp_dump_link_status(link_status);
  281. DRM_DEBUG_KMS("Channel equalization failed 5 times\n");
  282. }
  283. intel_dp_set_idle_link_train(intel_dp);
  284. return channel_eq;
  285. }
  286. void intel_dp_stop_link_train(struct intel_dp *intel_dp)
  287. {
  288. intel_dp->link_trained = true;
  289. intel_dp_set_link_train(intel_dp,
  290. DP_TRAINING_PATTERN_DISABLE);
  291. }
  292. void
  293. intel_dp_start_link_train(struct intel_dp *intel_dp)
  294. {
  295. struct intel_connector *intel_connector = intel_dp->attached_connector;
  296. if (!intel_dp_link_training_clock_recovery(intel_dp))
  297. goto failure_handling;
  298. if (!intel_dp_link_training_channel_equalization(intel_dp))
  299. goto failure_handling;
  300. DRM_DEBUG_KMS("[CONNECTOR:%d:%s] Link Training Passed at Link Rate = %d, Lane count = %d",
  301. intel_connector->base.base.id,
  302. intel_connector->base.name,
  303. intel_dp->link_rate, intel_dp->lane_count);
  304. return;
  305. failure_handling:
  306. DRM_DEBUG_KMS("[CONNECTOR:%d:%s] Link Training failed at link rate = %d, lane count = %d",
  307. intel_connector->base.base.id,
  308. intel_connector->base.name,
  309. intel_dp->link_rate, intel_dp->lane_count);
  310. if (!intel_dp_get_link_train_fallback_values(intel_dp,
  311. intel_dp->link_rate,
  312. intel_dp->lane_count))
  313. /* Schedule a Hotplug Uevent to userspace to start modeset */
  314. schedule_work(&intel_connector->modeset_retry_work);
  315. return;
  316. }