The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.
← Previous pageNext page →

    How to Enable Intel Dynamic Acceleration (IDA) on Both Cores of a Core 2 Duo

    Discussion in 'Windows OS and Software' started by unclewebb, Apr 21, 2010.

  1. moral hazard

    moral hazard Notebook Nobel Laureate

    Reputations:
    2,779
    Messages:
    7,957
    Likes Received:
    87
    Trophy Points:
    216
    But your FSB is cut in 1/2.

    My FSB is still 266mhz (throttlestop shows 9.5 x 266).

    Anyway, I can't get any benchmark to run, maybe my voltage is not really 1.05v but lower.

    I'll try a pinmod in the morning to bump the voltage up.

    EDIT: Can anyone guess what voltage my CPU is running at when I try this trick?
     
  2. Rockstar59

    Rockstar59 Notebook Enthusiast

    Reputations:
    30
    Messages:
    19
    Likes Received:
    0
    Trophy Points:
    5
    moral hazard, when SLFM is enabled, chipset runned at 1/2 of default frequency.
     
  3. moral hazard

    moral hazard Notebook Nobel Laureate

    Reputations:
    2,779
    Messages:
    7,957
    Likes Received:
    87
    Trophy Points:
    216
    Yes, and normally throttlestop shows 133 x 6 when I enable SLFM.
    And CPUz shows 266 x 3.


    But when I do this trick, CPUz shows 266 x 9.5 and so does throttlestop.
    Are you saying that they are wrong?


    Wait 5 mins, I will give you two screenshots.
    One screenshot I will give with a 15x multi, then I will show you 19x.

    EDIT: now I see you are right...

    Well that's not so good.
    Do you have any idea on how to get the chipset to run at it's default frequency?
     
  4. Dufus

    Dufus .

    Reputations:
    1,194
    Messages:
    1,336
    Likes Received:
    548
    Trophy Points:
    131
  5. unclewebb

    unclewebb ThrottleStop Author

    Reputations:
    7,810
    Messages:
    6,413
    Likes Received:
    6,721
    Trophy Points:
    681
    I played with this trick a while ago. It made for a nice Everest screen shot but it only resulted in an overall performance decrease.

    [​IMG]

    It's possible to increase the multiplier but with SLFM enabled, overall performance wasn't as good.
    I couldn't find a way to get the higher multi without SLFM enabled.
     
  6. kizwan

    kizwan Lord Pringles

    Reputations:
    1,502
    Messages:
    3,229
    Likes Received:
    10
    Trophy Points:
    106
    Hi guys,

    I have made simple guide/example on how to mod BIOS for unlocking Enhanced Intel SpeedStep Technology (EIST). This will allow everyone who own notebook with capable hardware to enable dual-IDA mode on their notebook. Have fun! :)
    <STRIKE> Rev 1.0 : EIST Unlocked Example.pdf
    Rev 1.1 : EIST Unlocked Example Rev 1.1.pdf</STRIKE>
    - Rev 1.0 & 1.1 are now out-dated.
    - Please use Rev 1.1a instead.
    Rev 1.1a : EIST Unlocked Example Rev 1.1a.pdf
    - Included detail explanation

    CYGWIN Installation:-
    When install CYGWIN, make sure to select nasm. " ndisasm" tool is included in nasm package.
    [​IMG]

    Script:-
    1. Open "Start Menu" >> Cygwin >> "Cygwin Bash Shell"
    2. Navigate to BIOS image decompressed folder; "DUMP" (refer to PDF file)
    3. Enter this command (press Enter after inputting the command):-
      Code:
      cat > ndisasm_bat.sh
    4. Copy the script in the *spoiler* below

      Code:
      #!/bin/bash
      echo "--> disassembling *.ROM files"
      for f in $( ls *.ROM ); do
          DIS=$(echo $f | sed 's/\(^[a-zA-Z0-9_-]*\).\([a-zA-Z]*\)/\1.DASM/')
          DIS16=$(echo $f | sed 's/\(^[a-zA-Z0-9_-]*\).\([a-zA-Z]*\)/\1.16.DASM/')
          echo "--> Creating disassembled file: $DIS"
          echo "ndisasm -a -b 64 $f > $DIS"
          ndisasm -a -p intel -b 64 $f > $DIS
          echo "--> Creating disassembled file: $DIS16"
          echo "ndisasm -a -b 16 $f > $DIS16"
          ndisasm -a -p intel -b 16 $f > $DIS16
      done
      for f in $( ls *.ff ); do
          DIS=$(echo $f | sed 's/\(^[a-zA-Z0-9_-]*\).\([a-zA-Z]*\)/\1.DASM/')
          DIS16=$(echo $f | sed 's/\(^[a-zA-Z0-9_-]*\).\([a-zA-Z]*\)/\1.16.DASM/')
          echo "--> Creating disassembled file: $DIS"
          echo "ndisasm -a -b 64 $f > $DIS"
          ndisasm -a -p intel -b 64 $f > $DIS
          echo "--> Creating disassembled file: $DIS16"
          echo "ndisasm -a -b 16 $f > $DIS16"
          ndisasm -a -p intel -b 16 $f > $DIS16
      done
      for f in $( ls *.PEI ); do
          DIS=$(echo $f | sed 's/\(^[a-zA-Z0-9_-]*\).\([a-zA-Z]*\)/\1.DASM/')
          DIS16=$(echo $f | sed 's/\(^[a-zA-Z0-9_-]*\).\([a-zA-Z]*\)/\1.16.DASM/')
          echo "--> Creating disassembled file: $DIS"
          echo "ndisasm -a -b 64 $f > $DIS"
          ndisasm -a -p intel -b 64 $f > $DIS
          echo "--> Creating disassembled file: $DIS16"
          echo "ndisasm -a -b 16 $f > $DIS16"
          ndisasm -a -p intel -b 16 $f > $DIS16
      done
      echo "--> Checking MSR register for EIST: mov ecx,0x1A0" > RESULTS.TXT
      echo "--> Checking MSR register for EIST: mov ecx,0x1A0"
      grep -i "mov ecx,0x1A0" *.DASM >> RESULTS.TXT
      grep -i "mov ecx,0x1A0" *.DASM
    5. Click the CYGWIN icon at the left-top corner of "Cygwin Bash Shell" window >> Edit >> Paste
      [​IMG]
    6. Press Enter one time & press "Ctrl" + "D".
    7. Make it executable file:-
      Code:
      chmod +x ndisasm_bat.sh

    Acknowledgments:-
    - nando4 for helping me when I investigate the EIST Locked bit.
    - unclewebb for the great ThrottleStop software.
    - Dufus: the brains behind Dual IDA and a few more TS features.
    - andyp@mydigitallife for the great Phoenix Tool, also for providing the fix for module reintegration problem.
    - middleton for the brilliant assembly code tips (see post #322).

    Known issues:-
    ####################################################################################
    1) Phoenix BIOS & EIST Locked bit located in "F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff" module
    When rebuilding the modified BIOS image, it will probably failed with this error:-
    Code:
    Changes detected in F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff
    Changes detected in TEMPLAT00.ROM
    New F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff Module is 118386 bytes too big
    New F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff Module is 118386 bytes too big
    F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff not reintegrated
    Unable to reintegrate F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff
    If it failed as shown above, please use AndyP's Phoenix tool version 1.77 or later. The reintegration should be successful:-
    Code:
    Changes detected in F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff
    New F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff Module is 2 bytes too big
    New F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff Module is 2 bytes too big
    ** F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff [B][U]reintegrated successfully[/U][/B]
    ####################################################################################
    2) Lenovo IdeaPad Y450's BIOS (Phoenix BIOS)
    No matter what I did, I unable to build modified BIOS image for this notebook. It failed with this error:-
    Code:
    Changes detected in F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff
    New F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff Module is 2 bytes too big
    New F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff Module is 2 bytes too big
    F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff [B][U]not reintegrated[/U][/B]
    [B][U]Unable to reintegrate[/U][/B] F7731B4C-58A2-4DF4-8980-5645D39ECE58.ff
    UPDATE (13 February): The reason why it failed is because there is not enough "space" to accommodate the extra 2 bytes. <STRIKE>Also can't rebuild it with Phoenix BIOS Editor because the modified BIOS image seems buggy (compared both original & modified BIOS with AndyP's Phoenix tool). I hope this is rare case & only involved Lenovo IdeaPad Y450's BIOS.</STRIKE> No longer a problem. Please refer to Rev 1.1a doc.

    UPDATE (30 March): Thanks to middleton's inputs & comments at post #322, there is a solution on the " Module is X bytes too big" issue. Please refer to the latest document revision, Rev 1.1a, for more information.​
    ####################################################################################

    kizwan
     
    Last edited by a moderator: May 12, 2015
  7. thunder372

    thunder372 Newbie

    Reputations:
    0
    Messages:
    4
    Likes Received:
    0
    Trophy Points:
    5

    Attached Files:

  8. kizwan

    kizwan Lord Pringles

    Reputations:
    1,502
    Messages:
    3,229
    Likes Received:
    10
    Trophy Points:
    106
    @thunder372, you forgot to post the screenshot. ;)

    Qunata TW8 with dual-IDA enabled:-
    [​IMG]
     
    Last edited by a moderator: Feb 6, 2015
  9. RanCorX2

    RanCorX2 Notebook Evangelist

    Reputations:
    45
    Messages:
    385
    Likes Received:
    19
    Trophy Points:
    31
    is it possible to add the EIST option to the bios on the M570RU? EIST is enabled bu there is no bios option to toggle it.
     
  10. kizwan

    kizwan Lord Pringles

    Reputations:
    1,502
    Messages:
    3,229
    Likes Received:
    10
    Trophy Points:
    106
    Your notebook BIOS is 57RU_12 (R12R10.WPH), yes? I just checked & I found there is no hidden option for EIST (for toggle between enabled/ disabled) in it. It is not possible to add new options in BIOS. (Theoretically, it is actually possible but extremely complicated.)

    On further checking, I found EIST is locked. You can follow the guide ( EIST Unlocked Example.pdf) to patch your BIOS to prevent it from locking EIST. This way you can control EIST (enabled/disabled) using ThrottleStop.
     
  11. RanCorX2

    RanCorX2 Notebook Evangelist

    Reputations:
    45
    Messages:
    385
    Likes Received:
    19
    Trophy Points:
    31
    cool, that's what I wanted to do :)
     
  12. RanCorX2

    RanCorX2 Notebook Evangelist

    Reputations:
    45
    Messages:
    385
    Likes Received:
    19
    Trophy Points:
    31
    I'm not quite sure what I need to do, it says create a script and then step 3 says this script will..... it looks like a 2nd script?? but it doesn't say what to save it as? is it a script or just info? btw i'm using thr R13 bios, I don't have it as a stand alone file though, just a bootable iso, does anyone have it as a WPH file?
     
  13. kizwan

    kizwan Lord Pringles

    Reputations:
    1,502
    Messages:
    3,229
    Likes Received:
    10
    Trophy Points:
    106
    Sorry. " This script..." at Step 3 was referring to script at Step 2. Step 3 show an example of the output, produced by the script at step 2. The .DASM files are disassembled files. After you found the bit 20 lock, you'll need to use the information from the .DASM files, like the location/offset to locate it exact location in the .ROM files. Meaning you will need to modify/edit .ROM file, not the .DASM file. If you still don't understand, please let me know.

    You can extract the boot file from the ISO using tool like UltraISO. Save the boot file to a file. Use tool like WinImage to extract the content of the boot file. Usually BIOS file can be found in the boot file.
     
  14. RanCorX2

    RanCorX2 Notebook Evangelist

    Reputations:
    45
    Messages:
    385
    Likes Received:
    19
    Trophy Points:
    31
    I extracted it but got an .IMG file, I tried to open it with winimage but it said it was not a valid file.
     
  15. RanCorX2

    RanCorX2 Notebook Evangelist

    Reputations:
    45
    Messages:
    385
    Likes Received:
    19
    Trophy Points:
    31
    ok I managed to extract it, I'll have a go with the pdf instructions...
     
  16. RanCorX2

    RanCorX2 Notebook Evangelist

    Reputations:
    45
    Messages:
    385
    Likes Received:
    19
    Trophy Points:
    31
    i'm stuck, how do you decompress the bios? I see no option in the tool.
     
  17. RanCorX2

    RanCorX2 Notebook Evangelist

    Reputations:
    45
    Messages:
    385
    Likes Received:
    19
    Trophy Points:
    31
    don't suppose anyone could modifiy the bios for me? I can't work out how to even decompress the bios, i've uploaded the bios to mediafire, hopefully it's the right file, the tool opens it fine. (R13AR10.SXP)
    R13AR10.SXP
     
  18. kizwan

    kizwan Lord Pringles

    Reputations:
    1,502
    Messages:
    3,229
    Likes Received:
    10
    Trophy Points:
    106
    Sorry for replying late. I just made a correction & included detail explanation in the new revised guide. Please go to post #256 to download Rev 1.1 of the guide.
     
  19. RanCorX2

    RanCorX2 Notebook Evangelist

    Reputations:
    45
    Messages:
    385
    Likes Received:
    19
    Trophy Points:
    31
    no problem, i'm still confused though, it's not decompressing anything from the r13 bios, but from the r12 bios i end up with 50 files :confused:

    edit, r13 was corrupt i now have a working version. it's decompressed and i still have 50 files,which one is the bios?
     
  20. kizwan

    kizwan Lord Pringles

    Reputations:
    1,502
    Messages:
    3,229
    Likes Received:
    10
    Trophy Points:
    106
    All of the 50 files in the DUMP folder are called BIOS modules. The BIOS file is the one you load in the Phoenix tool.

    Can we discuss this in PM? I think it is more appropriate if we discuss this using PM. ;)
     
  21. RanCorX2

    RanCorX2 Notebook Evangelist

    Reputations:
    45
    Messages:
    385
    Likes Received:
    19
    Trophy Points:
    31
    ok, pm on it's way.
     
  22. RanCorX2

    RanCorX2 Notebook Evangelist

    Reputations:
    45
    Messages:
    385
    Likes Received:
    19
    Trophy Points:
    31
    hi, i'm still having trouble understanding how to do the bios mod with the pdf guide, anyone fancy modifying my bios so I can use throttlestop?

    i've uploaded it here: R13AR10.SXP
     
  23. superceleron

    superceleron Newbie

    Reputations:
    0
    Messages:
    4
    Likes Received:
    0
    Trophy Points:
    5
  24. RanCorX2

    RanCorX2 Notebook Evangelist

    Reputations:
    45
    Messages:
    385
    Likes Received:
    19
    Trophy Points:
    31
    dammit, how'd you manage it? I can't even work out what to hex edit, guess i'm too stupid to figure it out.
     
  25. superceleron

    superceleron Newbie

    Reputations:
    0
    Messages:
    4
    Likes Received:
    0
    Trophy Points:
    5
    well its not that hard if you follow the tutorial.
    Btw i used this free hex editor: HxDen
    my bios its Phoenix, and the code was on MOD_5100.ROM
    :)

    EDIT: RanCorX2 where you go...

    R13AR10_EIST.7z
     
  26. RanCorX2

    RanCorX2 Notebook Evangelist

    Reputations:
    45
    Messages:
    385
    Likes Received:
    19
    Trophy Points:
    31
    awesome thanks man, made my day.
     
  27. unclewebb

    unclewebb ThrottleStop Author

    Reputations:
    7,810
    Messages:
    6,413
    Likes Received:
    6,721
    Trophy Points:
    681
    superceleron: If you lower the VID voltage before going into Dual IDA mode, you might be able to run that speed reliably with a VID setting of 1.10 or less.

    My T8100 is quite happy at 2300 MHz in Dual IDA with a VID of 1.05 V and its not a golden chip. Full load power consumption and heat output are less than the default settings so I'm getting the best of both worlds. Faster and more efficient.
     
  28. superceleron

    superceleron Newbie

    Reputations:
    0
    Messages:
    4
    Likes Received:
    0
    Trophy Points:
    5
    RanCorX2: Glad i could help :)

    unclewebb:

    1º thks for your great tool :)
    2º well the max i could get it whitout a BSOD its 1.1750, below that instant BSOD.
    And i dindt see a BSOD in a long time lol

    [​IMG]
     
  29. RanCorX2

    RanCorX2 Notebook Evangelist

    Reputations:
    45
    Messages:
    385
    Likes Received:
    19
    Trophy Points:
    31
    just flashed and it's working!1!11111111111111111 so exciting :) Cheers man, and unclewebb, the tool is sweet, very useful indeed!
     
  30. unclewebb

    unclewebb ThrottleStop Author

    Reputations:
    7,810
    Messages:
    6,413
    Likes Received:
    6,721
    Trophy Points:
    681
    superceleron: I didn't realize you were using a 65nm T7700. My laptop also uses the 965 chipset but it has a newer 45nm T8100 so it is happy with less voltage before a BSOD ends the fun.

    RanCorX2: Great to hear that another user got this working and you're welcome for TS. It doesn't give you a huge performance increase but I like anything that is free. :)
     
  31. User Retired 2

    User Retired 2 Notebook Nobel Laureate NBR Reviewer

    Reputations:
    4,127
    Messages:
    7,860
    Likes Received:
    10
    Trophy Points:
    0
    Update: HP 2530P and 2730P dualIDA modded bioses added to the list. The LV SL9300/SL9400/SL9600 getting a full additional multiplier when running dualIDA, or 266Mhz overclock. Means a [email protected] HP 2530P can now tango with a P8600-2.4 Lenovo X200 :)

    Thank you to Kizwan for doing the full analysis and mod on the 2530P Insyde-style bios. I just tested then replicated the work to a 2730P.
     
  32. T2050

    T2050 Notebook Deity

    Reputations:
    280
    Messages:
    1,699
    Likes Received:
    93
    Trophy Points:
    66
    Where do I find the hex editor tutorial for bios modding that you have used?
     
  33. superceleron

    superceleron Newbie

    Reputations:
    0
    Messages:
    4
    Likes Received:
    0
    Trophy Points:
    5
  34. maximinimaus

    maximinimaus Notebook Evangelist

    Reputations:
    468
    Messages:
    635
    Likes Received:
    0
    Trophy Points:
    30
    Thank you to Kizwan.
    Here's a the dual ida modded BIOS F.13 for the HP 8530w/p.
    I flashed it today and TS works with it. Just unzip and run HPQFLASH.
    Download from
    sp51536 BIOS F.13.zip
     
  35. veloscaper

    veloscaper Notebook Geek

    Reputations:
    10
    Messages:
    75
    Likes Received:
    1
    Trophy Points:
    16
    Thanks Maximinmaus.

    I tried it and ESIT is no longer grayed out. However it doesn't seem to work on my 8530p upgraded with a P9600. Max cpu speed is 2.66 GHz and with ESIT it should be 2.8GHz and this is what HWiNFO shows it just never gets to 2.8GHz (green bar up to 2.6 and I never see 2.8GHz).

    I've tried the the steps in the first post. However, even though I can set the multiplier to 10.5 (default P9600 max is 10), I never see it used. I tried raising the minimum power state to 100% and DualIda = 1 and 2. Nothing seems to work.

    Any ideas?
     
  36. maximinimaus

    maximinimaus Notebook Evangelist

    Reputations:
    468
    Messages:
    635
    Likes Received:
    0
    Trophy Points:
    30
    This is how I got Dual IDA with my T9400.

    1. increase VID to max
    2. increase Multiplier to max
    3. check Set Multiplier
    4. uncheck EIST

    The result is shown in the screenshot. I used the "Balanced" energy profile.
     
  37. veloscaper

    veloscaper Notebook Geek

    Reputations:
    10
    Messages:
    75
    Likes Received:
    1
    Trophy Points:
    16
    Thanks again but I tried that and doesn't work for me. Thing is regardless of TS, once EIST bit was enabled in bios I should see IDA cpu speed/multipier being used if a load the cpu with a single threaded app. I don't ever see IDA happening so trying to lock IDA in with TS seems moot.

    I installed Intel chipset driver info could this cause IDA to not work? Can't seem to uninstall it has it doesn't show up in the add/remove programs list.

    Not sure what could be causing IDA to not work. I'm using Win 7 x64.
     
  38. User Retired 2

    User Retired 2 Notebook Nobel Laureate NBR Reviewer

    Reputations:
    4,127
    Messages:
    7,860
    Likes Received:
    10
    Trophy Points:
    0
    Set your Win7 power profile to use 100% minimum CPU. Set a x10.5 multiplier (highest) in TS. Right click in TS and select "Start Dual IDA". As long as EIST is unlocked in the bios AND your CPU supports IDA then that should work. Certainly did on a U7600 and SL9400 that I tested.
     
  39. veloscaper

    veloscaper Notebook Geek

    Reputations:
    10
    Messages:
    75
    Likes Received:
    1
    Trophy Points:
    16
    Tried minimum power states as well as "Start Dual IDA" and setting DualIDA=2 in the .ini file.

    Here is a screen capture.
     

    Attached Files:

  40. unclewebb

    unclewebb ThrottleStop Author

    Reputations:
    7,810
    Messages:
    6,413
    Likes Received:
    6,721
    Trophy Points:
    681
    veloscaper: Can you try toggling the Disable Turbo option on and off? It looks like the bios has disabled IDA / Turbo Boost on this CPU. If you can't get single IDA working then you definitely won't be able to get Dual IDA working.

    Can you post a CPU-Z screen shot too? Is this an ES processor or a retail OEM?

    Can you download my MSR Tool and enter 0x198 in the MSR Number box at the bottom and then click on Read MSR. Do the same for MSR 0x199 and then post a couple of pics.

    http://www.fileden.com/files/2008/3/3/1794507/MSR.zip

    You can run two instances of MSR Tool if you want so you can read both of those registers on the same screen shot.

    Edit: I fixed a bug where ThrottleStop was showing the UNLK and Reset buttons on your regular CPU. These options are only supposed to be available on the Core 2 Extreme CPUs. I couldn't find anything unusual to fix your IDA problem.

    http://forum.notebookreview.com/7142585-post260.html
     
  41. veloscaper

    veloscaper Notebook Geek

    Reputations:
    10
    Messages:
    75
    Likes Received:
    1
    Trophy Points:
    16
    Tried toggling Disable Turbo before and tried again with no change. Got the processor off ebay with no retail package, think it came from a Dell laptop and I don't remember seeing any ES on the lid of the chip. So I think it is retail. If nothing works I'll crack open the notebook and remove the heatsink to verify no ES.

    cpu-z and MSR captures.
     

    Attached Files:

  42. Dufus

    Dufus .

    Reputations:
    1,194
    Messages:
    1,336
    Likes Received:
    548
    Trophy Points:
    131
    veloscaper, would you please tell me what MSR 0xCE reads. No need for a SS just cut and paste the numbers will do.
     
  43. veloscaper

    veloscaper Notebook Geek

    Reputations:
    10
    Messages:
    75
    Likes Received:
    1
    Trophy Points:
    16
    MSR OxCE:

    EDX:
    0x80174A28

    EAX:
    0x4345060D
     
  44. Dufus

    Dufus .

    Reputations:
    1,194
    Messages:
    1,336
    Likes Received:
    548
    Trophy Points:
    131
    Okay that looks good, shows IDA present. Now what do MSR's 0xE2, 0xE3 & 0xE4 show?


    *Something bad going on with my ISP connection at the moment, hope it doesn't last too long.
     
  45. veloscaper

    veloscaper Notebook Geek

    Reputations:
    10
    Messages:
    75
    Likes Received:
    1
    Trophy Points:
    16
    MSR 0xE2:
    EDX: 0x00000000
    EAX: 0x02264508

    MSR 0xE3:
    EDX: 0x00000000
    EAX: 0x10140414

    MSR 0xE4:
    EDX: 0x00000000
    EAX: 0x00040414
     
  46. Dufus

    Dufus .

    Reputations:
    1,194
    Messages:
    1,336
    Likes Received:
    548
    Trophy Points:
    131
    The CPU looks fine. Give me a moment or two and I'll see if I can dig up some old SW that you could try.
     
  47. veloscaper

    veloscaper Notebook Geek

    Reputations:
    10
    Messages:
    75
    Likes Received:
    1
    Trophy Points:
    16
    Dufus, got the PM. Ran it and it quickly came back with "success".

    So what's going on?

    Thank you.
     

    Attached Files:

  48. Dufus

    Dufus .

    Reputations:
    1,194
    Messages:
    1,336
    Likes Received:
    548
    Trophy Points:
    131
    Well that's good news, shows IDA engaged and should be on both cores which you should be able to verify with HWinfo32.

    Probably best if Kevin answers, may be just some finger trouble.
     
  49. unclewebb

    unclewebb ThrottleStop Author

    Reputations:
    7,810
    Messages:
    6,413
    Likes Received:
    6,721
    Trophy Points:
    681
    veloscaper: The Specification box in CPU-Z shows your P9600 is a regular OEM CPU and it is not an ES processor. Now I just hope Dufus can tell me what register I forgot to check and adjust so I can get ThrottleStop fixed up for you.

    Don't let his avatar fool you. Dufus is the brains behind Dual IDA and a few more TS features.
    I'm just the programmer. :)
     
  50. [Sander]

    [Sander] Newbie

    Reputations:
    24
    Messages:
    6
    Likes Received:
    0
    Trophy Points:
    5
    I succesfully enabled dualIDA on both cores, on my Dell Latitude D830 T7300, while using a multiplier of 11.0 @ 1.05V (2.0GHz->2.2GHz). I got a 9% cpu performance increase according to wPrime (2 threads).

    In ThrottleStop 2.89, I had to manually uncheck 'Power Saver' & 'Disable Turbo' though. As my previous VID was sometimes even higher than 1.3, this caused a big temperature drop (from being temperature throttled using prime95 @2.2GHz to max 81 C).
     

    Attached Files:

← Previous pageNext page →