Path: blob/21.2-virgl/src/freedreno/perfcntrs/freedreno_perfcntr.c
4565 views
/*1* Copyright (C) 2019 Rob Clark <[email protected]>2*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, ARISING FROM,19* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE20* SOFTWARE.21*22* Authors:23* Rob Clark <[email protected]>24*/2526#include <stddef.h>2728#include "freedreno_perfcntr.h"2930extern const struct fd_perfcntr_group a2xx_perfcntr_groups[];31extern const unsigned a2xx_num_perfcntr_groups;3233extern const struct fd_perfcntr_group a5xx_perfcntr_groups[];34extern const unsigned a5xx_num_perfcntr_groups;3536extern const struct fd_perfcntr_group a6xx_perfcntr_groups[];37extern const unsigned a6xx_num_perfcntr_groups;3839const struct fd_perfcntr_group *40fd_perfcntrs(unsigned gpu_id, unsigned *count)41{42switch (gpu_id) {43case 200 ... 299:44*count = a2xx_num_perfcntr_groups;45return a2xx_perfcntr_groups;46case 500 ... 599:47*count = a5xx_num_perfcntr_groups;48return a5xx_perfcntr_groups;49case 600 ... 699:50*count = a6xx_num_perfcntr_groups;51return a6xx_perfcntr_groups;52default:53*count = 0;54return NULL;55}56}575859