OMAPDSS: VENC: fix NULL pointer dereference in DSS2 VENC sysfs debug attr on OMAP4
[zen-stable.git] / tools / perf / arch / powerpc / util / header.c
blob2f7073d107fd115fa75c15e2c9734b2fd501fef6
1 #include <sys/types.h>
2 #include <unistd.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <string.h>
7 #include "../../util/header.h"
9 #define __stringify_1(x) #x
10 #define __stringify(x) __stringify_1(x)
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 */
20 int
21 get_cpuid(char *buffer, size_t sz)
23 unsigned long pvr;
24 int nb;
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, '$')) {
32 buffer[nb-1] = '\0';
33 return 0;
35 return -1;