2013-06-03 00:00:00 +00:00
|
|
|
/*-
|
|
|
|
* BSD LICENSE
|
2014-06-03 23:42:50 +00:00
|
|
|
*
|
2014-02-10 11:46:50 +00:00
|
|
|
* Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
|
2013-06-03 00:00:00 +00:00
|
|
|
* All rights reserved.
|
2014-06-03 23:42:50 +00:00
|
|
|
*
|
2013-09-18 10:00:00 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
2013-06-03 00:00:00 +00:00
|
|
|
* are met:
|
2014-06-03 23:42:50 +00:00
|
|
|
*
|
2013-09-18 10:00:00 +00:00
|
|
|
* * Redistributions of source code must retain the above copyright
|
2013-06-03 00:00:00 +00:00
|
|
|
* notice, this list of conditions and the following disclaimer.
|
2013-09-18 10:00:00 +00:00
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
2013-06-03 00:00:00 +00:00
|
|
|
* distribution.
|
2013-09-18 10:00:00 +00:00
|
|
|
* * Neither the name of Intel Corporation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
2013-06-03 00:00:00 +00:00
|
|
|
* from this software without specific prior written permission.
|
2014-06-03 23:42:50 +00:00
|
|
|
*
|
2013-09-18 10:00:00 +00:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
2013-06-03 00:00:00 +00:00
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rte_atomic.h>
|
|
|
|
|
|
|
|
#include "rte_power.h"
|
2014-11-25 16:18:08 +00:00
|
|
|
#include "rte_power_acpi_cpufreq.h"
|
|
|
|
#include "rte_power_kvm_vm.h"
|
|
|
|
#include "rte_power_common.h"
|
2013-06-03 00:00:00 +00:00
|
|
|
|
2014-11-25 16:18:08 +00:00
|
|
|
enum power_management_env global_default_env = PM_ENV_NOT_SET;
|
2013-06-03 00:00:00 +00:00
|
|
|
|
2014-11-25 16:18:08 +00:00
|
|
|
volatile uint32_t global_env_cfg_status = 0;
|
2013-06-03 00:00:00 +00:00
|
|
|
|
2014-11-25 16:18:08 +00:00
|
|
|
/* function pointers */
|
|
|
|
rte_power_freqs_t rte_power_freqs = NULL;
|
|
|
|
rte_power_get_freq_t rte_power_get_freq = NULL;
|
|
|
|
rte_power_set_freq_t rte_power_set_freq = NULL;
|
|
|
|
rte_power_freq_change_t rte_power_freq_up = NULL;
|
|
|
|
rte_power_freq_change_t rte_power_freq_down = NULL;
|
|
|
|
rte_power_freq_change_t rte_power_freq_max = NULL;
|
|
|
|
rte_power_freq_change_t rte_power_freq_min = NULL;
|
2013-06-03 00:00:00 +00:00
|
|
|
|
2014-11-25 16:18:08 +00:00
|
|
|
int
|
|
|
|
rte_power_set_env(enum power_management_env env)
|
2013-06-03 00:00:00 +00:00
|
|
|
{
|
2014-11-25 16:18:08 +00:00
|
|
|
if (rte_atomic32_cmpset(&global_env_cfg_status, 0, 1) == 0) {
|
2013-06-03 00:00:00 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2014-11-25 16:18:08 +00:00
|
|
|
if (env == PM_ENV_ACPI_CPUFREQ) {
|
|
|
|
rte_power_freqs = rte_power_acpi_cpufreq_freqs;
|
|
|
|
rte_power_get_freq = rte_power_acpi_cpufreq_get_freq;
|
|
|
|
rte_power_set_freq = rte_power_acpi_cpufreq_set_freq;
|
|
|
|
rte_power_freq_up = rte_power_acpi_cpufreq_freq_up;
|
|
|
|
rte_power_freq_down = rte_power_acpi_cpufreq_freq_down;
|
|
|
|
rte_power_freq_min = rte_power_acpi_cpufreq_freq_min;
|
|
|
|
rte_power_freq_max = rte_power_acpi_cpufreq_freq_max;
|
|
|
|
} else if (env == PM_ENV_KVM_VM) {
|
|
|
|
rte_power_freqs = rte_power_kvm_vm_freqs;
|
|
|
|
rte_power_get_freq = rte_power_kvm_vm_get_freq;
|
|
|
|
rte_power_set_freq = rte_power_kvm_vm_set_freq;
|
|
|
|
rte_power_freq_up = rte_power_kvm_vm_freq_up;
|
|
|
|
rte_power_freq_down = rte_power_kvm_vm_freq_down;
|
|
|
|
rte_power_freq_min = rte_power_kvm_vm_freq_min;
|
|
|
|
rte_power_freq_max = rte_power_kvm_vm_freq_max;
|
|
|
|
} else {
|
|
|
|
RTE_LOG(ERR, POWER, "Invalid Power Management Environment(%d) set\n",
|
|
|
|
env);
|
|
|
|
rte_power_unset_env();
|
2013-06-03 00:00:00 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2014-11-25 16:18:08 +00:00
|
|
|
global_default_env = env;
|
|
|
|
return 0;
|
2013-06-03 00:00:00 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-11-25 16:18:08 +00:00
|
|
|
void
|
|
|
|
rte_power_unset_env(void)
|
2013-06-03 00:00:00 +00:00
|
|
|
{
|
2014-11-25 16:18:08 +00:00
|
|
|
if (rte_atomic32_cmpset(&global_env_cfg_status, 1, 0) != 0)
|
|
|
|
global_default_env = PM_ENV_NOT_SET;
|
2013-06-03 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2014-11-25 16:18:08 +00:00
|
|
|
enum power_management_env
|
|
|
|
rte_power_get_env(void) {
|
|
|
|
return global_default_env;
|
2013-06-03 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rte_power_init(unsigned lcore_id)
|
|
|
|
{
|
2014-11-25 16:18:08 +00:00
|
|
|
int ret = -1;
|
2013-06-03 00:00:00 +00:00
|
|
|
|
2014-11-25 16:18:08 +00:00
|
|
|
if (global_default_env == PM_ENV_ACPI_CPUFREQ) {
|
|
|
|
return rte_power_acpi_cpufreq_init(lcore_id);
|
2013-06-03 00:00:00 +00:00
|
|
|
}
|
2014-11-25 16:18:08 +00:00
|
|
|
if (global_default_env == PM_ENV_KVM_VM) {
|
|
|
|
return rte_power_kvm_vm_init(lcore_id);
|
2013-06-03 00:00:00 +00:00
|
|
|
}
|
2014-11-25 16:18:08 +00:00
|
|
|
/* Auto detect Environment */
|
|
|
|
RTE_LOG(INFO, POWER, "Attempting to initialise ACPI cpufreq power "
|
|
|
|
"management...\n");
|
|
|
|
ret = rte_power_acpi_cpufreq_init(lcore_id);
|
|
|
|
if (ret == 0) {
|
|
|
|
rte_power_set_env(PM_ENV_ACPI_CPUFREQ);
|
|
|
|
goto out;
|
2013-06-03 00:00:00 +00:00
|
|
|
}
|
|
|
|
|
2014-11-25 16:18:08 +00:00
|
|
|
RTE_LOG(INFO, POWER, "Attempting to initialise VM power management...\n");
|
|
|
|
ret = rte_power_kvm_vm_init(lcore_id);
|
|
|
|
if (ret == 0) {
|
|
|
|
rte_power_set_env(PM_ENV_KVM_VM);
|
2013-06-03 00:00:00 +00:00
|
|
|
goto out;
|
|
|
|
}
|
2014-11-25 16:18:08 +00:00
|
|
|
RTE_LOG(ERR, POWER, "Unable to set Power Management Environment for lcore "
|
|
|
|
"%u\n", lcore_id);
|
2013-06-03 00:00:00 +00:00
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rte_power_exit(unsigned lcore_id)
|
|
|
|
{
|
2014-11-25 16:18:08 +00:00
|
|
|
if (global_default_env == PM_ENV_ACPI_CPUFREQ)
|
|
|
|
return rte_power_acpi_cpufreq_exit(lcore_id);
|
|
|
|
if (global_default_env == PM_ENV_KVM_VM)
|
|
|
|
return rte_power_kvm_vm_exit(lcore_id);
|
2013-06-03 00:00:00 +00:00
|
|
|
|
2014-11-25 16:18:08 +00:00
|
|
|
RTE_LOG(ERR, POWER, "Environment has not been set, unable to exit "
|
|
|
|
"gracefully\n");
|
2013-06-03 00:00:00 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
}
|