| 1 |
4 |
gajos |
-----------------------------------------------------------------------
|
| 2 |
|
|
---- ----
|
| 3 |
|
|
---- Present - a lightweight block cipher project ----
|
| 4 |
|
|
---- ----
|
| 5 |
|
|
---- This file is part of the Present - a lightweight block ----
|
| 6 |
|
|
---- cipher project ----
|
| 7 |
|
|
---- http://www.http://opencores.org/project,present ----
|
| 8 |
|
|
---- ----
|
| 9 |
|
|
---- Description: ----
|
| 10 |
|
|
---- State machine for Present decoder. It controls entire ----
|
| 11 |
|
|
---- environment for decoding. We can feature 2 'steady states' ----
|
| 12 |
|
|
---- and 2 'running states'. For more informations see below ----
|
| 13 |
|
|
---- To Do: ----
|
| 14 |
|
|
---- ----
|
| 15 |
|
|
---- Author(s): ----
|
| 16 |
|
|
---- - Krzysztof Gajewski, gajos@opencores.org ----
|
| 17 |
|
|
---- k.gajewski@gmail.com ----
|
| 18 |
|
|
---- ----
|
| 19 |
|
|
-----------------------------------------------------------------------
|
| 20 |
|
|
---- ----
|
| 21 |
|
|
---- Copyright (C) 2013 Authors and OPENCORES.ORG ----
|
| 22 |
|
|
---- ----
|
| 23 |
|
|
---- This source file may be used and distributed without ----
|
| 24 |
|
|
---- restriction provided that this copyright statement is not ----
|
| 25 |
|
|
---- removed from the file and that any derivative work contains ----
|
| 26 |
|
|
---- the original copyright notice and the associated disclaimer. ----
|
| 27 |
|
|
---- ----
|
| 28 |
|
|
---- This source file is free software; you can redistribute it ----
|
| 29 |
|
|
---- and-or modify it under the terms of the GNU Lesser General ----
|
| 30 |
|
|
---- Public License as published by the Free Software Foundation; ----
|
| 31 |
|
|
---- either version 2.1 of the License, or (at your option) any ----
|
| 32 |
|
|
---- later version. ----
|
| 33 |
|
|
---- ----
|
| 34 |
|
|
---- This source is distributed in the hope that it will be ----
|
| 35 |
|
|
---- useful, but WITHOUT ANY WARRANTY; without even the implied ----
|
| 36 |
|
|
---- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ----
|
| 37 |
|
|
---- PURPOSE. See the GNU Lesser General Public License for more ----
|
| 38 |
|
|
---- details. ----
|
| 39 |
|
|
---- ----
|
| 40 |
|
|
---- You should have received a copy of the GNU Lesser General ----
|
| 41 |
|
|
---- Public License along with this source; if not, download it ----
|
| 42 |
|
|
---- from http://www.opencores.org/lgpl.shtml ----
|
| 43 |
|
|
---- ----
|
| 44 |
|
|
-----------------------------------------------------------------------
|
| 45 |
3 |
gajos |
library IEEE;
|
| 46 |
|
|
use IEEE.STD_LOGIC_1164.ALL;
|
| 47 |
|
|
use work.kody.ALL;
|
| 48 |
|
|
|
| 49 |
|
|
-- Uncomment the following library declaration if using
|
| 50 |
|
|
-- arithmetic functions with Signed or Unsigned values
|
| 51 |
|
|
--use IEEE.NUMERIC_STD.ALL;
|
| 52 |
|
|
|
| 53 |
|
|
-- Uncomment the following library declaration if instantiating
|
| 54 |
|
|
-- any Xilinx primitives in this code.
|
| 55 |
|
|
--library UNISIM;
|
| 56 |
|
|
--use UNISIM.VComponents.all;
|
| 57 |
|
|
|
| 58 |
|
|
entity FullDecoderSM is
|
| 59 |
|
|
port(
|
| 60 |
|
|
key_gen_start : out std_logic;
|
| 61 |
|
|
key_gen_ready : in std_logic;
|
| 62 |
|
|
decode_start : out std_logic;
|
| 63 |
|
|
decode_ready : in std_logic;
|
| 64 |
|
|
full_decoder_start :in std_logic;
|
| 65 |
|
|
full_decoder_ready : out std_logic;
|
| 66 |
|
|
clk, reset :in std_logic
|
| 67 |
|
|
);
|
| 68 |
|
|
end FullDecoderSM;
|
| 69 |
|
|
|
| 70 |
|
|
architecture Behavioral of FullDecoderSM is
|
| 71 |
|
|
|
| 72 |
|
|
signal state : decode_states;
|
| 73 |
|
|
signal next_state : decode_states;
|
| 74 |
|
|
|
| 75 |
|
|
begin
|
| 76 |
|
|
|
| 77 |
|
|
states : process(state, full_decoder_start, key_gen_ready, decode_ready)
|
| 78 |
|
|
begin
|
| 79 |
|
|
case state is
|
| 80 |
4 |
gajos |
---- It is No operation - waiting for proper data in the input ----
|
| 81 |
3 |
gajos |
when NOP =>
|
| 82 |
|
|
key_gen_start <= '0';
|
| 83 |
|
|
decode_start <= '0';
|
| 84 |
|
|
full_decoder_ready <= '0';
|
| 85 |
|
|
if (full_decoder_start = '1') then
|
| 86 |
|
|
next_state <= KG_START;
|
| 87 |
|
|
else
|
| 88 |
|
|
next_state <= NOP;
|
| 89 |
|
|
end if;
|
| 90 |
4 |
gajos |
---- It is running key generator for decoding
|
| 91 |
3 |
gajos |
when KG_START =>
|
| 92 |
|
|
key_gen_start <= '1';
|
| 93 |
|
|
decode_start <= '0';
|
| 94 |
|
|
full_decoder_ready <= '0';
|
| 95 |
|
|
if (key_gen_ready = '1') then
|
| 96 |
|
|
next_state <= DEC_START;
|
| 97 |
|
|
else
|
| 98 |
|
|
next_state <= KG_START;
|
| 99 |
|
|
end if;
|
| 100 |
4 |
gajos |
---- enerated key for decoding is ready. Now we are decoding ----
|
| 101 |
3 |
gajos |
when DEC_START =>
|
| 102 |
|
|
key_gen_start <= '1';
|
| 103 |
|
|
decode_start <= '1';
|
| 104 |
|
|
full_decoder_ready <= '0';
|
| 105 |
|
|
if (decode_ready = '1') then
|
| 106 |
|
|
next_state <= DEC_READY;
|
| 107 |
|
|
else
|
| 108 |
|
|
next_state <= DEC_START;
|
| 109 |
|
|
end if;
|
| 110 |
4 |
gajos |
---- Decoding was ended. Waiting for user retrieving data ----
|
| 111 |
|
|
---- and give information about new operation ----
|
| 112 |
3 |
gajos |
when DEC_READY =>
|
| 113 |
|
|
key_gen_start <= '1';
|
| 114 |
|
|
decode_start <= '1';
|
| 115 |
|
|
full_decoder_ready <= '1';
|
| 116 |
|
|
if (full_decoder_start = '1') then
|
| 117 |
|
|
next_state <= DEC_READY;
|
| 118 |
|
|
else
|
| 119 |
|
|
next_state <= NOP;
|
| 120 |
|
|
end if;
|
| 121 |
|
|
end case;
|
| 122 |
|
|
end process states;
|
| 123 |
|
|
|
| 124 |
|
|
SM : process (clk, reset)
|
| 125 |
|
|
begin
|
| 126 |
|
|
if (reset = '1') then
|
| 127 |
|
|
state <= NOP;
|
| 128 |
|
|
elsif (clk'Event and clk = '1') then
|
| 129 |
|
|
state <= next_state;
|
| 130 |
|
|
end if;
|
| 131 |
|
|
end process SM;
|
| 132 |
|
|
|
| 133 |
|
|
end Behavioral;
|
| 134 |
|
|
|