URL
https://opencores.org/ocsvn/cryptosorter/cryptosorter/trunk
Subversion Repositories cryptosorter
[/] [cryptosorter/] [trunk/] [memocodeDesignContest2008/] [xup/] [aesCore/] [AESTester.bsv] - Rev 3
Go to most recent revision | Compare with Previous | Blame | View Log
/*
Copyright (c) 2008 MIT
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
Author: Kermin Fleming
*/
import PLBMasterWires::*;
import BRAMTargetWires::*;
import BRAMInitiatorWires::*;
import PLBMaster::*;
import BRAMFeeder::*;
import BRAMModel::*;
import Interfaces::*;
import Parameters::*;
import FIFO::*;
import GetPut::*;
import Types::*;
import Memocode08Types::*;
import aesCipherTop::*;
import BRAMFIFO::*;
interface AESTester;
interface PLBMasterWires plbMasterWires;
interface BRAMInitiatorWires#(Bit#(14)) bramInitiatorWires;
endinterface
typedef enum{
Idle,
Running,
Inputing,
Outputing
} TesterState deriving (Bits,Eq);
module mkAESTester#(Clock fastClock, Reset fastReset) (AESTester);
Feeder feeder <- mkBRAMFeeder();
PLBMaster plbMaster <- mkPLBMaster;
Clock clk <- exposeCurrentClock;
Reset rst <- exposeCurrentReset;
Reg#(TesterState) state <- mkReg(Idle);
Reg#(BlockAddr) baseRegLoad <- mkReg(0);
Reg#(BlockAddr) baseRegStore <- mkReg(0);
Reg#(Bit#(20)) commandCount <- mkReg(0);
Reg#(Bit#(20)) maxCommands <- mkReg(0);
Reg#(Bit#(32)) commandsComplete <- mkReg(1);
FIFO#(Record) dataFIFO <- mkBRAMFIFO(8);
Reg#(Bool) evenZero <- mkReg(True);
//AESCores#(4) aesCore <- mkAESCoresMCD(fastClock,clk,fastReset,rst,clocked_by(fastClock),reset_by(fastReset));
AESCores#(1) aesCore <- mkAESCorePipelinedMCD(clk,rst,clocked_by(fastClock),reset_by(fastReset));//mkAESCoresMCD(clk,rst,clocked_by(fastClock),reset_by(fastReset));
//AESCores#(4) aesCore <- mkAESCores;
Reg#(Bool) sendResp <- mkReg(False);
Reg#(Bit#(5)) logMax <- mkReg(0);
//AES aes <- mkAES;
Reg#(Bit#(8)) aesCount <- mkReg(0);
AES_key key = {8'hB0, 8'h1D, 8'hFA, 8'hCE,
8'h0D, 8'hEC, 8'h0D, 8'hED,
8'h0B, 8'hA1, 8'h1A, 8'hDE,
8'h0E, 8'hFF, 8'hEC, 8'h70};
rule grabInstruction(state == Idle);
sendResp <= True;
Instruction inst <- feeder.ppcInstructionOutput.get;
logMax <= truncate(pack(inst));
Bit#(5) size = truncate(pack(inst));
aesCore.start(size);
maxCommands <= 1 << (size); // + 1 since we need R/W -2 for 4/bursts +1 for needing two iters
commandCount <= 0;
baseRegLoad <= 0;
baseRegStore <= 0;
state <= Running;
//aesCount <= 1;
//aes.decrypt(0, key);
endrule
rule issueCommand(state == Running);
commandCount <= commandCount + 1;
if(commandCount + 1 == maxCommands)
begin
state <= Idle;
feeder.ppcMessageInput.put(zeroExtend(pack(maxCommands)));
commandsComplete <= commandsComplete + 1;
end
if(commandCount[1] == 0)
begin
baseRegLoad <= baseRegLoad + fromInteger(valueof(BlockSize));
plbMaster.plbMasterCommandInput.put(tagged LoadPage (baseRegLoad));
end
else
begin
baseRegStore <= baseRegStore + fromInteger(valueof(BlockSize));
plbMaster.plbMasterCommandInput.put(tagged StorePage (baseRegStore));
end
endrule
rule inputing;
Record data <- plbMaster.wordOutput.get;
dataFIFO.enq(data);
endrule
rule outputing;
// aesCount <= aesCount + 1;
// aes.decrypt(pack(zeroExtend(aesCount)), key);
Bit#(128) aesVal <- aesCore.get_next();
plbMaster.wordInput.put(aesVal^dataFIFO.first);
dataFIFO.deq;
endrule
interface plbMasterWires = plbMaster.plbMasterWires;
interface bramInitiatorWires = feeder.bramInitiatorWires;
endmodule
Go to most recent revision | Compare with Previous | Blame | View Log