⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wb_aescontroller.v

📁 面积最小的AES高级加密算法实现
💻 V
字号:
//////////////////////////////////////////////////////////////////////////                                                              ////////  Wishbone Interface for AES128 Coprocessor                   ////////                                                              ////////  This file is part of the SystemC AES                        ////////                                                              ////////  To Do:                                                      ////////   - done                                                     ////////                                                              ////////  Author(s):                                                  ////////      - Javier Castillo, jcastilo@opencores.org               ////////                                                              //////////////////////////////////////////////////////////////////////////////                                                              //////// Copyright (C) 2000 Authors and OPENCORES.ORG                 ////////                                                              //////// This source file may be used and distributed without         //////// restriction provided that this copyright statement is not    //////// removed from the file and that any derivative work contains  //////// the original copyright notice and the associated disclaimer. ////////                                                              //////// This source file is free software; you can redistribute it   //////// and/or modify it under the terms of the GNU Lesser General   //////// Public License as published by the Free Software Foundation; //////// either version 2.1 of the License, or (at your option) any   //////// later version.                                               ////////                                                              //////// This source is distributed in the hope that it will be       //////// useful, but WITHOUT ANY WARRANTY; without even the implied   //////// warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR      //////// PURPOSE.  See the GNU Lesser General Public License for more //////// details.                                                     ////////                                                              //////// You should have received a copy of the GNU Lesser General    //////// Public License along with this source; if not, download it   //////// from http://www.opencores.org/lgpl.shtml                     ////////                                                              ////////////////////////////////////////////////////////////////////////////// CVS Revision History//// $Log: wb_aescontroller.v,v $// Revision 1.1  2005/09/19 09:15:18  jcastillo// Added Wishbone Interface////`include "timescale.v"module wb_aes_controller(clk,reset,wb_stb_i,wb_dat_o,wb_dat_i,wb_ack_o,                         wb_adr_i,wb_we_i,wb_cyc_i,wb_sel_i,                         load_o,decrypt_o,ready_i,data_o,key_o,data_i);input         clk;input         reset;input         wb_stb_i;output [31:0] wb_dat_o;input  [31:0] wb_dat_i;output        wb_ack_o;input  [31:0] wb_adr_i;input         wb_we_i;input         wb_cyc_i;input  [3:0]  wb_sel_i;output         load_o;output         decrypt_o;output [127:0] data_o;output [127:0] key_o;input  [127:0] data_i;input          ready_i;reg  [31:0]  wb_dat_o;reg          wb_ack_o;reg  [127:0]  data_o;reg  [127:0]  key_o;wire         load_o;wire         decrypt_o;reg  [31:0]  control_reg;reg  [127:0]  cypher_data_reg;assign load_o = control_reg[0];assign decrypt_o = control_reg[2];always @(posedge clk or posedge reset)begin     if(reset==1)     begin       wb_ack_o<=#1 0;       wb_dat_o<=#1 0;       control_reg <= #1 32'h0;       cypher_data_reg <= #1 127'h0;       key_o <= #1 127'h0;       data_o <= #1 127'h0;     end     else     begin       if(ready_i)       begin        control_reg[1] <= #1 1'b1;          cypher_data_reg <= #1 data_i;       end                if(wb_stb_i && wb_cyc_i && wb_we_i && ~wb_ack_o)       begin         wb_ack_o<=#1 1;         case(wb_adr_i[7:0])             8'h0:             begin                 //Writing control register                 control_reg<= #1 wb_dat_i;             end             8'h4:              begin                 data_o[127:96]<= #1 wb_dat_i;             end                              8'h8:             begin                 data_o[95:64]<= #1 wb_dat_i;             end                 			 8'hC:              begin                 data_o[63:32]<= #1 wb_dat_i;             end                              8'h10:             begin                 data_o[31:0]<= #1 wb_dat_i;             end                              8'h14:             begin                 key_o[127:96]<= #1 wb_dat_i;             end                              8'h18:             begin                 key_o[95:64]<= #1 wb_dat_i;             end                              8'h1C:             begin                 key_o[63:32]<= #1 wb_dat_i;             end                              8'h20:             begin                 key_o[31:0]<= #1 wb_dat_i;             end                          endcase       end       else if(wb_stb_i && wb_cyc_i && ~wb_we_i && ~wb_ack_o)       begin           wb_ack_o<=#1 1;           case(wb_adr_i[7:0])             8'h0:             begin                 wb_dat_o<= #1 control_reg;                 control_reg[1]<=1'b0;             end             8'h24:             begin                 wb_dat_o<= #1 cypher_data_reg[127:96];             end             8'h28:             begin                 wb_dat_o<= #1 cypher_data_reg[95:64];             end			 8'h2C:             begin                 wb_dat_o<= #1 cypher_data_reg[63:32];             end             8'h30:             begin                 wb_dat_o<= #1 cypher_data_reg[31:0];             end           endcase       end       else       begin           wb_ack_o<=#1 0;           control_reg[0]<= #1 1'b0;       end     endendendmodule

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -