rootnv04.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. #define nv04_disp_root(p) container_of((p), struct nv04_disp_root, object)
  25. #include "priv.h"
  26. #include <core/client.h>
  27. #include <nvif/class.h>
  28. #include <nvif/cl0046.h>
  29. #include <nvif/unpack.h>
  30. struct nv04_disp_root {
  31. struct nvkm_object object;
  32. struct nvkm_disp *disp;
  33. };
  34. static int
  35. nv04_disp_scanoutpos(struct nv04_disp_root *root,
  36. void *data, u32 size, int head)
  37. {
  38. struct nvkm_device *device = root->disp->engine.subdev.device;
  39. struct nvkm_object *object = &root->object;
  40. const u32 hoff = head * 0x2000;
  41. union {
  42. struct nv04_disp_scanoutpos_v0 v0;
  43. } *args = data;
  44. u32 line;
  45. int ret = -ENOSYS;
  46. nvif_ioctl(object, "disp scanoutpos size %d\n", size);
  47. if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) {
  48. nvif_ioctl(object, "disp scanoutpos vers %d\n",
  49. args->v0.version);
  50. args->v0.vblanks = nvkm_rd32(device, 0x680800 + hoff) & 0xffff;
  51. args->v0.vtotal = nvkm_rd32(device, 0x680804 + hoff) & 0xffff;
  52. args->v0.vblanke = args->v0.vtotal - 1;
  53. args->v0.hblanks = nvkm_rd32(device, 0x680820 + hoff) & 0xffff;
  54. args->v0.htotal = nvkm_rd32(device, 0x680824 + hoff) & 0xffff;
  55. args->v0.hblanke = args->v0.htotal - 1;
  56. /*
  57. * If output is vga instead of digital then vtotal/htotal is
  58. * invalid so we have to give up and trigger the timestamping
  59. * fallback in the drm core.
  60. */
  61. if (!args->v0.vtotal || !args->v0.htotal)
  62. return -ENOTSUPP;
  63. args->v0.time[0] = ktime_to_ns(ktime_get());
  64. line = nvkm_rd32(device, 0x600868 + hoff);
  65. args->v0.time[1] = ktime_to_ns(ktime_get());
  66. args->v0.hline = (line & 0xffff0000) >> 16;
  67. args->v0.vline = (line & 0x0000ffff);
  68. } else
  69. return ret;
  70. return 0;
  71. }
  72. static int
  73. nv04_disp_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size)
  74. {
  75. struct nv04_disp_root *root = nv04_disp_root(object);
  76. union {
  77. struct nv04_disp_mthd_v0 v0;
  78. } *args = data;
  79. int head, ret = -ENOSYS;
  80. nvif_ioctl(object, "disp mthd size %d\n", size);
  81. if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, true))) {
  82. nvif_ioctl(object, "disp mthd vers %d mthd %02x head %d\n",
  83. args->v0.version, args->v0.method, args->v0.head);
  84. mthd = args->v0.method;
  85. head = args->v0.head;
  86. } else
  87. return ret;
  88. if (head < 0 || head >= 2)
  89. return -ENXIO;
  90. switch (mthd) {
  91. case NV04_DISP_SCANOUTPOS:
  92. return nv04_disp_scanoutpos(root, data, size, head);
  93. default:
  94. break;
  95. }
  96. return -EINVAL;
  97. }
  98. static const struct nvkm_object_func
  99. nv04_disp_root = {
  100. .mthd = nv04_disp_mthd,
  101. .ntfy = nvkm_disp_ntfy,
  102. };
  103. static int
  104. nv04_disp_root_new(struct nvkm_disp *disp, const struct nvkm_oclass *oclass,
  105. void *data, u32 size, struct nvkm_object **pobject)
  106. {
  107. struct nv04_disp_root *root;
  108. if (!(root = kzalloc(sizeof(*root), GFP_KERNEL)))
  109. return -ENOMEM;
  110. root->disp = disp;
  111. *pobject = &root->object;
  112. nvkm_object_ctor(&nv04_disp_root, oclass, &root->object);
  113. return 0;
  114. }
  115. const struct nvkm_disp_oclass
  116. nv04_disp_root_oclass = {
  117. .base.oclass = NV04_DISP,
  118. .base.minver = -1,
  119. .base.maxver = -1,
  120. .ctor = nv04_disp_root_new,
  121. };