Lines Matching defs:msrValue

111     Q_WORD msrValue;
120 MSR_READ(MBD_MSR_CAP, RC_MB0_CPU, &(msrValue.high), &(msrValue.low));
121 if (GET_DEVICE_ID(msrValue.high, msrValue.low) != RC_CC_VA)
124 MSR_READ(MBD_MSR_CAP, RC_MB0_MBIU0, &(msrValue.high), &(msrValue.low));
125 if (GET_DEVICE_ID(msrValue.high, msrValue.low) != RC_CC_MBIU)
128 MSR_READ(MBD_MSR_CAP, RC_MB0_MBIU1, &(msrValue.high), &(msrValue.low));
129 if (GET_DEVICE_ID(msrValue.high, msrValue.low) != RC_CC_MBIU)
170 Q_WORD msrValue;
178 MSR_READ(MBIU_CAP, RC_MB0_MBIU0, &(msrValue.high), &(msrValue.low));
179 mbiu_port_count = GET_NUM_PORTS(msrValue.high, msrValue.low);
185 MSR_READ(MBIU_WHOAMI, RC_MB0_MBIU0, &(msrValue.high), &(msrValue.low));
186 reflective = msrValue.low & WHOAMI_MASK;
214 MSR_READ(MBD_MSR_CAP, MBIU0[port].address, &(msrValue.high),
215 &(msrValue.low));
216 MBIU0[port].deviceId = GET_DEVICE_ID(msrValue.high, msrValue.low);
226 MSR_READ(MBIU_CAP, RC_MB0_MBIU1, &(msrValue.high), &(msrValue.low));
227 mbiu_port_count = GET_NUM_PORTS(msrValue.high, msrValue.low);
233 MSR_READ(MBIU_WHOAMI, RC_MB0_MBIU1, &(msrValue.high), &(msrValue.low));
234 reflective = msrValue.low & WHOAMI_MASK;
255 MSR_READ(MBD_MSR_CAP, MBIU1[port].address, &(msrValue.high),
256 &(msrValue.low));
257 MBIU1[port].deviceId = GET_DEVICE_ID(msrValue.high, msrValue.low);
265 MSR_READ(MBD_MSR_CAP, CP_MB0_MBIU0, &(msrValue.high), &(msrValue.low));
266 if (GET_DEVICE_ID(msrValue.high, msrValue.low) == CP_CC_MBIU) {
269 MSR_READ(MBIU_CAP, CP_MB0_MBIU0, &(msrValue.high), &(msrValue.low));
270 mbiu_port_count = GET_NUM_PORTS(msrValue.high, msrValue.low);
276 MSR_READ(MBIU_WHOAMI, CP_MB0_MBIU0, &(msrValue.high), &(msrValue.low));
277 reflective = msrValue.low & WHOAMI_MASK;
299 MSR_READ(MBD_MSR_CAP, MBIU2[port].address, &(msrValue.high),
300 &(msrValue.low));
302 GET_DEVICE_ID(msrValue.high, msrValue.low);
463 Q_WORD msrValue;
465 MSR_READ(MBD_MSR_CAP, address, &(msrValue.high), &(msrValue.low));
467 if (GET_DEVICE_ID(msrValue.high, msrValue.low) == pDev->Id)
569 * FOUND - if no errors were detected and msrValue has been
571 * NOT_KNOWN - an error was detected. msrValue is not updated.
573 * should call msrInit() first. msrValue is not
582 Q_WORD * msrValue)
585 gfx_msr_read(unsigned int device, unsigned int msrRegister, Q_WORD * msrValue)
590 MSR_READ(msrRegister, msrDev[device].Address, &(msrValue->high),
591 &(msrValue->low));
604 * FOUND - if no errors were detected and msrValue has been
606 * NOT_KNOWN - an error was detected. msrValue is not updated.
608 * should call msrInit() first. msrValue is not
619 Q_WORD * msrValue)
622 gfx_msr_write(unsigned int device, unsigned int msrRegister, Q_WORD * msrValue)
627 MSR_WRITE(msrRegister, msrDev[device].Address, &(msrValue->high),
628 &(msrValue->low));