~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/power/cpupower/utils/helpers/msr.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 #if defined(__i386__) || defined(__x86_64__)
  3 
  4 #include <fcntl.h>
  5 #include <stdio.h>
  6 #include <unistd.h>
  7 #include <stdint.h>
  8 
  9 #include "helpers/helpers.h"
 10 
 11 /* Intel specific MSRs */
 12 #define MSR_IA32_PERF_STATUS            0x198
 13 #define MSR_IA32_MISC_ENABLES           0x1a0
 14 #define MSR_NEHALEM_TURBO_RATIO_LIMIT   0x1ad
 15 
 16 /*
 17  * read_msr
 18  *
 19  * Will return 0 on success and -1 on failure.
 20  * Possible errno values could be:
 21  * EFAULT -If the read/write did not fully complete
 22  * EIO    -If the CPU does not support MSRs
 23  * ENXIO  -If the CPU does not exist
 24  */
 25 
 26 int read_msr(int cpu, unsigned int idx, unsigned long long *val)
 27 {
 28         int fd;
 29         char msr_file_name[64];
 30 
 31         sprintf(msr_file_name, "/dev/cpu/%d/msr", cpu);
 32         fd = open(msr_file_name, O_RDONLY);
 33         if (fd < 0)
 34                 return -1;
 35         if (lseek(fd, idx, SEEK_CUR) == -1)
 36                 goto err;
 37         if (read(fd, val, sizeof *val) != sizeof *val)
 38                 goto err;
 39         close(fd);
 40         return 0;
 41  err:
 42         close(fd);
 43         return -1;
 44 }
 45 
 46 /*
 47  * write_msr
 48  *
 49  * Will return 0 on success and -1 on failure.
 50  * Possible errno values could be:
 51  * EFAULT -If the read/write did not fully complete
 52  * EIO    -If the CPU does not support MSRs
 53  * ENXIO  -If the CPU does not exist
 54  */
 55 int write_msr(int cpu, unsigned int idx, unsigned long long val)
 56 {
 57         int fd;
 58         char msr_file_name[64];
 59 
 60         sprintf(msr_file_name, "/dev/cpu/%d/msr", cpu);
 61         fd = open(msr_file_name, O_WRONLY);
 62         if (fd < 0)
 63                 return -1;
 64         if (lseek(fd, idx, SEEK_CUR) == -1)
 65                 goto err;
 66         if (write(fd, &val, sizeof val) != sizeof val)
 67                 goto err;
 68         close(fd);
 69         return 0;
 70  err:
 71         close(fd);
 72         return -1;
 73 }
 74 
 75 unsigned long long msr_intel_get_turbo_ratio(unsigned int cpu)
 76 {
 77         unsigned long long val;
 78         int ret;
 79 
 80         if (!(cpupower_cpu_info.caps & CPUPOWER_CAP_HAS_TURBO_RATIO))
 81                 return -1;
 82 
 83         ret = read_msr(cpu, MSR_NEHALEM_TURBO_RATIO_LIMIT, &val);
 84         if (ret)
 85                 return ret;
 86         return val;
 87 }
 88 #endif
 89 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php