DataTypes.bsv
上传用户:aoptech
上传日期:2014-09-22
资源大小:784k
文件大小:4k
源码类别:

3G开发

开发平台:

Others

  1. //----------------------------------------------------------------------//
  2. // The MIT License 
  3. // 
  4. // Copyright (c) 2007 Alfred Man Cheuk Ng, mcn02@mit.edu 
  5. // 
  6. // Permission is hereby granted, free of charge, to any person 
  7. // obtaining a copy of this software and associated documentation 
  8. // files (the "Software"), to deal in the Software without 
  9. // restriction, including without limitation the rights to use,
  10. // copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. // copies of the Software, and to permit persons to whom the
  12. // Software is furnished to do so, subject to the following conditions:
  13. // 
  14. // The above copyright notice and this permission notice shall be
  15. // included in all copies or substantial portions of the Software.
  16. // 
  17. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  19. // OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  20. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  21. // HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  22. // WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  23. // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  24. // OTHER DEALINGS IN THE SOFTWARE.
  25. //----------------------------------------------------------------------//
  26. import Controls::*;
  27. import FPComplex::*;
  28. import Vector::*;
  29. // Generic OFDM Message
  30. typedef struct{
  31.   ctrl_t control;
  32.   data_t data;
  33. } Mesg#(type ctrl_t, type data_t) deriving (Eq, Bits);
  34. // OFDM symbol
  35. typedef Vector#(n, FPComplex#(i_prec, f_prec)) 
  36.         Symbol#(numeric type n, 
  37. numeric type i_prec, 
  38. numeric type f_prec); 
  39. // Viterbi Metric
  40. typedef Bit#(3) ViterbiMetric;
  41. typedef Vector#(o_sz,ViterbiMetric)
  42.    DepunctData#(numeric type o_sz);
  43. // Transmitter Mesg Types
  44. typedef Mesg#(ctrl_t, Bit#(n)) 
  45. ScramblerMesg#(type ctrl_t, 
  46.        numeric type n);
  47. typedef Mesg#(ctrl_t, Bit#(n)) 
  48.         EncoderMesg#(type ctrl_t, 
  49.      numeric type n);
  50. typedef Mesg#(ctrl_t, Bit#(n)) 
  51.         InterleaverMesg#(type ctrl_t, 
  52.  numeric type n);
  53. typedef Mesg#(ctrl_t, Bit#(n)) 
  54.         MapperMesg#(type ctrl_t, 
  55.     numeric type n);
  56. typedef Mesg#(ctrl_t, Symbol#(n,i_prec,f_prec))
  57.         PilotInsertMesg#(type ctrl_t, 
  58.  numeric type n,
  59.  numeric type i_prec,
  60.  numeric type f_prec);
  61. typedef Mesg#(ctrl_t, Symbol#(n,i_prec,f_prec)) 
  62.         IFFTMesg#(type ctrl_t, 
  63.   numeric type n, 
  64.   numeric type i_prec, 
  65.   numeric type f_prec);
  66. typedef Mesg#(ctrl_t, Symbol#(n,i_prec,f_prec))
  67. CPInsertMesg#(type ctrl_t,
  68.       numeric type n,
  69.       numeric type i_prec,
  70.       numeric type f_prec);
  71. typedef FPComplex#(i_prec,f_prec)
  72. DACMesg#(numeric type i_prec,
  73.  numeric type f_prec);            
  74. // Receiver Mesg Types
  75. typedef FPComplex#(i_prec,f_prec)
  76. SynchronizerMesg#(numeric type i_prec,
  77.   numeric type f_prec);
  78. typedef Mesg#(SyncCtrl, FPComplex#(i_prec,f_prec))
  79. UnserializerMesg#(numeric type i_prec,
  80.   numeric type f_prec);
  81. // Bool = isNewPacket
  82. typedef Mesg#(Bool, Symbol#(n,i_prec,f_prec)) 
  83.         SPMesgFromSync#(numeric type n,
  84. numeric type i_prec,
  85. numeric type f_prec);
  86. typedef ctrl_t 
  87.         SPMesgFromRXController#(type ctrl_t); 
  88. typedef Mesg#(ctrl_t, Symbol#(n,i_prec,f_prec)) 
  89.         FFTMesg#(type ctrl_t, 
  90.  numeric type n, 
  91.  numeric type i_prec, 
  92.  numeric type f_prec);
  93. typedef Mesg#(ctrl_t, Symbol#(n,i_prec,f_prec)) 
  94.         ChannelEstimatorMesg#(type ctrl_t, 
  95.       numeric type n, 
  96.       numeric type i_prec, 
  97.       numeric type f_prec);
  98.       
  99. typedef Mesg#(ctrl_t, Symbol#(n, i_prec, f_prec))    
  100.         DemapperMesg#(type ctrl_t, 
  101.       numeric type n,
  102.       numeric type i_prec, 
  103.       numeric type f_prec);
  104. typedef Mesg#(ctrl_t, Vector#(n, decode_t))
  105. DeinterleaverMesg#(type ctrl_t,
  106.    numeric type n,
  107.    type decode_t);
  108. typedef Mesg#(ctrl_t, Vector#(n, decode_t)) 
  109.         DecoderMesg#(type ctrl_t, 
  110.      numeric type n,
  111.      type decode_t);
  112. typedef ScramblerMesg#(ctrl_t, n)                  
  113.         DescramblerMesg#(type ctrl_t, 
  114.  numeric type n);