summaryrefslogtreecommitdiff
path: root/arch/riscv/cpu/cpu.c
blob: d9f820c44c054dba9b6412e7d7a731d508ed6f5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
 */

#include <common.h>
#include <asm/csr.h>

/*
 * prior_stage_fdt_address must be stored in the data section since it is used
 * before the bss section is available.
 */
phys_addr_t prior_stage_fdt_address __attribute__((section(".data")));

enum {
	ISA_INVALID = 0,
	ISA_32BIT,
	ISA_64BIT,
	ISA_128BIT
};

static const char * const isa_bits[] = {
	[ISA_INVALID] = NULL,
	[ISA_32BIT]   = "32",
	[ISA_64BIT]   = "64",
	[ISA_128BIT]  = "128"
};

static inline bool supports_extension(char ext)
{
	return csr_read(misa) & (1 << (ext - 'a'));
}

int print_cpuinfo(void)
{
	char name[32];
	char *s = name;
	int bit;

	s += sprintf(name, "rv");
	bit = csr_read(misa) >> (sizeof(long) * 8 - 2);
	s += sprintf(s, isa_bits[bit]);

	supports_extension('i') ? *s++ = 'i' : 'r';
	supports_extension('m') ? *s++ = 'm' : 'i';
	supports_extension('a') ? *s++ = 'a' : 's';
	supports_extension('f') ? *s++ = 'f' : 'c';
	supports_extension('d') ? *s++ = 'd' : '-';
	supports_extension('c') ? *s++ = 'c' : 'v';
	*s++ = '\0';

	printf("CPU:   %s\n", name);

	return 0;
}