sorgm204.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. gm204_sor_soff(struct nvkm_output_dp *outp)
  29. {
  30. return (ffs(outp->base.info.or) - 1) * 0x800;
  31. }
  32. static inline u32
  33. gm204_sor_loff(struct nvkm_output_dp *outp)
  34. {
  35. return gm204_sor_soff(outp) + !(outp->base.info.sorconf.link & 1) * 0x80;
  36. }
  37. void
  38. gm204_sor_magic(struct nvkm_output *outp)
  39. {
  40. struct nvkm_device *device = outp->disp->engine.subdev.device;
  41. const u32 soff = outp->or * 0x100;
  42. const u32 data = outp->or + 1;
  43. if (outp->info.sorconf.link & 1)
  44. nvkm_mask(device, 0x612308 + soff, 0x0000001f, 0x00000000 | data);
  45. if (outp->info.sorconf.link & 2)
  46. nvkm_mask(device, 0x612388 + soff, 0x0000001f, 0x00000010 | data);
  47. }
  48. static inline u32
  49. gm204_sor_dp_lane_map(struct nvkm_device *device, u8 lane)
  50. {
  51. return lane * 0x08;
  52. }
  53. static int
  54. gm204_sor_dp_pattern(struct nvkm_output_dp *outp, int pattern)
  55. {
  56. struct nvkm_device *device = outp->base.disp->engine.subdev.device;
  57. const u32 soff = gm204_sor_soff(outp);
  58. const u32 data = 0x01010101 * pattern;
  59. if (outp->base.info.sorconf.link & 1)
  60. nvkm_mask(device, 0x61c110 + soff, 0x0f0f0f0f, data);
  61. else
  62. nvkm_mask(device, 0x61c12c + soff, 0x0f0f0f0f, data);
  63. return 0;
  64. }
  65. static int
  66. gm204_sor_dp_lnk_pwr(struct nvkm_output_dp *outp, int nr)
  67. {
  68. struct nvkm_device *device = outp->base.disp->engine.subdev.device;
  69. const u32 soff = gm204_sor_soff(outp);
  70. const u32 loff = gm204_sor_loff(outp);
  71. u32 mask = 0, i;
  72. for (i = 0; i < nr; i++)
  73. mask |= 1 << (gm204_sor_dp_lane_map(device, i) >> 3);
  74. nvkm_mask(device, 0x61c130 + loff, 0x0000000f, mask);
  75. nvkm_mask(device, 0x61c034 + soff, 0x80000000, 0x80000000);
  76. nvkm_msec(device, 2000,
  77. if (!(nvkm_rd32(device, 0x61c034 + soff) & 0x80000000))
  78. break;
  79. );
  80. return 0;
  81. }
  82. static int
  83. gm204_sor_dp_drv_ctl(struct nvkm_output_dp *outp,
  84. int ln, int vs, int pe, int pc)
  85. {
  86. struct nvkm_device *device = outp->base.disp->engine.subdev.device;
  87. struct nvkm_bios *bios = device->bios;
  88. const u32 shift = gm204_sor_dp_lane_map(device, ln);
  89. const u32 loff = gm204_sor_loff(outp);
  90. u32 addr, data[4];
  91. u8 ver, hdr, cnt, len;
  92. struct nvbios_dpout info;
  93. struct nvbios_dpcfg ocfg;
  94. addr = nvbios_dpout_match(bios, outp->base.info.hasht,
  95. outp->base.info.hashm,
  96. &ver, &hdr, &cnt, &len, &info);
  97. if (!addr)
  98. return -ENODEV;
  99. addr = nvbios_dpcfg_match(bios, addr, pc, vs, pe,
  100. &ver, &hdr, &cnt, &len, &ocfg);
  101. if (!addr)
  102. return -EINVAL;
  103. ocfg.tx_pu &= 0x0f;
  104. data[0] = nvkm_rd32(device, 0x61c118 + loff) & ~(0x000000ff << shift);
  105. data[1] = nvkm_rd32(device, 0x61c120 + loff) & ~(0x000000ff << shift);
  106. data[2] = nvkm_rd32(device, 0x61c130 + loff);
  107. if ((data[2] & 0x00000f00) < (ocfg.tx_pu << 8) || ln == 0)
  108. data[2] = (data[2] & ~0x00000f00) | (ocfg.tx_pu << 8);
  109. nvkm_wr32(device, 0x61c118 + loff, data[0] | (ocfg.dc << shift));
  110. nvkm_wr32(device, 0x61c120 + loff, data[1] | (ocfg.pe << shift));
  111. nvkm_wr32(device, 0x61c130 + loff, data[2]);
  112. data[3] = nvkm_rd32(device, 0x61c13c + loff) & ~(0x000000ff << shift);
  113. nvkm_wr32(device, 0x61c13c + loff, data[3] | (ocfg.pc << shift));
  114. return 0;
  115. }
  116. static const struct nvkm_output_dp_func
  117. gm204_sor_dp_func = {
  118. .pattern = gm204_sor_dp_pattern,
  119. .lnk_pwr = gm204_sor_dp_lnk_pwr,
  120. .lnk_ctl = gf119_sor_dp_lnk_ctl,
  121. .drv_ctl = gm204_sor_dp_drv_ctl,
  122. };
  123. int
  124. gm204_sor_dp_new(struct nvkm_disp *disp, int index, struct dcb_output *dcbE,
  125. struct nvkm_output **poutp)
  126. {
  127. return nvkm_output_dp_new_(&gm204_sor_dp_func, disp, index, dcbE, poutp);
  128. }