Path: blob/21.2-virgl/src/intel/tools/intel_aub.h
4547 views
/*1* Copyright © 2010 Intel Corporation2*3* Permission is hereby granted, free of charge, to any person obtaining a4* copy of this software and associated documentation files (the "Software"),5* to deal in the Software without restriction, including without limitation6* the rights to use, copy, modify, merge, publish, distribute, sublicense,7* and/or sell copies of the Software, and to permit persons to whom the8* Software is furnished to do so, subject to the following conditions:9*10* The above copyright notice and this permission notice (including the next11* paragraph) shall be included in all copies or substantial portions of the12* Software.13*14* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR15* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,16* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL17* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER18* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING19* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS20* IN THE SOFTWARE.21*22* Authors:23* Eric Anholt <[email protected]>24*25*/2627/** @file intel_aub.h28*29* The AUB file is a file format used by Intel's internal simulation30* and other validation tools. It can be used at various levels by a31* driver to input state to the simulated hardware or a replaying32* debugger.33*34* We choose to dump AUB files using the trace block format for ease35* of implementation -- dump out the blocks of memory as plain blobs36* and insert ring commands to execute the batchbuffer blob.37*/3839#ifndef _INTEL_AUB_H40#define _INTEL_AUB_H4142#define AUB_MI_NOOP (0)43#define AUB_MI_BATCH_BUFFER_START (0x31 << 23)44#define AUB_PIPE_CONTROL (0x7a000002)4546/* DW0: instruction type. */4748#define CMD_AUB (7 << 29)4950#define CMD_AUB_HEADER (CMD_AUB | (1 << 23) | (0x05 << 16))5152#define CMD_MEM_TRACE_REGISTER_POLL (CMD_AUB | (0x2e << 23) | (0x02 << 16))53#define CMD_MEM_TRACE_REGISTER_WRITE (CMD_AUB | (0x2e << 23) | (0x03 << 16))54#define CMD_MEM_TRACE_MEMORY_WRITE (CMD_AUB | (0x2e << 23) | (0x06 << 16))55#define CMD_MEM_TRACE_VERSION (CMD_AUB | (0x2e << 23) | (0x0e << 16))5657/* DW1 */58# define AUB_HEADER_MAJOR_SHIFT 2459# define AUB_HEADER_MINOR_SHIFT 166061#define CMD_AUB_TRACE_HEADER_BLOCK (CMD_AUB | (1 << 23) | (0x41 << 16))62#define CMD_AUB_DUMP_BMP (CMD_AUB | (1 << 23) | (0x9e << 16))6364/* DW1 */65#define AUB_TRACE_OPERATION_MASK 0x000000ff66#define AUB_TRACE_OP_COMMENT 0x0000000067#define AUB_TRACE_OP_DATA_WRITE 0x0000000168#define AUB_TRACE_OP_COMMAND_WRITE 0x0000000269#define AUB_TRACE_OP_MMIO_WRITE 0x0000000370// operation = TRACE_DATA_WRITE, Type71#define AUB_TRACE_TYPE_MASK 0x0000ff0072#define AUB_TRACE_TYPE_NOTYPE (0 << 8)73#define AUB_TRACE_TYPE_BATCH (1 << 8)74#define AUB_TRACE_TYPE_VERTEX_BUFFER (5 << 8)75#define AUB_TRACE_TYPE_2D_MAP (6 << 8)76#define AUB_TRACE_TYPE_CUBE_MAP (7 << 8)77#define AUB_TRACE_TYPE_VOLUME_MAP (9 << 8)78#define AUB_TRACE_TYPE_1D_MAP (10 << 8)79#define AUB_TRACE_TYPE_CONSTANT_BUFFER (11 << 8)80#define AUB_TRACE_TYPE_CONSTANT_URB (12 << 8)81#define AUB_TRACE_TYPE_INDEX_BUFFER (13 << 8)82#define AUB_TRACE_TYPE_GENERAL (14 << 8)83#define AUB_TRACE_TYPE_SURFACE (15 << 8)848586// operation = TRACE_COMMAND_WRITE, Type =87#define AUB_TRACE_TYPE_RING_HWB (1 << 8)88#define AUB_TRACE_TYPE_RING_PRB0 (2 << 8)89#define AUB_TRACE_TYPE_RING_PRB1 (3 << 8)90#define AUB_TRACE_TYPE_RING_PRB2 (4 << 8)9192// Address space93#define AUB_TRACE_ADDRESS_SPACE_MASK 0x00ff000094#define AUB_TRACE_MEMTYPE_GTT (0 << 16)95#define AUB_TRACE_MEMTYPE_LOCAL (1 << 16)96#define AUB_TRACE_MEMTYPE_NONLOCAL (2 << 16)97#define AUB_TRACE_MEMTYPE_PCI (3 << 16)98#define AUB_TRACE_MEMTYPE_GTT_ENTRY (4 << 16)99100#define AUB_MEM_TRACE_VERSION_FILE_VERSION 1101102/* DW2 */103104#define AUB_MEM_TRACE_VERSION_DEVICE_MASK 0x0000ff00105#define AUB_MEM_TRACE_VERSION_DEVICE_SHIFT 8106107#define AUB_MEM_TRACE_VERSION_METHOD_MASK 0x000c0000108#define AUB_MEM_TRACE_VERSION_METHOD_PHY (1 << 18)109110#define AUB_MEM_TRACE_REGISTER_SIZE_MASK 0x000f0000111#define AUB_MEM_TRACE_REGISTER_SIZE_DWORD (2 << 16)112113#define AUB_MEM_TRACE_REGISTER_SPACE_MASK 0xf0000000114#define AUB_MEM_TRACE_REGISTER_SPACE_MMIO (0 << 28)115116/* DW3 */117118#define AUB_MEM_TRACE_MEMORY_ADDRESS_SPACE_MASK 0xf0000000119#define AUB_MEM_TRACE_MEMORY_ADDRESS_SPACE_GGTT (0 << 28)120#define AUB_MEM_TRACE_MEMORY_ADDRESS_SPACE_PHYSICAL (2 << 28)121#define AUB_MEM_TRACE_MEMORY_ADDRESS_SPACE_GGTT_ENTRY (4 << 28)122123/**124* aub_state_struct_type enum values are encoded with the top 16 bits125* representing the type to be delivered to the .aub file, and the bottom 16126* bits representing the subtype. This macro performs the encoding.127*/128#define ENCODE_SS_TYPE(type, subtype) (((type) << 16) | (subtype))129130enum aub_state_struct_type {131AUB_TRACE_VS_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 1),132AUB_TRACE_GS_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 2),133AUB_TRACE_CLIP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 3),134AUB_TRACE_SF_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 4),135AUB_TRACE_WM_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 5),136AUB_TRACE_CC_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 6),137AUB_TRACE_CLIP_VP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 7),138AUB_TRACE_SF_VP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 8),139AUB_TRACE_CC_VP_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x9),140AUB_TRACE_SAMPLER_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xa),141AUB_TRACE_KERNEL_INSTRUCTIONS = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xb),142AUB_TRACE_SCRATCH_SPACE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xc),143AUB_TRACE_SAMPLER_DEFAULT_COLOR = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0xd),144145AUB_TRACE_SCISSOR_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x15),146AUB_TRACE_BLEND_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x16),147AUB_TRACE_DEPTH_STENCIL_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_GENERAL, 0x17),148149AUB_TRACE_VERTEX_BUFFER = ENCODE_SS_TYPE(AUB_TRACE_TYPE_VERTEX_BUFFER, 0),150AUB_TRACE_BINDING_TABLE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_SURFACE, 0x100),151AUB_TRACE_SURFACE_STATE = ENCODE_SS_TYPE(AUB_TRACE_TYPE_SURFACE, 0x200),152AUB_TRACE_VS_CONSTANTS = ENCODE_SS_TYPE(AUB_TRACE_TYPE_CONSTANT_BUFFER, 0),153AUB_TRACE_WM_CONSTANTS = ENCODE_SS_TYPE(AUB_TRACE_TYPE_CONSTANT_BUFFER, 1),154};155156#undef ENCODE_SS_TYPE157158/**159* Decode a aub_state_struct_type value to determine the type that should be160* stored in the .aub file.161*/162static inline uint32_t AUB_TRACE_TYPE(enum aub_state_struct_type ss_type)163{164return (ss_type & 0xFFFF0000) >> 16;165}166167/**168* Decode a state_struct_type value to determine the subtype that should be169* stored in the .aub file.170*/171static inline uint32_t AUB_TRACE_SUBTYPE(enum aub_state_struct_type ss_type)172{173return ss_type & 0xFFFF;174}175176/* DW3: address */177/* DW4: len */178179#endif /* _INTEL_AUB_H */180181182