Lines Matching refs:pvr
29 unsigned long pvr;
32 pvr = mfspr(SPRN_PVR);
34 nb = scnprintf(buffer, sz, "%lu,%lu$", PVR_VER(pvr), PVR_REV(pvr));
48 unsigned long pvr;
58 * To support generic events, return 0x00ffffff as pvr when
59 * booted in compat mode. Based on this pvr value, json will
63 pvr = mfspr(SPRN_PVR);
65 pvr = 0x00ffffff;
67 if (asprintf(&bufp, "0x%.8lx", pvr) < 0)