Skip to content

msaitoh/x86info

This branch is 26 commits behind kernelslacker/x86info:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

author
Masanobu SAITOH
Jan 17, 2017
ab5cdb3 · Jan 17, 2017
Feb 13, 2014
Jun 3, 2016
Feb 13, 2014
Jan 17, 2017
Feb 13, 2014
Jul 10, 2007
Jul 18, 2014
Jun 5, 2016
Jun 20, 2014
Jun 20, 2014
Mar 3, 2015
May 22, 2014
Jun 3, 2016
Feb 13, 2014
Jun 7, 2015
May 22, 2014
Feb 13, 2014
Jun 6, 2015
Jan 17, 2017
Feb 13, 2014
Feb 13, 2014
Feb 13, 2014
Mar 5, 2014
Jul 2, 2014
Jul 2, 2014
Feb 13, 2014
Feb 13, 2014
Apr 27, 2016
Jun 20, 2014
Jun 3, 2016

Repository files navigation

x86info.

Somewhere in the mists of time, there was a program by Phil Karn (KA9Q)
called cpuid, which identified CPU. It didn't get updated very often,
and quickly got out of date. It also didn't do much more than just
simple decoding.

x86info was written to succeed Phils work. Initially, it borrowed some bits
from his code, but the last remnants are now long gone. Additional functionality
has been added, such as support for SMP, and building on non-Linux platforms.
(Solaris, and FreeBSD should work).



Features:
 - SMP support.
 - Recognition of all Intel/AMD/Centaur/Cyrix/VIA CPUs.
 - Parsing of model specific registers.
 - Approximation of current CPU MHz.

Requirements:
* On Linux, at least version 2.4 of glibc is required.

*  For usage of the MSR / SMP functions, x86info needs the
   x86 cpuid driver provided with the Linux kernel since 2.2.18 / 2.4.0,
   and the appropriate nodes in /dev

   To set up these devices, do the following..

	mkdir /dev/cpu
	for i in 0 1 2 3 4 5 6 7
	do
		mkdir /dev/cpu/$i ; cd /dev/cpu/$i
		mknod cpuid c 203 $i
		mknod msr c 202 $i
	done

*  If you are using the cpuid / msr drivers built as modules
   as opposed to built into the kernel, then you should ensure
   the following is in your /etc/modprobe.conf:

	alias char-major-202 msr
	alias char-major-203 cpuid

Info on the command line switches can be found in the man page.

About

x86info : x86 processor register decoder.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 86.4%
  • Roff 6.8%
  • Makefile 3.7%
  • Python 2.9%
  • C++ 0.2%