cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

cpu.c (5414B)


      1// SPDX-License-Identifier: GPL-2.0-only
      2/*
      3 * Copyright (C) 2012 Regents of the University of California
      4 */
      5
      6#include <linux/init.h>
      7#include <linux/seq_file.h>
      8#include <linux/of.h>
      9#include <asm/hwcap.h>
     10#include <asm/smp.h>
     11#include <asm/pgtable.h>
     12
     13/*
     14 * Returns the hart ID of the given device tree node, or -ENODEV if the node
     15 * isn't an enabled and valid RISC-V hart node.
     16 */
     17int riscv_of_processor_hartid(struct device_node *node)
     18{
     19	const char *isa;
     20	u32 hart;
     21
     22	if (!of_device_is_compatible(node, "riscv")) {
     23		pr_warn("Found incompatible CPU\n");
     24		return -ENODEV;
     25	}
     26
     27	hart = of_get_cpu_hwid(node, 0);
     28	if (hart == ~0U) {
     29		pr_warn("Found CPU without hart ID\n");
     30		return -ENODEV;
     31	}
     32
     33	if (!of_device_is_available(node)) {
     34		pr_info("CPU with hartid=%d is not available\n", hart);
     35		return -ENODEV;
     36	}
     37
     38	if (of_property_read_string(node, "riscv,isa", &isa)) {
     39		pr_warn("CPU with hartid=%d has no \"riscv,isa\" property\n", hart);
     40		return -ENODEV;
     41	}
     42	if (isa[0] != 'r' || isa[1] != 'v') {
     43		pr_warn("CPU with hartid=%d has an invalid ISA of \"%s\"\n", hart, isa);
     44		return -ENODEV;
     45	}
     46
     47	return hart;
     48}
     49
     50/*
     51 * Find hart ID of the CPU DT node under which given DT node falls.
     52 *
     53 * To achieve this, we walk up the DT tree until we find an active
     54 * RISC-V core (HART) node and extract the cpuid from it.
     55 */
     56int riscv_of_parent_hartid(struct device_node *node)
     57{
     58	for (; node; node = node->parent) {
     59		if (of_device_is_compatible(node, "riscv"))
     60			return riscv_of_processor_hartid(node);
     61	}
     62
     63	return -1;
     64}
     65
     66#ifdef CONFIG_PROC_FS
     67#define __RISCV_ISA_EXT_DATA(UPROP, EXTID) \
     68	{							\
     69		.uprop = #UPROP,				\
     70		.isa_ext_id = EXTID,				\
     71	}
     72/*
     73 * Here are the ordering rules of extension naming defined by RISC-V
     74 * specification :
     75 * 1. All extensions should be separated from other multi-letter extensions
     76 *    by an underscore.
     77 * 2. The first letter following the 'Z' conventionally indicates the most
     78 *    closely related alphabetical extension category, IMAFDQLCBKJTPVH.
     79 *    If multiple 'Z' extensions are named, they should be ordered first
     80 *    by category, then alphabetically within a category.
     81 * 3. Standard supervisor-level extensions (starts with 'S') should be
     82 *    listed after standard unprivileged extensions.  If multiple
     83 *    supervisor-level extensions are listed, they should be ordered
     84 *    alphabetically.
     85 * 4. Non-standard extensions (starts with 'X') must be listed after all
     86 *    standard extensions. They must be separated from other multi-letter
     87 *    extensions by an underscore.
     88 */
     89static struct riscv_isa_ext_data isa_ext_arr[] = {
     90	__RISCV_ISA_EXT_DATA(sscofpmf, RISCV_ISA_EXT_SSCOFPMF),
     91	__RISCV_ISA_EXT_DATA(svpbmt, RISCV_ISA_EXT_SVPBMT),
     92	__RISCV_ISA_EXT_DATA("", RISCV_ISA_EXT_MAX),
     93};
     94
     95static void print_isa_ext(struct seq_file *f)
     96{
     97	struct riscv_isa_ext_data *edata;
     98	int i = 0, arr_sz;
     99
    100	arr_sz = ARRAY_SIZE(isa_ext_arr) - 1;
    101
    102	/* No extension support available */
    103	if (arr_sz <= 0)
    104		return;
    105
    106	for (i = 0; i <= arr_sz; i++) {
    107		edata = &isa_ext_arr[i];
    108		if (!__riscv_isa_extension_available(NULL, edata->isa_ext_id))
    109			continue;
    110		seq_printf(f, "_%s", edata->uprop);
    111	}
    112}
    113
    114/*
    115 * These are the only valid base (single letter) ISA extensions as per the spec.
    116 * It also specifies the canonical order in which it appears in the spec.
    117 * Some of the extension may just be a place holder for now (B, K, P, J).
    118 * This should be updated once corresponding extensions are ratified.
    119 */
    120static const char base_riscv_exts[13] = "imafdqcbkjpvh";
    121
    122static void print_isa(struct seq_file *f, const char *isa)
    123{
    124	int i;
    125
    126	seq_puts(f, "isa\t\t: ");
    127	/* Print the rv[64/32] part */
    128	seq_write(f, isa, 4);
    129	for (i = 0; i < sizeof(base_riscv_exts); i++) {
    130		if (__riscv_isa_extension_available(NULL, base_riscv_exts[i] - 'a'))
    131			/* Print only enabled the base ISA extensions */
    132			seq_write(f, &base_riscv_exts[i], 1);
    133	}
    134	print_isa_ext(f);
    135	seq_puts(f, "\n");
    136}
    137
    138static void print_mmu(struct seq_file *f)
    139{
    140	char sv_type[16];
    141
    142#ifdef CONFIG_MMU
    143#if defined(CONFIG_32BIT)
    144	strncpy(sv_type, "sv32", 5);
    145#elif defined(CONFIG_64BIT)
    146	if (pgtable_l5_enabled)
    147		strncpy(sv_type, "sv57", 5);
    148	else if (pgtable_l4_enabled)
    149		strncpy(sv_type, "sv48", 5);
    150	else
    151		strncpy(sv_type, "sv39", 5);
    152#endif
    153#else
    154	strncpy(sv_type, "none", 5);
    155#endif /* CONFIG_MMU */
    156	seq_printf(f, "mmu\t\t: %s\n", sv_type);
    157}
    158
    159static void *c_start(struct seq_file *m, loff_t *pos)
    160{
    161	*pos = cpumask_next(*pos - 1, cpu_online_mask);
    162	if ((*pos) < nr_cpu_ids)
    163		return (void *)(uintptr_t)(1 + *pos);
    164	return NULL;
    165}
    166
    167static void *c_next(struct seq_file *m, void *v, loff_t *pos)
    168{
    169	(*pos)++;
    170	return c_start(m, pos);
    171}
    172
    173static void c_stop(struct seq_file *m, void *v)
    174{
    175}
    176
    177static int c_show(struct seq_file *m, void *v)
    178{
    179	unsigned long cpu_id = (unsigned long)v - 1;
    180	struct device_node *node = of_get_cpu_node(cpu_id, NULL);
    181	const char *compat, *isa;
    182
    183	seq_printf(m, "processor\t: %lu\n", cpu_id);
    184	seq_printf(m, "hart\t\t: %lu\n", cpuid_to_hartid_map(cpu_id));
    185	if (!of_property_read_string(node, "riscv,isa", &isa))
    186		print_isa(m, isa);
    187	print_mmu(m);
    188	if (!of_property_read_string(node, "compatible", &compat)
    189	    && strcmp(compat, "riscv"))
    190		seq_printf(m, "uarch\t\t: %s\n", compat);
    191	seq_puts(m, "\n");
    192	of_node_put(node);
    193
    194	return 0;
    195}
    196
    197const struct seq_operations cpuinfo_op = {
    198	.start	= c_start,
    199	.next	= c_next,
    200	.stop	= c_stop,
    201	.show	= c_show
    202};
    203
    204#endif /* CONFIG_PROC_FS */