Lines Matching refs:high
213 u32 low = 0, high = 0, address = 0; in mce_amd_feature_init() local
230 if (rdmsr_safe(address, &low, &high)) in mce_amd_feature_init()
233 if (!(high & MASK_VALID_HI)) in mce_amd_feature_init()
236 if (!(high & MASK_CNTP_HI) || in mce_amd_feature_init()
237 (high & MASK_LOCKED_HI)) in mce_amd_feature_init()
248 b.interrupt_capable = lvt_interrupt_supported(bank, high); in mce_amd_feature_init()
254 new = (high & MASK_LVTOFF_HI) >> 20; in mce_amd_feature_init()
278 u32 low = 0, high = 0, address = 0; in amd_threshold_interrupt() local
299 if (rdmsr_safe(address, &low, &high)) in amd_threshold_interrupt()
302 if (!(high & MASK_VALID_HI)) { in amd_threshold_interrupt()
309 if (!(high & MASK_CNTP_HI) || in amd_threshold_interrupt()
310 (high & MASK_LOCKED_HI)) in amd_threshold_interrupt()
317 if (high & MASK_OVERFLOW_HI) in amd_threshold_interrupt()
328 m.misc = ((u64)high << 32) | low; in amd_threshold_interrupt()
471 u32 low, high; in allocate_threshold_blocks() local
477 if (rdmsr_safe_on_cpu(cpu, address, &low, &high)) in allocate_threshold_blocks()
480 if (!(high & MASK_VALID_HI)) { in allocate_threshold_blocks()
487 if (!(high & MASK_CNTP_HI) || in allocate_threshold_blocks()
488 (high & MASK_LOCKED_HI)) in allocate_threshold_blocks()
500 b->interrupt_capable = lvt_interrupt_supported(bank, high); in allocate_threshold_blocks()