intel_aub.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*
  2. * Copyright © 2010 Intel Corporation
  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 (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21. * IN THE SOFTWARE.
  22. *
  23. * Authors:
  24. * Eric Anholt <eric@anholt.net>
  25. *
  26. */
  27. /** @file intel_aub.h
  28. *
  29. * The AUB file is a file format used by Intel's internal simulation
  30. * and other validation tools. It can be used at various levels by a
  31. * driver to input state to the simulated hardware or a replaying
  32. * debugger.
  33. *
  34. * We choose to dump AUB files using the trace block format for ease
  35. * of implementation -- dump out the blocks of memory as plain blobs
  36. * and insert ring commands to execute the batchbuffer blob.
  37. */
  38. #ifndef _INTEL_AUB_H
  39. #define _INTEL_AUB_H
  40. #define AUB_MI_NOOP (0)
  41. #define AUB_MI_BATCH_BUFFER_START (0x31 << 23)
  42. #define AUB_PIPE_CONTROL (0x7a000002)
  43. /* DW0: instruction type. */
  44. #define CMD_AUB (7 << 29)
  45. #define CMD_AUB_HEADER (CMD_AUB | (1 << 23) | (0x05 << 16))
  46. /* DW1 */
  47. # define AUB_HEADER_MAJOR_SHIFT 24
  48. # define AUB_HEADER_MINOR_SHIFT 16
  49. #define CMD_AUB_TRACE_HEADER_BLOCK (CMD_AUB | (1 << 23) | (0x41 << 16))
  50. #define CMD_AUB_DUMP_BMP (CMD_AUB | (1 << 23) | (0x9e << 16))
  51. /* DW1 */
  52. #define AUB_TRACE_OPERATION_MASK 0x000000ff
  53. #define AUB_TRACE_OP_COMMENT 0x00000000
  54. #define AUB_TRACE_OP_DATA_WRITE 0x00000001
  55. #define AUB_TRACE_OP_COMMAND_WRITE 0x00000002
  56. #define AUB_TRACE_OP_MMIO_WRITE 0x00000003
  57. // operation = TRACE_DATA_WRITE, Type
  58. #define AUB_TRACE_TYPE_MASK 0x0000ff00
  59. #define AUB_TRACE_TYPE_NOTYPE (0 << 8)
  60. #define AUB_TRACE_TYPE_BATCH (1 << 8)
  61. #define AUB_TRACE_TYPE_VERTEX_BUFFER (5 << 8)
  62. #define AUB_TRACE_TYPE_2D_MAP (6 << 8)
  63. #define AUB_TRACE_TYPE_CUBE_MAP (7 << 8)
  64. #define AUB_TRACE_TYPE_VOLUME_MAP (9 << 8)
  65. #define AUB_TRACE_TYPE_1D_MAP (10 << 8)
  66. #define AUB_TRACE_TYPE_CONSTANT_BUFFER (11 << 8)
  67. #define AUB_TRACE_TYPE_CONSTANT_URB (12 << 8)
  68. #define AUB_TRACE_TYPE_INDEX_BUFFER (13 << 8)
  69. #define AUB_TRACE_TYPE_GENERAL (14 << 8)
  70. #define AUB_TRACE_TYPE_SURFACE (15 << 8)
  71. // operation = TRACE_COMMAND_WRITE, Type =
  72. #define AUB_TRACE_TYPE_RING_HWB (1 << 8)
  73. #define AUB_TRACE_TYPE_RING_PRB0 (2 << 8)
  74. #define AUB_TRACE_TYPE_RING_PRB1 (3 << 8)
  75. #define AUB_TRACE_TYPE_RING_PRB2 (4 << 8)
  76. // Address space
  77. #define AUB_TRACE_ADDRESS_SPACE_MASK 0x00ff0000
  78. #define AUB_TRACE_MEMTYPE_GTT (0 << 16)
  79. #define AUB_TRACE_MEMTYPE_LOCAL (1 << 16)
  80. #define AUB_TRACE_MEMTYPE_NONLOCAL (2 << 16)
  81. #define AUB_TRACE_MEMTYPE_PCI (3 << 16)
  82. #define AUB_TRACE_MEMTYPE_GTT_ENTRY (4 << 16)
  83. /* DW2 */
  84. /**
  85. * aub_state_struct_type enum values are encoded with the top 16 bits
  86. * representing the type to be delivered to the .aub file, and the bottom 16
  87. * bits representing the subtype. This macro performs the encoding.
  88. */
  89. #define ENCODE_SS_TYPE(type, subtype) (((type) << 16) | (subtype))
  90. enum aub_state_struct_type {
  91. AUB_TRACE_VS_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 1),
  92. AUB_TRACE_GS_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 2),
  93. AUB_TRACE_CLIP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 3),
  94. AUB_TRACE_SF_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 4),
  95. AUB_TRACE_WM_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 5),
  96. AUB_TRACE_CC_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 6),
  97. AUB_TRACE_CLIP_VP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 7),
  98. AUB_TRACE_SF_VP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 8),
  99. AUB_TRACE_CC_VP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x9),
  100. AUB_TRACE_SAMPLER_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xa),
  101. AUB_TRACE_KERNEL_INSTRUCTIONS = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xb),
  102. AUB_TRACE_SCRATCH_SPACE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xc),
  103. AUB_TRACE_SAMPLER_DEFAULT_COLOR = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xd),
  104. AUB_TRACE_SCISSOR_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x15),
  105. AUB_TRACE_BLEND_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x16),
  106. AUB_TRACE_DEPTH_STENCIL_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x17),
  107. AUB_TRACE_VERTEX_BUFFER = ENCODE_SS_TYPE(AUB_TRACE_TYPE_VERTEX_BUFFER, 0),
  108. AUB_TRACE_BINDING_TABLE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_SURFACE, 0x100),
  109. AUB_TRACE_SURFACE_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_SURFACE, 0x200),
  110. AUB_TRACE_VS_CONSTANTS = ENCODE_SS_TYPE(AUB_TRACE_TYPE_CONSTANT_BUFFER, 0),
  111. AUB_TRACE_WM_CONSTANTS = ENCODE_SS_TYPE(AUB_TRACE_TYPE_CONSTANT_BUFFER, 1),
  112. };
  113. #undef ENCODE_SS_TYPE
  114. /**
  115. * Decode a aub_state_struct_type value to determine the type that should be
  116. * stored in the .aub file.
  117. */
  118. static inline uint32_t AUB_TRACE_TYPE(enum aub_state_struct_type ss_type)
  119. {
  120. return (ss_type & 0xFFFF0000) >> 16;
  121. }
  122. /**
  123. * Decode a state_struct_type value to determine the subtype that should be
  124. * stored in the .aub file.
  125. */
  126. static inline uint32_t AUB_TRACE_SUBTYPE(enum aub_state_struct_type ss_type)
  127. {
  128. return ss_type & 0xFFFF;
  129. }
  130. /* DW3: address */
  131. /* DW4: len */
  132. #endif /* _INTEL_AUB_H */