mirror of https://gitlab.com/qemu-project/qemu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.0 KiB
C
29 lines
1.0 KiB
C
/*
|
|
* Allowed list of MSR for Privileged RAPL MSR helper commands for QEMU
|
|
*
|
|
* Copyright (C) 2023 Red Hat, Inc. <aharivel@redhat.com>
|
|
*
|
|
* Author: Anthony Harivel <aharivel@redhat.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; under version 2 of the License.
|
|
*
|
|
* This program is distributed in the hope that 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/>.
|
|
*/
|
|
|
|
/*
|
|
* Should stay in sync with the RAPL MSR
|
|
* in target/i386/cpu.h
|
|
*/
|
|
#define MSR_RAPL_POWER_UNIT 0x00000606
|
|
#define MSR_PKG_POWER_LIMIT 0x00000610
|
|
#define MSR_PKG_ENERGY_STATUS 0x00000611
|
|
#define MSR_PKG_POWER_INFO 0x00000614
|