2023-08-30 17:31:07 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
/*
|
|
|
|
* Copied from arch/arm64/kernel/cpufeature.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2015 ARM Ltd.
|
|
|
|
* Copyright (C) 2017 SiFive
|
|
|
|
*/
|
|
|
|
|
2023-10-24 12:59:35 +02:00
|
|
|
#include <linux/acpi.h>
|
2023-08-30 17:31:07 +02:00
|
|
|
#include <linux/bitmap.h>
|
|
|
|
#include <linux/ctype.h>
|
|
|
|
#include <linux/log2.h>
|
|
|
|
#include <linux/memory.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/of.h>
|
2023-10-24 12:59:35 +02:00
|
|
|
#include <linux/of_device.h>
|
|
|
|
#include <asm/acpi.h>
|
2023-08-30 17:31:07 +02:00
|
|
|
#include <asm/alternative.h>
|
|
|
|
#include <asm/cacheflush.h>
|
2023-10-24 12:59:35 +02:00
|
|
|
#include <asm/cpufeature.h>
|
2023-08-30 17:31:07 +02:00
|
|
|
#include <asm/hwcap.h>
|
|
|
|
#include <asm/patch.h>
|
|
|
|
#include <asm/processor.h>
|
2023-10-24 12:59:35 +02:00
|
|
|
#include <asm/vector.h>
|
2023-08-30 17:31:07 +02:00
|
|
|
|
|
|
|
#define NUM_ALPHA_EXTS ('z' - 'a' + 1)
|
|
|
|
|
|
|
|
unsigned long elf_hwcap __read_mostly;
|
|
|
|
|
|
|
|
/* Host ISA bitmap */
|
|
|
|
static DECLARE_BITMAP(riscv_isa, RISCV_ISA_EXT_MAX) __read_mostly;
|
|
|
|
|
2023-10-24 12:59:35 +02:00
|
|
|
/* Per-cpu ISA extensions. */
|
|
|
|
struct riscv_isainfo hart_isa[NR_CPUS];
|
|
|
|
|
|
|
|
/* Performance information */
|
|
|
|
DEFINE_PER_CPU(long, misaligned_access_speed);
|
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
/**
|
|
|
|
* riscv_isa_extension_base() - Get base extension word
|
|
|
|
*
|
|
|
|
* @isa_bitmap: ISA bitmap to use
|
|
|
|
* Return: base extension word as unsigned long value
|
|
|
|
*
|
|
|
|
* NOTE: If isa_bitmap is NULL then Host ISA bitmap will be used.
|
|
|
|
*/
|
|
|
|
unsigned long riscv_isa_extension_base(const unsigned long *isa_bitmap)
|
|
|
|
{
|
|
|
|
if (!isa_bitmap)
|
|
|
|
return riscv_isa[0];
|
|
|
|
return isa_bitmap[0];
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(riscv_isa_extension_base);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* __riscv_isa_extension_available() - Check whether given extension
|
|
|
|
* is available or not
|
|
|
|
*
|
|
|
|
* @isa_bitmap: ISA bitmap to use
|
|
|
|
* @bit: bit position of the desired extension
|
|
|
|
* Return: true or false
|
|
|
|
*
|
|
|
|
* NOTE: If isa_bitmap is NULL then Host ISA bitmap will be used.
|
|
|
|
*/
|
|
|
|
bool __riscv_isa_extension_available(const unsigned long *isa_bitmap, int bit)
|
|
|
|
{
|
|
|
|
const unsigned long *bmap = (isa_bitmap) ? isa_bitmap : riscv_isa;
|
|
|
|
|
|
|
|
if (bit >= RISCV_ISA_EXT_MAX)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return test_bit(bit, bmap) ? true : false;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL_GPL(__riscv_isa_extension_available);
|
|
|
|
|
|
|
|
static bool riscv_isa_extension_check(int id)
|
|
|
|
{
|
|
|
|
switch (id) {
|
|
|
|
case RISCV_ISA_EXT_ZICBOM:
|
|
|
|
if (!riscv_cbom_block_size) {
|
2023-10-24 12:59:35 +02:00
|
|
|
pr_err("Zicbom detected in ISA string, disabling as no cbom-block-size found\n");
|
2023-08-30 17:31:07 +02:00
|
|
|
return false;
|
|
|
|
} else if (!is_power_of_2(riscv_cbom_block_size)) {
|
2023-10-24 12:59:35 +02:00
|
|
|
pr_err("Zicbom disabled as cbom-block-size present, but is not a power-of-2\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
case RISCV_ISA_EXT_ZICBOZ:
|
|
|
|
if (!riscv_cboz_block_size) {
|
|
|
|
pr_err("Zicboz detected in ISA string, but no cboz-block-size found\n");
|
|
|
|
return false;
|
|
|
|
} else if (!is_power_of_2(riscv_cboz_block_size)) {
|
|
|
|
pr_err("cboz-block-size present, but is not a power-of-2\n");
|
2023-08-30 17:31:07 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __init riscv_fill_hwcap(void)
|
|
|
|
{
|
|
|
|
struct device_node *node;
|
|
|
|
const char *isa;
|
|
|
|
char print_str[NUM_ALPHA_EXTS + 1];
|
|
|
|
int i, j, rc;
|
|
|
|
unsigned long isa2hwcap[26] = {0};
|
2023-10-24 12:59:35 +02:00
|
|
|
struct acpi_table_header *rhct;
|
|
|
|
acpi_status status;
|
|
|
|
unsigned int cpu;
|
2023-08-30 17:31:07 +02:00
|
|
|
|
|
|
|
isa2hwcap['i' - 'a'] = COMPAT_HWCAP_ISA_I;
|
|
|
|
isa2hwcap['m' - 'a'] = COMPAT_HWCAP_ISA_M;
|
|
|
|
isa2hwcap['a' - 'a'] = COMPAT_HWCAP_ISA_A;
|
|
|
|
isa2hwcap['f' - 'a'] = COMPAT_HWCAP_ISA_F;
|
|
|
|
isa2hwcap['d' - 'a'] = COMPAT_HWCAP_ISA_D;
|
|
|
|
isa2hwcap['c' - 'a'] = COMPAT_HWCAP_ISA_C;
|
2023-10-24 12:59:35 +02:00
|
|
|
isa2hwcap['v' - 'a'] = COMPAT_HWCAP_ISA_V;
|
2023-08-30 17:31:07 +02:00
|
|
|
|
|
|
|
elf_hwcap = 0;
|
|
|
|
|
|
|
|
bitmap_zero(riscv_isa, RISCV_ISA_EXT_MAX);
|
|
|
|
|
2023-10-24 12:59:35 +02:00
|
|
|
if (!acpi_disabled) {
|
|
|
|
status = acpi_get_table(ACPI_SIG_RHCT, 0, &rhct);
|
|
|
|
if (ACPI_FAILURE(status))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for_each_possible_cpu(cpu) {
|
|
|
|
struct riscv_isainfo *isainfo = &hart_isa[cpu];
|
2023-08-30 17:31:07 +02:00
|
|
|
unsigned long this_hwcap = 0;
|
|
|
|
|
2023-10-24 12:59:35 +02:00
|
|
|
if (acpi_disabled) {
|
|
|
|
node = of_cpu_device_node_get(cpu);
|
|
|
|
if (!node) {
|
|
|
|
pr_warn("Unable to find cpu node\n");
|
|
|
|
continue;
|
|
|
|
}
|
2023-08-30 17:31:07 +02:00
|
|
|
|
2023-10-24 12:59:35 +02:00
|
|
|
rc = of_property_read_string(node, "riscv,isa", &isa);
|
|
|
|
of_node_put(node);
|
|
|
|
if (rc) {
|
|
|
|
pr_warn("Unable to find \"riscv,isa\" devicetree entry\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
rc = acpi_get_riscv_isa(rhct, cpu, &isa);
|
|
|
|
if (rc < 0) {
|
|
|
|
pr_warn("Unable to get ISA for the hart - %d\n", cpu);
|
|
|
|
continue;
|
|
|
|
}
|
2023-08-30 17:31:07 +02:00
|
|
|
}
|
|
|
|
|
2023-10-24 12:59:35 +02:00
|
|
|
/*
|
|
|
|
* For all possible cpus, we have already validated in
|
|
|
|
* the boot process that they at least contain "rv" and
|
|
|
|
* whichever of "32"/"64" this kernel supports, and so this
|
|
|
|
* section can be skipped.
|
|
|
|
*/
|
|
|
|
isa += 4;
|
|
|
|
|
|
|
|
while (*isa) {
|
2023-08-30 17:31:07 +02:00
|
|
|
const char *ext = isa++;
|
|
|
|
const char *ext_end = isa;
|
|
|
|
bool ext_long = false, ext_err = false;
|
|
|
|
|
|
|
|
switch (*ext) {
|
|
|
|
case 's':
|
2023-10-24 12:59:35 +02:00
|
|
|
/*
|
2023-08-30 17:31:07 +02:00
|
|
|
* Workaround for invalid single-letter 's' & 'u'(QEMU).
|
|
|
|
* No need to set the bit in riscv_isa as 's' & 'u' are
|
|
|
|
* not valid ISA extensions. It works until multi-letter
|
|
|
|
* extension starting with "Su" appears.
|
|
|
|
*/
|
|
|
|
if (ext[-1] != '_' && ext[1] == 'u') {
|
|
|
|
++isa;
|
|
|
|
ext_err = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
fallthrough;
|
2023-10-24 12:59:35 +02:00
|
|
|
case 'S':
|
2023-08-30 17:31:07 +02:00
|
|
|
case 'x':
|
2023-10-24 12:59:35 +02:00
|
|
|
case 'X':
|
2023-08-30 17:31:07 +02:00
|
|
|
case 'z':
|
2023-10-24 12:59:35 +02:00
|
|
|
case 'Z':
|
|
|
|
/*
|
|
|
|
* Before attempting to parse the extension itself, we find its end.
|
|
|
|
* As multi-letter extensions must be split from other multi-letter
|
|
|
|
* extensions with an "_", the end of a multi-letter extension will
|
|
|
|
* either be the null character or the "_" at the start of the next
|
|
|
|
* multi-letter extension.
|
|
|
|
*
|
|
|
|
* Next, as the extensions version is currently ignored, we
|
|
|
|
* eliminate that portion. This is done by parsing backwards from
|
|
|
|
* the end of the extension, removing any numbers. This may be a
|
|
|
|
* major or minor number however, so the process is repeated if a
|
|
|
|
* minor number was found.
|
|
|
|
*
|
|
|
|
* ext_end is intended to represent the first character *after* the
|
|
|
|
* name portion of an extension, but will be decremented to the last
|
|
|
|
* character itself while eliminating the extensions version number.
|
|
|
|
* A simple re-increment solves this problem.
|
|
|
|
*/
|
2023-08-30 17:31:07 +02:00
|
|
|
ext_long = true;
|
|
|
|
for (; *isa && *isa != '_'; ++isa)
|
2023-10-24 12:59:35 +02:00
|
|
|
if (unlikely(!isalnum(*isa)))
|
2023-08-30 17:31:07 +02:00
|
|
|
ext_err = true;
|
2023-10-24 12:59:35 +02:00
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
ext_end = isa;
|
|
|
|
if (unlikely(ext_err))
|
|
|
|
break;
|
2023-10-24 12:59:35 +02:00
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
if (!isdigit(ext_end[-1]))
|
|
|
|
break;
|
2023-10-24 12:59:35 +02:00
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
while (isdigit(*--ext_end))
|
|
|
|
;
|
2023-10-24 12:59:35 +02:00
|
|
|
|
|
|
|
if (tolower(ext_end[0]) != 'p' || !isdigit(ext_end[-1])) {
|
2023-08-30 17:31:07 +02:00
|
|
|
++ext_end;
|
|
|
|
break;
|
|
|
|
}
|
2023-10-24 12:59:35 +02:00
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
while (isdigit(*--ext_end))
|
|
|
|
;
|
2023-10-24 12:59:35 +02:00
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
++ext_end;
|
|
|
|
break;
|
|
|
|
default:
|
2023-10-24 12:59:35 +02:00
|
|
|
/*
|
|
|
|
* Things are a little easier for single-letter extensions, as they
|
|
|
|
* are parsed forwards.
|
|
|
|
*
|
|
|
|
* After checking that our starting position is valid, we need to
|
|
|
|
* ensure that, when isa was incremented at the start of the loop,
|
|
|
|
* that it arrived at the start of the next extension.
|
|
|
|
*
|
|
|
|
* If we are already on a non-digit, there is nothing to do. Either
|
|
|
|
* we have a multi-letter extension's _, or the start of an
|
|
|
|
* extension.
|
|
|
|
*
|
|
|
|
* Otherwise we have found the current extension's major version
|
|
|
|
* number. Parse past it, and a subsequent p/minor version number
|
|
|
|
* if present. The `p` extension must not appear immediately after
|
|
|
|
* a number, so there is no fear of missing it.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
if (unlikely(!isalpha(*ext))) {
|
2023-08-30 17:31:07 +02:00
|
|
|
ext_err = true;
|
|
|
|
break;
|
|
|
|
}
|
2023-10-24 12:59:35 +02:00
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
if (!isdigit(*isa))
|
|
|
|
break;
|
2023-10-24 12:59:35 +02:00
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
while (isdigit(*++isa))
|
|
|
|
;
|
2023-10-24 12:59:35 +02:00
|
|
|
|
|
|
|
if (tolower(*isa) != 'p')
|
2023-08-30 17:31:07 +02:00
|
|
|
break;
|
2023-10-24 12:59:35 +02:00
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
if (!isdigit(*++isa)) {
|
|
|
|
--isa;
|
|
|
|
break;
|
|
|
|
}
|
2023-10-24 12:59:35 +02:00
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
while (isdigit(*++isa))
|
|
|
|
;
|
2023-10-24 12:59:35 +02:00
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2023-10-24 12:59:35 +02:00
|
|
|
/*
|
|
|
|
* The parser expects that at the start of an iteration isa points to the
|
|
|
|
* first character of the next extension. As we stop parsing an extension
|
|
|
|
* on meeting a non-alphanumeric character, an extra increment is needed
|
|
|
|
* where the succeeding extension is a multi-letter prefixed with an "_".
|
|
|
|
*/
|
|
|
|
if (*isa == '_')
|
|
|
|
++isa;
|
|
|
|
|
|
|
|
#define SET_ISA_EXT_MAP(name, bit) \
|
|
|
|
do { \
|
|
|
|
if ((ext_end - ext == sizeof(name) - 1) && \
|
|
|
|
!strncasecmp(ext, name, sizeof(name) - 1) && \
|
|
|
|
riscv_isa_extension_check(bit)) \
|
|
|
|
set_bit(bit, isainfo->isa); \
|
|
|
|
} while (false) \
|
2023-08-30 17:31:07 +02:00
|
|
|
|
|
|
|
if (unlikely(ext_err))
|
|
|
|
continue;
|
|
|
|
if (!ext_long) {
|
2023-10-24 12:59:35 +02:00
|
|
|
int nr = tolower(*ext) - 'a';
|
2023-08-30 17:31:07 +02:00
|
|
|
|
|
|
|
if (riscv_isa_extension_check(nr)) {
|
|
|
|
this_hwcap |= isa2hwcap[nr];
|
2023-10-24 12:59:35 +02:00
|
|
|
set_bit(nr, isainfo->isa);
|
2023-08-30 17:31:07 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* sorted alphabetically */
|
2023-10-24 12:59:35 +02:00
|
|
|
SET_ISA_EXT_MAP("smaia", RISCV_ISA_EXT_SMAIA);
|
|
|
|
SET_ISA_EXT_MAP("ssaia", RISCV_ISA_EXT_SSAIA);
|
2023-08-30 17:31:07 +02:00
|
|
|
SET_ISA_EXT_MAP("sscofpmf", RISCV_ISA_EXT_SSCOFPMF);
|
|
|
|
SET_ISA_EXT_MAP("sstc", RISCV_ISA_EXT_SSTC);
|
|
|
|
SET_ISA_EXT_MAP("svinval", RISCV_ISA_EXT_SVINVAL);
|
2023-10-24 12:59:35 +02:00
|
|
|
SET_ISA_EXT_MAP("svnapot", RISCV_ISA_EXT_SVNAPOT);
|
2023-08-30 17:31:07 +02:00
|
|
|
SET_ISA_EXT_MAP("svpbmt", RISCV_ISA_EXT_SVPBMT);
|
2023-10-24 12:59:35 +02:00
|
|
|
SET_ISA_EXT_MAP("zba", RISCV_ISA_EXT_ZBA);
|
2023-08-30 17:31:07 +02:00
|
|
|
SET_ISA_EXT_MAP("zbb", RISCV_ISA_EXT_ZBB);
|
2023-10-24 12:59:35 +02:00
|
|
|
SET_ISA_EXT_MAP("zbs", RISCV_ISA_EXT_ZBS);
|
2023-08-30 17:31:07 +02:00
|
|
|
SET_ISA_EXT_MAP("zicbom", RISCV_ISA_EXT_ZICBOM);
|
2023-10-24 12:59:35 +02:00
|
|
|
SET_ISA_EXT_MAP("zicboz", RISCV_ISA_EXT_ZICBOZ);
|
2023-08-30 17:31:07 +02:00
|
|
|
SET_ISA_EXT_MAP("zihintpause", RISCV_ISA_EXT_ZIHINTPAUSE);
|
|
|
|
}
|
|
|
|
#undef SET_ISA_EXT_MAP
|
|
|
|
}
|
|
|
|
|
2023-10-24 12:59:35 +02:00
|
|
|
/*
|
|
|
|
* These ones were as they were part of the base ISA when the
|
|
|
|
* port & dt-bindings were upstreamed, and so can be set
|
|
|
|
* unconditionally where `i` is in riscv,isa on DT systems.
|
|
|
|
*/
|
|
|
|
if (acpi_disabled) {
|
|
|
|
set_bit(RISCV_ISA_EXT_ZICSR, isainfo->isa);
|
|
|
|
set_bit(RISCV_ISA_EXT_ZIFENCEI, isainfo->isa);
|
|
|
|
set_bit(RISCV_ISA_EXT_ZICNTR, isainfo->isa);
|
|
|
|
set_bit(RISCV_ISA_EXT_ZIHPM, isainfo->isa);
|
|
|
|
}
|
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
/*
|
|
|
|
* All "okay" hart should have same isa. Set HWCAP based on
|
|
|
|
* common capabilities of every "okay" hart, in case they don't
|
|
|
|
* have.
|
|
|
|
*/
|
|
|
|
if (elf_hwcap)
|
|
|
|
elf_hwcap &= this_hwcap;
|
|
|
|
else
|
|
|
|
elf_hwcap = this_hwcap;
|
|
|
|
|
|
|
|
if (bitmap_empty(riscv_isa, RISCV_ISA_EXT_MAX))
|
2023-10-24 12:59:35 +02:00
|
|
|
bitmap_copy(riscv_isa, isainfo->isa, RISCV_ISA_EXT_MAX);
|
2023-08-30 17:31:07 +02:00
|
|
|
else
|
2023-10-24 12:59:35 +02:00
|
|
|
bitmap_and(riscv_isa, riscv_isa, isainfo->isa, RISCV_ISA_EXT_MAX);
|
2023-08-30 17:31:07 +02:00
|
|
|
}
|
|
|
|
|
2023-10-24 12:59:35 +02:00
|
|
|
if (!acpi_disabled && rhct)
|
|
|
|
acpi_put_table((struct acpi_table_header *)rhct);
|
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
/* We don't support systems with F but without D, so mask those out
|
|
|
|
* here. */
|
|
|
|
if ((elf_hwcap & COMPAT_HWCAP_ISA_F) && !(elf_hwcap & COMPAT_HWCAP_ISA_D)) {
|
|
|
|
pr_info("This kernel does not support systems with F but not D\n");
|
|
|
|
elf_hwcap &= ~COMPAT_HWCAP_ISA_F;
|
|
|
|
}
|
|
|
|
|
2023-10-24 12:59:35 +02:00
|
|
|
if (elf_hwcap & COMPAT_HWCAP_ISA_V) {
|
|
|
|
riscv_v_setup_vsize();
|
|
|
|
/*
|
|
|
|
* ISA string in device tree might have 'v' flag, but
|
|
|
|
* CONFIG_RISCV_ISA_V is disabled in kernel.
|
|
|
|
* Clear V flag in elf_hwcap if CONFIG_RISCV_ISA_V is disabled.
|
|
|
|
*/
|
|
|
|
if (!IS_ENABLED(CONFIG_RISCV_ISA_V))
|
|
|
|
elf_hwcap &= ~COMPAT_HWCAP_ISA_V;
|
|
|
|
}
|
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
memset(print_str, 0, sizeof(print_str));
|
|
|
|
for (i = 0, j = 0; i < NUM_ALPHA_EXTS; i++)
|
|
|
|
if (riscv_isa[0] & BIT_MASK(i))
|
|
|
|
print_str[j++] = (char)('a' + i);
|
|
|
|
pr_info("riscv: base ISA extensions %s\n", print_str);
|
|
|
|
|
|
|
|
memset(print_str, 0, sizeof(print_str));
|
|
|
|
for (i = 0, j = 0; i < NUM_ALPHA_EXTS; i++)
|
|
|
|
if (elf_hwcap & BIT_MASK(i))
|
|
|
|
print_str[j++] = (char)('a' + i);
|
|
|
|
pr_info("riscv: ELF capabilities %s\n", print_str);
|
|
|
|
}
|
|
|
|
|
2023-10-24 12:59:35 +02:00
|
|
|
unsigned long riscv_get_elf_hwcap(void)
|
|
|
|
{
|
|
|
|
unsigned long hwcap;
|
|
|
|
|
|
|
|
hwcap = (elf_hwcap & ((1UL << RISCV_ISA_EXT_BASE) - 1));
|
|
|
|
|
|
|
|
if (!riscv_v_vstate_ctrl_user_allowed())
|
|
|
|
hwcap &= ~COMPAT_HWCAP_ISA_V;
|
|
|
|
|
|
|
|
return hwcap;
|
|
|
|
}
|
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
#ifdef CONFIG_RISCV_ALTERNATIVE
|
2023-10-24 12:59:35 +02:00
|
|
|
/*
|
|
|
|
* Alternative patch sites consider 48 bits when determining when to patch
|
|
|
|
* the old instruction sequence with the new. These bits are broken into a
|
|
|
|
* 16-bit vendor ID and a 32-bit patch ID. A non-zero vendor ID means the
|
|
|
|
* patch site is for an erratum, identified by the 32-bit patch ID. When
|
|
|
|
* the vendor ID is zero, the patch site is for a cpufeature. cpufeatures
|
|
|
|
* further break down patch ID into two 16-bit numbers. The lower 16 bits
|
|
|
|
* are the cpufeature ID and the upper 16 bits are used for a value specific
|
|
|
|
* to the cpufeature and patch site. If the upper 16 bits are zero, then it
|
|
|
|
* implies no specific value is specified. cpufeatures that want to control
|
|
|
|
* patching on a per-site basis will provide non-zero values and implement
|
|
|
|
* checks here. The checks return true when patching should be done, and
|
|
|
|
* false otherwise.
|
|
|
|
*/
|
|
|
|
static bool riscv_cpufeature_patch_check(u16 id, u16 value)
|
|
|
|
{
|
|
|
|
if (!value)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
switch (id) {
|
|
|
|
case RISCV_ISA_EXT_ZICBOZ:
|
|
|
|
/*
|
|
|
|
* Zicboz alternative applications provide the maximum
|
|
|
|
* supported block size order, or zero when it doesn't
|
|
|
|
* matter. If the current block size exceeds the maximum,
|
|
|
|
* then the alternative cannot be applied.
|
|
|
|
*/
|
|
|
|
return riscv_cboz_block_size <= (1U << value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-08-30 17:31:07 +02:00
|
|
|
void __init_or_module riscv_cpufeature_patch_func(struct alt_entry *begin,
|
|
|
|
struct alt_entry *end,
|
|
|
|
unsigned int stage)
|
|
|
|
{
|
|
|
|
struct alt_entry *alt;
|
|
|
|
void *oldptr, *altptr;
|
2023-10-24 12:59:35 +02:00
|
|
|
u16 id, value;
|
2023-08-30 17:31:07 +02:00
|
|
|
|
|
|
|
if (stage == RISCV_ALTERNATIVES_EARLY_BOOT)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (alt = begin; alt < end; alt++) {
|
|
|
|
if (alt->vendor_id != 0)
|
|
|
|
continue;
|
2023-10-24 12:59:35 +02:00
|
|
|
|
|
|
|
id = PATCH_ID_CPUFEATURE_ID(alt->patch_id);
|
|
|
|
|
|
|
|
if (id >= RISCV_ISA_EXT_MAX) {
|
|
|
|
WARN(1, "This extension id:%d is not in ISA extension list", id);
|
2023-08-30 17:31:07 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-10-24 12:59:35 +02:00
|
|
|
if (!__riscv_isa_extension_available(NULL, id))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
value = PATCH_ID_CPUFEATURE_VALUE(alt->patch_id);
|
|
|
|
if (!riscv_cpufeature_patch_check(id, value))
|
2023-08-30 17:31:07 +02:00
|
|
|
continue;
|
|
|
|
|
|
|
|
oldptr = ALT_OLD_PTR(alt);
|
|
|
|
altptr = ALT_ALT_PTR(alt);
|
|
|
|
|
|
|
|
mutex_lock(&text_mutex);
|
|
|
|
patch_text_nosync(oldptr, altptr, alt->alt_len);
|
|
|
|
riscv_alternative_fix_offsets(oldptr, alt->alt_len, oldptr - altptr);
|
|
|
|
mutex_unlock(&text_mutex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|