Lines Matching refs:scfg
180 u8 scfg; in k8temp_probe() local
215 pci_read_config_byte(pdev, REG_TEMP, &scfg); in k8temp_probe()
216 scfg &= ~(SEL_PLACE | SEL_CORE); /* Select sensor 0, core0 */ in k8temp_probe()
217 pci_write_config_byte(pdev, REG_TEMP, scfg); in k8temp_probe()
218 pci_read_config_byte(pdev, REG_TEMP, &scfg); in k8temp_probe()
220 if (scfg & (SEL_PLACE | SEL_CORE)) { in k8temp_probe()
225 scfg |= (SEL_PLACE | SEL_CORE); in k8temp_probe()
226 pci_write_config_byte(pdev, REG_TEMP, scfg); in k8temp_probe()
232 scfg &= ~SEL_CORE; /* Select sensor 1, core0 */ in k8temp_probe()
233 pci_write_config_byte(pdev, REG_TEMP, scfg); in k8temp_probe()
235 scfg |= SEL_CORE; /* prepare for next selection */ in k8temp_probe()
241 scfg &= ~SEL_PLACE; /* Select sensor 0, core1 */ in k8temp_probe()
242 pci_write_config_byte(pdev, REG_TEMP, scfg); in k8temp_probe()