2015-03-27 21:09:23 +08:00
|
|
|
/*
|
|
|
|
* Contains CPU feature definitions
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 ARM Ltd.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define pr_fmt(fmt) "alternatives: " fmt
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <asm/cpu.h>
|
|
|
|
#include <asm/cpufeature.h>
|
2015-07-23 02:05:54 +08:00
|
|
|
#include <asm/processor.h>
|
2015-03-27 21:09:23 +08:00
|
|
|
|
2015-07-21 20:23:29 +08:00
|
|
|
static bool
|
|
|
|
feature_matches(u64 reg, const struct arm64_cpu_capabilities *entry)
|
|
|
|
{
|
|
|
|
int val = cpuid_feature_extract_field(reg, entry->field_pos);
|
|
|
|
|
|
|
|
return val >= entry->min_field_value;
|
|
|
|
}
|
|
|
|
|
2015-06-12 19:06:36 +08:00
|
|
|
static bool
|
|
|
|
has_id_aa64pfr0_feature(const struct arm64_cpu_capabilities *entry)
|
|
|
|
{
|
|
|
|
u64 val;
|
|
|
|
|
|
|
|
val = read_cpuid(id_aa64pfr0_el1);
|
2015-07-21 20:23:29 +08:00
|
|
|
return feature_matches(val, entry);
|
2015-06-12 19:06:36 +08:00
|
|
|
}
|
|
|
|
|
2015-07-23 02:05:54 +08:00
|
|
|
static bool __maybe_unused
|
|
|
|
has_id_aa64mmfr1_feature(const struct arm64_cpu_capabilities *entry)
|
|
|
|
{
|
|
|
|
u64 val;
|
|
|
|
|
|
|
|
val = read_cpuid(id_aa64mmfr1_el1);
|
|
|
|
return feature_matches(val, entry);
|
|
|
|
}
|
|
|
|
|
2015-03-27 21:09:23 +08:00
|
|
|
static const struct arm64_cpu_capabilities arm64_features[] = {
|
2015-06-12 19:06:36 +08:00
|
|
|
{
|
|
|
|
.desc = "GIC system register CPU interface",
|
|
|
|
.capability = ARM64_HAS_SYSREG_GIC_CPUIF,
|
|
|
|
.matches = has_id_aa64pfr0_feature,
|
2015-07-21 20:23:29 +08:00
|
|
|
.field_pos = 24,
|
|
|
|
.min_field_value = 1,
|
2015-06-12 19:06:36 +08:00
|
|
|
},
|
2015-07-23 02:05:54 +08:00
|
|
|
#ifdef CONFIG_ARM64_PAN
|
|
|
|
{
|
|
|
|
.desc = "Privileged Access Never",
|
|
|
|
.capability = ARM64_HAS_PAN,
|
|
|
|
.matches = has_id_aa64mmfr1_feature,
|
|
|
|
.field_pos = 20,
|
|
|
|
.min_field_value = 1,
|
|
|
|
.enable = cpu_enable_pan,
|
|
|
|
},
|
|
|
|
#endif /* CONFIG_ARM64_PAN */
|
2015-03-27 21:09:23 +08:00
|
|
|
{},
|
|
|
|
};
|
|
|
|
|
|
|
|
void check_cpu_capabilities(const struct arm64_cpu_capabilities *caps,
|
|
|
|
const char *info)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; caps[i].desc; i++) {
|
|
|
|
if (!caps[i].matches(&caps[i]))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!cpus_have_cap(caps[i].capability))
|
|
|
|
pr_info("%s %s\n", info, caps[i].desc);
|
|
|
|
cpus_set_cap(caps[i].capability);
|
|
|
|
}
|
2015-07-21 20:23:28 +08:00
|
|
|
|
|
|
|
/* second pass allows enable() to consider interacting capabilities */
|
|
|
|
for (i = 0; caps[i].desc; i++) {
|
|
|
|
if (cpus_have_cap(caps[i].capability) && caps[i].enable)
|
|
|
|
caps[i].enable();
|
|
|
|
}
|
2015-03-27 21:09:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void check_local_cpu_features(void)
|
|
|
|
{
|
|
|
|
check_cpu_capabilities(arm64_features, "detected feature");
|
|
|
|
}
|