65 lines
1.9 KiB
C++
65 lines
1.9 KiB
C++
/*
|
|
* Copyright (c) Souldbminer, Lightos_ and Horizon OC Contributors
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include <map>
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
std::map<uint32_t, std::string> cpu_freq_label_m = {
|
|
{612000000, "Sleep Mode"},
|
|
{1020000000, "Stock"},
|
|
{1224000000, "Dev OC"},
|
|
{1785000000, "Boost Mode"},
|
|
{1963000000, "Safe Max"},
|
|
{2397000000, "Unsafe Max"},
|
|
{2703000000, "Absolute Max"},
|
|
};
|
|
|
|
std::map<uint32_t, std::string> cpu_freq_label_e = {
|
|
{612000000, "Sleep Mode"},
|
|
{1020000000, "Stock"},
|
|
{1224000000, "Dev OC"},
|
|
{1785000000, "Boost Mode & Safe Max"},
|
|
{2091000000, "Unsafe Max"},
|
|
{2397000000, "Absolute Max"},
|
|
};
|
|
std::map<uint32_t, std::string> gpu_freq_label_e = {
|
|
{76800000, "Boost Mode"},
|
|
{307200000, "Handheld"},
|
|
{345600000, "Handheld"},
|
|
{384000000, "Handheld"},
|
|
{422400000, "Handheld"},
|
|
{460800000, "Handheld Safe Max"},
|
|
{768000000, "Docked"},
|
|
{921600000, "Safe Max"},
|
|
{960000000, "Unsafe Max"},
|
|
{1075200000, "Absolute Max"},
|
|
};
|
|
|
|
std::map<uint32_t, std::string> gpu_freq_label_m = {
|
|
{76800000, "Boost Mode"},
|
|
{307200000, "Handheld"},
|
|
{384000000, "Handheld"},
|
|
{460800000, "Handheld"},
|
|
{614400000, "Handheld Safe Max"},
|
|
{768000000, "Docked"},
|
|
{1075200000, "Safe Max"},
|
|
{1305600000, "Unsafe Max"},
|
|
{1536000000, "Absolute Max"},
|
|
|
|
};
|