ovly907e.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. * Copyright 2018 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. #include "ovly.h"
  23. #include "atom.h"
  24. #include <nvif/push507c.h>
  25. #include <nvhw/class/cl907e.h>
  26. static int
  27. ovly907e_image_set(struct nv50_wndw *wndw, struct nv50_wndw_atom *asyw)
  28. {
  29. struct nvif_push *push = wndw->wndw.push;
  30. int ret;
  31. if ((ret = PUSH_WAIT(push, 12)))
  32. return ret;
  33. PUSH_MTHD(push, NV907E, SET_PRESENT_CONTROL,
  34. NVDEF(NV907E, SET_PRESENT_CONTROL, BEGIN_MODE, ASAP) |
  35. NVVAL(NV907E, SET_PRESENT_CONTROL, MIN_PRESENT_INTERVAL, asyw->image.interval));
  36. PUSH_MTHD(push, NV907E, SET_CONTEXT_DMA_ISO, asyw->image.handle[0]);
  37. PUSH_MTHD(push, NV907E, SET_COMPOSITION_CONTROL,
  38. NVDEF(NV907E, SET_COMPOSITION_CONTROL, MODE, OPAQUE));
  39. PUSH_MTHD(push, NV907E, SURFACE_SET_OFFSET, asyw->image.offset[0] >> 8);
  40. PUSH_MTHD(push, NV907E, SURFACE_SET_SIZE,
  41. NVVAL(NV907E, SURFACE_SET_SIZE, WIDTH, asyw->image.w) |
  42. NVVAL(NV907E, SURFACE_SET_SIZE, HEIGHT, asyw->image.h),
  43. SURFACE_SET_STORAGE,
  44. NVVAL(NV907E, SURFACE_SET_STORAGE, BLOCK_HEIGHT, asyw->image.blockh) |
  45. NVVAL(NV907E, SURFACE_SET_STORAGE, PITCH, (asyw->image.pitch[0] >> 8)) |
  46. NVVAL(NV907E, SURFACE_SET_STORAGE, PITCH, asyw->image.blocks[0]) |
  47. NVVAL(NV907E, SURFACE_SET_STORAGE, MEMORY_LAYOUT, asyw->image.layout),
  48. SURFACE_SET_PARAMS,
  49. NVVAL(NV907E, SURFACE_SET_PARAMS, FORMAT, asyw->image.format) |
  50. NVVAL(NV907E, SURFACE_SET_PARAMS, COLOR_SPACE, asyw->image.colorspace));
  51. return 0;
  52. }
  53. const struct nv50_wndw_func
  54. ovly907e = {
  55. .acquire = ovly507e_acquire,
  56. .release = ovly507e_release,
  57. .ntfy_set = base507c_ntfy_set,
  58. .ntfy_clr = base507c_ntfy_clr,
  59. .ntfy_reset = ovly827e_ntfy_reset,
  60. .ntfy_wait_begun = ovly827e_ntfy_wait_begun,
  61. .image_set = ovly907e_image_set,
  62. .image_clr = base507c_image_clr,
  63. .scale_set = ovly507e_scale_set,
  64. .update = base507c_update,
  65. };
  66. static const u32
  67. ovly907e_format[] = {
  68. DRM_FORMAT_YUYV,
  69. DRM_FORMAT_UYVY,
  70. DRM_FORMAT_XRGB8888,
  71. DRM_FORMAT_XRGB1555,
  72. DRM_FORMAT_XBGR2101010,
  73. DRM_FORMAT_XBGR16161616F,
  74. 0
  75. };
  76. int
  77. ovly907e_new(struct nouveau_drm *drm, int head, s32 oclass,
  78. struct nv50_wndw **pwndw)
  79. {
  80. return ovly507e_new_(&ovly907e, ovly907e_format, drm, head, oclass,
  81. 0x00000004 << (head * 4), pwndw);
  82. }