//======================================================================
//
// sha256.v
// --------
// Top level wrapper for the SHA-256 hash function providing
// a simple memory like interface with 32 bit data access.
//
//
// Author: Joachim Strombergson
// Copyright (c) 2014, NORDUnet A/S
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
// - Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// - Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// - Neither the name of the NORDUnet nor the names of its contributors may
// be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
// PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
// TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
//======================================================================
module sha256(
// Clock and reset.
input wire clk,
input wire reset_n,
// Control.
input wire cs,
input wire we,
// Data ports.
input wire [7 : 0] address,
input wire [31 : 0] write_data,
output wire [31 : 0] read_data,
output wire error
);
//----------------------------------------------------------------
// Internal constant and parameter definitions.
//----------------------------------------------------------------
localparam ADDR_NAME0 = 8'h00;
localparam ADDR_NAME1 = 8'h01;
localparam ADDR_VERSION = 8'h02;
localparam ADDR_CTRL = 8'h08;
localparam CTRL_INIT_BIT = 0;
localparam CTRL_NEXT_BIT = 1;
localparam CTRL_MODE_BIT = 2;
localparam ADDR_STATUS = 8'h09;
localparam STATUS_READY_BIT = 0;
localparam STATUS_VALID_BIT = 1;
localparam ADDR_BLOCK0 = 8'h10;
localparam ADDR_BLOCK1 = 8'h11;
localparam ADDR_BLOCK2 = 8'h12;
localparam ADDR_BLOCK3 = 8'h13;
localparam ADDR_BLOCK4 = 8'h14;
localparam ADDR_BLOCK5 = 8'h15;
localparam ADDR_BLOCK6 = 8'h16;
localparam ADDR_BLOCK7 = 8'h17;
localparam ADDR_BLOCK8 = 8'h18;
localparam ADDR_BLOCK9 = 8'h19;
localparam ADDR_BLOCK10 = 8'h1a;
localparam ADDR_BLOCK11 = 8'h1b;
localparam ADDR_BLOCK12 = 8'h1c;
localparam ADDR_BLOCK13 = 8'h1d;
localparam ADDR_BLOCK14 = 8'h1e;
localparam ADDR_BLOCK15 = 8'h1f;
localparam ADDR_DIGEST0 = 8'h20;
localparam ADDR_DIGEST1 = 8'h21;
localparam ADDR_DIGEST2 = 8'h22;
localparam ADDR_DIGEST3 = 8'h23;
localparam ADDR_DIGEST4 = 8'h24;
localparam ADDR_DIGEST5 = 8'h25;
localparam ADDR_DIGEST6 = 8'h26;
localparam ADDR_DIGEST7 = 8'h27;
localparam CORE_NAME0 = 32'h73686132; // "sha2"
localparam CORE_NAME1 = 32'h2d323536; // "-256"
localparam CORE_VERSION = 32'h312e3830; // "1.80"
localparam MODE_SHA_224 = 1'h0;
localparam MODE_SHA_256 = 1'h1;
//----------------------------------------------------------------
// Registers including update variables and write enable.
//----------------------------------------------------------------
reg init_reg;
reg init_new;
reg init_we;
reg init_set;
reg next_reg;
reg next_new;
reg next_we;
reg next_set;
reg mode_reg;
reg mode_new;
reg mode_we;
reg ready_reg;
reg [31 : 0] block0_reg;
reg block0_we;
reg [31 : 0] block1_reg;
reg block1_we;
reg [31 : 0] block2_reg;
reg block2_we;
reg [31 : 0] block3_reg;
reg block3_we;
reg [31 : 0] block4_reg;
reg block4_we;
reg [31 : 0] block5_reg;
reg block5_we;
reg [31 : 0] block6_reg;
reg block6_we;
reg [31 : 0] block7_reg;
reg block7_we;
reg [31 : 0] block8_reg;
reg block8_we;
reg [31 : 0] block9_reg;
reg block9_we;
reg [31 : 0] block10_reg;
reg block10_we;
reg [31 : 0] block11_reg;
reg block11_we;
reg [31 : 0] block12_reg;
reg block12_we;
reg [31 : 0] block13_reg;
reg block13_we;
reg [31 : 0] block14_reg;
reg block14_we;
reg [31 : 0] block15_reg;
reg block15_we;
reg [255 : 0] digest_reg;
reg digest_valid_reg;
//----------------------------------------------------------------
// Wires.
//----------------------------------------------------------------
wire core_init;
wire core_next;
wire core_ready;
wire [511 : 0] core_block;
wire [255 : 0] core_digest;
wire core_digest_valid;
reg state0_we;
reg state1_we;
reg state2_we;
reg state3_we;
reg state4_we;
reg state5_we;
reg state6_we;
reg state7_we;
reg [31 : 0] tmp_read_data;
reg tmp_error;
//----------------------------------------------------------------
// Concurrent connectivity for ports etc.
//----------------------------------------------------------------
assign core_init = init_reg;
assign core_next = next_reg;
assign core_block = {block0_reg, block1_reg, block2_reg, block3_reg,
block4_reg, block5_reg, block6_reg, block7_reg,
block8_reg, block9_reg, block10_reg, block11_reg,
block12_reg, block13_reg, block14_reg, block15_reg};
assign read_data = tmp_read_data;
assign error = tmp_error;
//----------------------------------------------------------------
// core instantiation.
//----------------------------------------------------------------
sha256_core core(
.clk(clk),
.reset_n(reset_n),
.init(core_init),
.next(core_next),
.mode(mode_reg),
.block(core_block),
// State access ports
.state_wr_data(write_data),
.state0_we(state0_we),
.state1_we(state1_we),
.state2_we(state2_we),
.state3_we(state3_we),
.state4_we(state4_we),
.state5_we(state5_we),
.state6_we(state6_we),
.state7_we(state7_we),
.ready(core_ready),
.digest(core_digest),
.digest_valid(core_digest_valid)
);
//----------------------------------------------------------------
// reg_update
//
// Update functionality for all registers in the core.
// All registers are positive edge triggered with
// asynchronous active low reset.
//----------------------------------------------------------------
always @ (posedge clk or negedge reset_n)
begin
if (!reset_n)
begin
init_reg <= 0;
next_reg <= 0;
mode_reg <= MODE_SHA_256;
ready_reg <= 0;
digest_reg <= 256'h0;
digest_valid_reg <= 0;
block0_reg <= 32'h0;
block1_reg <= 32'h0;
block2_reg <= 32'h0;
block3_reg <= 32'h0;
block4_reg <= 32'h0;
block5_reg <= 32'h0;
block6_reg <= 32'h0;
block7_reg <= 32'h0;
block8_reg <= 32'h0;
block9_reg <= 32'h0;
block10_reg <= 32'h0;
block11_reg <= 32'h0;
block12_reg <= 32'h0;
block13_reg <= 32'h0;
block14_reg <= 32'h0;
block15_reg <= 32'h0;
end
else
begin
ready_reg <= core_ready;
digest_valid_reg <= core_digest_valid;
if (init_we)
begin
init_reg <= init_new;
end
if (next_we)
begin
next_reg <= next_new;
end
if (mode_we)
mode_reg <= mode_new;
if (core_digest_valid)
begin
digest_reg <= core_digest;
end
if (block0_we)
begin
block0_reg <= write_data;
end
if (block1_we)
begin
block1_reg <= write_data;
end
if (block2_we)
begin
block2_reg <= write_data;
end
if (block3_we)
begin
block3_reg <= write_data;
end
if (block4_we)
begin
block4_reg <= write_data;
end
if (block5_we)
begin
block5_reg <= write_data;
end
if (block6_we)
begin
block6_reg <= write_data;
end
if (block7_we)
begin
block7_reg <= write_data;
end
if (block8_we)
begin
block8_reg <= write_data;
end
if (block9_we)
begin
block9_reg <= write_data;
end
if (block10_we)
begin
block10_reg <= write_data;
end
if (block11_we)
begin
block11_reg <= write_data;
end
if (block12_we)
begin
block12_reg <= write_data;
end
if (block13_we)
begin
block13_reg <= write_data;
end
if (block14_we)
begin
block14_reg <= write_data;
end
if (block15_we)
begin
block15_reg <= write_data;
end
end
end // reg_update
//----------------------------------------------------------------
// flag_reset
//
// Logic to reset init and next flags that has been set.
//----------------------------------------------------------------
always @*
begin : flag_reset
init_new = 0;
init_we = 0;
next_new = 0;
next_we = 0;
if (init_set)
begin
init_new = 1;
init_we = 1;
end
else if (init_reg)
begin
init_new = 0;
init_we = 1;
end
if (next_set)
begin
next_new = 1;
next_we = 1;
end
else if (next_reg)
begin
next_new = 0;
next_we = 1;
end
end
//----------------------------------------------------------------
// api_logic
//
// Implementation of the api logic. If cs is enabled will either
// try to write to or read from the internal registers.
//----------------------------------------------------------------
always @*
begin : api_logic
init_set = 0;
next_set = 0;
mode_new = 0;
mode_we = 0;
block0_we = 0;
block1_we = 0;
block2_we = 0;
block3_we = 0;
block4_we = 0;
block5_we = 0;
block6_we = 0;
block7_we = 0;
block8_we = 0;
block9_we = 0;
block10_we = 0;
block11_we = 0;
block12_we = 0;
block13_we = 0;
block14_we = 0;
block15_we = 0;
state0_we = 0;
state1_we = 0;
state2_we = 0;
state3_we = 0;
state4_we = 0;
state5_we = 0;
state6_we = 0;
state7_we = 0;
tmp_read_data = 32'h00000000;
tmp_error = 0;
if (cs)
begin
if (we)
begin
case (address)
// Write operations.
ADDR_CTRL:
begin
init_set = write_data[CTRL_INIT_BIT];
next_set = write_data[CTRL_NEXT_BIT];
mode_new = write_data[CTRL_MODE_BIT];
mode_we = 1;
end
ADDR_BLOCK0:
block0_we = 1;
ADDR_BLOCK1:
block1_we = 1;
ADDR_BLOCK2:
block2_we = 1;
ADDR_BLOCK3:
block3_we = 1;
ADDR_BLOCK4:
block4_we = 1;
ADDR_BLOCK5:
block5_we = 1;
ADDR_BLOCK6:
block6_we = 1;
ADDR_BLOCK7:
block7_we = 1;
ADDR_BLOCK8:
block8_we = 1;
ADDR_BLOCK9:
block9_we = 1;
ADDR_BLOCK10:
block10_we = 1;
ADDR_BLOCK11:
block11_we = 1;
ADDR_BLOCK12:
block12_we = 1;
ADDR_BLOCK13:
block13_we = 1;
ADDR_BLOCK14:
block14_we = 1;
ADDR_BLOCK15:
block15_we = 1;
ADDR_DIGEST0:
state0_we = 1;
ADDR_DIGEST1:
state1_we = 1;
ADDR_DIGEST2:
state2_we = 1;
ADDR_DIGEST3:
state3_we = 1;
ADDR_DIGEST4:
state4_we = 1;
ADDR_DIGEST5:
state5_we = 1;
ADDR_DIGEST6:
state6_we = 1;
ADDR_DIGEST7:
state7_we = 1;
default:
begin
tmp_error = 1;
end
endcase // case (address)
end // if (we)
else
begin
case (address)
// Read operations.
ADDR_NAME0:
tmp_read_data = CORE_NAME0;
ADDR_NAME1:
tmp_read_data = CORE_NAME1;
ADDR_VERSION:
tmp_read_data = CORE_VERSION;
ADDR_CTRL:
tmp_read_data = {29'h0, mode_reg, next_reg, init_reg};
ADDR_STATUS:
tmp_read_data = {30'h0, digest_valid_reg, ready_reg};
ADDR_BLOCK0:
tmp_read_data = block0_reg;
ADDR_BLOCK1:
tmp_read_data = block1_reg;
ADDR_BLOCK2:
tmp_read_data = block2_reg;
ADDR_BLOCK3:
tmp_read_data = block3_reg;
ADDR_BLOCK4:
tmp_read_data = block4_reg;
ADDR_BLOCK5:
tmp_read_data = block5_reg;
ADDR_BLOCK6:
tmp_read_data = block6_reg;
ADDR_BLOCK7:
tmp_read_data = block7_reg;
ADDR_BLOCK8:
tmp_read_data = block8_reg;
ADDR_BLOCK9:
tmp_read_data = block9_reg;
ADDR_BLOCK10:
tmp_read_data = block10_reg;
ADDR_BLOCK11:
tmp_read_data = block11_reg;
ADDR_BLOCK12:
tmp_read_data = block12_reg;
ADDR_BLOCK13:
tmp_read_data = block13_reg;
ADDR_BLOCK14:
tmp_read_data = block14_reg;
ADDR_BLOCK15:
tmp_read_data = block15_reg;
ADDR_DIGEST0:
tmp_read_data = digest_reg[255 : 224];
ADDR_DIGEST1:
tmp_read_data = digest_reg[223 : 192];
ADDR_DIGEST2:
tmp_read_data = digest_reg[191 : 160];
ADDR_DIGEST3:
tmp_read_data = digest_reg[159 : 128];
ADDR_DIGEST4:
tmp_read_data = digest_reg[127 : 96];
ADDR_DIGEST5:
tmp_read_data = digest_reg[95 : 64];
ADDR_DIGEST6:
tmp_read_data = digest_reg[63 : 32];
ADDR_DIGEST7:
tmp_read_data = digest_reg[31 : 0];
default:
begin
tmp_error = 1;
end
endcase // case (address)
end
end
end // addr_decoder
endmodule // sha256
//======================================================================
// EOF sha256.v
//======================================================================