summaryrefslogtreecommitdiffstats
path: root/arch/mips/lib/cpuinfo.c
blob: 41ec7b8d532b10009c2b701d80936d352e090b24 (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
56
// SPDX-License-Identifier: GPL-2.0-only
/*
 * cpuinfo - show information about MIPS CPU
 *
 * Copyright (C) 2011 Antony Pavlov <antonynpavlov@gmail.com>
 */

#include <common.h>
#include <command.h>
#include <asm/mipsregs.h>
#include <asm/cpu-info.h>

static char *way_string[] = { NULL, "direct mapped", "2-way",
	"3-way", "4-way", "5-way", "6-way", "7-way", "8-way"
};

static int do_cpuinfo(int argc, char *argv[])
{
	unsigned int icache_size, dcache_size, scache_size;
	struct cpuinfo_mips *c = &current_cpu_data;

	printk(KERN_INFO "CPU revision is: %08x (%s)\n",
		current_cpu_data.processor_id, __cpu_name);

	icache_size = c->icache.sets * c->icache.ways * c->icache.linesz;
	dcache_size = c->dcache.sets * c->dcache.ways * c->dcache.linesz;

	printk("Primary instruction cache %ukB, %s, %s, linesize %d bytes.\n",
	       icache_size >> 10,
	       c->icache.flags & MIPS_CACHE_VTAG ? "VIVT" : "VIPT",
	       way_string[c->icache.ways], c->icache.linesz);

	printk("Primary data cache %ukB, %s, %s, %s, linesize %d bytes\n",
	       dcache_size >> 10, way_string[c->dcache.ways],
	       (c->dcache.flags & MIPS_CACHE_PINDEX) ? "PIPT" : "VIPT",
	       (c->dcache.flags & MIPS_CACHE_ALIASES) ?
			"cache aliases" : "no aliases",
	       c->dcache.linesz);
	if (c->scache.flags & MIPS_CACHE_NOT_PRESENT)
		return 0;
	scache_size = c->scache.sets * c->scache.ways * c->scache.linesz;
	printk("Secondary data cache %ukB, %s, %s, %s, linesize %d bytes\n",
	       scache_size >> 10, way_string[c->scache.ways],
	       (c->scache.flags & MIPS_CACHE_PINDEX) ? "PIPT" : "VIPT",
	       (c->scache.flags & MIPS_CACHE_ALIASES) ?
			"cache aliases" : "no aliases",
	       c->scache.linesz);

	return 0;
}

BAREBOX_CMD_START(cpuinfo)
	.cmd            = do_cpuinfo,
	BAREBOX_CMD_DESC("show CPU information")
	BAREBOX_CMD_GROUP(CMD_GRP_INFO)
BAREBOX_CMD_END