Lines Matching refs:value
74 * hardwire the Latency Timer to a value of 16 or less"
360 int size, u32 *value)
365 int reg, u32 *value);
370 *value = 0;
375 *value = 0;
391 ret = read_op(bridge, reg, value);
396 *value = le32_to_cpu(cfgspace[reg / 4]);
399 * Make sure we never return any reserved bit with a value
402 *value &= behavior[reg / 4].ro | behavior[reg / 4].rw |
406 *value = (*value >> (8 * (where & 3))) & 0xff;
408 *value = (*value >> (8 * (where & 3))) & 0xffff;
422 int size, u32 value)
466 /* Update the value of the RW bits */
467 new |= (value << shift) & (behavior[reg / 4].rw & mask);
470 new &= ~((value << shift) & (behavior[reg / 4].w1c & mask));
472 /* Save the new value with the cleared W1C bits into the cfgspace */
485 new |= (value << shift) & (behavior[reg / 4].w1c & mask);