mtd: nand: omap: Fix comment in platform data using wrong Kconfig symbol
[linux/fpc-iii.git] / arch / x86 / kernel / acpi / cppc_msr.c
blob6fb478bf82fd965a7f4cf88e8c4a4eef94566a40
1 /*
2 * cppc_msr.c: MSR Interface for CPPC
3 * Copyright (c) 2016, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
16 #include <acpi/cppc_acpi.h>
17 #include <asm/msr.h>
19 /* Refer to drivers/acpi/cppc_acpi.c for the description of functions */
21 bool cpc_ffh_supported(void)
23 return true;
26 int cpc_read_ffh(int cpunum, struct cpc_reg *reg, u64 *val)
28 int err;
30 err = rdmsrl_safe_on_cpu(cpunum, reg->address, val);
31 if (!err) {
32 u64 mask = GENMASK_ULL(reg->bit_offset + reg->bit_width - 1,
33 reg->bit_offset);
35 *val &= mask;
36 *val >>= reg->bit_offset;
38 return err;
41 int cpc_write_ffh(int cpunum, struct cpc_reg *reg, u64 val)
43 u64 rd_val;
44 int err;
46 err = rdmsrl_safe_on_cpu(cpunum, reg->address, &rd_val);
47 if (!err) {
48 u64 mask = GENMASK_ULL(reg->bit_offset + reg->bit_width - 1,
49 reg->bit_offset);
51 val <<= reg->bit_offset;
52 val &= mask;
53 rd_val &= ~mask;
54 rd_val |= val;
55 err = wrmsrl_safe_on_cpu(cpunum, reg->address, rd_val);
57 return err;