View Poll Results: Which voltage was the best for you from the overclocked kernels?

Voters
285. You may not vote on this poll
  • 1250

    150 52.63%
  • 1350

    69 24.21%
  • 1450

    66 23.16%
Page 35 of 35 FirstFirst ... 25333435
Results 341 to 345 of 345

Thread: Successful overclock

777
  1. [translate]    #341
    Senior Member
    Join Date
    Jul 2010
    Location
    Hungary
    Posts
    766

    Default

    First, you are looking at the wrong table, second I wasn't right in a few things.

    So that's the default table:

    static const u32 s3c_cpu_clk_tab_800MHz[][6] = {
    {800*MHZ, 266 *MHZ, 400, 3, 0, 2},
    {400*MHZ, 266 *MHZ, 400, 3, 1, 2},
    {266*MHZ, 266 *MHZ, 400, 3, 2, 2},
    {133*MHZ, 266 *MHZ, 400, 3, 5, 2},
    #ifdef USE_DVFS_AL1_LEVEL
    {133*MHZ, 133 *MHZ, 400, 1, 5, 5},
    #endif /* USE_DVFS_AL1_LEVEL */
    { 66*MHZ, 133 *MHZ, 400, 1, 11, 5},
    };

    As we can see the freqs are calculated by some divisions, with a logic I don't know.
    So you first have to calculate(or find in some documentation) that how the 133 is come from 400,3,5,2 and 66 from 400,1,11,5. Once you have the logic, you can calculate the right values for 33Mhz.

    ---------- Post added 02-14-2011 at 12:56 AM ---------- Previous post was 02-13-2011 at 07:31 PM ----------

    I've got a tip in PM, how are these calculated (thanks to lennox671):


    Quote Originally Posted by lennox671
    I don't have enough posts to reply to the thread, so i give you the tip by pm:

    Code:
    /* ARMCLK, HCLKX2, APLL, PDIV, ARM_DIV, HCLKX2_DIV */
    static const u32 s3c_cpu_clk_tab_800MHz[][6] = {
    {800*MHZ, 266 *MHZ, 400, 3, 0, 2},
    {400*MHZ, 266 *MHZ, 400, 3, 1, 2},
    {266*MHZ, 266 *MHZ, 400, 3, 2, 2},
    {133*MHZ, 266 *MHZ, 400, 3, 5, 2},
    #ifdef USE_DVFS_AL1_LEVEL
    {133*MHZ, 133 *MHZ, 400, 1, 5, 5},
    #endif /* USE_DVFS_AL1_LEVEL */
    { 66*MHZ, 133 *MHZ, 400, 1, 11, 5},
    };
    ARMCLK= 2 * APLL / (ARM_DIV + 1)

    HCLKX2= 2 * APLL / (HCLKX2_DIV + 1) <= I don't know what this clock is for

    When APLL is set to 400, to get 50MHz you have to set ARM_DIV to 15, but I don't know if you can get lower
    (depends on the size of the ARM_DIV register ... )
    So if you would like to get 33MHz, then in theory you should have the last line like this:
    Code:
    { 33*MHZ,  133 *MHZ, 400, 1, 23, 5},
    But, it won't work if:
    • The ARM_DIV register is just 4 bit long
    • Anything else won't like this slow CPU
    • Or something we are not aware of


    Also you can try this too:
    Code:
    { 33*MHZ,  133 *MHZ, 200, 1, 11, 2},
    Last edited by Xmister; 02-16-2011 at 11:43 AM.
    EXT ModMulti-Boot System
    Ultimate Spica Recovery
    My newest kernel+recovery for Odin can always be found here
    If you would like to help me a little, register at Xpango, and complete a free offer. (By the way, if you complete enough offer you will get a Galaxy SII for free)
    Or you can simply DONATE, if you like my work! PayPal address: xmisterhu@gmail.com

  2. [translate]    #342
    Senior Member
    Join Date
    Dec 2010
    Location
    philippines
    Posts
    2,750

    Default

    I've just made a Kernel with OCed CPU

    yonip_result.pngoced.png
    YONIP 2.6.32.9 + CM A.8.4
    YONIP Files
    http://kuolas.ath.cx/banjo/
    My Cooked ROM SGM-Froyo-BETA2.1

  3. [translate]    #343
    Senior Member
    Join Date
    May 2010
    Location
    Poland
    Posts
    664

    Default

    Great! Can you share sources with lukiqq or give us your kernel? I see that memory score didnt decrease. Good.
    http://www.youtube.com/user/fatino1234 <<< My channel with Spica stuff (like games, experimental things)

  4. [translate]    #344
    Senior Member
    Join Date
    Jul 2010
    Location
    Poland
    Posts
    574

    Default

    Quote Originally Posted by banjo0917 View Post
    I've just made a Kernel with OCed CPU

    Click image for larger version. 

Name:	YONIP_RESULT.PNG 
Views:	634 
Size:	206.3 KB 
ID:	6231Click image for larger version. 

Name:	OCed.png 
Views:	442 
Size:	19.9 KB 
ID:	6232
    Nice! But tell me, is this real 1066 speed or just a result of shorter second which give us better virtual scores? I really appreciate your work.

  5. [translate]    #345
    Senior Member
    Join Date
    Dec 2010
    Location
    philippines
    Posts
    2,750

    Default

    You may probably be right.
    Maybe we could work together and share ideas inorder to make it more successful. TIA
    YONIP 2.6.32.9 + CM A.8.4
    YONIP Files
    http://kuolas.ath.cx/banjo/
    My Cooked ROM SGM-Froyo-BETA2.1

Page 35 of 35 FirstFirst ... 25333435

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

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
  •