U-Boot整个过程时钟部分解析


可能不同2440平台时钟频率有所不同,设置方式却是类似的,以下是我的u-boot时钟设置部分整个过程解析:

这是第一处时钟设置代码:

/* Initialize System Clock, FCLK:HCLK:PCLK = 1:2:4,default FCLK is
120MHz */
    ldr r0, =S3C24X0_CLOCK_POWER_BASE
    mov r1, #3
    str r1, [r0, #CLKDIVN_OFFSET]

MPLLCON_OFFSET = 0x14

可见0x4C000014:CLKDIVN被设置为0x03,它的意思是

HDIVN [1]
0: HCLK has the clock same as the FCLK.
1: HCLK has the clock same as the FCLK/2.

PDIVN [0]
0: PCLK has the clock same as the HCLK.
1: PCLK has the clock same as the HCLK/2.

即FCLK:HCLK:PCLK = 1:2:4
 
第二处时钟设置代码:

mov r2, #MDIV_405
add r2, r2, #PSDIV_405
str r2, [r0,#MPLLCON_OFFSET]

其中

#define MDIV_405                    0x7f << 12
#define PSDIV_405                  0x21
MPLLCON_OFFSET = 0x04

可见0x4c000004:MPLLCON被设置为0x007f021,它的意思是:

PLLCON  Bit        Description                Initial State
MDIV    [19:12]    Main divider control      0x5C / 0x28
PDIV    [9:4]      Pre-divider control        0x08 / 0x08
SDIV    [1:0]      Post divider control      0x0 / 0x0

即:SDIV = 0x1,  PDIV = 0x2,  MDIV = 0x7f

Input Frequency          Output Frequency      MDIV          PDIV        SDIVN

12.0000MHz              405.00 MHz            127(0x7f)      2            1

由此可以算出FCLK = 405MHz,  HCLK = 202.5MHz,  PCLK = 101.25MHz
 
 
下面有个注意事项很有必要认真记住:
 
NOTES:
 1. Although the MPLL starts just after a reset, the MPLL output (Mpll) is not used as the system clock until the software
 writes valid settings to the MPLLCON register. Before this valid setting, the clock from external crystal or EXTCLKsource
 
will be used as the system clock directly. Even if the user does not want to change the default value of MPLLCON
 register, the user should write the same value into MPLLCON register.

第三处时钟设置代码:
 
第三处是在C函数armboot_start里调用int board_init (void)初始化化的,来看代码:

int board_init (void)

{

    struct s3c24x0_clock_power * const clk_power =

                    s3c24x0_get_base_clock_power();

    struct s3c24x0_gpio * const gpio = s3c24x0_get_base_gpio();

    /* to reduce PLL lock time, adjust the LOCKTIME register */

    clk_power->LOCKTIME = 0xFFFFFF;

    /* configure MPLL */

    clk_power->MPLLCON = ((M_MDIV << 12) + (M_PDIV << 4) + M_SDIV);

    /* some delay between MPLL and UPLL */

    delay (4000);

    /* configure UPLL */

    clk_power->UPLLCON = ((U_M_MDIV << 12) + (U_M_PDIV << 4) + U_M_SDIV);

    /* some delay between MPLL and UPLL */

    delay (8000);

  • 1
  • 2
  • 下一页

相关内容