1 |
59 |
JonasDC |
----------------------------------------------------------------------
|
2 |
60 |
JonasDC |
---- tdpram_generic ----
|
3 |
59 |
JonasDC |
---- ----
|
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 |
60 |
JonasDC |
---- behavorial description of a true dual port ram with 2 ----
|
10 |
|
|
---- 32-bit write/read ports ----
|
11 |
59 |
JonasDC |
---- ----
|
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 |
|
|
|
45 |
|
|
library ieee;
|
46 |
|
|
use ieee.std_logic_1164.all;
|
47 |
|
|
use ieee.std_logic_unsigned.all;
|
48 |
|
|
|
49 |
|
|
library mod_sim_exp;
|
50 |
|
|
use mod_sim_exp.std_functions.all;
|
51 |
|
|
|
52 |
|
|
-- altera infers ramblocks from a depth of 9
|
53 |
|
|
-- xilinx infers ramblocks from a depth of 2
|
54 |
|
|
entity tdpram_generic is
|
55 |
|
|
generic (
|
56 |
|
|
depth : integer := 9
|
57 |
|
|
);
|
58 |
|
|
port (
|
59 |
|
|
-- port A
|
60 |
|
|
clkA : in std_logic;
|
61 |
|
|
addrA : in std_logic_vector(log2(depth)-1 downto 0);
|
62 |
61 |
JonasDC |
weA : in std_logic;
|
63 |
|
|
dinA : in std_logic_vector(31 downto 0);
|
64 |
|
|
doutA : out std_logic_vector(31 downto 0);
|
65 |
59 |
JonasDC |
-- port B
|
66 |
|
|
clkB : in std_logic;
|
67 |
|
|
addrB : in std_logic_vector(log2(depth)-1 downto 0);
|
68 |
61 |
JonasDC |
weB : in std_logic;
|
69 |
|
|
dinB : in std_logic_vector(31 downto 0);
|
70 |
|
|
doutB : out std_logic_vector(31 downto 0)
|
71 |
59 |
JonasDC |
);
|
72 |
|
|
end tdpram_generic;
|
73 |
|
|
|
74 |
|
|
architecture behavorial of tdpram_generic is
|
75 |
|
|
-- the memory
|
76 |
|
|
type ram_type is array (depth-1 downto 0) of std_logic_vector (31 downto 0);
|
77 |
61 |
JonasDC |
shared variable RAM: ram_type := (others => (others => '0'));
|
78 |
59 |
JonasDC |
|
79 |
|
|
-- xilinx constraint to use blockram resources
|
80 |
|
|
attribute ram_style : string;
|
81 |
|
|
attribute ram_style of RAM:variable is "block";
|
82 |
60 |
JonasDC |
-- altera constraints:
|
83 |
|
|
-- for smal depths:
|
84 |
61 |
JonasDC |
-- if the synthesis option "allow any size of RAM to be inferred" is on, these lines
|
85 |
|
|
-- may be left commented.
|
86 |
|
|
-- uncomment this attribute if that option is off and you know wich primitives should be used.
|
87 |
59 |
JonasDC |
--attribute ramstyle : string;
|
88 |
61 |
JonasDC |
--attribute ramstyle of RAM : signal is "M9K, no_rw_check";
|
89 |
59 |
JonasDC |
begin
|
90 |
|
|
-- port A
|
91 |
|
|
process (clkA)
|
92 |
|
|
begin
|
93 |
|
|
if (clkA'event and clkA = '1') then
|
94 |
|
|
if ( weA = '1') then
|
95 |
|
|
RAM(conv_integer(addrA)) := dinA ;
|
96 |
|
|
end if;
|
97 |
|
|
doutA <= RAM(conv_integer(addrA));
|
98 |
|
|
end if;
|
99 |
|
|
end process;
|
100 |
|
|
|
101 |
|
|
-- port B
|
102 |
|
|
process (clkB)
|
103 |
|
|
begin
|
104 |
|
|
if (clkB'event and clkB = '1') then
|
105 |
|
|
if ( weB = '1') then
|
106 |
|
|
RAM(conv_integer(addrB)) := dinB ;
|
107 |
|
|
end if;
|
108 |
|
|
doutB <= RAM(conv_integer(addrB));
|
109 |
|
|
end if;
|
110 |
|
|
end process;
|
111 |
|
|
end behavorial;
|
112 |
|
|
|