1 // SPDX-License-Identifier: GPL-2.0
8 #include <linux/stringify.h>
12 #define mfspr(rn) ({unsigned long rval; \
13 asm volatile("mfspr %0," __stringify(rn) \
14 : "=r" (rval)); rval; })
16 #define SPRN_PVR 0x11F /* Processor Version Register */
17 #define PVR_VER(pvr) (((pvr) >> 16) & 0xFFFF) /* Version field */
18 #define PVR_REV(pvr) (((pvr) >> 0) & 0xFFFF) /* Revison field */
21 get_cpuid(char *buffer
, size_t sz
)
26 pvr
= mfspr(SPRN_PVR
);
28 nb
= scnprintf(buffer
, sz
, "%lu,%lu$", PVR_VER(pvr
), PVR_REV(pvr
));
30 /* look for end marker to ensure the entire data fit */
31 if (strchr(buffer
, '$')) {
39 get_cpuid_str(struct perf_pmu
*pmu __maybe_unused
)
43 if (asprintf(&bufp
, "%.8lx", mfspr(SPRN_PVR
)) < 0)