Home
last modified time | relevance | path

Searched refs:rdmsr_safe_on_cpu (Results 1 – 6 of 6) sorted by relevance

/openbmc/linux/drivers/thermal/intel/
H A Dintel_tcc.c28 err = rdmsr_safe_on_cpu(cpu, MSR_IA32_TEMPERATURE_TARGET, &low, &high); in intel_tcc_get_tjmax()
55 err = rdmsr_safe_on_cpu(cpu, MSR_IA32_TEMPERATURE_TARGET, &low, &high); in intel_tcc_get_offset()
85 err = rdmsr_safe_on_cpu(cpu, MSR_IA32_TEMPERATURE_TARGET, &low, &high); in intel_tcc_set_offset()
127 err = rdmsr_safe_on_cpu(cpu, msr, &low, &high); in intel_tcc_get_temp()
/openbmc/linux/drivers/hwmon/
H A Dvia-cputemp.c71 err = rdmsr_safe_on_cpu(data->id, data->msr_temp, &eax, &edx); in temp_show()
85 err = rdmsr_safe_on_cpu(data->id, data->msr_vid, &eax, &edx); in cpu0_vid_show()
146 err = rdmsr_safe_on_cpu(data->id, data->msr_temp, &eax, &edx); in via_cputemp_probe()
H A Dcoretemp.c199 err = rdmsr_safe_on_cpu(id, 0x17, &eax, &edx); in adjust_tjmax()
233 err = rdmsr_safe_on_cpu(id, 0xee, &eax, &edx); in adjust_tjmax()
279 err = rdmsr_safe_on_cpu(tdata->cpu, MSR_IA32_TEMPERATURE_TARGET, &eax, &edx); in get_tjmax()
315 ret = rdmsr_safe_on_cpu(tdata->cpu, MSR_IA32_TEMPERATURE_TARGET, &eax, &edx); in get_ttarget()
533 err = rdmsr_safe_on_cpu(cpu, tdata->status_reg, &eax, &edx); in create_core_data()
/openbmc/linux/arch/x86/lib/
H A Dmsr-smp.c169 int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h) in rdmsr_safe_on_cpu() function
191 EXPORT_SYMBOL(rdmsr_safe_on_cpu);
230 err = rdmsr_safe_on_cpu(cpu, msr_no, &low, &high); in rdmsrl_safe_on_cpu()
/openbmc/linux/arch/x86/include/asm/
H A Dmsr.h320 int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, u32 *l, u32 *h);
357 static inline int rdmsr_safe_on_cpu(unsigned int cpu, u32 msr_no, in rdmsr_safe_on_cpu() function
/openbmc/linux/arch/x86/kernel/
H A Dmsr.c66 err = rdmsr_safe_on_cpu(cpu, reg, &data[0], &data[1]); in msr_read()