DSP281x_CpuTimers.h
上传用户:qingfan3
上传日期:2014-10-27
资源大小:31439k
文件大小:6k
源码类别:

DSP编程

开发平台:

C/C++

  1. //###########################################################################
  2. //
  3. // FILE:    DSP281x_CpuTimers.h
  4. //
  5. // TITLE:   DSP281x CPU 32-bit Timers Register Definitions.
  6. //
  7. // NOTES:   CpuTimer1 and CpuTimer2 are reserved for use with DSP BIOS and
  8. //          other realtime operating systems.  
  9. //
  10. //          Do not use these two timers in your application if you ever plan
  11. //          on integrating DSP-BIOS or another realtime OS. 
  12. //
  13. //          For this reason, the code to manipulate these two timers is
  14. //          commented out and not used in these examples.
  15. //
  16. //###########################################################################
  17. //
  18. //  Ver | dd mmm yyyy | Who  | Description of changes
  19. // =====|=============|======|===============================================
  20. //  1.00| 11 Sep 2003 | L.H. | Changes since previous version (v.58 Alpha)
  21. //      |             |      | Corrected the definition of the TCR register
  22. //###########################################################################
  23. #ifndef DSP281x_CPU_TIMERS_H
  24. #define DSP281x_CPU_TIMERS_H
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. //---------------------------------------------------------------------------
  29. // CPU Timer Register Bit Definitions:
  30. //
  31. //
  32. // TCR: Control register bit definitions:
  33. struct  TCR_BITS {          // bits  description
  34.    Uint16    rsvd1:4;       // 3:0   reserved
  35.    Uint16    TSS:1;         // 4     Timer Start/Stop
  36.    Uint16    TRB:1;         // 5     Timer reload
  37.    Uint16    rsvd2:4;       // 9:6   reserved
  38.    Uint16    SOFT:1;        // 10    Emulation modes
  39.    Uint16    FREE:1;        // 11
  40.    Uint16    rsvd3:2;       // 12:13 reserved
  41.    Uint16    TIE:1;         // 14    Output enable
  42.    Uint16    TIF:1;         // 15    Interrupt flag
  43. }; 
  44. union TCR_REG {
  45.    Uint16           all;
  46.    struct TCR_BITS  bit;
  47. };
  48. // TPR: Pre-scale low bit definitions:
  49. struct  TPR_BITS {        // bits  description
  50.    Uint16     TDDR:8;     // 7:0   Divide-down low
  51.    Uint16     PSC:8;      // 15:8  Prescale counter low
  52. };
  53. union TPR_REG {
  54.    Uint16           all;
  55.    struct TPR_BITS  bit;
  56. };
  57. // TPRH: Pre-scale high bit definitions:
  58. struct  TPRH_BITS {       // bits  description
  59.    Uint16     TDDRH:8;      // 7:0   Divide-down high
  60.    Uint16     PSCH:8;       // 15:8  Prescale counter high
  61. };
  62. union TPRH_REG {
  63.    Uint16           all;
  64.    struct TPRH_BITS bit;
  65. };
  66. // TIM, TIMH: Timer register definitions:
  67. struct TIM_REG {
  68.    Uint16  LSW;
  69.    Uint16  MSW;
  70. };
  71. union TIM_GROUP {
  72.    Uint32          all;
  73.    struct TIM_REG  half;
  74. };
  75. // PRD, PRDH: Period register definitions:
  76. struct PRD_REG {
  77.    Uint16  LSW;
  78.    Uint16  MSW;
  79. };
  80. union PRD_GROUP {
  81.    Uint32          all;
  82.    struct PRD_REG  half;
  83. };
  84. //---------------------------------------------------------------------------
  85. // CPU Timer Register File:
  86. //
  87. struct CPUTIMER_REGS {
  88.    union TIM_GROUP TIM;   // Timer counter register
  89.    union PRD_GROUP PRD;   // Period register
  90.    union TCR_REG   TCR;   // Timer control register
  91.    Uint16          rsvd1; // reserved
  92.    union TPR_REG   TPR;   // Timer pre-scale low
  93.    union TPRH_REG  TPRH;  // Timer pre-scale high
  94. };
  95. //---------------------------------------------------------------------------
  96. // CPU Timer Support Variables:
  97. //
  98. struct CPUTIMER_VARS {
  99.    volatile struct  CPUTIMER_REGS  *RegsAddr;
  100.    Uint32    InterruptCount;
  101.    float   CPUFreqInMHz;
  102.    float   PeriodInUSec;
  103. };
  104. //---------------------------------------------------------------------------
  105. // Function prototypes and external definitions:
  106. //
  107. void InitCpuTimers(void);
  108. void ConfigCpuTimer(struct CPUTIMER_VARS *Timer, float Freq, float Period);
  109. extern volatile struct CPUTIMER_REGS CpuTimer0Regs;
  110. extern struct CPUTIMER_VARS CpuTimer0;
  111. // CpuTimer 1 and CpuTimer2 are reserved for DSP BIOS & other RTOS
  112. //extern volatile struct CPUTIMER_REGS CpuTimer1Regs;
  113. //extern volatile struct CPUTIMER_REGS CpuTimer2Regs;
  114. //extern struct CPUTIMER_VARS CpuTimer1;
  115. //extern struct CPUTIMER_VARS CpuTimer2;
  116. //---------------------------------------------------------------------------
  117. // Usefull Timer Operations:
  118. //
  119. // Start Timer:
  120. #define StartCpuTimer0()  CpuTimer0Regs.TCR.bit.TSS = 0
  121. // Stop Timer:
  122. #define StopCpuTimer0()   CpuTimer0Regs.TCR.bit.TSS = 1
  123. // Reload Timer With period Value:
  124. #define ReloadCpuTimer0() CpuTimer0Regs.TCR.bit.TRB = 1
  125. // Read 32-Bit Timer Value:
  126. #define ReadCpuTimer0Counter() CpuTimer0Regs.TIM.all
  127. // Read 32-Bit Period Value:
  128. #define ReadCpuTimer0Period() CpuTimer0Regs.PRD.all
  129. // CpuTimer 1 and CpuTimer2 are reserved for DSP BIOS & other RTOS
  130. // Do not use these two timers if you ever plan on integrating 
  131. // DSP-BIOS or another realtime OS. 
  132. //
  133. // For this reason, the code to manipulate these two timers is
  134. // commented out and not used in these examples.
  135. // Start Timer:
  136. //#define StartCpuTimer1()  CpuTimer1Regs.TCR.bit.TSS = 0
  137. //#define StartCpuTimer2()  CpuTimer2Regs.TCR.bit.TSS = 0
  138. // Stop Timer:
  139. //#define StopCpuTimer1()   CpuTimer1Regs.TCR.bit.TSS = 1
  140. //#define StopCpuTimer2()   CpuTimer2Regs.TCR.bit.TSS = 1
  141. // Reload Timer With period Value:
  142. //#define ReloadCpuTimer1() CpuTimer1Regs.TCR.bit.TRB = 1
  143. //#define ReloadCpuTimer2() CpuTimer2Regs.TCR.bit.TRB = 1
  144. // Read 32-Bit Timer Value:
  145. //#define ReadCpuTimer1Counter() CpuTimer1Regs.TIM.all
  146. //#define ReadCpuTimer2Counter() CpuTimer2Regs.TIM.all
  147. // Read 32-Bit Period Value:
  148. //#define ReadCpuTimer1Period() CpuTimer1Regs.PRD.all
  149. //#define ReadCpuTimer2Period() CpuTimer2Regs.PRD.all
  150. #ifdef __cplusplus
  151. }
  152. #endif /* extern "C" */
  153. #endif  // end of DSP281x_CPU_TIMERS_H definition
  154. //===========================================================================
  155. // No more.
  156. //===========================================================================