grep --color vmx /proc/cpuinfo
or
# grep --color svm /proc/cpuinfo
http://www.cyberciti.biz/faq/linux-xen-vmware-kvm-intel-vt-amd-v-support/
Showing posts with label CPU. Show all posts
Showing posts with label CPU. Show all posts
Thursday, July 25, 2013
Saturday, November 3, 2012
Enable and Disable maskable Interrrupts
Disable Interrrupts:
eflags &= (0xffffffff-0x200);
Enable Interrupts:
eflags |= (0x200);
http://en.wikipedia.org/wiki/FLAGS_register
eflags &= (0xffffffff-0x200);
Enable Interrupts:
eflags |= (0x200);
http://en.wikipedia.org/wiki/FLAGS_register
Monday, June 25, 2012
Find 8 bits CPU ID from IO APIC redirection table entry
Find the CPU ID from IO APIC redirection table
use read and write everything tool. Specify index register:
FEC00000, and Data register: FEC00010
First of all, you need to find out where is the IO APIC memory
address, which is FEC00000 in our case, Then the address + 0x10 is the data
register,
The first IRQ has indexes 0x10 and 0x11, the second 0x12 and 0x13,
the third 0x14 and 0x15
CPU ID is the 56 – 63 bits of the redirection table entry
Thursday, May 5, 2011
cpufreq: CPU_Frequency_Scaling
https://wiki.archlinux.org/index.php/CPU_Frequency_Scaling
http://www.mjmwired.net/kernel/Documentation/cpu-freq/governors.txt
http://www.mjmwired.net/kernel/Documentation/cpu-freq/governors.txt
Monday, December 6, 2010
CPU
command to get cpu infomation:
cat /proc/cpuinfo
In Ubuntu, you could install command cpuid, and run:$cpuid
AMD Athlon 64 3500+
CPUID example: 40ff2
Model stepping:DH-F2
cat /proc/cpuinfo
In Ubuntu, you could install command cpuid, and run:$cpuid
AMD Athlon 64 3500+
CPUID example: 40ff2
Model stepping:DH-F2
Subscribe to:
Posts (Atom)