1/* 2 * Copyright (c) 2017 Etnaviv Project 3 * Copyright (C) 2017 Zodiac Inflight Innovations 4 * 5 * Permission is hereby granted, free of charge, to any person obtaining a 6 * copy of this software and associated documentation files (the "Software"), 7 * to deal in the Software without restriction, including without limitation 8 * the rights to use, copy, modify, merge, publish, distribute, sub license, 9 * and/or sell copies of the Software, and to permit persons to whom the 10 * Software is furnished to do so, subject to the following conditions: 11 * 12 * The above copyright notice and this permission notice (including the 13 * next paragraph) shall be included in all copies or substantial portions 14 * of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL 19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 * DEALINGS IN THE SOFTWARE. 23 * 24 * Authors: 25 * Rob Clark <robclark@freedesktop.org> 26 * Christian Gmeiner <christian.gmeiner@gmail.com> 27 */ 28 29#ifndef H_ETNAVIV_PERFMON 30#define H_ETNAVIV_PERFMON 31 32#include "etnaviv_query.h" 33#include <pipe/p_screen.h> 34 35struct etna_screen; 36 37#define ETNA_QUERY_HI_GROUP_ID 1 38#define ETNA_QUERY_PE_GROUP_ID 2 39#define ETNA_QUERY_SH_GROUP_ID 3 40#define ETNA_QUERY_PA_GROUP_ID 4 41#define ETNA_QUERY_SE_GROUP_ID 5 42#define ETNA_QUERY_RA_GROUP_ID 6 43#define ETNA_QUERY_TX_GROUP_ID 7 44#define ETNA_QUERY_MC_GROUP_ID 8 45 46#define ETNA_QUERY_HI_TOTAL_READ_BYTES8 (ETNA_PM_QUERY_BASE + 0) 47#define ETNA_QUERY_HI_TOTAL_WRITE_BYTES8 (ETNA_PM_QUERY_BASE + 1) 48#define ETNA_QUERY_HI_TOTAL_CYCLES (ETNA_PM_QUERY_BASE + 2) 49#define ETNA_QUERY_HI_IDLE_CYCLES (ETNA_PM_QUERY_BASE + 3) 50#define ETNA_QUERY_HI_AXI_CYCLES_READ_REQUEST_STALLED (ETNA_PM_QUERY_BASE + 4) 51#define ETNA_QUERY_HI_AXI_CYCLES_WRITE_REQUEST_STALLED (ETNA_PM_QUERY_BASE + 5) 52#define ETNA_QUERY_HI_AXI_CYCLES_WRITE_DATA_STALLED (ETNA_PM_QUERY_BASE + 6) 53 54#define ETNA_QUERY_PE_PIXEL_COUNT_KILLED_BY_COLOR_PIPE (ETNA_PM_QUERY_BASE + 7) 55#define ETNA_QUERY_PE_PIXEL_COUNT_KILLED_BY_DEPTH_PIPE (ETNA_PM_QUERY_BASE + 8) 56#define ETNA_QUERY_PE_PIXEL_COUNT_DRAWN_BY_COLOR_PIPE (ETNA_PM_QUERY_BASE + 9) 57#define ETNA_QUERY_PE_PIXEL_COUNT_DRAWN_BY_DEPTH_PIPE (ETNA_PM_QUERY_BASE + 10) 58#define ETNA_QUERY_PE_PIXELS_RENDERED_2D (ETNA_PM_QUERY_BASE + 11) 59 60#define ETNA_QUERY_SH_SHADER_CYCLES (ETNA_PM_QUERY_BASE + 12) 61#define ETNA_QUERY_SH_PS_INST_COUNTER (ETNA_PM_QUERY_BASE + 13) 62#define ETNA_QUERY_SH_RENDERED_PIXEL_COUNTER (ETNA_PM_QUERY_BASE + 14) 63#define ETNA_QUERY_SH_VS_INST_COUNTER (ETNA_PM_QUERY_BASE + 15) 64#define ETNA_QUERY_SH_RENDERED_VERTICE_COUNTER (ETNA_PM_QUERY_BASE + 16) 65#define ETNA_QUERY_SH_VTX_BRANCH_INST_COUNTER (ETNA_PM_QUERY_BASE + 17) 66#define ETNA_QUERY_SH_VTX_TEXLD_INST_COUNTER (ETNA_PM_QUERY_BASE + 18) 67#define ETNA_QUERY_SH_PXL_BRANCH_INST_COUNTER (ETNA_PM_QUERY_BASE + 19) 68#define ETNA_QUERY_SH_PXL_TEXLD_INST_COUNTER (ETNA_PM_QUERY_BASE + 20) 69 70#define ETNA_QUERY_PA_INPUT_VTX_COUNTER (ETNA_PM_QUERY_BASE + 21) 71#define ETNA_QUERY_PA_INPUT_PRIM_COUNTER (ETNA_PM_QUERY_BASE + 22) 72#define ETNA_QUERY_PA_OUTPUT_PRIM_COUNTER (ETNA_PM_QUERY_BASE + 23) 73#define ETNA_QUERY_PA_DEPTH_CLIPPED_COUNTER (ETNA_PM_QUERY_BASE + 24) 74#define ETNA_QUERY_PA_TRIVIAL_REJECTED_COUNTER (ETNA_PM_QUERY_BASE + 25) 75#define ETNA_QUERY_PA_CULLED_COUNTER (ETNA_PM_QUERY_BASE + 26) 76 77#define ETNA_QUERY_SE_CULLED_TRIANGLE_COUNT (ETNA_PM_QUERY_BASE + 27) 78#define ETNA_QUERY_SE_CULLED_LINES_COUNT (ETNA_PM_QUERY_BASE + 28) 79 80#define ETNA_QUERY_RA_VALID_PIXEL_COUNT (ETNA_PM_QUERY_BASE + 29) 81#define ETNA_QUERY_RA_TOTAL_QUAD_COUNT (ETNA_PM_QUERY_BASE + 30) 82#define ETNA_QUERY_RA_VALID_QUAD_COUNT_AFTER_EARLY_Z (ETNA_PM_QUERY_BASE + 31) 83#define ETNA_QUERY_RA_TOTAL_PRIMITIVE_COUNT (ETNA_PM_QUERY_BASE + 32) 84#define ETNA_QUERY_RA_PIPE_CACHE_MISS_COUNTER (ETNA_PM_QUERY_BASE + 33) 85#define ETNA_QUERY_RA_PREFETCH_CACHE_MISS_COUNTER (ETNA_PM_QUERY_BASE + 34) 86#define ETNA_QUERY_RA_CULLED_QUAD_COUNT (ETNA_PM_QUERY_BASE + 35) 87 88#define ETNA_QUERY_TX_TOTAL_BILINEAR_REQUESTS (ETNA_PM_QUERY_BASE + 36) 89#define ETNA_QUERY_TX_TOTAL_TRILINEAR_REQUESTS (ETNA_PM_QUERY_BASE + 37) 90#define ETNA_QUERY_TX_TOTAL_DISCARDED_TEXTURE_REQUESTS (ETNA_PM_QUERY_BASE + 38) 91#define ETNA_QUERY_TX_TOTAL_TEXTURE_REQUESTS (ETNA_PM_QUERY_BASE + 39) 92#define ETNA_QUERY_TX_MEM_READ_COUNT (ETNA_PM_QUERY_BASE + 40) 93#define ETNA_QUERY_TX_MEM_READ_IN_8B_COUNT (ETNA_PM_QUERY_BASE + 41) 94#define ETNA_QUERY_TX_CACHE_MISS_COUNT (ETNA_PM_QUERY_BASE + 42) 95#define ETNA_QUERY_TX_CACHE_HIT_TEXEL_COUNT (ETNA_PM_QUERY_BASE + 43) 96#define ETNA_QUERY_TX_CACHE_MISS_TEXEL_COUNT (ETNA_PM_QUERY_BASE + 44) 97 98#define ETNA_QUERY_MC_TOTAL_READ_REQ_8B_FROM_PIPELINE (ETNA_PM_QUERY_BASE + 45) 99#define ETNA_QUERY_MC_TOTAL_READ_REQ_8B_FROM_IP (ETNA_PM_QUERY_BASE + 46) 100#define ETNA_QUERY_MC_TOTAL_WRITE_REQ_8B_FROM_PIPELINE (ETNA_PM_QUERY_BASE + 47) 101 102struct etna_perfmon_source 103{ 104 const char *domain; 105 const char *signal; 106}; 107 108struct etna_perfmon_config 109{ 110 const char *name; 111 unsigned type; 112 unsigned group_id; 113 const struct etna_perfmon_source *source; 114 bool multiply_with_8; 115}; 116 117struct etna_perfmon_signal * 118etna_pm_query_signal(struct etna_perfmon *perfmon, 119 const struct etna_perfmon_source *source); 120 121static inline bool 122etna_pm_cfg_supported(struct etna_perfmon *perfmon, 123 const struct etna_perfmon_config *cfg) 124{ 125 struct etna_perfmon_signal *signal = etna_pm_query_signal(perfmon, cfg->source); 126 127 return !!signal; 128} 129 130void 131etna_pm_query_setup(struct etna_screen *screen); 132 133const struct etna_perfmon_config * 134etna_pm_query_config(unsigned type); 135 136int 137etna_pm_get_driver_query_info(struct pipe_screen *pscreen, unsigned index, 138 struct pipe_driver_query_info *info); 139 140int 141etna_pm_get_driver_query_group_info(struct pipe_screen *pscreen, 142 unsigned index, 143 struct pipe_driver_query_group_info *info); 144 145#endif 146