1 |
66 |
JonasDC |
----------------------------------------------------------------------
|
2 |
|
|
---- dpramblock_asym ----
|
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 |
|
|
---- structural description of an asymmetric dual port ram ----
|
10 |
|
|
---- with one 32-bit write port and one (width)-bit read ----
|
11 |
|
|
---- port. ----
|
12 |
|
|
---- ----
|
13 |
|
|
---- Dependencies: dpram_asym ----
|
14 |
|
|
---- ----
|
15 |
|
|
---- Authors: ----
|
16 |
|
|
---- - Geoffrey Ottoy, DraMCo research group ----
|
17 |
|
|
---- - Jonas De Craene, JonasDC@opencores.org ----
|
18 |
|
|
---- ----
|
19 |
|
|
----------------------------------------------------------------------
|
20 |
|
|
---- ----
|
21 |
|
|
---- Copyright (C) 2011 DraMCo research group 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 |
|
|
|
46 |
|
|
library ieee;
|
47 |
|
|
use ieee.std_logic_1164.all;
|
48 |
|
|
use ieee.std_logic_unsigned.all;
|
49 |
|
|
use ieee.std_logic_arith.all;
|
50 |
|
|
|
51 |
|
|
library mod_sim_exp;
|
52 |
|
|
use mod_sim_exp.std_functions.all;
|
53 |
83 |
JonasDC |
use mod_sim_exp.mod_sim_exp_pkg.all;
|
54 |
66 |
JonasDC |
|
55 |
|
|
-- altera infers ramblocks from a depth of 9 (or 2 with any ram size recognition option on)
|
56 |
|
|
-- and width 64,128,256,512,1024
|
57 |
|
|
-- xilinx infers ramblocks from a depth of 2 and width 32,64,128,256,512,1024
|
58 |
|
|
entity dpramblock_asym is
|
59 |
|
|
generic (
|
60 |
|
|
width : integer := 256; -- read width
|
61 |
|
|
depth : integer := 2; -- nr of (width)-bit words
|
62 |
|
|
device : string := "xilinx"
|
63 |
|
|
);
|
64 |
|
|
port (
|
65 |
90 |
JonasDC |
clk : in std_logic;
|
66 |
|
|
-- write port
|
67 |
|
|
waddr : in std_logic_vector(log2((width*depth)/32)-1 downto 0);
|
68 |
|
|
we : in std_logic;
|
69 |
|
|
din : in std_logic_vector(31 downto 0);
|
70 |
|
|
-- read port
|
71 |
|
|
raddr : in std_logic_vector(log2(depth)-1 downto 0);
|
72 |
|
|
dout : out std_logic_vector(width-1 downto 0)
|
73 |
66 |
JonasDC |
);
|
74 |
|
|
end dpramblock_asym;
|
75 |
|
|
|
76 |
|
|
architecture structural of dpramblock_asym is
|
77 |
|
|
-- constants
|
78 |
|
|
constant nrRAMs : integer := width/32;
|
79 |
|
|
constant RAMwrwidth : integer := 32/nrRAMs;
|
80 |
|
|
|
81 |
|
|
-- interconnection signals
|
82 |
|
|
type word_array is array (nrRAMs-1 downto 0) of std_logic_vector(31 downto 0);
|
83 |
|
|
signal dout_RAM : word_array;
|
84 |
|
|
begin
|
85 |
|
|
-- generate (width/32) blocks of 32-bit ram with a given depth
|
86 |
|
|
-- these rams outputs are concatenated to a width-bit signal
|
87 |
|
|
ramblocks : for i in 0 to nrRAMs-1 generate
|
88 |
83 |
JonasDC |
ramblock: dpram_asym
|
89 |
66 |
JonasDC |
generic map(
|
90 |
|
|
rddepth => depth,
|
91 |
|
|
wrwidth => RAMwrwidth,
|
92 |
|
|
device => device
|
93 |
|
|
)
|
94 |
|
|
port map(
|
95 |
90 |
JonasDC |
clk => clk,
|
96 |
66 |
JonasDC |
-- write port
|
97 |
90 |
JonasDC |
waddr => waddr,
|
98 |
|
|
we => we,
|
99 |
|
|
din => din((i+1)*RAMwrwidth-1 downto RAMwrwidth*i),
|
100 |
66 |
JonasDC |
-- read port
|
101 |
90 |
JonasDC |
raddr => raddr,
|
102 |
|
|
dout => dout_RAM(i)
|
103 |
66 |
JonasDC |
);
|
104 |
|
|
|
105 |
|
|
map_output : for j in 0 to nrRAMs-1 generate
|
106 |
90 |
JonasDC |
dout(j*32+(i+1)*RAMwrwidth-1 downto j*32+i*RAMwrwidth)
|
107 |
66 |
JonasDC |
<= dout_RAM(i)((j+1)*RAMwrwidth-1 downto j*RAMwrwidth);
|
108 |
|
|
end generate;
|
109 |
|
|
end generate;
|
110 |
|
|
end structural;
|