| 1 |
3 |
JonasDC |
----------------------------------------------------------------------
|
| 2 |
|
|
---- counter_sync ----
|
| 3 |
|
|
---- ----
|
| 4 |
|
|
---- This file is part of the ----
|
| 5 |
|
|
---- Modular Simultaneous Exponentiation Core project ----
|
| 6 |
|
|
---- http://www.opencores.org/cores/mod_sim_exp/ ----
|
| 7 |
|
|
---- ----
|
| 8 |
|
|
---- Description ----
|
| 9 |
|
|
---- counter with synchronous count enable. It generates an ----
|
| 10 |
|
|
---- overflow when max_value is reached ----
|
| 11 |
|
|
---- ----
|
| 12 |
|
|
---- Dependencies: none ----
|
| 13 |
|
|
---- ----
|
| 14 |
|
|
---- Authors: ----
|
| 15 |
|
|
---- - Geoffrey Ottoy, DraMCo research group ----
|
| 16 |
|
|
---- - Jonas De Craene, JonasDC@opencores.org ----
|
| 17 |
|
|
---- ----
|
| 18 |
|
|
----------------------------------------------------------------------
|
| 19 |
|
|
---- ----
|
| 20 |
|
|
---- Copyright (C) 2011 DraMCo research group and OPENCORES.ORG ----
|
| 21 |
|
|
---- ----
|
| 22 |
|
|
---- This source file may be used and distributed without ----
|
| 23 |
|
|
---- restriction provided that this copyright statement is not ----
|
| 24 |
|
|
---- removed from the file and that any derivative work contains ----
|
| 25 |
|
|
---- the original copyright notice and the associated disclaimer. ----
|
| 26 |
|
|
---- ----
|
| 27 |
|
|
---- This source file is free software; you can redistribute it ----
|
| 28 |
|
|
---- and/or modify it under the terms of the GNU Lesser General ----
|
| 29 |
|
|
---- Public License as published by the Free Software Foundation; ----
|
| 30 |
|
|
---- either version 2.1 of the License, or (at your option) any ----
|
| 31 |
|
|
---- later version. ----
|
| 32 |
|
|
---- ----
|
| 33 |
|
|
---- This source is distributed in the hope that it will be ----
|
| 34 |
|
|
---- useful, but WITHOUT ANY WARRANTY; without even the implied ----
|
| 35 |
|
|
---- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ----
|
| 36 |
|
|
---- PURPOSE. See the GNU Lesser General Public License for more ----
|
| 37 |
|
|
---- details. ----
|
| 38 |
|
|
---- ----
|
| 39 |
|
|
---- You should have received a copy of the GNU Lesser General ----
|
| 40 |
|
|
---- Public License along with this source; if not, download it ----
|
| 41 |
|
|
---- from http://www.opencores.org/lgpl.shtml ----
|
| 42 |
|
|
---- ----
|
| 43 |
|
|
----------------------------------------------------------------------
|
| 44 |
2 |
JonasDC |
|
| 45 |
3 |
JonasDC |
library ieee;
|
| 46 |
|
|
use ieee.std_logic_1164.all;
|
| 47 |
|
|
use ieee.std_logic_arith.all;
|
| 48 |
|
|
use ieee.std_logic_unsigned.all;
|
| 49 |
2 |
JonasDC |
|
| 50 |
19 |
JonasDC |
-- counter with synchronous count enable. It generates an
|
| 51 |
|
|
-- overflow when max_value is reached
|
| 52 |
2 |
JonasDC |
entity counter_sync is
|
| 53 |
3 |
JonasDC |
generic(
|
| 54 |
19 |
JonasDC |
max_value : integer := 1024 -- maximum value (constraints the nr bits for counter)
|
| 55 |
3 |
JonasDC |
);
|
| 56 |
|
|
port(
|
| 57 |
19 |
JonasDC |
reset_value : in integer; -- value the counter counts to
|
| 58 |
|
|
core_clk : in std_logic; -- clock input
|
| 59 |
|
|
ce : in std_logic; -- count enable
|
| 60 |
|
|
reset : in std_logic; -- reset input
|
| 61 |
|
|
overflow : out std_logic -- gets high when counter reaches reset_value
|
| 62 |
3 |
JonasDC |
);
|
| 63 |
2 |
JonasDC |
end counter_sync;
|
| 64 |
|
|
|
| 65 |
3 |
JonasDC |
|
| 66 |
2 |
JonasDC |
architecture Behavioral of counter_sync is
|
| 67 |
|
|
begin
|
| 68 |
|
|
|
| 69 |
19 |
JonasDC |
-- counter process with asynchronous active high reset
|
| 70 |
39 |
JonasDC |
count_proc: process(core_clk, reset)
|
| 71 |
19 |
JonasDC |
variable steps_counter : integer range 0 to max_value-1;
|
| 72 |
2 |
JonasDC |
begin
|
| 73 |
|
|
if reset = '1' then -- reset counter
|
| 74 |
|
|
steps_counter := 0;
|
| 75 |
19 |
JonasDC |
overflow <= '0';
|
| 76 |
2 |
JonasDC |
elsif rising_edge(core_clk) then
|
| 77 |
19 |
JonasDC |
-- counter is enabled, count till reset_value
|
| 78 |
|
|
if ce = '1' then
|
| 79 |
2 |
JonasDC |
if steps_counter = (reset_value-1) then -- generate overflow and reset counter
|
| 80 |
|
|
steps_counter := 0;
|
| 81 |
19 |
JonasDC |
overflow <= '1';
|
| 82 |
2 |
JonasDC |
else -- just count
|
| 83 |
|
|
steps_counter := steps_counter + 1;
|
| 84 |
19 |
JonasDC |
overflow <= '0';
|
| 85 |
2 |
JonasDC |
end if;
|
| 86 |
|
|
else
|
| 87 |
19 |
JonasDC |
--counter disabled, halt counter
|
| 88 |
|
|
overflow <= '0';
|
| 89 |
2 |
JonasDC |
steps_counter := steps_counter;
|
| 90 |
|
|
end if;
|
| 91 |
|
|
end if;
|
| 92 |
|
|
end process;
|
| 93 |
|
|
|
| 94 |
19 |
JonasDC |
end Behavioral;
|