[原创] TMS320F28335项目开发记录7_28335之时钟

风雨也无晴   2015-3-30 11:52 楼主

TMS320F28335时钟

    TMS320F28335上有一个基于PLL电路的片上时钟模块,如图1所示,为CPU及外设提供时钟有两种方式:

      一种是用外部的时钟源,将其连接到X1引脚上或者XCLKIN引脚上,X2接地;

      另一种是使用振荡器产生时钟,用30MHz的晶体和两个20PF的电容组成的电路分别连接到X1和X2引脚上,XCLKIN引脚接地。

    我们常用第二种来产生时钟。此时钟将通过一个内部PLL锁相环电路,进行倍频。由于F28335的最大工作频率是150M,所以倍频值最大是5。其中倍频值由PLLCR的低四位和PLLSTS的第7、8位来决定。其详细的倍频值可以参照TMS320F28335的Datasheet。


三种时钟输入的接法:





下面是InitSysCtrl函数中调用的InitPll函数进行时钟设置:

  1. //---------------------------------------------------------------------------  
  2. // This function initializes the PLLCR register.  
  3.   
  4. void InitPll(Uint16 val, Uint16 divsel)  
  5. {  
  6.   
  7.    // Make sure the PLL is not running in limp mode  
  8.    if (SysCtrlRegs.PLLSTS.bit.MCLKSTS != 0)  
  9.    {  
  10.       // Missing external clock has been detected  
  11.       // Replace this line with a call to an appropriate  
  12.       // SystemShutdown(); function.  
  13.       asm("        ESTOP0");  
  14.    }  
  15.   
  16.    // DIVSEL MUST be 0 before PLLCR can be changed from  
  17.    // 0x0000. It is set to 0 by an external reset XRSn  
  18.    // This puts us in 1/4  
  19.    if (SysCtrlRegs.PLLSTS.bit.DIVSEL != 0)  
  20.    {  
  21.        EALLOW;  
  22.        SysCtrlRegs.PLLSTS.bit.DIVSEL = 0;  
  23.        EDIS;  
  24.    }  
  25.   
  26.    // Change the PLLCR  
  27.    if (SysCtrlRegs.PLLCR.bit.DIV != val)  
  28.    {  
  29.   
  30.       EALLOW;  
  31.       // Before setting PLLCR turn off missing clock detect logic  
  32.       SysCtrlRegs.PLLSTS.bit.MCLKOFF = 1;  
  33.       SysCtrlRegs.PLLCR.bit.DIV = val;  
  34.       EDIS;  
  35.   
  36.       // Optional: Wait for PLL to lock.  
  37.       // During this time the CPU will switch to OSCCLK/2 until  
  38.       // the PLL is stable.  Once the PLL is stable the CPU will  
  39.       // switch to the new PLL value.  
  40.       //  
  41.       // This time-to-lock is monitored by a PLL lock counter.  
  42.       //  
  43.       // Code is not required to sit and wait for the PLL to lock.  
  44.       // However, if the code does anything that is timing critical,  
  45.       // and requires the correct clock be locked, then it is best to  
  46.       // wait until this switching has completed.  
  47.   
  48.       // Wait for the PLL lock bit to be set.  
  49.   
  50.       // The watchdog should be disabled before this loop, or fed within  
  51.       // the loop via ServiceDog().  
  52.   
  53.       // Uncomment to disable the watchdog  
  54.       DisableDog();  
  55.   
  56.       while(SysCtrlRegs.PLLSTS.bit.PLLLOCKS != 1)  
  57.       {  
  58.           // Uncomment to service the watchdog  
  59.           // ServiceDog();  
  60.       }  
  61.   
  62.       EALLOW;  
  63.       SysCtrlRegs.PLLSTS.bit.MCLKOFF = 0;  
  64.       EDIS;  
  65.     }  
  66.   
  67.     // If switching to 1/2  
  68.     if((divsel == 1)||(divsel == 2))  
  69.     {  
  70.         EALLOW;  
  71.         SysCtrlRegs.PLLSTS.bit.DIVSEL = divsel;  
  72.         EDIS;  
  73.     }  
  74.   
  75.     // If switching to 1/1  
  76.     // * First go to 1/2 and let the power settle  
  77.     //   The time required will depend on the system, this is only an example  
  78.     // * Then switch to 1/1  
  79.     if(divsel == 3)  
  80.     {  
  81.         EALLOW;  
  82.         SysCtrlRegs.PLLSTS.bit.DIVSEL = 2;  
  83.         DELAY_US(50L);  
  84.         SysCtrlRegs.PLLSTS.bit.DIVSEL = 3;  
  85.         EDIS;  
  86.     }  
  87. }  

如果我们希望DSP工作在某一个频率下,我们就可以对Uint16 val, Uint16 divsel两个参数进行设定。

说白了就相当于乘10,除2 (30*10/2 = 150MHZ)

更详细内容参考:

http://wenku.baidu.com/link?url=vL0bh97ETShHDNcARicm11dkcvSac4VbUE-mm9uvkZSxq4wDpYi3x9Xxevtq7moLFlBX3KSYSQ6icRGo21ePg7MWfu8hI4cnfrn_aAFRUUi


路漫漫其修远兮,吾将上下而求索!(今天,你努力了吗?还记得你的目标吗?)

回复评论

暂无评论,赶紧抢沙发吧
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复