Lines Matching refs:low
11 unsigned long low; member
52 centaur_mcr[mcr].low = lo; in mtrr_centaur_report_mcr()
61 *size = -(centaur_mcr[reg].low & 0xfffff000) >> PAGE_SHIFT; in centaur_get_mcr()
64 if (centaur_mcr_type == 1 && ((centaur_mcr[reg].low & 31) & 2)) in centaur_get_mcr()
66 if (centaur_mcr_type == 1 && (centaur_mcr[reg].low & 31) == 25) in centaur_get_mcr()
68 if (centaur_mcr_type == 0 && (centaur_mcr[reg].low & 31) == 31) in centaur_get_mcr()
76 unsigned long low, high; in centaur_set_mcr() local
80 high = low = 0; in centaur_set_mcr()
85 low = -size << PAGE_SHIFT | 0x1f; in centaur_set_mcr()
88 low = -size << PAGE_SHIFT | 0x02; /* NC */ in centaur_set_mcr()
90 low = -size << PAGE_SHIFT | 0x09; /* WWO, WC */ in centaur_set_mcr()
94 centaur_mcr[reg].low = low; in centaur_set_mcr()
95 wrmsr(MSR_IDT_MCR0 + reg, low, high); in centaur_set_mcr()