Lines Matching full:low
12 unsigned long low; member
53 centaur_mcr[mcr].low = lo; in mtrr_centaur_report_mcr()
62 *size = -(centaur_mcr[reg].low & 0xfffff000) >> PAGE_SHIFT; in centaur_get_mcr()
65 if (centaur_mcr_type == 1 && ((centaur_mcr[reg].low & 31) & 2)) in centaur_get_mcr()
67 if (centaur_mcr_type == 1 && (centaur_mcr[reg].low & 31) == 25) in centaur_get_mcr()
69 if (centaur_mcr_type == 0 && (centaur_mcr[reg].low & 31) == 31) in centaur_get_mcr()
77 unsigned long low, high; in centaur_set_mcr() local
81 high = low = 0; in centaur_set_mcr()
86 low = -size << PAGE_SHIFT | 0x1f; in centaur_set_mcr()
89 low = -size << PAGE_SHIFT | 0x02; /* NC */ in centaur_set_mcr()
91 low = -size << PAGE_SHIFT | 0x09; /* WWO, WC */ in centaur_set_mcr()
95 centaur_mcr[reg].low = low; in centaur_set_mcr()
96 wrmsr(MSR_IDT_MCR0 + reg, low, high); in centaur_set_mcr()