Path: blob/21.2-virgl/src/amd/common/amd_family.c
7315 views
/*1* Copyright © 2017 Advanced Micro Devices, Inc.2*3* Permission is hereby granted, free of charge, to any person obtaining4* a copy of this software and associated documentation files (the5* "Software"), to deal in the Software without restriction, including6* without limitation the rights to use, copy, modify, merge, publish,7* distribute, sub license, and/or sell copies of the Software, and to8* permit persons to whom the Software is furnished to do so, subject to9* the following conditions:10*11* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,12* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES13* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND14* NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS15* AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER16* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,17* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE18* USE OR OTHER DEALINGS IN THE SOFTWARE.19*20* The above copyright notice and this permission notice (including the21* next paragraph) shall be included in all copies or substantial portions22* of the Software.23*/2425#include "amd_family.h"2627#include "util/macros.h"2829const char *ac_get_family_name(enum radeon_family family)30{31switch (family) {32case CHIP_TAHITI:33return "tahiti";34case CHIP_PITCAIRN:35return "pitcairn";36case CHIP_VERDE:37return "verde";38case CHIP_OLAND:39return "oland";40case CHIP_HAINAN:41return "hainan";42case CHIP_BONAIRE:43return "bonaire";44case CHIP_KABINI:45return "kabini";46case CHIP_KAVERI:47return "kaveri";48case CHIP_HAWAII:49return "hawaii";50case CHIP_TONGA:51return "tonga";52case CHIP_ICELAND:53return "iceland";54case CHIP_CARRIZO:55return "carrizo";56case CHIP_FIJI:57return "fiji";58case CHIP_STONEY:59return "stoney";60case CHIP_POLARIS10:61return "polaris10";62case CHIP_POLARIS11:63return "polaris11";64case CHIP_POLARIS12:65return "polaris12";66case CHIP_VEGAM:67return "vegam";68case CHIP_VEGA10:69return "vega10";70case CHIP_RAVEN:71return "raven";72case CHIP_VEGA12:73return "vega12";74case CHIP_VEGA20:75return "vega20";76case CHIP_RAVEN2:77return "raven2";78case CHIP_RENOIR:79return "renoir";80case CHIP_ARCTURUS:81return "arcturus";82case CHIP_ALDEBARAN:83return "aldebaran";84case CHIP_NAVI10:85return "navi10";86case CHIP_NAVI12:87return "navi12";88case CHIP_NAVI14:89return "navi14";90case CHIP_SIENNA_CICHLID:91return "sienna_cichlid";92case CHIP_NAVY_FLOUNDER:93return "navy_flounder";94case CHIP_DIMGREY_CAVEFISH:95return "dimgrey_cavefish";96case CHIP_VANGOGH:97return "vangogh";98case CHIP_BEIGE_GOBY:99return "beige_goby";100case CHIP_YELLOW_CARP:101return "yellow_carp";102default:103unreachable("Unknown GPU family");104}105}106107108