1 /* 2 Copyright (C) 2012 Lauri Kasanen 3 4 This program is free software: you can redistribute it and/or modify 5 it under the terms of the GNU General Public License as published by 6 the Free Software Foundation, version 3 of the License. 7 8 This program is distributed in the hope that it will be useful, 9 but WITHOUT ANY WARRANTY; without even the implied warranty of 10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 GNU General Public License for more details. 12 13 You should have received a copy of the GNU General Public License 14 along with this program. If not, see <http://www.gnu.org/licenses/>. 15 */ 16 17 #include "radeontop.h" 18 19 #define str(a) #a 20 21 const char * const family_str[] = { 22 str(UNKNOWN_CHIP), 23 str(R600), 24 str(RV610), 25 str(RV630), 26 str(RV670), 27 str(RV620), 28 str(RV635), 29 str(RS780), 30 str(RS880), 31 str(RV770), 32 str(RV730), 33 str(RV710), 34 str(RV740), 35 str(CEDAR), 36 str(REDWOOD), 37 str(JUNIPER), 38 str(CYPRESS), 39 str(HEMLOCK), 40 str(PALM), 41 str(SUMO), 42 str(SUMO2), 43 str(BARTS), 44 str(TURKS), 45 str(CAICOS), 46 str(CAYMAN), 47 str(ARUBA), 48 str(TAHITI), 49 str(PITCAIRN), 50 str(VERDE), 51 str(OLAND), 52 str(HAINAN), 53 str(BONAIRE), 54 str(KABINI), 55 str(MULLINS), 56 str(KAVERI), 57 str(HAWAII), 58 str(TOPAZ), 59 str(TONGA), 60 str(FIJI), 61 str(CARRIZO), 62 str(STONEY), 63 str(POLARIS11), 64 str(POLARIS10), 65 str(POLARIS12), 66 str(VEGAM), 67 str(VEGA10), 68 str(VEGA12), 69 str(VEGA20), 70 str(RAVEN), 71 str(ARCTURUS), 72 str(NAVI10), 73 str(NAVI14), 74 str(RENOIR), 75 str(NAVI12), 76 str(SIENNA_CICHLID), 77 str(VANGOGH), 78 str(YELLOW_CARP), 79 str(NAVY_FLOUNDER), 80 str(DIMGREY_CAVEFISH), 81 str(ALDEBARAN), 82 }; 83