101e04c3fSmrg/* 201e04c3fSmrg * Copyright © 2017 Google. 301e04c3fSmrg * 401e04c3fSmrg * Permission is hereby granted, free of charge, to any person obtaining a 501e04c3fSmrg * copy of this software and associated documentation files (the "Software"), 601e04c3fSmrg * to deal in the Software without restriction, including without limitation 701e04c3fSmrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 801e04c3fSmrg * and/or sell copies of the Software, and to permit persons to whom the 901e04c3fSmrg * Software is furnished to do so, subject to the following conditions: 1001e04c3fSmrg * 1101e04c3fSmrg * The above copyright notice and this permission notice (including the next 1201e04c3fSmrg * paragraph) shall be included in all copies or substantial portions of the 1301e04c3fSmrg * Software. 1401e04c3fSmrg * 1501e04c3fSmrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 1601e04c3fSmrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 1701e04c3fSmrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 1801e04c3fSmrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 1901e04c3fSmrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 2001e04c3fSmrg * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 2101e04c3fSmrg * IN THE SOFTWARE. 2201e04c3fSmrg */ 2301e04c3fSmrg 2401e04c3fSmrg#ifndef RADV_DEBUG_H 2501e04c3fSmrg#define RADV_DEBUG_H 2601e04c3fSmrg 2701e04c3fSmrg#include "radv_private.h" 2801e04c3fSmrg 297ec681f3Smrg/* Please keep docs/envvars.rst up-to-date when you add/remove options. */ 3001e04c3fSmrgenum { 317ec681f3Smrg RADV_DEBUG_NO_FAST_CLEARS = 1ull << 0, 327ec681f3Smrg RADV_DEBUG_NO_DCC = 1ull << 1, 337ec681f3Smrg RADV_DEBUG_DUMP_SHADERS = 1ull << 2, 347ec681f3Smrg RADV_DEBUG_NO_CACHE = 1ull << 3, 357ec681f3Smrg RADV_DEBUG_DUMP_SHADER_STATS = 1ull << 4, 367ec681f3Smrg RADV_DEBUG_NO_HIZ = 1ull << 5, 377ec681f3Smrg RADV_DEBUG_NO_COMPUTE_QUEUE = 1ull << 6, 387ec681f3Smrg RADV_DEBUG_ALL_BOS = 1ull << 7, 397ec681f3Smrg RADV_DEBUG_NO_IBS = 1ull << 8, 407ec681f3Smrg RADV_DEBUG_DUMP_SPIRV = 1ull << 9, 417ec681f3Smrg RADV_DEBUG_VM_FAULTS = 1ull << 10, 427ec681f3Smrg RADV_DEBUG_ZERO_VRAM = 1ull << 11, 437ec681f3Smrg RADV_DEBUG_SYNC_SHADERS = 1ull << 12, 447ec681f3Smrg RADV_DEBUG_PREOPTIR = 1ull << 13, 457ec681f3Smrg RADV_DEBUG_NO_DYNAMIC_BOUNDS = 1ull << 14, 467ec681f3Smrg RADV_DEBUG_NO_OUT_OF_ORDER = 1ull << 15, 477ec681f3Smrg RADV_DEBUG_INFO = 1ull << 16, 487ec681f3Smrg RADV_DEBUG_STARTUP = 1ull << 17, 497ec681f3Smrg RADV_DEBUG_CHECKIR = 1ull << 18, 507ec681f3Smrg RADV_DEBUG_NOBINNING = 1ull << 19, 517ec681f3Smrg RADV_DEBUG_NO_NGG = 1ull << 20, 527ec681f3Smrg RADV_DEBUG_DUMP_META_SHADERS = 1ull << 21, 537ec681f3Smrg RADV_DEBUG_NO_MEMORY_CACHE = 1ull << 22, 547ec681f3Smrg RADV_DEBUG_DISCARD_TO_DEMOTE = 1ull << 23, 557ec681f3Smrg RADV_DEBUG_LLVM = 1ull << 24, 567ec681f3Smrg RADV_DEBUG_FORCE_COMPRESS = 1ull << 25, 577ec681f3Smrg RADV_DEBUG_HANG = 1ull << 26, 587ec681f3Smrg RADV_DEBUG_IMG = 1ull << 27, 597ec681f3Smrg RADV_DEBUG_NO_UMR = 1ull << 28, 607ec681f3Smrg RADV_DEBUG_INVARIANT_GEOM = 1ull << 29, 617ec681f3Smrg RADV_DEBUG_NO_DISPLAY_DCC = 1ull << 30, 627ec681f3Smrg RADV_DEBUG_NO_TC_COMPAT_CMASK = 1ull << 31, 637ec681f3Smrg RADV_DEBUG_NO_VRS_FLAT_SHADING = 1ull << 32, 647ec681f3Smrg RADV_DEBUG_NO_ATOC_DITHERING = 1ull << 33, 657ec681f3Smrg RADV_DEBUG_NO_NGGC = 1ull << 34, 667ec681f3Smrg RADV_DEBUG_DUMP_PROLOGS = 1ull << 35, 6701e04c3fSmrg}; 6801e04c3fSmrg 6901e04c3fSmrgenum { 707ec681f3Smrg RADV_PERFTEST_LOCAL_BOS = 1u << 0, 717ec681f3Smrg RADV_PERFTEST_DCC_MSAA = 1u << 1, 727ec681f3Smrg RADV_PERFTEST_BO_LIST = 1u << 2, 737ec681f3Smrg RADV_PERFTEST_CS_WAVE_32 = 1u << 3, 747ec681f3Smrg RADV_PERFTEST_PS_WAVE_32 = 1u << 4, 757ec681f3Smrg RADV_PERFTEST_GE_WAVE_32 = 1u << 5, 767ec681f3Smrg RADV_PERFTEST_NO_SAM = 1u << 6, 777ec681f3Smrg RADV_PERFTEST_SAM = 1u << 7, 787ec681f3Smrg RADV_PERFTEST_RT = 1u << 8, 797ec681f3Smrg RADV_PERFTEST_NGGC = 1u << 9, 807ec681f3Smrg RADV_PERFTEST_FORCE_EMULATE_RT = 1u << 10, 8101e04c3fSmrg}; 8201e04c3fSmrg 837ec681f3Smrgbool radv_init_trace(struct radv_device *device); 847ec681f3Smrgvoid radv_finish_trace(struct radv_device *device); 8501e04c3fSmrg 867ec681f3Smrgvoid radv_check_gpu_hangs(struct radv_queue *queue, struct radeon_cmdbuf *cs); 8701e04c3fSmrg 887ec681f3Smrgvoid radv_print_spirv(const char *data, uint32_t size, FILE *fp); 8901e04c3fSmrg 907ec681f3Smrgvoid radv_dump_enabled_options(struct radv_device *device, FILE *f); 917ec681f3Smrg 927ec681f3Smrgbool radv_trap_handler_init(struct radv_device *device); 937ec681f3Smrgvoid radv_trap_handler_finish(struct radv_device *device); 947ec681f3Smrgvoid radv_check_trap_handler(struct radv_queue *queue); 9501e04c3fSmrg 9601e04c3fSmrg#endif 97