msrtool.log 1.1 KB

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