RISC-V: create ISA string separately - not as part of

A patch from »Expose the isa-string via the AT_BASE_PLATFORM aux vector« in state Obsolete for linux-kernel

From: Heiko Stuebner <heiko.stuebner@...> Date: Wed, 12 Apr 2023 14:31:03 +0200

Commit-Message

The isa string is a very central part of the RISC-V architecture, so will be needed in other places as well. So in a first step decouple the generation of the runtime isa-string from /proc/cpuinfo - its current only user. The resulting string should not differ from the previously generated one. Signed-off-by: Heiko Stuebner <heiko.stuebner@...>

Patch-Comment

arch/riscv/kernel/cpu.c | 70 ++++++++++++++++++++++++++++++++++++----- 1 file changed, 62 insertions(+), 8 deletions(-)

Statistics

  • 62 lines added
  • 8 lines removed

Changes

--------------------------- arch/riscv/kernel/cpu.c ----------------------------
index 3df38052dcbd..ebc478f0a16c 100644
@@ -193,10 +193,33 @@ static struct riscv_isa_ext_data isa_ext_arr[] = {
__RISCV_ISA_EXT_DATA("", RISCV_ISA_EXT_MAX),
};
-static void print_isa_ext(struct seq_file *f)
+static int strlen_isa_ext(void)
{
struct riscv_isa_ext_data *edata;
- int i = 0, arr_sz;
+ int ext_len = 0, i, arr_sz;
+
+ arr_sz = ARRAY_SIZE(isa_ext_arr) - 1;
+
+ /* No extension support available */
+ if (arr_sz <= 0)
+ return 0;
+
+ for (i = 0; i <= arr_sz; i++) {
+ edata = &isa_ext_arr[i];
+ if (!__riscv_isa_extension_available(NULL, edata->isa_ext_id))
+ continue;
+
+ /* string length + underscore */
+ ext_len += strlen(edata->uprop) + 1;
+ }
+
+ return ext_len;
+}
+
+static void strcat_isa_ext(char *isa_str)
+{
+ struct riscv_isa_ext_data *edata;
+ int i, arr_sz;
arr_sz = ARRAY_SIZE(isa_ext_arr) - 1;
@@ -208,7 +231,8 @@ static void print_isa_ext(struct seq_file *f)
edata = &isa_ext_arr[i];
if (!__riscv_isa_extension_available(NULL, edata->isa_ext_id))
continue;
- seq_printf(f, "_%s", edata->uprop);
+ strcat(isa_str, "_");
+ strcat(isa_str, edata->uprop);
}
}
@@ -220,19 +244,49 @@ static void print_isa_ext(struct seq_file *f)
*/
static const char base_riscv_exts[13] = "imafdqcbkjpvh";
-static void print_isa(struct seq_file *f, const char *isa)
+static char *riscv_create_isa_string(const char *isa)
{
+ int maxlen = 4;
+ char *isa_str;
int i;
- seq_puts(f, "isa\t\t: ");
+ /* calculate the needed string length */
+ for (i = 0; i < sizeof(base_riscv_exts); i++)
+ if (__riscv_isa_extension_available(NULL, base_riscv_exts[i] - 'a'))
+ maxlen++;
+ maxlen += strlen_isa_ext();
+
+ isa_str = kzalloc(maxlen, GFP_KERNEL);
+ if (!isa_str)
+ return ERR_PTR(-ENOMEM);
+
/* Print the rv[64/32] part */
- seq_write(f, isa, 4);
+ strncat(isa_str, isa, 4);
+
for (i = 0; i < sizeof(base_riscv_exts); i++) {
if (__riscv_isa_extension_available(NULL, base_riscv_exts[i] - 'a'))
/* Print only enabled the base ISA extensions */
- seq_write(f, &base_riscv_exts[i], 1);
+ strncat(isa_str, &base_riscv_exts[i], 1);
+ }
+
+ strcat_isa_ext(isa_str);
+
+ return isa_str;
+}
+
+static void print_isa(struct seq_file *f, const char *isa)
+{
+ char *isa_str;
+
+ seq_puts(f, "isa\t\t: ");
+
+ isa_str = riscv_create_isa_string(isa);
+ if (!IS_ERR(isa_str)) {
+ seq_write(f, isa_str, strlen(isa_str));
+ kfree(isa_str);
+ } else {
+ seq_puts(f, "unknown");
}
- print_isa_ext(f);
seq_puts(f, "\n");
}
 
 

Recent Patches

About Us

Sed lacus. Donec lectus. Nullam pretium nibh ut turpis. Nam bibendum. In nulla tortor, elementum vel, tempor at, varius non, purus. Mauris vitae nisl nec metus placerat consectetuer.

Read More...