msrtool.log 1.3 KB

123456789101112131415161718192021222324252627282930
  1. msrtool
  2. Detected system linux: Linux with /dev/cpu/*/msr
  3. Detected target intel_core2_later: Intel Xeon Processor 5200, 5400 series, Intel Core 2 Quad processors 8000, 9000 series
  4. syntax: msrtool [-hvqrkl] [-c cpu] [-m system] [-t target ...]
  5. [-i addr=hi[:]lo] | [-s file] | [-d [:]file] | addr...
  6. -h show this help text
  7. -v be verbose
  8. -q be quiet (overrides -v)
  9. -r include [Reserved] values
  10. -k list all known systems and targets
  11. -l list MSRs and bit fields for current target(s) (-kl for ALL targets!)
  12. -c access MSRs on the specified CPU, default=0
  13. -m force a system, e.g: -m linux
  14. -t force a target, can be used multiple times, e.g: -t geodelx -t cs5536
  15. -i immediate mode
  16. decode hex addr=hi:lo for the target without reading hw value
  17. e.g: -i 4c00000f=f2f100ff56960004
  18. -s stream mode
  19. read one MSR address per line and append current hw value to the line
  20. use the filename - for stdin/stdout
  21. using -l -s ignores input and will output all MSRs with values
  22. -d diff mode
  23. read one address and value per line and compare with current hw value,
  24. printing differences to stdout. use the filename - to read from stdin
  25. use :file or :- to reverse diff, normally hw values are considered new
  26. addr.. direct mode, read and decode values for the given MSR address(es)
  27. No mode or address(es) specified!