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

3G开发

开发平台:

Others

  1. // The MIT License
  2. //
  3. // Copyright (c) 2006 Nirav Dave (ndave@csail.mit.edu)
  4. //
  5. // Permission is hereby granted, free of charge, to any person obtaining a copy
  6. // of this software and associated documentation files (the "Software"), to deal
  7. // in the Software without restriction, including without limitation the rights
  8. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. // copies of the Software, and to permit persons to whom the Software is
  10. // furnished to do so, subject to the following conditions:
  11. //
  12. // The above copyright notice and this permission notice shall be included in
  13. // all copies or substantial portions of the Software.
  14. //
  15. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  21. // THE SOFTWARE.
  22. // *************************************************************************
  23. //  Scrambler.bsv 
  24. // *************************************************************************
  25. import DataTypes::*;
  26. import Interfaces::*;
  27. import LibraryFunctions::*;
  28. import FIFO::*;
  29. interface Scrambler#(type n);
  30.    //inputs
  31.    method Action fromControl(RateData#(n) x);
  32.    //outputs
  33.    method ActionValue#(RateData#(n))  toEncoder(); 
  34. endinterface
  35. (* synthesize *)
  36. module mkScrambler_48(Scrambler#(24));
  37.    let _s <- mkScrambler();
  38.    return (_s);
  39. endmodule
  40. module mkScrambler(Scrambler#(n));
  41.   Reg#(Bit#(7))       seqR <- mkRegU;
  42.   FIFO#(RateData#(n)) outQ <- mkFIFO();
  43.   method Action fromControl(RateData#(n) x);
  44.      Bit#(7) headSeq = case (x.rate)
  45.   R1   : return 7'b1001011;
  46.   R2   : return 7'b1001011;
  47.   R4   : return 7'b1001011;
  48.   RNone: return seqR;
  49.        endcase;
  50.    
  51.      Bit#(7) scram_seq = headSeq;
  52.    
  53.      Bit#(1) newS;
  54.      Bit#(n) inData  = x.data;
  55.      Bit#(n) outData = 0;
  56.      
  57.      for(Integer i = 0; i < valueOf(n); i = i + 1)
  58. begin
  59.    newS = scram_seq[0] ^ scram_seq[3];
  60.    outData[i] = newS ^ inData[i];
  61.    scram_seq = {newS,scram_seq[6:1]};
  62. end       
  63.    
  64.      outQ.enq(RateData{
  65. rate: x.rate,
  66. data: outData
  67. });      
  68.    endmethod
  69.    method ActionValue#(RateData#(n)) toEncoder();
  70.       outQ.deq();
  71.       return(outQ.first());
  72.    endmethod
  73. endmodule