智能车制作

 找回密码
 注册

扫一扫,访问微社区

查看: 7771|回复: 20
打印 上一主题 下一主题

飞思卡尔双核单片机的超频源代码及注释(XS128)

[复制链接]

80

主题

1045

帖子

0

精华

跨届大侠

北京龙邱智能科技有限公司

Rank: 10Rank: 10Rank: 10

积分
10332

论坛元老奖章

QQ
威望
2905
贡献
6151
兑换币
4515
注册时间
2008-6-7
在线时间
638 小时
跳转到指定楼层
1#
发表于 2009-3-12 12:00:36 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
本帖最后由 chiusir 于 2009-4-21 11:10 编辑

**************************************************************************************
龙丘智能车综合开发平台V3.0  
Designed by 龙丘
E-mail:chiusir@163.com      
软件版本:V1.2
最后更新:2009年4月21日           
相关信息参考下列地址:
博客:  http://longqiu.21ic.org
淘宝店:http://shop36265907.taobao.com
------------------------------------
Code Warrior 5.0
Target : MC9S12XS128
Crystal: 16.000Mhz
============================================   
本程序主要包括以下功能:
1.设定系统工作在xxMHZ bus clock时钟下;
2.测试龙丘最小系统开发板超频性能:
  如果LED闪烁,说明芯片正常工作;
  否则,说明芯片没有正常工作,请检查系统设计;
3.也可以测试清华大学最小系统板的超频性能,
  LED计数,根据灯亮可以读取系统循环了多少次
*****************************************************************************************/
#i nclude <hidef.h>      /* common defines and macros */
#i nclude <MC9S12XS128.h>     /* derivative information */
#pragma LINK_INFO DERIVATIVE "mc9s12xs128"
void delayms(int ms)
{   
   int ii,jj;
   if (ms<1) ms=1;
   for(ii=0;ii<ms;ii++)
     for(jj=0;jj<3338;jj++);    //40MHz--1ms      
}
void SetBusCLK_16M(void)
{   
    CLKSEL=0X00;    // disengage PLL to system
    PLLCTL_PLLON=1;   // turn on PLL
    SYNR=0x00 | 0x01;  // VCOFRQ[7:6];SYNDIV[5:0]
                        // fVCO= 2*fOSC*(SYNDIV + 1)/(REFDIV + 1)
                        // fPLL= fVCO/(2 × POSTDIV)
                        // fBUS= fPLL/2
                        // VCOCLK Frequency Ranges  VCOFRQ[7:6]
                        // 32MHz <= fVCO <= 48MHz    00
                        // 48MHz <  fVCO <= 80MHz    01
                        // Reserved                  10
                        // 80MHz <  fVCO <= 120MHz   11   
    REFDV=0x80 | 0x01;  // REFFRQ[7:6];REFDIV[5:0]
                        // fREF=fOSC/(REFDIV + 1)
                        // REFCLK Frequency Ranges  REFFRQ[7:6]
                        // 1MHz <= fREF <=  2MHz       00
                        // 2MHz <  fREF <=  6MHz       01
                        // 6MHz <  fREF <= 12MHz       10
                        // fREF >  12MHz               11                        
                        // pllclock=2*osc*(1+SYNR)/(1+REFDV)=32MHz;
    POSTDIV=0x00;       // 4:0, fPLL= fVCO/(2xPOSTDIV)
                        // If POSTDIV = $00 then fPLL is identical to fVCO (divide by one).
    _asm(nop);          // BUS CLOCK=16M
    _asm(nop);
    while(!(CRGFLG_LOCK==1));   //when pll is steady ,then use it;
    CLKSEL_PLLSEL =1;          //engage PLL to system;
}
void SetBusCLK_32M(void)
{   
    CLKSEL=0X00;    // disengage PLL to system
    PLLCTL_PLLON=1;   // turn on PLL
    SYNR =0x40 | 0x03;  // pllclock=2*osc*(1+SYNR)/(1+REFDV)=64MHz;                     
    REFDV=0x80 | 0x01;
    POSTDIV=0x00;  
    _asm(nop);          // BUS CLOCK=32M
    _asm(nop);
    while(!(CRGFLG_LOCK==1));   //when pll is steady ,then use it;
    CLKSEL_PLLSEL =1;          //engage PLL to system;
}
void SetBusCLK_40M(void)
{   
    CLKSEL=0X00;    //disengage PLL to system
    PLLCTL_PLLON=1;   //turn on PLL
    SYNR =0xc0 | 0x04;                        
    REFDV=0x80 | 0x01;
    POSTDIV=0x00;       //pllclock=2*osc*(1+SYNR)/(1+REFDV)=80MHz;
    _asm(nop);          //BUS CLOCK=40M
    _asm(nop);
    while(!(CRGFLG_LOCK==1));   //when pll is steady ,then use it;
    CLKSEL_PLLSEL =1;          //engage PLL to system;
}
void SetBusCLK_48M(void)
{   
    CLKSEL=0X00;    //disengage PLL to system
    PLLCTL_PLLON=1;   //turn on PLL
    SYNR =0xc0 | 0x05;                        
    REFDV=0x80 | 0x01;
    POSTDIV=0x00;       //pllclock=2*osc*(1+SYNR)/(1+REFDV)=96MHz;
    _asm(nop);          //BUS CLOCK=48M
    _asm(nop);
    while(!(CRGFLG_LOCK==1));   //when pll is steady ,then use it;
    CLKSEL_PLLSEL =1;          //engage PLL to system;
}
void SetBusCLK_64M(void)
{   
    CLKSEL=0X00;    //disengage PLL to system
    PLLCTL_PLLON=1;   //turn on PLL
    SYNR =0xc0 | 0x07;                        
    REFDV=0x80 | 0x01;
    POSTDIV=0x00;       //pllclock=2*osc*(1+SYNR)/(1+REFDV)=128MHz;
    _asm(nop);          //BUS CLOCK=64M
    _asm(nop);
    while(!(CRGFLG_LOCK==1));   //when pll is steady ,then use it;
    CLKSEL_PLLSEL =1;          //engage PLL to system;
}
void SetBusCLK_80M(void)
{   
    CLKSEL=0X00;    //disengage PLL to system
    PLLCTL_PLLON=1;   //turn on PLL
    SYNR =0xc0 | 0x09;                        
    REFDV=0x80 | 0x01;
    POSTDIV=0x00;       //pllclock=2*osc*(1+SYNR)/(1+REFDV)=160MHz;
    _asm(nop);          //BUS CLOCK=80M
    _asm(nop);
    while(!(CRGFLG_LOCK==1));   //when pll is steady ,then use it;
    CLKSEL_PLLSEL =1;          //engage PLL to system;
}
void SetBusCLK_88M(void)
{   
    CLKSEL=0X00;    //disengage PLL to system
    PLLCTL_PLLON=1;   //turn on PLL
    SYNR =0xc0 | 0x0a;                        
    REFDV=0x80 | 0x01;
    POSTDIV=0x00;       //pllclock=2*osc*(1+SYNR)/(1+REFDV)=176MHz;
    _asm(nop);          //BUS CLOCK=88M
    _asm(nop);
    while(!(CRGFLG_LOCK==1));   //when pll is steady ,then use it;
    CLKSEL_PLLSEL =1;          //engage PLL to system;
}
void SetBusCLK_96M(void)
{   
    CLKSEL=0X00;    //disengage PLL to system
    PLLCTL_PLLON=1;   //turn on PLL
    SYNR =0xc0 | 0x0b;                        
    REFDV=0x80 | 0x01;
    POSTDIV=0x00;       //pllclock=2*osc*(1+SYNR)/(1+REFDV)=192MHz;
    _asm(nop);          //BUS CLOCK=96M
    _asm(nop);
    while(!(CRGFLG_LOCK==1));   //when pll is steady ,then use it;
    CLKSEL_PLLSEL =1;          //engage PLL to system;
}
void SetBusCLK_104M(void)
{   
    CLKSEL=0X00;    //disengage PLL to system
    PLLCTL_PLLON=1;   //turn on PLL
    SYNR =0xc0 | 0x0c;                        
    REFDV=0x80 | 0x01;
    POSTDIV=0x00;       //pllclock=2*osc*(1+SYNR)/(1+REFDV)=208MHz;
    _asm(nop);          //BUS CLOCK=104M
    _asm(nop);
    while(!(CRGFLG_LOCK==1));   //when pll is steady ,then use it;
    CLKSEL_PLLSEL =1;          //engage PLL to system;
}
void SetBusCLK_120M(void)
{   
    CLKSEL=0X00;    //disengage PLL to system
    PLLCTL_PLLON=1;   //turn on PLL
    SYNR =0xc0 | 0x0d;                        
    REFDV=0x80 | 0x01;
    POSTDIV=0x00;       //pllclock=2*osc*(1+SYNR)/(1+REFDV)=240MHz;
    _asm(nop);          //BUS CLOCK=120M
    _asm(nop);
    while(!(CRGFLG_LOCK==1));   //when pll is steady ,then use it;
    CLKSEL_PLLSEL =1;          //engage PLL to system;
}
void main(void) {
  /* put your own code here */
  unsigned char LedCnt=0;
  
  SetBusCLK_96M();    // 此处选择待设定的总线频率
  DDRB=0xff;
  DDRA=0x01;
  PORTA=0XFE;
  PORTB=0XFE;
  
  EnableInterrupts;
  for(;;) {   
  
    LedCnt=(LedCnt>0XFE?0:++LedCnt);
    delayms(500);   // 修改延时以修改数据发送频率
   
    //低电平灯亮用这句,注释掉下面那句
    PORTB=~LedCnt;         // 测试清华版系统板
    PORTA_PA0=~PORTA_PA0;  // 测试龙丘最小系统板
    //PORTB_BIT7=~PORTB_BIT7;
    //高电平灯亮用这句,注释掉上面那句   
    //PORTB=LedCnt;  
  
  } /* wait forever */
  /* please make sure that you never leave this */
}

完整工程:/

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x

80

主题

1045

帖子

0

精华

跨届大侠

北京龙邱智能科技有限公司

Rank: 10Rank: 10Rank: 10

积分
10332

论坛元老奖章

QQ
威望
2905
贡献
6151
兑换币
4515
注册时间
2008-6-7
在线时间
638 小时
21#
 楼主| 发表于 2011-5-17 10:07:52 | 只看该作者
请教
1、为什么要用“|”?
SYNR =0xc0 | 0x0d;                        
REFDV=0x80 | 0x01;
2、为什么 ...
myb396 发表于 2010-5-4 11:07



    用|是为了后续修改更方便,只需要修改后面部分即可;
    asm是用做短暂的CPU空运行,等待锁相环稳定。
回复 支持 反对

使用道具 举报

1

主题

89

帖子

0

精华

中级会员

Rank: 3Rank: 3

积分
454
威望
315
贡献
75
兑换币
0
注册时间
2009-11-19
在线时间
32 小时
20#
发表于 2010-5-4 11:07:21 | 只看该作者
请教
1、为什么要用“|”?
SYNR =0xc0 | 0x0d;                        
REFDV=0x80 | 0x01;
2、为什么要加下面两行?
_asm(nop);          //BUS CLOCK=120M
_asm(nop);
回复 支持 反对

使用道具 举报

1

主题

89

帖子

0

精华

中级会员

Rank: 3Rank: 3

积分
454
威望
315
贡献
75
兑换币
0
注册时间
2009-11-19
在线时间
32 小时
19#
发表于 2010-5-4 11:07:13 | 只看该作者
请教
1、为什么要用“|”?
SYNR =0xc0 | 0x0d;                        
REFDV=0x80 | 0x01;
2、为什么要加下面两行?
_asm(nop);          //BUS CLOCK=120M
_asm(nop);
回复 支持 反对

使用道具 举报

1

主题

97

帖子

0

精华

金牌会员

Rank: 6Rank: 6

积分
1411
威望
544
贡献
825
兑换币
19
注册时间
2009-4-24
在线时间
21 小时
18#
发表于 2010-5-1 19:59:29 | 只看该作者
谢谢
回复 支持 反对

使用道具 举报

0

主题

302

帖子

0

精华

高级会员

Rank: 4

积分
591
威望
475
贡献
62
兑换币
0
注册时间
2010-3-19
在线时间
27 小时
17#
发表于 2010-4-18 16:23:49 | 只看该作者
真好啊 基本上看了一遍了  感谢啊
回复 支持 反对

使用道具 举报

0

主题

302

帖子

0

精华

高级会员

Rank: 4

积分
591
威望
475
贡献
62
兑换币
0
注册时间
2010-3-19
在线时间
27 小时
16#
发表于 2010-4-18 15:12:45 | 只看该作者
顶 太好了
回复 支持 反对

使用道具 举报

4

主题

167

帖子

0

精华

中级会员

Rank: 3Rank: 3

积分
436
威望
347
贡献
47
兑换币
2
注册时间
2008-12-20
在线时间
21 小时
15#
发表于 2010-4-17 20:54:39 | 只看该作者
顶上去
回复 支持 反对

使用道具 举报

14

主题

80

帖子

0

精华

金牌会员

Rank: 6Rank: 6

积分
1743
威望
887
贡献
310
兑换币
0
注册时间
2010-1-16
在线时间
273 小时
14#
发表于 2010-4-15 08:43:52 | 只看该作者
谢啦
回复 支持 反对

使用道具 举报

1

主题

97

帖子

0

精华

金牌会员

Rank: 6Rank: 6

积分
1411
威望
544
贡献
825
兑换币
19
注册时间
2009-4-24
在线时间
21 小时
13#
发表于 2010-4-15 02:22:41 | 只看该作者
回复 2# chiusir


   谢谢
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

关于我们|联系我们|小黑屋|智能车制作 ( 黑ICP备2022002344号

GMT+8, 2025-1-9 15:44 , Processed in 0.058877 second(s), 33 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表