vmwgfx_resource_priv.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /**************************************************************************
  2. *
  3. * Copyright © 2012 VMware, Inc., Palo Alto, CA., USA
  4. * All Rights Reserved.
  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. #ifndef _VMWGFX_RESOURCE_PRIV_H_
  28. #define _VMWGFX_RESOURCE_PRIV_H_
  29. #include "vmwgfx_drv.h"
  30. /**
  31. * struct vmw_user_resource_conv - Identify a derived user-exported resource
  32. * type and provide a function to convert its ttm_base_object pointer to
  33. * a struct vmw_resource
  34. */
  35. struct vmw_user_resource_conv {
  36. enum ttm_object_type object_type;
  37. struct vmw_resource *(*base_obj_to_res)(struct ttm_base_object *base);
  38. void (*res_free) (struct vmw_resource *res);
  39. };
  40. /**
  41. * struct vmw_res_func - members and functions common for a resource type
  42. *
  43. * @res_type: Enum that identifies the lru list to use for eviction.
  44. * @needs_backup: Whether the resource is guest-backed and needs
  45. * persistent buffer storage.
  46. * @type_name: String that identifies the resource type.
  47. * @backup_placement: TTM placement for backup buffers.
  48. * @may_evict Whether the resource may be evicted.
  49. * @create: Create a hardware resource.
  50. * @destroy: Destroy a hardware resource.
  51. * @bind: Bind a hardware resource to persistent buffer storage.
  52. * @unbind: Unbind a hardware resource from persistent
  53. * buffer storage.
  54. */
  55. struct vmw_res_func {
  56. enum vmw_res_type res_type;
  57. bool needs_backup;
  58. const char *type_name;
  59. struct ttm_placement *backup_placement;
  60. bool may_evict;
  61. int (*create) (struct vmw_resource *res);
  62. int (*destroy) (struct vmw_resource *res);
  63. int (*bind) (struct vmw_resource *res,
  64. struct ttm_validate_buffer *val_buf);
  65. int (*unbind) (struct vmw_resource *res,
  66. bool readback,
  67. struct ttm_validate_buffer *val_buf);
  68. };
  69. int vmw_resource_alloc_id(struct vmw_resource *res);
  70. void vmw_resource_release_id(struct vmw_resource *res);
  71. int vmw_resource_init(struct vmw_private *dev_priv, struct vmw_resource *res,
  72. bool delay_id,
  73. void (*res_free) (struct vmw_resource *res),
  74. const struct vmw_res_func *func);
  75. void vmw_resource_activate(struct vmw_resource *res,
  76. void (*hw_destroy) (struct vmw_resource *));
  77. #endif