rootgf119.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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 "rootnv50.h"
  25. #include "dmacnv50.h"
  26. #include <core/client.h>
  27. #include <core/ramht.h>
  28. #include <subdev/timer.h>
  29. #include <nvif/class.h>
  30. #include <nvif/unpack.h>
  31. int
  32. gf119_disp_root_scanoutpos(NV50_DISP_MTHD_V0)
  33. {
  34. struct nvkm_device *device = disp->base.engine.subdev.device;
  35. const u32 total = nvkm_rd32(device, 0x640414 + (head * 0x300));
  36. const u32 blanke = nvkm_rd32(device, 0x64041c + (head * 0x300));
  37. const u32 blanks = nvkm_rd32(device, 0x640420 + (head * 0x300));
  38. union {
  39. struct nv04_disp_scanoutpos_v0 v0;
  40. } *args = data;
  41. int ret;
  42. nvif_ioctl(object, "disp scanoutpos size %d\n", size);
  43. if (nvif_unpack(args->v0, 0, 0, false)) {
  44. nvif_ioctl(object, "disp scanoutpos vers %d\n",
  45. args->v0.version);
  46. args->v0.vblanke = (blanke & 0xffff0000) >> 16;
  47. args->v0.hblanke = (blanke & 0x0000ffff);
  48. args->v0.vblanks = (blanks & 0xffff0000) >> 16;
  49. args->v0.hblanks = (blanks & 0x0000ffff);
  50. args->v0.vtotal = ( total & 0xffff0000) >> 16;
  51. args->v0.htotal = ( total & 0x0000ffff);
  52. args->v0.time[0] = ktime_to_ns(ktime_get());
  53. args->v0.vline = /* vline read locks hline */
  54. nvkm_rd32(device, 0x616340 + (head * 0x800)) & 0xffff;
  55. args->v0.time[1] = ktime_to_ns(ktime_get());
  56. args->v0.hline =
  57. nvkm_rd32(device, 0x616344 + (head * 0x800)) & 0xffff;
  58. } else
  59. return ret;
  60. return 0;
  61. }
  62. void
  63. gf119_disp_root_fini(struct nv50_disp_root *root)
  64. {
  65. struct nvkm_device *device = root->disp->base.engine.subdev.device;
  66. /* disable all interrupts */
  67. nvkm_wr32(device, 0x6100b0, 0x00000000);
  68. }
  69. int
  70. gf119_disp_root_init(struct nv50_disp_root *root)
  71. {
  72. struct nv50_disp *disp = root->disp;
  73. struct nvkm_device *device = disp->base.engine.subdev.device;
  74. u32 tmp;
  75. int i;
  76. /* The below segments of code copying values from one register to
  77. * another appear to inform EVO of the display capabilities or
  78. * something similar.
  79. */
  80. /* ... CRTC caps */
  81. for (i = 0; i < disp->base.head.nr; i++) {
  82. tmp = nvkm_rd32(device, 0x616104 + (i * 0x800));
  83. nvkm_wr32(device, 0x6101b4 + (i * 0x800), tmp);
  84. tmp = nvkm_rd32(device, 0x616108 + (i * 0x800));
  85. nvkm_wr32(device, 0x6101b8 + (i * 0x800), tmp);
  86. tmp = nvkm_rd32(device, 0x61610c + (i * 0x800));
  87. nvkm_wr32(device, 0x6101bc + (i * 0x800), tmp);
  88. }
  89. /* ... DAC caps */
  90. for (i = 0; i < disp->func->dac.nr; i++) {
  91. tmp = nvkm_rd32(device, 0x61a000 + (i * 0x800));
  92. nvkm_wr32(device, 0x6101c0 + (i * 0x800), tmp);
  93. }
  94. /* ... SOR caps */
  95. for (i = 0; i < disp->func->sor.nr; i++) {
  96. tmp = nvkm_rd32(device, 0x61c000 + (i * 0x800));
  97. nvkm_wr32(device, 0x6301c4 + (i * 0x800), tmp);
  98. }
  99. /* steal display away from vbios, or something like that */
  100. if (nvkm_rd32(device, 0x6100ac) & 0x00000100) {
  101. nvkm_wr32(device, 0x6100ac, 0x00000100);
  102. nvkm_mask(device, 0x6194e8, 0x00000001, 0x00000000);
  103. if (nvkm_msec(device, 2000,
  104. if (!(nvkm_rd32(device, 0x6194e8) & 0x00000002))
  105. break;
  106. ) < 0)
  107. return -EBUSY;
  108. }
  109. /* point at display engine memory area (hash table, objects) */
  110. nvkm_wr32(device, 0x610010, (root->instmem->addr >> 8) | 9);
  111. /* enable supervisor interrupts, disable everything else */
  112. nvkm_wr32(device, 0x610090, 0x00000000);
  113. nvkm_wr32(device, 0x6100a0, 0x00000000);
  114. nvkm_wr32(device, 0x6100b0, 0x00000307);
  115. /* disable underflow reporting, preventing an intermittent issue
  116. * on some gk104 boards where the production vbios left this
  117. * setting enabled by default.
  118. *
  119. * ftp://download.nvidia.com/open-gpu-doc/gk104-disable-underflow-reporting/1/gk104-disable-underflow-reporting.txt
  120. */
  121. for (i = 0; i < disp->base.head.nr; i++)
  122. nvkm_mask(device, 0x616308 + (i * 0x800), 0x00000111, 0x00000010);
  123. return 0;
  124. }
  125. static const struct nv50_disp_root_func
  126. gf119_disp_root = {
  127. .init = gf119_disp_root_init,
  128. .fini = gf119_disp_root_fini,
  129. .dmac = {
  130. &gf119_disp_core_oclass,
  131. &gf119_disp_base_oclass,
  132. &gf119_disp_ovly_oclass,
  133. },
  134. .pioc = {
  135. &gf119_disp_oimm_oclass,
  136. &gf119_disp_curs_oclass,
  137. },
  138. };
  139. static int
  140. gf119_disp_root_new(struct nvkm_disp *disp, const struct nvkm_oclass *oclass,
  141. void *data, u32 size, struct nvkm_object **pobject)
  142. {
  143. return nv50_disp_root_new_(&gf119_disp_root, disp, oclass,
  144. data, size, pobject);
  145. }
  146. const struct nvkm_disp_oclass
  147. gf119_disp_root_oclass = {
  148. .base.oclass = GF110_DISP,
  149. .base.minver = -1,
  150. .base.maxver = -1,
  151. .ctor = gf119_disp_root_new,
  152. };