sorg94.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /*
  2. * Copyright 2012 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 "nv50.h"
  25. #include "outpdp.h"
  26. #include <subdev/timer.h>
  27. static inline u32
  28. g94_sor_soff(struct nvkm_output_dp *outp)
  29. {
  30. return (ffs(outp->base.info.or) - 1) * 0x800;
  31. }
  32. static inline u32
  33. g94_sor_loff(struct nvkm_output_dp *outp)
  34. {
  35. return g94_sor_soff(outp) + !(outp->base.info.sorconf.link & 1) * 0x80;
  36. }
  37. /*******************************************************************************
  38. * TMDS/LVDS
  39. ******************************************************************************/
  40. static const struct nvkm_output_func
  41. g94_sor_output_func = {
  42. };
  43. int
  44. g94_sor_output_new(struct nvkm_disp *disp, int index,
  45. struct dcb_output *dcbE, struct nvkm_output **poutp)
  46. {
  47. return nvkm_output_new_(&g94_sor_output_func, disp,
  48. index, dcbE, poutp);
  49. }
  50. /*******************************************************************************
  51. * DisplayPort
  52. ******************************************************************************/
  53. u32
  54. g94_sor_dp_lane_map(struct nvkm_device *device, u8 lane)
  55. {
  56. static const u8 gm100[] = { 0, 8, 16, 24 };
  57. static const u8 mcp89[] = { 24, 16, 8, 0 }; /* thanks, apple.. */
  58. static const u8 g94[] = { 16, 8, 0, 24 };
  59. if (device->chipset >= 0x110)
  60. return gm100[lane];
  61. if (device->chipset == 0xaf)
  62. return mcp89[lane];
  63. return g94[lane];
  64. }
  65. static int
  66. g94_sor_dp_pattern(struct nvkm_output_dp *outp, int pattern)
  67. {
  68. struct nvkm_device *device = outp->base.disp->engine.subdev.device;
  69. const u32 loff = g94_sor_loff(outp);
  70. nvkm_mask(device, 0x61c10c + loff, 0x0f000000, pattern << 24);
  71. return 0;
  72. }
  73. int
  74. g94_sor_dp_lnk_pwr(struct nvkm_output_dp *outp, int nr)
  75. {
  76. struct nvkm_device *device = outp->base.disp->engine.subdev.device;
  77. const u32 soff = g94_sor_soff(outp);
  78. const u32 loff = g94_sor_loff(outp);
  79. u32 mask = 0, i;
  80. for (i = 0; i < nr; i++)
  81. mask |= 1 << (g94_sor_dp_lane_map(device, i) >> 3);
  82. nvkm_mask(device, 0x61c130 + loff, 0x0000000f, mask);
  83. nvkm_mask(device, 0x61c034 + soff, 0x80000000, 0x80000000);
  84. nvkm_msec(device, 2000,
  85. if (!(nvkm_rd32(device, 0x61c034 + soff) & 0x80000000))
  86. break;
  87. );
  88. return 0;
  89. }
  90. static int
  91. g94_sor_dp_lnk_ctl(struct nvkm_output_dp *outp, int nr, int bw, bool ef)
  92. {
  93. struct nvkm_device *device = outp->base.disp->engine.subdev.device;
  94. const u32 soff = g94_sor_soff(outp);
  95. const u32 loff = g94_sor_loff(outp);
  96. u32 dpctrl = 0x00000000;
  97. u32 clksor = 0x00000000;
  98. dpctrl |= ((1 << nr) - 1) << 16;
  99. if (ef)
  100. dpctrl |= 0x00004000;
  101. if (bw > 0x06)
  102. clksor |= 0x00040000;
  103. nvkm_mask(device, 0x614300 + soff, 0x000c0000, clksor);
  104. nvkm_mask(device, 0x61c10c + loff, 0x001f4000, dpctrl);
  105. return 0;
  106. }
  107. static int
  108. g94_sor_dp_drv_ctl(struct nvkm_output_dp *outp, int ln, int vs, int pe, int pc)
  109. {
  110. struct nvkm_device *device = outp->base.disp->engine.subdev.device;
  111. struct nvkm_bios *bios = device->bios;
  112. const u32 shift = g94_sor_dp_lane_map(device, ln);
  113. const u32 loff = g94_sor_loff(outp);
  114. u32 addr, data[3];
  115. u8 ver, hdr, cnt, len;
  116. struct nvbios_dpout info;
  117. struct nvbios_dpcfg ocfg;
  118. addr = nvbios_dpout_match(bios, outp->base.info.hasht,
  119. outp->base.info.hashm,
  120. &ver, &hdr, &cnt, &len, &info);
  121. if (!addr)
  122. return -ENODEV;
  123. addr = nvbios_dpcfg_match(bios, addr, 0, vs, pe,
  124. &ver, &hdr, &cnt, &len, &ocfg);
  125. if (!addr)
  126. return -EINVAL;
  127. data[0] = nvkm_rd32(device, 0x61c118 + loff) & ~(0x000000ff << shift);
  128. data[1] = nvkm_rd32(device, 0x61c120 + loff) & ~(0x000000ff << shift);
  129. data[2] = nvkm_rd32(device, 0x61c130 + loff);
  130. if ((data[2] & 0x0000ff00) < (ocfg.tx_pu << 8) || ln == 0)
  131. data[2] = (data[2] & ~0x0000ff00) | (ocfg.tx_pu << 8);
  132. nvkm_wr32(device, 0x61c118 + loff, data[0] | (ocfg.dc << shift));
  133. nvkm_wr32(device, 0x61c120 + loff, data[1] | (ocfg.pe << shift));
  134. nvkm_wr32(device, 0x61c130 + loff, data[2]);
  135. return 0;
  136. }
  137. static const struct nvkm_output_dp_func
  138. g94_sor_dp_func = {
  139. .pattern = g94_sor_dp_pattern,
  140. .lnk_pwr = g94_sor_dp_lnk_pwr,
  141. .lnk_ctl = g94_sor_dp_lnk_ctl,
  142. .drv_ctl = g94_sor_dp_drv_ctl,
  143. };
  144. int
  145. g94_sor_dp_new(struct nvkm_disp *disp, int index, struct dcb_output *dcbE,
  146. struct nvkm_output **poutp)
  147. {
  148. return nvkm_output_dp_new_(&g94_sor_dp_func, disp, index, dcbE, poutp);
  149. }