View Single Post
 
Old 12-07-2009, 04:30 PM
Clubber_77 Clubber_77 is offline
Cheetah
 
Join Date: Nov 2009
Location: Russia, St. Petersburg
Posts: 10
1. in your DSDT describes four core, because your chipset supports quad-core processors


2.
Code:
        Processor (P001, 0x01, 0x00004010, 0x06) {}
        Processor (P002, 0x02, 0x00004010, 0x06) {}
        Processor (P003, 0x03, 0x00004010, 0x06) {}
        Processor (P004, 0x04, 0x00004010, 0x06) {}
P001,P002,P003,P004... - that is to say, the standard description of the properties of the core (CPU) from Asus, you can not change.


3.
Code:
        Processor (P001, 0x01, 0x00004010, 0x06) {}
        Processor (P002, 0x02, 0x00004010, 0x06) {}
        Processor (P003, 0x03, 0x00004010, 0x06) {}
        Processor (P004, 0x04, 0x00004010, 0x06) {}
0x00004010 - this value, as I understand, there is a memory address, and for each type of processor value individual


for my T5500, this value is 0x00001010
Code:
Scope (_PR)
    {
        Processor (CPU0, 0x00, 0x00001010, 0x06) {}
        Processor (CPU1, 0x00, 0x00001010, 0x06) {}
     }

Last edited by Clubber_77; 12-07-2009 at 06:24 PM.
Reply With Quote