Results 1 to 20 of 20

Thread: MSI Neo2 Platinum simple request

  1. #1
    Registered User
    Join Date
    Jun 2005
    Posts
    85

    MSI Neo2 Platinum simple request

    Hi, I need a modded Neo2 Platinum bios. Tictac or Bigtoe, could you help me out here. I am looking for this:

    - Read Write Queue Bypass = 16x
    - Bypass Max = 7x
    - Idle Cycle Limit = 256 clks
    - TRC= 13
    - TRFC= 18

    Those timings really don't affect performance at all and are the only ones that allow me to reach 270x9. I would prefer it to be done in bios 1.8 since it is the most stable for me. Some minor interface tweaks and the hidden options shown would be fine. Thanks for the help.

  2. #2
    Registered User
    Join Date
    Jan 2004
    Location
    Germany
    Posts
    51
    Here
    At this point i wanna say a huge thanks to tictac, I was not able to get his sourcecode to work, but it made creating this patch alot easier and got me interested in doing stuff like this.
    Tested and working fine on my machine. Note that you can not disable this in BIOS, so try these settings with A64Tweaker before flashing to make sure its stable.
    Sandy Bridge incoming.

  3. #3
    Registered User
    Join Date
    Jun 2005
    Posts
    85
    Thank you very much. I will try it now.

  4. #4
    Registered User
    Join Date
    Jun 2005
    Posts
    85
    Best bios I ever used. Highly recommended. Thank you digitalfrost; great work.

  5. #5
    Xtreme Enthusiast
    Join Date
    Mar 2005
    Location
    Chicago, IL
    Posts
    623
    @digitalfrost

    apply your patch to 18r2 Thank you

    btw, can you tell how you patched that BIOS?
    Q6600 3.6Ghz @ 1.276v | DFI LP LT P35 | Ballistix Tracer PC2-8500 600Mhz @ 2.074v | GeForce 260 GTX | Auzen X-Fi Prelude | PCP&C 750 | Arch Linux ~ WinXP
    AMD Athlon 64 X2 3800 | DFI LANParty NF4 SLI-DR | 2x512MB G.SKILL PC3200 BH-5 | OCZ PowerStream 520W | Palit GeForce 9600 GT | Gentoo


    Long Live DFI.

  6. #6
    Registered User
    Join Date
    Jan 2004
    Location
    Germany
    Posts
    51
    I won't patch 18R2 without tictac's permission, also tictac could easily patch the bios himself and upload it. (With the ability to disable the patch in BIOS by using NIC rom, I haven't gotten this to work...)
    Read http://overclockers.com/tips905/, take a look at the sourcecode tictac provided, and read some assembler tutorials.
    If you really wanna try this be careful, I had to hotflash my bios twice because I ed it up.
    Last edited by digitalfrost; 06-20-2005 at 08:20 PM.
    Sandy Bridge incoming.

  7. #7
    Xtreme Enthusiast
    Join Date
    Mar 2005
    Location
    Chicago, IL
    Posts
    623
    Ok, thanks for the link
    Q6600 3.6Ghz @ 1.276v | DFI LP LT P35 | Ballistix Tracer PC2-8500 600Mhz @ 2.074v | GeForce 260 GTX | Auzen X-Fi Prelude | PCP&C 750 | Arch Linux ~ WinXP
    AMD Athlon 64 X2 3800 | DFI LANParty NF4 SLI-DR | 2x512MB G.SKILL PC3200 BH-5 | OCZ PowerStream 520W | Palit GeForce 9600 GT | Gentoo


    Long Live DFI.

  8. #8
    Xtreme Enthusiast
    Join Date
    Mar 2005
    Location
    Chicago, IL
    Posts
    623
    @digitalfrost

    could you post your code (tweak.asm) that you used to patch the bios, i'm kind of confused

    thanks
    Q6600 3.6Ghz @ 1.276v | DFI LP LT P35 | Ballistix Tracer PC2-8500 600Mhz @ 2.074v | GeForce 260 GTX | Auzen X-Fi Prelude | PCP&C 750 | Arch Linux ~ WinXP
    AMD Athlon 64 X2 3800 | DFI LANParty NF4 SLI-DR | 2x512MB G.SKILL PC3200 BH-5 | OCZ PowerStream 520W | Palit GeForce 9600 GT | Gentoo


    Long Live DFI.

  9. #9
    Registered User
    Join Date
    Jan 2004
    Location
    Germany
    Posts
    51
    Code:
    pushad
    ;trc13
    mov eax,	0x8000C288
    mov dx,0xcf8
    out dx,eax
    mov dx,0xcfc
    in eax,dx
    and eax,	0xFFFFFF0F
    or eax,		0x00000060
    out dx,eax
    ;trfc18
    mov eax,	0x8000C288
    mov dx,0xcf8
    out dx,eax
    mov dx,0xcfc
    in eax,dx
    and eax,	0xFFFFF0FF
    or eax,		0x00000900
    out dx,eax
    ;Bypass Max 7x
    mov eax,	0x8000C290
    mov dx,0xcf8
    out dx,eax
    mov dx,0xcfc
    in eax,dx
    and eax,	0xF1FFFFFF
    or eax,		0x0E000000
    out dx,eax
    ;Read/Write Qued Bypass 16x
    mov eax,	0x8000C290
    mov dx,0xcf8
    out dx,eax
    mov dx,0xcfc
    in eax,dx
    and eax,	0xFFFF3FFF
    or eax,		0x0000C000
    out dx,eax
    ;idle cycle limit 256 clocks
    mov eax,	0x8000C294
    mov dx,0xcf8
    out dx,eax
    mov dx,0xcfc
    in eax,dx
    and eax,	0xFFF8FFFF
    or eax,		0x00070000
    out dx,eax
    popad
    ret
    Not very elegant, but it works . Btw is this a chat or a forum
    Sandy Bridge incoming.

  10. #10
    Registered User
    Join Date
    Jun 2004
    Location
    France
    Posts
    97
    That's the best timing for TCCD ?
    2500K, 6970, Acer 245HQ

    E8400@3.85 + Vdroop P5K

  11. #11
    Fused
    Join Date
    Dec 2003
    Location
    Malaysia
    Posts
    2,769
    Quote Originally Posted by digitalfrost
    I won't patch 18R2 without tictac's permission, also tictac could easily patch the bios himself and upload it. (With the ability to disable the patch in BIOS by using NIC rom, I haven't gotten this to work...)
    Read http://overclockers.com/tips905/, take a look at the sourcecode tictac provided, and read some assembler tutorials.
    If you really wanna try this be careful, I had to hotflash my bios twice because I ed it up.
    nice modding
    feel free to patch or mod my modded bios... no hard feeling

    keep up the awesome work

  12. #12
    Xtreme Member
    Join Date
    Jan 2005
    Posts
    298
    This is sweet, great to see people still working on the good old neo2.
    Is that file the bios it's self or do I have to patch it onto a bios of my choosing or something?

  13. #13
    Xtreme Enthusiast
    Join Date
    Mar 2005
    Location
    Chicago, IL
    Posts
    623
    @tictac
    I requested those optimization in other thread. Can you apply that patch to your 18r2. thanks

    @Jeager

    oh yeah, definitely best bios for tccd. I will look for more memory optimizations

    This is sweet, great to see people still working on the good old neo2.
    Is that file the bios it's self or do I have to patch it onto a bios of my choosing or something?
    That's what happens when there's no money for new board. BIOS is already patched. Grab next release (Rev.3 of tictat's) if tictac will be willing to patch 18r2 or if digitalfrost will get it to work
    Last edited by nfm; 06-21-2005 at 09:04 PM.
    Q6600 3.6Ghz @ 1.276v | DFI LP LT P35 | Ballistix Tracer PC2-8500 600Mhz @ 2.074v | GeForce 260 GTX | Auzen X-Fi Prelude | PCP&C 750 | Arch Linux ~ WinXP
    AMD Athlon 64 X2 3800 | DFI LANParty NF4 SLI-DR | 2x512MB G.SKILL PC3200 BH-5 | OCZ PowerStream 520W | Palit GeForce 9600 GT | Gentoo


    Long Live DFI.

  14. #14
    Xtreme Member
    Join Date
    Jan 2005
    Posts
    298
    Nice this is perfect might help me greatly with my rev.2 tcc5 overclocking are all memory settings able to bet writien into the bios?

  15. #15
    Xtreme Enthusiast
    Join Date
    Mar 2005
    Location
    Chicago, IL
    Posts
    623
    exactly, i'm getting ocz rev.2 tcc5 later this week. DRR620 is coming
    Q6600 3.6Ghz @ 1.276v | DFI LP LT P35 | Ballistix Tracer PC2-8500 600Mhz @ 2.074v | GeForce 260 GTX | Auzen X-Fi Prelude | PCP&C 750 | Arch Linux ~ WinXP
    AMD Athlon 64 X2 3800 | DFI LANParty NF4 SLI-DR | 2x512MB G.SKILL PC3200 BH-5 | OCZ PowerStream 520W | Palit GeForce 9600 GT | Gentoo


    Long Live DFI.

  16. #16
    Xtreme Member
    Join Date
    May 2005
    Location
    Los Angeles
    Posts
    326
    hi guys

    will this timings burned into the BIOS help attain higher OC.... compared to setting it in A64 tweaker ????
    Intel Core 2 Duo E6400 | Asus P5B Plus Vista Edition | OCZ PC2-8500 SLI EPP 4x1GB
    XFX 8800GTS 640MB | SilverStone Strider 560W | Creative X-Fi XtremeMusic

  17. #17
    Registered User
    Join Date
    Jan 2004
    Location
    Germany
    Posts
    51
    No they won't but they help if you have trouble to even boot windows at certian settings for example. Besides this, I boot Linux from time to time, and there is no A64Tweaker :o
    Sandy Bridge incoming.

  18. #18
    Xtreme Member
    Join Date
    Mar 2005
    Location
    UK
    Posts
    249
    Below is a screenshot of the settings which help me attain higher memory speeds without performance loss (1:1 ratio). Has anyone found any settings that greatly differ drom these to get better stability? If someone could take an original 1.8 bios and patch it with timings similar to these, we could have an even better bios than we have already. Things such as higher async latency help a lot i find, but don't give a big performance hit.

    Basically im asking for an extension of the settings that Blinkme123 has asked for! Plus, some feedback for what are considered to be the best generic TCCD timings.
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	untitled.JPG 
Views:	252 
Size:	60.6 KB 
ID:	32910  
    Last edited by CD 1986; 06-22-2005 at 08:34 AM.
    My Athlon64 System:

    A64 3200+ (0517 GPBW) - 270x10 @ 1.52v
    Stock HSF - Idle: 33/28 & Load: 48/33
    MSI K8N Neo2 - 0506 Taiwan, 1.B Mod bios
    Patriot 1GB PC3200 - 270mhz @ 2.5-3-3-8 @ 2.70v
    Inno3D 128mb 6200- 500/640mhz (3d'01 - 20.3k & 3d'03 - 7.7k)
    120Gb HDD 7200rpm, 8mb cache
    Colors-IT 550w PSU - 3.3v @ 3.34v / 5v @ 5.02v / 12v @ 11.80v

    Optical: Ltd-166s / NEC-3520A / Ltr-48125w / Px-R820Ti


    My Site - you might even learn something!

  19. #19
    Xtreme Enthusiast
    Join Date
    Mar 2005
    Location
    Australia
    Posts
    512
    ^^ if someone could apply those timings to a 1.3B6 bios it would be awesome

    Opteron 170 @ 3.0Ghz on air, Opteron 144 @ 3.1Ghz on air

  20. #20
    Xtreme Member
    Join Date
    Mar 2005
    Location
    UK
    Posts
    249
    My Athlon64 System:

    A64 3200+ (0517 GPBW) - 270x10 @ 1.52v
    Stock HSF - Idle: 33/28 & Load: 48/33
    MSI K8N Neo2 - 0506 Taiwan, 1.B Mod bios
    Patriot 1GB PC3200 - 270mhz @ 2.5-3-3-8 @ 2.70v
    Inno3D 128mb 6200- 500/640mhz (3d'01 - 20.3k & 3d'03 - 7.7k)
    120Gb HDD 7200rpm, 8mb cache
    Colors-IT 550w PSU - 3.3v @ 3.34v / 5v @ 5.02v / 12v @ 11.80v

    Optical: Ltd-166s / NEC-3520A / Ltr-48125w / Px-R820Ti


    My Site - you might even learn something!

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •