nouveau_hdmi.c 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /*
  2. * Copyright 2011 Red Hat 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. * Authors: Ben Skeggs
  23. */
  24. #include <drm/drmP.h>
  25. #include "nouveau_drm.h"
  26. #include "nouveau_connector.h"
  27. #include "nouveau_encoder.h"
  28. #include "nouveau_crtc.h"
  29. #include <core/class.h>
  30. #include "nv50_display.h"
  31. static bool
  32. hdmi_sor(struct drm_encoder *encoder)
  33. {
  34. struct nouveau_drm *drm = nouveau_drm(encoder->dev);
  35. if (nv_device(drm->device)->chipset < 0xa3 ||
  36. nv_device(drm->device)->chipset == 0xaa ||
  37. nv_device(drm->device)->chipset == 0xac)
  38. return false;
  39. return true;
  40. }
  41. static inline u32
  42. hdmi_base(struct drm_encoder *encoder)
  43. {
  44. struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
  45. struct nouveau_crtc *nv_crtc = nouveau_crtc(nv_encoder->crtc);
  46. if (!hdmi_sor(encoder))
  47. return 0x616500 + (nv_crtc->index * 0x800);
  48. return 0x61c500 + (nv_encoder->or * 0x800);
  49. }
  50. static void
  51. hdmi_wr32(struct drm_encoder *encoder, u32 reg, u32 val)
  52. {
  53. struct nouveau_device *device = nouveau_dev(encoder->dev);
  54. nv_wr32(device, hdmi_base(encoder) + reg, val);
  55. }
  56. static u32
  57. hdmi_rd32(struct drm_encoder *encoder, u32 reg)
  58. {
  59. struct nouveau_device *device = nouveau_dev(encoder->dev);
  60. return nv_rd32(device, hdmi_base(encoder) + reg);
  61. }
  62. static u32
  63. hdmi_mask(struct drm_encoder *encoder, u32 reg, u32 mask, u32 val)
  64. {
  65. u32 tmp = hdmi_rd32(encoder, reg);
  66. hdmi_wr32(encoder, reg, (tmp & ~mask) | val);
  67. return tmp;
  68. }
  69. static void
  70. nouveau_audio_disconnect(struct drm_encoder *encoder)
  71. {
  72. struct nv50_display *priv = nv50_display(encoder->dev);
  73. struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
  74. u32 or = nv_encoder->or;
  75. if (hdmi_sor(encoder))
  76. nv_exec(priv->core, NVA3_DISP_SOR_HDA_ELD + or, NULL, 0);
  77. }
  78. static void
  79. nouveau_audio_mode_set(struct drm_encoder *encoder,
  80. struct drm_display_mode *mode)
  81. {
  82. struct nv50_display *priv = nv50_display(encoder->dev);
  83. struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
  84. struct nouveau_connector *nv_connector;
  85. nv_connector = nouveau_encoder_connector_get(nv_encoder);
  86. if (!drm_detect_monitor_audio(nv_connector->edid)) {
  87. nouveau_audio_disconnect(encoder);
  88. return;
  89. }
  90. if (hdmi_sor(encoder)) {
  91. drm_edid_to_eld(&nv_connector->base, nv_connector->edid);
  92. nv_exec(priv->core, NVA3_DISP_SOR_HDA_ELD + nv_encoder->or,
  93. nv_connector->base.eld,
  94. nv_connector->base.eld[2] * 4);
  95. }
  96. }
  97. static void
  98. nouveau_hdmi_infoframe(struct drm_encoder *encoder, u32 ctrl, u8 *frame)
  99. {
  100. /* calculate checksum for the infoframe */
  101. u8 sum = 0, i;
  102. for (i = 0; i < frame[2]; i++)
  103. sum += frame[i];
  104. frame[3] = 256 - sum;
  105. /* disable infoframe, and write header */
  106. hdmi_mask(encoder, ctrl + 0x00, 0x00000001, 0x00000000);
  107. hdmi_wr32(encoder, ctrl + 0x08, *(u32 *)frame & 0xffffff);
  108. /* register scans tell me the audio infoframe has only one set of
  109. * subpack regs, according to tegra (gee nvidia, it'd be nice if we
  110. * could get those docs too!), the hdmi block pads out the rest of
  111. * the packet on its own.
  112. */
  113. if (ctrl == 0x020)
  114. frame[2] = 6;
  115. /* write out checksum and data, weird weird 7 byte register pairs */
  116. for (i = 0; i < frame[2] + 1; i += 7) {
  117. u32 rsubpack = ctrl + 0x0c + ((i / 7) * 8);
  118. u32 *subpack = (u32 *)&frame[3 + i];
  119. hdmi_wr32(encoder, rsubpack + 0, subpack[0]);
  120. hdmi_wr32(encoder, rsubpack + 4, subpack[1] & 0xffffff);
  121. }
  122. /* enable the infoframe */
  123. hdmi_mask(encoder, ctrl, 0x00000001, 0x00000001);
  124. }
  125. static void
  126. nouveau_hdmi_video_infoframe(struct drm_encoder *encoder,
  127. struct drm_display_mode *mode)
  128. {
  129. const u8 Y = 0, A = 0, B = 0, S = 0, C = 0, M = 0, R = 0;
  130. const u8 ITC = 0, EC = 0, Q = 0, SC = 0, VIC = 0, PR = 0;
  131. const u8 bar_top = 0, bar_bottom = 0, bar_left = 0, bar_right = 0;
  132. u8 frame[20];
  133. frame[0x00] = 0x82; /* AVI infoframe */
  134. frame[0x01] = 0x02; /* version */
  135. frame[0x02] = 0x0d; /* length */
  136. frame[0x03] = 0x00;
  137. frame[0x04] = (Y << 5) | (A << 4) | (B << 2) | S;
  138. frame[0x05] = (C << 6) | (M << 4) | R;
  139. frame[0x06] = (ITC << 7) | (EC << 4) | (Q << 2) | SC;
  140. frame[0x07] = VIC;
  141. frame[0x08] = PR;
  142. frame[0x09] = bar_top & 0xff;
  143. frame[0x0a] = bar_top >> 8;
  144. frame[0x0b] = bar_bottom & 0xff;
  145. frame[0x0c] = bar_bottom >> 8;
  146. frame[0x0d] = bar_left & 0xff;
  147. frame[0x0e] = bar_left >> 8;
  148. frame[0x0f] = bar_right & 0xff;
  149. frame[0x10] = bar_right >> 8;
  150. frame[0x11] = 0x00;
  151. frame[0x12] = 0x00;
  152. frame[0x13] = 0x00;
  153. nouveau_hdmi_infoframe(encoder, 0x020, frame);
  154. }
  155. static void
  156. nouveau_hdmi_audio_infoframe(struct drm_encoder *encoder,
  157. struct drm_display_mode *mode)
  158. {
  159. const u8 CT = 0x00, CC = 0x01, ceaSS = 0x00, SF = 0x00, FMT = 0x00;
  160. const u8 CA = 0x00, DM_INH = 0, LSV = 0x00;
  161. u8 frame[12];
  162. frame[0x00] = 0x84; /* Audio infoframe */
  163. frame[0x01] = 0x01; /* version */
  164. frame[0x02] = 0x0a; /* length */
  165. frame[0x03] = 0x00;
  166. frame[0x04] = (CT << 4) | CC;
  167. frame[0x05] = (SF << 2) | ceaSS;
  168. frame[0x06] = FMT;
  169. frame[0x07] = CA;
  170. frame[0x08] = (DM_INH << 7) | (LSV << 3);
  171. frame[0x09] = 0x00;
  172. frame[0x0a] = 0x00;
  173. frame[0x0b] = 0x00;
  174. nouveau_hdmi_infoframe(encoder, 0x000, frame);
  175. }
  176. static void
  177. nouveau_hdmi_disconnect(struct drm_encoder *encoder)
  178. {
  179. nouveau_audio_disconnect(encoder);
  180. /* disable audio and avi infoframes */
  181. hdmi_mask(encoder, 0x000, 0x00000001, 0x00000000);
  182. hdmi_mask(encoder, 0x020, 0x00000001, 0x00000000);
  183. /* disable hdmi */
  184. hdmi_mask(encoder, 0x0a4, 0x40000000, 0x00000000);
  185. }
  186. void
  187. nouveau_hdmi_mode_set(struct drm_encoder *encoder,
  188. struct drm_display_mode *mode)
  189. {
  190. struct nouveau_device *device = nouveau_dev(encoder->dev);
  191. struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
  192. struct nouveau_connector *nv_connector;
  193. u32 max_ac_packet, rekey;
  194. nv_connector = nouveau_encoder_connector_get(nv_encoder);
  195. if (!mode || !nv_connector || !nv_connector->edid ||
  196. !drm_detect_hdmi_monitor(nv_connector->edid)) {
  197. nouveau_hdmi_disconnect(encoder);
  198. return;
  199. }
  200. nouveau_hdmi_video_infoframe(encoder, mode);
  201. nouveau_hdmi_audio_infoframe(encoder, mode);
  202. hdmi_mask(encoder, 0x0d0, 0x00070001, 0x00010001); /* SPARE, HW_CTS */
  203. hdmi_mask(encoder, 0x068, 0x00010101, 0x00000000); /* ACR_CTRL, ?? */
  204. hdmi_mask(encoder, 0x078, 0x80000000, 0x80000000); /* ACR_0441_ENABLE */
  205. nv_mask(device, 0x61733c, 0x00100000, 0x00100000); /* RESETF */
  206. nv_mask(device, 0x61733c, 0x10000000, 0x10000000); /* LOOKUP_EN */
  207. nv_mask(device, 0x61733c, 0x00100000, 0x00000000); /* !RESETF */
  208. /* value matches nvidia binary driver, and tegra constant */
  209. rekey = 56;
  210. max_ac_packet = mode->htotal - mode->hdisplay;
  211. max_ac_packet -= rekey;
  212. max_ac_packet -= 18; /* constant from tegra */
  213. max_ac_packet /= 32;
  214. /* enable hdmi */
  215. hdmi_mask(encoder, 0x0a4, 0x5f1f003f, 0x40000000 | /* enable */
  216. 0x1f000000 | /* unknown */
  217. max_ac_packet << 16 |
  218. rekey);
  219. nouveau_audio_mode_set(encoder, mode);
  220. }