vmwgfx_devcaps.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /* SPDX-License-Identifier: GPL-2.0 OR MIT */
  2. /**************************************************************************
  3. *
  4. * Copyright 2021 VMware, Inc., Palo Alto, CA., USA
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a
  7. * copy of this software and associated documentation files (the
  8. * "Software"), to deal in the Software without restriction, including
  9. * without limitation the rights to use, copy, modify, merge, publish,
  10. * distribute, sub license, and/or sell copies of the Software, and to
  11. * permit persons to whom the Software is furnished to do so, subject to
  12. * the following conditions:
  13. *
  14. * The above copyright notice and this permission notice (including the
  15. * next paragraph) shall be included in all copies or substantial portions
  16. * of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
  21. * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
  22. * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  23. * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  24. * USE OR OTHER DEALINGS IN THE SOFTWARE.
  25. *
  26. **************************************************************************/
  27. #include "vmwgfx_devcaps.h"
  28. #include "vmwgfx_drv.h"
  29. struct svga_3d_compat_cap {
  30. SVGA3dFifoCapsRecordHeader header;
  31. SVGA3dFifoCapPair pairs[SVGA3D_DEVCAP_MAX];
  32. };
  33. static u32 vmw_mask_legacy_multisample(unsigned int cap, u32 fmt_value)
  34. {
  35. /*
  36. * A version of user-space exists which use MULTISAMPLE_MASKABLESAMPLES
  37. * to check the sample count supported by virtual device. Since there
  38. * never was support for multisample count for backing MOB return 0.
  39. *
  40. * MULTISAMPLE_MASKABLESAMPLES devcap is marked as deprecated by virtual
  41. * device.
  42. */
  43. if (cap == SVGA3D_DEVCAP_DEAD5)
  44. return 0;
  45. return fmt_value;
  46. }
  47. static int vmw_fill_compat_cap(struct vmw_private *dev_priv, void *bounce,
  48. size_t size)
  49. {
  50. struct svga_3d_compat_cap *compat_cap =
  51. (struct svga_3d_compat_cap *) bounce;
  52. unsigned int i;
  53. size_t pair_offset = offsetof(struct svga_3d_compat_cap, pairs);
  54. unsigned int max_size;
  55. if (size < pair_offset)
  56. return -EINVAL;
  57. max_size = (size - pair_offset) / sizeof(SVGA3dFifoCapPair);
  58. if (max_size > SVGA3D_DEVCAP_MAX)
  59. max_size = SVGA3D_DEVCAP_MAX;
  60. compat_cap->header.length =
  61. (pair_offset + max_size * sizeof(SVGA3dFifoCapPair)) / sizeof(u32);
  62. compat_cap->header.type = SVGA3D_FIFO_CAPS_RECORD_DEVCAPS;
  63. for (i = 0; i < max_size; ++i) {
  64. compat_cap->pairs[i][0] = i;
  65. compat_cap->pairs[i][1] = vmw_mask_legacy_multisample
  66. (i, dev_priv->devcaps[i]);
  67. }
  68. return 0;
  69. }
  70. int vmw_devcaps_create(struct vmw_private *vmw)
  71. {
  72. bool gb_objects = !!(vmw->capabilities & SVGA_CAP_GBOBJECTS);
  73. uint32_t i;
  74. if (gb_objects) {
  75. vmw->devcaps = vzalloc(sizeof(uint32_t) * SVGA3D_DEVCAP_MAX);
  76. if (!vmw->devcaps)
  77. return -ENOMEM;
  78. for (i = 0; i < SVGA3D_DEVCAP_MAX; ++i) {
  79. vmw_write(vmw, SVGA_REG_DEV_CAP, i);
  80. vmw->devcaps[i] = vmw_read(vmw, SVGA_REG_DEV_CAP);
  81. }
  82. }
  83. return 0;
  84. }
  85. void vmw_devcaps_destroy(struct vmw_private *vmw)
  86. {
  87. vfree(vmw->devcaps);
  88. vmw->devcaps = NULL;
  89. }
  90. uint32 vmw_devcaps_size(const struct vmw_private *vmw,
  91. bool gb_aware)
  92. {
  93. bool gb_objects = !!(vmw->capabilities & SVGA_CAP_GBOBJECTS);
  94. if (gb_objects && gb_aware)
  95. return SVGA3D_DEVCAP_MAX * sizeof(uint32_t);
  96. else if (gb_objects)
  97. return sizeof(struct svga_3d_compat_cap) +
  98. sizeof(uint32_t);
  99. else if (vmw->fifo_mem != NULL)
  100. return (SVGA_FIFO_3D_CAPS_LAST - SVGA_FIFO_3D_CAPS + 1) *
  101. sizeof(uint32_t);
  102. else
  103. return 0;
  104. }
  105. int vmw_devcaps_copy(struct vmw_private *vmw, bool gb_aware,
  106. void *dst, uint32_t dst_size)
  107. {
  108. int ret;
  109. bool gb_objects = !!(vmw->capabilities & SVGA_CAP_GBOBJECTS);
  110. if (gb_objects && gb_aware) {
  111. memcpy(dst, vmw->devcaps, dst_size);
  112. } else if (gb_objects) {
  113. ret = vmw_fill_compat_cap(vmw, dst, dst_size);
  114. if (unlikely(ret != 0))
  115. return ret;
  116. } else if (vmw->fifo_mem) {
  117. u32 *fifo_mem = vmw->fifo_mem;
  118. memcpy(dst, &fifo_mem[SVGA_FIFO_3D_CAPS], dst_size);
  119. } else
  120. return -EINVAL;
  121. return 0;
  122. }