1bf215546Sopenharmony_ci/* 2bf215546Sopenharmony_ci * Copyright © 2019 Intel Corporation 3bf215546Sopenharmony_ci * 4bf215546Sopenharmony_ci * Permission is hereby granted, free of charge, to any person obtaining a 5bf215546Sopenharmony_ci * copy of this software and associated documentation files (the "Software"), 6bf215546Sopenharmony_ci * to deal in the Software without restriction, including without limitation 7bf215546Sopenharmony_ci * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8bf215546Sopenharmony_ci * and/or sell copies of the Software, and to permit persons to whom the 9bf215546Sopenharmony_ci * Software is furnished to do so, subject to the following conditions: 10bf215546Sopenharmony_ci * 11bf215546Sopenharmony_ci * The above copyright notice and this permission notice (including the next 12bf215546Sopenharmony_ci * paragraph) shall be included in all copies or substantial portions of the 13bf215546Sopenharmony_ci * Software. 14bf215546Sopenharmony_ci * 15bf215546Sopenharmony_ci * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16bf215546Sopenharmony_ci * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17bf215546Sopenharmony_ci * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18bf215546Sopenharmony_ci * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19bf215546Sopenharmony_ci * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20bf215546Sopenharmony_ci * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 21bf215546Sopenharmony_ci * IN THE SOFTWARE. 22bf215546Sopenharmony_ci */ 23bf215546Sopenharmony_ci 24bf215546Sopenharmony_ci#ifndef INTEL_PERF_REGS_H 25bf215546Sopenharmony_ci#define INTEL_PERF_REGS_H 26bf215546Sopenharmony_ci 27bf215546Sopenharmony_ci#define INTEL_MASK(high, low) (((1u<<((high)-(low)+1))-1)<<(low)) 28bf215546Sopenharmony_ci 29bf215546Sopenharmony_ci/* GT core frequency counters */ 30bf215546Sopenharmony_ci#define GFX7_RPSTAT1 0xA01C 31bf215546Sopenharmony_ci#define GFX7_RPSTAT1_CURR_GT_FREQ_SHIFT 7 32bf215546Sopenharmony_ci#define GFX7_RPSTAT1_CURR_GT_FREQ_MASK INTEL_MASK(13, 7) 33bf215546Sopenharmony_ci#define GFX7_RPSTAT1_PREV_GT_FREQ_SHIFT 0 34bf215546Sopenharmony_ci#define GFX7_RPSTAT1_PREV_GT_FREQ_MASK INTEL_MASK(6, 0) 35bf215546Sopenharmony_ci 36bf215546Sopenharmony_ci#define GFX9_RPSTAT0 0xA01C 37bf215546Sopenharmony_ci#define GFX9_RPSTAT0_CURR_GT_FREQ_SHIFT 23 38bf215546Sopenharmony_ci#define GFX9_RPSTAT0_CURR_GT_FREQ_MASK INTEL_MASK(31, 23) 39bf215546Sopenharmony_ci#define GFX9_RPSTAT0_PREV_GT_FREQ_SHIFT 0 40bf215546Sopenharmony_ci#define GFX9_RPSTAT0_PREV_GT_FREQ_MASK INTEL_MASK(8, 0) 41bf215546Sopenharmony_ci 42bf215546Sopenharmony_ci/* Programmable perf 64bits counters (used for GTRequestQueueFull counter on 43bf215546Sopenharmony_ci * gfx7-11) 44bf215546Sopenharmony_ci */ 45bf215546Sopenharmony_ci#define PERF_CNT_1_DW0 0x91b8 46bf215546Sopenharmony_ci#define PERF_CNT_2_DW0 0x91c0 47bf215546Sopenharmony_ci#define PERF_CNT_VALUE_MASK ((1ull << 44) - 1) 48bf215546Sopenharmony_ci 49bf215546Sopenharmony_ci/* Global OA perf counters */ 50bf215546Sopenharmony_ci#define GFX7_N_OA_PERF_A32 44 51bf215546Sopenharmony_ci#define GFX7_OA_PERF_A32(idx) (0x2800 + (idx) * 4) 52bf215546Sopenharmony_ci 53bf215546Sopenharmony_ci#define GFX8_OA_PERF_TICKS 0x2910 54bf215546Sopenharmony_ci#define GFX8_N_OA_PERF_A64 32 55bf215546Sopenharmony_ci#define GFX8_N_OA_PERF_A32 4 56bf215546Sopenharmony_ci#define GFX8_N_OA_PERF_B32 8 57bf215546Sopenharmony_ci#define GFX8_N_OA_PERF_C32 8 58bf215546Sopenharmony_ci#define GFX8_OA_PERF_A64_LDW(idx) (0x2800 + (idx) * 8) 59bf215546Sopenharmony_ci#define GFX8_OA_PERF_A64_UDW(idx) (0x2800 + (idx) * 8 + 4) 60bf215546Sopenharmony_ci#define GFX8_OA_PERF_A32(idx) (0x2900 + (idx) * 4) 61bf215546Sopenharmony_ci#define GFX8_OA_PERF_B32(idx) (0x2920 + (idx) * 4) 62bf215546Sopenharmony_ci#define GFX8_OA_PERF_C32(idx) (0x2940 + (idx) * 4) 63bf215546Sopenharmony_ci 64bf215546Sopenharmony_ci#define GFX12_OAG_PERF_TICKS 0xda90 65bf215546Sopenharmony_ci#define GFX12_N_OAG_PERF_A64 32 66bf215546Sopenharmony_ci#define GFX12_N_OAG_PERF_A32 4 67bf215546Sopenharmony_ci#define GFX12_N_OAG_PERF_B32 8 68bf215546Sopenharmony_ci#define GFX12_N_OAG_PERF_C32 8 69bf215546Sopenharmony_ci#define GFX12_OAG_PERF_A64_LDW(idx) (0xd980 + (idx) * 8) 70bf215546Sopenharmony_ci#define GFX12_OAG_PERF_A64_UDW(idx) (0xd980 + (idx) * 8 + 4) 71bf215546Sopenharmony_ci#define GFX12_OAG_PERF_A32(idx) (0xda80 + (idx) * 4) 72bf215546Sopenharmony_ci#define GFX12_OAG_PERF_B32(idx) (0xda94 + (idx) * 4) 73bf215546Sopenharmony_ci#define GFX12_OAG_PERF_C32(idx) (0xdab4 + (idx) * 4) 74bf215546Sopenharmony_ci#define GFX125_OAG_PERF_A36 (0xdb20) 75bf215546Sopenharmony_ci#define GFX125_OAG_PERF_A37 (0xdb28) 76bf215546Sopenharmony_ci 77bf215546Sopenharmony_ci/* Pipeline statistic counters */ 78bf215546Sopenharmony_ci#define IA_VERTICES_COUNT 0x2310 79bf215546Sopenharmony_ci#define IA_PRIMITIVES_COUNT 0x2318 80bf215546Sopenharmony_ci#define VS_INVOCATION_COUNT 0x2320 81bf215546Sopenharmony_ci#define HS_INVOCATION_COUNT 0x2300 82bf215546Sopenharmony_ci#define DS_INVOCATION_COUNT 0x2308 83bf215546Sopenharmony_ci#define GS_INVOCATION_COUNT 0x2328 84bf215546Sopenharmony_ci#define GS_PRIMITIVES_COUNT 0x2330 85bf215546Sopenharmony_ci#define CL_INVOCATION_COUNT 0x2338 86bf215546Sopenharmony_ci#define CL_PRIMITIVES_COUNT 0x2340 87bf215546Sopenharmony_ci#define PS_INVOCATION_COUNT 0x2348 88bf215546Sopenharmony_ci#define CS_INVOCATION_COUNT 0x2290 89bf215546Sopenharmony_ci#define PS_DEPTH_COUNT 0x2350 90bf215546Sopenharmony_ci 91bf215546Sopenharmony_ci/* Stream-out counters */ 92bf215546Sopenharmony_ci#define GFX6_SO_PRIM_STORAGE_NEEDED 0x2280 93bf215546Sopenharmony_ci#define GFX7_SO_PRIM_STORAGE_NEEDED(n) (0x5240 + (n) * 8) 94bf215546Sopenharmony_ci#define GFX6_SO_NUM_PRIMS_WRITTEN 0x2288 95bf215546Sopenharmony_ci#define GFX7_SO_NUM_PRIMS_WRITTEN(n) (0x5200 + (n) * 8) 96bf215546Sopenharmony_ci 97bf215546Sopenharmony_ci#endif /* INTEL_PERF_REGS_H */ 98