Transceiver.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 Connectable::*;
  27. import FIFO::*;
  28. import GetPut::*;
  29. import Controls::*;
  30. import DataTypes::*;
  31. import Interfaces::*;
  32. import Parameters::*;
  33. import Receiver::*;
  34. import Transmitter::*;
  35. import TXController::*;
  36. import RXController::*;
  37. import LibraryFunctions::*;
  38. interface WiFiTransmitter;
  39.    method Action txStart(TXVector txVec);    // fromMAC 
  40.    method Action txData(Bit#(8) inData);    // fromMAC
  41.    method Action txEnd();                    // fromMAC
  42.    interface Get#(DACMesg#(TXFPIPrec,TXFPFPrec)) out; // to DAC
  43. endinterface
  44. interface WiFiReceiver;
  45.    interface Put#(SynchronizerMesg#(RXFPIPrec,RXFPFPrec)) in;
  46.    interface Get#(Bit#(12)) outLength;
  47.    interface Get#(Bit#(8))  outData;
  48. endinterface
  49. interface WiFiTransceiver;
  50.    interface WiFiTransmitter transmitter;
  51.    interface WiFiReceiver receiver;
  52. endinterface      
  53. (* synthesize *)
  54. module mkWiFiTransmitter(WiFiTransmitter);
  55.    // state element
  56.    let tx_controller <- mkTXController;
  57.    let transmitter <- mkTransmitterInstance;
  58.    
  59.    // make connection
  60.    mkConnection(tx_controller.out,transmitter.in);
  61.    
  62.    // methods
  63.    method Action txStart(TXVector txVec);
  64.       tx_controller.txStart(txVec);
  65.    endmethod
  66.    
  67.    method Action txData(Bit#(8) inData);
  68.       tx_controller.txData(inData);
  69.    endmethod
  70.    
  71.    method Action txEnd();
  72.       tx_controller.txEnd;
  73.    endmethod
  74.    
  75.    interface out = transmitter.out;
  76. endmodule
  77. (* synthesize *)
  78. module mkWiFiReceiver(WiFiReceiver);
  79.    // state elements
  80.    let rx_controller <- mkRXController;
  81.    let receiver_preFFT <- mkReceiverPreFFTInstance;
  82.    let receiver_preDescrambler <- mkReceiverPreDescramblerInstance;
  83.    let descrambler <- mkDescramblerInstance;
  84.    
  85.    // connections
  86.    mkConnectionPrint("PreFFT -> RXCtrl0",receiver_preFFT.out,rx_controller.inFromPreFFT);
  87.    mkConnectionPrint("RXCtrl0 -> PreDes",rx_controller.outToPreDescrambler,receiver_preDescrambler.in);
  88.    mkConnectionPrint("PreDes -> RXCtrl1",receiver_preDescrambler.out,rx_controller.inFromPreDescrambler);
  89.    mkConnectionPrint("RXCtrl1 -> Desc",rx_controller.outToDescrambler,descrambler.in);
  90.    mkConnectionPrint("Desc -> RXCtrl2",descrambler.out,rx_controller.inFromDescrambler);
  91. //    mkConnection(receiver_preFFT.out,rx_controller.inFromPreFFT);
  92. //    mkConnection(rx_controller.outToPreDescrambler,receiver_preDescrambler.in);
  93. //    mkConnection(receiver_preDescrambler.out,rx_controller.inFromPreDescrambler);
  94. //    mkConnection(rx_controller.outToDescrambler,descrambler.in);
  95. //    mkConnection(descrambler.out,rx_controller.inFromDescrambler);
  96.    
  97.    // methods
  98.    interface in = receiver_preFFT.in;
  99.    interface outLength = rx_controller.outLength;
  100.    interface outData = rx_controller.outData;
  101. endmodule
  102. (* synthesize *)
  103. module mkTransceiver(WiFiTransceiver);
  104.    let wifiTransmitter <- mkWiFiTransmitter;
  105.    let wifiReceiver    <- mkWiFiReceiver;
  106.    
  107.    interface transmitter = wifiTransmitter;
  108.    interface receiver    = wifiReceiver;
  109.       
  110. endmodule
  111.