blob: 0b242664f5ea78ca8c97f92f5ff904b4b096b602 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Stephane Eranianfbe96f22011-09-30 15:40:40 +02002#include <sys/types.h>
3#include <unistd.h>
4#include <stdio.h>
5#include <stdlib.h>
6#include <string.h>
Arnaldo Carvalho de Melo531d2412016-03-23 15:16:55 -03007#include <linux/stringify.h>
Sukadev Bhattiprolu379649c2016-03-28 09:31:41 -03008#include "header.h"
9#include "util.h"
Stephane Eranianfbe96f22011-09-30 15:40:40 +020010
11#define mfspr(rn) ({unsigned long rval; \
12 asm volatile("mfspr %0," __stringify(rn) \
13 : "=r" (rval)); rval; })
14
15#define SPRN_PVR 0x11F /* Processor Version Register */
16#define PVR_VER(pvr) (((pvr) >> 16) & 0xFFFF) /* Version field */
17#define PVR_REV(pvr) (((pvr) >> 0) & 0xFFFF) /* Revison field */
18
19int
20get_cpuid(char *buffer, size_t sz)
21{
22 unsigned long pvr;
23 int nb;
24
25 pvr = mfspr(SPRN_PVR);
26
Arnaldo Carvalho de Meloe7f01d12012-03-14 12:29:29 -030027 nb = scnprintf(buffer, sz, "%lu,%lu$", PVR_VER(pvr), PVR_REV(pvr));
Stephane Eranianfbe96f22011-09-30 15:40:40 +020028
29 /* look for end marker to ensure the entire data fit */
30 if (strchr(buffer, '$')) {
31 buffer[nb-1] = '\0';
32 return 0;
33 }
34 return -1;
35}
Sukadev Bhattiproluce88f272016-09-15 15:24:41 -070036
37char *
Ganapatrao Kulkarni54e32dc2017-10-17 00:02:18 +053038get_cpuid_str(struct perf_pmu *pmu __maybe_unused)
Sukadev Bhattiproluce88f272016-09-15 15:24:41 -070039{
40 char *bufp;
41
42 if (asprintf(&bufp, "%.8lx", mfspr(SPRN_PVR)) < 0)
43 bufp = NULL;
44
45 return bufp;
46}