CCS2.2和CCS3.1在读写GEL文件上的区别之二

下面具体谈一下GEL文件的执行过程。使用CCSStudio Setup工具,可以为在系统配置中的每一个处理器指定一个启动GEL 件。当CCSStudio启动时,GEL 件加载到PC机的内存中,由CCS根据加载的GEL文件对目标板进行初始化。在CCS2.2,主机和目标板的初始化工作都在GEL文件的Startup()函数中执行,而CCS2.2必须在打开时就会连接目标板同时进行初始化。但是对于支持Connect/DisconnectCCSStudio例如CCS3.1,打开后目标板并没有被自动连接,这样的GEL文件中的初始化程序并没有正确执行,因为CCSStudio启动时和目标处理器是断开的。当Startup()函数试图访问目标处理器时会出错。因此在CCS3.1中需要回调函数来重新执行初始化。下面可以将SEEDDM642.gelEVMDM642.gel做一个对比。

首先是SEEDDM642.gel中的StartUp()

  1. StartUp()  
  2. {  
  3.     setup_memory_map();  
  4.     GEL_Reset();    
  5.     init_emif();  
  6. }  

EVMDM642.gel中的StartUp()

 

  1. StartUp()  
  2. {  
  3.     setup_memory_map();  
  4.   
  5.     /*------------------------------------------------------*/  
  6.     /* Uncomment the OnTargetConnect() call for CCS 2.X     */  
  7.     /* support.                                             */  
  8.     /*                                                      */  
  9.     /*                                                      */  
  10.     /*------------------------------------------------------*/  
  11.     //OnTargetConnect();  
  12. }  

从这个函数的对比就可以看到前一个在StartUp()中就已经完成了GELemif的初始化工作,而在后一个中就没有,这一点和前面说的软件打开时目标板的连接方式刚好一致。

因此在CCS3.1gel文件中就多了这样一段函数:

[c-sharp]  view plain copy print ?
  1. OnTargetConnect()  
  2. {  
  3.     /*------------------------------------------------------*/  
  4.     /* GEL_Reset() is used to deal with the worst case      */  
  5.     /* senario of unknown target state.  If for some reason */  
  6.     /* a reset is not desired upon target connection,       */  
  7.     /* GEL_Reset() may be removed and replaced with         */  
  8.     /* something "less brutal" like a cache initialization  */  
  9.     /* function.                                            */  
  10.     /*------------------------------------------------------*/  
  11.     //GEL_Reset();  
  12.   
  13.     init_emif();  
  14.   
  15.     GEL_TextOut("GEL StartUp Complete./n");  
  16. }  

即在目标板连接的时候进行初始化操作,由此就可以理解为什么前面弹出的警告了,将SEEDDM642.gel对应的部分修改后在运行警告消失,即在软件打开时不对芯片初始化,改在芯片连接时进行。

    同样可以看一下gel文件中的其他函数:

  1. /*--------------------------------------------------------------*/  
  2. /* OnReset()                                                    */  
  3. /* This function is called by CCS when you do Debug->Resest.    */  
  4. /* The goal is to put the C6x into a known good state with      */  
  5. /* respect to cache, edma and interrupts.                       */  
  6. /*--------------------------------------------------------------*/  
  7. OnReset( int nErrorCode )  
  8. {  
  9.     init_emif();  
  10. }  
  11.   
  12. /*--------------------------------------------------------------*/  
  13. /* OnPreFileLoaded()                                            */  
  14. /* This function is called automatically when the 'Load Program'*/  
  15. /* Menu item is selected.                                       */  
  16. /*--------------------------------------------------------------*/  
  17. OnPreFileLoaded()  
  18. {  
  19.     /*------------------------------------------------------*/  
  20.     /* GEL_Reset() is used to deal with the worst case      */  
  21.     /* senario of unknown target state.  If for some reason */  
  22.     /* a reset is not desired upon target connection,       */  
  23.     /* GEL_Reset() may be removed and replaced with         */  
  24.     /* something "less brutal" like a cache initialization  */  
  25.     /* function.                                            */  
  26.     /*------------------------------------------------------*/  
  27.     //GEL_Reset();  
  28.   
  29.     flush_cache();  
  30.     IER = 0;  
  31.     IFR = 0;  
  32.     init_emif();  
  33. }  
  34.   
  35. /*--------------------------------------------------------------*/  
  36. /* OnRestart()                                                  */  
  37. /* This function is called by CCS when you do Debug->Restart.   */  
  38. /* The goal is to put the C6x into a known good state with      */  
  39. /* respect to cache, edma and interrupts.                       */  
  40. /* Failure to do this can cause problems when you restart and   */  
  41. /* run your application code multiple times.  This is different */  
  42. /* then OnPreFileLoaded() which will do a GEL_Reset() to get the*/  
  43. /* C6x into a known good state.                                 */  
  44. /*--------------------------------------------------------------*/  
  45. OnRestart( int nErrorCode )  
  46. {  
  47.     /*------------------------------------------------------*/  
  48.     /* Turn off L2 for all EMIFA CE spaces.  App should     */  
  49.     /* manage these for coherancy in the application.       */  
  50.     /* GEL_TextOut("Turn off cache segment/n");             */  
  51.     /*------------------------------------------------------*/  
  52.     *(int*)0x01848200 = 0;          // MAR0  
  53.     *(int*)0x01848204 = 0;          // MAR1  
  54.     *(int*)0x01848208 = 0;          // MAR2  
  55.     *(int*)0x0184820c = 0;          // MAR3  
  56.   
  57.     /*------------------------------------------------------*/  
  58.     /* Disable EDMA events and interrupts and clear any     */  
  59.     /* pending events.                                      */  
  60.     /* GEL_TextOut("Disable EDMA event/n");                 */  
  61.     /*------------------------------------------------------*/  
  62.     *(int*)0x01A0FFA8 = 0;          // CIERH  
  63.     *(int*)0x01A0FFB4 = 0;          // EERH  
  64.     *(int*)0x01A0FFB8 = 0XFFFFFFFF; // ECRH  
  65.   
  66.     *(int*)0x01A0FFE8 = 0;          // CIERL  
  67.     *(int*)0x01A0FFF4 = 0;          // EERL  
  68.     *(int*)0x01A0FFF8 = 0xFFFFFFFF; // ECRL  
  69.   
  70.     /* Disable other interrupts */  
  71.     IER = 0;  
  72.     IFR = 0;  
  73. }  

本文转自emouse博客园博客,原文链接:http://www.cnblogs.com/emouse/archive/2010/03/21/2198234.html,如需转载请自行联系原作者

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值