1 |
123 |
jguarin200 |
--! @file dpc.vhd
|
2 |
122 |
jguarin200 |
--! @brief Decodificador de operacion.
|
3 |
124 |
jguarin200 |
--! @author Juli�n Andr�s Guar�n Reyes.
|
4 |
122 |
jguarin200 |
--------------------------------------------------------------
|
5 |
|
|
-- RAYTRAC
|
6 |
|
|
-- Author Julian Andres Guarin
|
7 |
123 |
jguarin200 |
-- dpc.vhd
|
8 |
122 |
jguarin200 |
-- This file is part of raytrac.
|
9 |
|
|
--
|
10 |
|
|
-- raytrac is free software: you can redistribute it and/or modify
|
11 |
|
|
-- it under the terms of the GNU General Public License as published by
|
12 |
|
|
-- the Free Software Foundation, either version 3 of the License, or
|
13 |
|
|
-- (at your option) any later version.
|
14 |
|
|
--
|
15 |
|
|
-- raytrac is distributed in the hope that it will be useful,
|
16 |
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
17 |
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
18 |
|
|
-- GNU General Public License for more details.
|
19 |
|
|
--
|
20 |
|
|
-- You should have received a copy of the GNU General Public License
|
21 |
|
|
-- along with raytrac. If not, see <http://www.gnu.org/licenses/>.
|
22 |
|
|
|
23 |
|
|
library ieee;
|
24 |
|
|
use ieee.std_logic_1164.all;
|
25 |
123 |
jguarin200 |
entity dpc is
|
26 |
122 |
jguarin200 |
generic (
|
27 |
123 |
jguarin200 |
width : integer := 32
|
28 |
122 |
jguarin200 |
);
|
29 |
|
|
port (
|
30 |
124 |
jguarin200 |
paraminput : in std_logic_vector ((12*width)-1 downto 0); --! Vectores A,B,C,D
|
31 |
123 |
jguarin200 |
prd32blko,add32blko : in std_logic_vector ((06*width)-1 downto 0); --! Salidas de los 6 multiplicadores y los 6 sumadores.
|
32 |
|
|
sqr32blko,inv32blko : in std_logic_vector ((02*width)-1 downto 0); --! Salidas de las 2 raices cuadradas y los 2 inversores.
|
33 |
124 |
jguarin200 |
fifo32x26_q : in std_logic_vector ( 03*width-1 downto 0); --! Salida de la cola intermedia.
|
34 |
|
|
fifo32x09_q : in std_logic_vector( 02*width-1 downto 0); --! Salida de las colas de producto punto.
|
35 |
|
|
instr3 : in std_logic_vector ( 2 downto 0); --! Opcode con la instrucción.
|
36 |
125 |
jguarin200 |
hblock,abblock,cdblock : in std_logic; --! Bit con el identificador del bloque AB vs CD e identificador del sub bloque (A/B) o (C/D).
|
37 |
124 |
jguarin200 |
fifo32x26_d : out std_logic_vector (03*width-1 downto 0); --! Entrada a la cola intermedia para la normalización.
|
38 |
|
|
fifo32x09_d : out std_logic_vector (02*width-1 downto 0); --! Entrada a las colas intermedias del producto punto.
|
39 |
123 |
jguarin200 |
prd32blki,add32blki : out std_logic_vector ((12*width)-1 downto 0); --! Entrada de los 12 sumandos y de los 12 factores en los 2 bloques de suma y el bloque de multiplicación respectivamente.
|
40 |
124 |
jguarin200 |
add32blks : out std_logic_vector ( 1 downto 0); --! Signos de operación que entran en los 2 bloques de suma.
|
41 |
|
|
resultoutput : out std_logic_vector ((06*width)-1 downto 0) --! 6 salidas de resultados, pues lo máximo que podrá calcularse por cada clock son 2 vectores.
|
42 |
122 |
jguarin200 |
);
|
43 |
123 |
jguarin200 |
end dpc;
|
44 |
122 |
jguarin200 |
|
45 |
123 |
jguarin200 |
architecture dpc_arch of dpc is
|
46 |
125 |
jguarin200 |
|
47 |
|
|
constant qz : integer := 00;constant qy : integer := 01;constant qx : integer := 02;
|
48 |
123 |
jguarin200 |
constant az : integer := 00;constant ay : integer := 01;constant ax : integer := 02;constant bz : integer := 03;constant by : integer := 04;constant bx : integer := 05;
|
49 |
|
|
constant cz : integer := 06;constant cy : integer := 07;constant cx : integer := 08;constant dz : integer := 09;constant dy : integer := 10;constant dx : integer := 11;
|
50 |
|
|
constant f0 : integer := 00;constant f1 : integer := 01;constant f2 : integer := 02;constant f3 : integer := 03;constant f4 : integer := 04;constant f5 : integer := 05;
|
51 |
|
|
constant f6 : integer := 06;constant f7 : integer := 07;constant f8 : integer := 08;constant f9 : integer := 09;constant f10: integer := 10;constant f11: integer := 11;
|
52 |
|
|
constant s0 : integer := 00;constant s1 : integer := 01;constant s2 : integer := 02;constant s3 : integer := 03;constant s4 : integer := 04;constant s5 : integer := 05;
|
53 |
|
|
constant s6 : integer := 06;constant s7 : integer := 07;constant s8 : integer := 08;constant s9 : integer := 09;constant s10: integer := 10;constant s11: integer := 11;
|
54 |
|
|
constant a0 : integer := 00;constant a1 : integer := 01;constant a2 : integer := 02;constant aa : integer := 03;constant ab : integer := 04;constant ac : integer := 05;
|
55 |
|
|
constant p0 : integer := 00;constant p1 : integer := 01;constant p2 : integer := 02;constant p3 : integer := 03;constant p4 : integer := 04;constant p5 : integer := 05;
|
56 |
|
|
constant sqrt320 : integer := 00;
|
57 |
|
|
constant sqrt321 : integer := 01;
|
58 |
|
|
constant invr320 : integer := 00;
|
59 |
|
|
constant invr321 : integer := 01;
|
60 |
124 |
jguarin200 |
constant dpfifoab : integer := 00;
|
61 |
|
|
constant dpfifocd : integer := 01;
|
62 |
|
|
|
63 |
122 |
jguarin200 |
|
64 |
123 |
jguarin200 |
type vectorblock12 is array (11 downto 0) of std_logic_vector(width-1 downto 0);
|
65 |
|
|
type vectorblock06 is array (05 downto 0) of std_logic_vector(width-1 downto 0);
|
66 |
124 |
jguarin200 |
type vectorblock03 is array (02 downto 0) of std_logic_vector(width-1 downto 0);
|
67 |
123 |
jguarin200 |
type vectorblock02 is array (01 downto 0) of std_logic_vector(width-1 downto 0);
|
68 |
122 |
jguarin200 |
|
69 |
125 |
jguarin200 |
signal sparaminput,sfactor,ssumando : vectorblock12;
|
70 |
|
|
signal sprd32blk,sadd32blk,sresult : vectorblock06;
|
71 |
|
|
signal snormfifo_q,snormfifo_d : vectorblock03;
|
72 |
|
|
signal ssqr32blk,sinv32blk,sdpfifo_q: vectorblock02;
|
73 |
124 |
jguarin200 |
|
74 |
123 |
jguarin200 |
|
75 |
|
|
begin
|
76 |
122 |
jguarin200 |
|
77 |
123 |
jguarin200 |
--! Connect stuff ....
|
78 |
|
|
stuff12:
|
79 |
|
|
for i in 11 downto 0 generate
|
80 |
|
|
sparaminput(i) <= paraminput(i*width+width-1 downto i*width);
|
81 |
|
|
prd32blki(i*width+width-1 downto i*width) <= sfactor(i);
|
82 |
|
|
add32blki(i*width+width-1 downto i*width) <= ssumando(i);
|
83 |
|
|
end generate stuff12;
|
84 |
|
|
stuff06:
|
85 |
|
|
for i in 05 downto 0 generate
|
86 |
|
|
sprd32blk(i) <= prd32blko(i*width+width-1 downto i*width);
|
87 |
|
|
sadd32blk(i) <= add32blko(i*width+width-1 downto i*width);
|
88 |
|
|
resultoutput(i*width+width-1 downto i*width) <= sresult(i);
|
89 |
|
|
end generate stuff06;
|
90 |
124 |
jguarin200 |
stuff03:
|
91 |
|
|
for i in 02 downto 0 generate
|
92 |
|
|
snormfifo_q(i) <= fifo32x26_q(i*width+width-1 downto i*width);
|
93 |
|
|
fifo32x26_d(i*width+width-1 downto i*width) <= snormfifo_d(i);
|
94 |
|
|
end generate stuff03;
|
95 |
|
|
|
96 |
123 |
jguarin200 |
stuff02:
|
97 |
124 |
jguarin200 |
for i in 01 downto 0 generate
|
98 |
123 |
jguarin200 |
ssqr32blk(i) <= sqr32blko(i*width+width-1 downto i*width);
|
99 |
|
|
sinv32blk(i) <= inv32blko(i*width+width-1 downto i*width);
|
100 |
|
|
end generate stuff02;
|
101 |
124 |
jguarin200 |
fifo32x09_d <= sprd32blk(p3)&sprd32blk(p2);
|
102 |
122 |
jguarin200 |
|
103 |
125 |
jguarin200 |
interconnection:process(instr3,hblock,abblock,cdblock)
|
104 |
123 |
jguarin200 |
begin
|
105 |
125 |
jguarin200 |
--! La cola para la normalizacion de los vectores.
|
106 |
|
|
snormfifo_d(qx) <= (hblock and ((cdblock and sparaminput(dx))or(not(cdblock) and sparaminput(cx)))) or (not(hblock) and ((abblock and sparaminput(bx))or(not(abblock) and sparaminput(ax))));
|
107 |
|
|
snormfifo_d(qy) <= (hblock and ((cdblock and sparaminput(dy))or(not(cdblock) and sparaminput(cy)))) or (not(hblock) and ((abblock and sparaminput(by))or(not(abblock) and sparaminput(ay))));
|
108 |
|
|
snormfifo_d(qz) <= (hblock and ((cdblock and sparaminput(dz))or(not(cdblock) and sparaminput(cz)))) or (not(hblock) and ((abblock and sparaminput(bz))or(not(abblock) and sparaminput(az))));
|
109 |
|
|
|
110 |
|
|
--! Combinatorio para decidir que operaciones realizan los sumadores / restadores.
|
111 |
|
|
add32blks <= instr3(0) xor (instr3(1) xor instr3(0)) ;
|
112 |
124 |
jguarin200 |
|
113 |
125 |
jguarin200 |
--! Por defecto conectar los sumandos en producto punto/cruz
|
114 |
|
|
ssumando(s0) <= sprd32blk(p0);ssumando(s1) <= sprd32blk(p1);
|
115 |
|
|
ssumando(s6) <= sadd32blk(a0);ssumando(s7) <= sdpfifo_q(dpfifoab);
|
116 |
|
|
ssumando(s10) <= sdpfifo_q(dpfifocd);ssumando(s11) <= sadd32blk(a2);
|
117 |
|
|
ssumando(s4) <= sprd32blk(p4);ssumando(s5) <= sprd32blk(p5);
|
118 |
|
|
ssumando(s2) <= sprd32blk(p2);ssumando(s3) <= sprd32blk(p3);
|
119 |
124 |
jguarin200 |
|
120 |
125 |
jguarin200 |
--! El segundo sumador del segundo bloque siempre sera suma o resta independiente de la operacion
|
121 |
|
|
ssumando(s8) <= sparaminput(cy);ssumando(s9) <= sparaminput(dy);
|
122 |
|
|
|
123 |
|
|
--! Por defecto conectar los factores en producto punto
|
124 |
|
|
sfactor(f0) <= sparaminput(ax);sfactor(f1) <= sparaminput(bx);
|
125 |
|
|
sfactor(f2) <= sparaminput(ay);sfactor(f3) <= sparaminput(by);
|
126 |
|
|
sfactor(f4) <= sparaminput(az);sfactor(f5) <= sparaminput(bz);
|
127 |
|
|
sfactor(f6) <= sparaminput(bx);sfactor(f7) <= sparaminput(dx);
|
128 |
|
|
sfactor(f8) <= sparaminput(by);sfactor(f9) <= sparaminput(dy);
|
129 |
|
|
sfactor(f10) <= sparaminput(bz);sfactor(f11) <= sparaminput(dz);
|
130 |
|
|
|
131 |
|
|
--!El
|
132 |
|
|
|
133 |
|
|
if instr3(0)='1' then --! Producto Cruz, suma, resta, multiplicacion simple
|
134 |
|
|
|
135 |
|
|
if (instr3(2) or instr3(1))='1' then --! Suma, Resta, Multiplicacion simple
|
136 |
124 |
jguarin200 |
|
137 |
125 |
jguarin200 |
--! Conectar las entradas de los sumadores en suma o resta de vectores
|
138 |
|
|
ssumando(s0) <= sparaminput(ax);ssumando(s1) <= sparaminput(bx);
|
139 |
|
|
ssumando(s2) <= sparaminput(ay);ssumando(s3) <= sparaminput(by);
|
140 |
|
|
ssumando(s4) <= sparaminput(az);ssumando(s5) <= sparaminput(bz);
|
141 |
|
|
ssumando(s6) <= sparaminput(cx);ssumando(s7) <= sparaminput(dx);
|
142 |
|
|
ssumando(s10) <= sparaminput(cz);ssumando(s11) <= sparaminput(dz);
|
143 |
124 |
jguarin200 |
|
144 |
|
|
|
145 |
125 |
jguarin200 |
|
146 |
|
|
else --! Producto Cruz!
|
147 |
124 |
jguarin200 |
|
148 |
125 |
jguarin200 |
if hblock='1' then --! Producto crux CxD
|
149 |
|
|
--!Multiplicadores:
|
150 |
|
|
sfactor(f0) <= sparaminput(cy);sfactor(f1) <= sparaminput(dz);sfactor(f2) <= sparaminput(cz);sfactor(f3) <= sparaminput(dy);
|
151 |
|
|
sfactor(f4) <= sparaminput(cx);sfactor(f5) <= sparaminput(dz);sfactor(f6) <= sparaminput(cz);sfactor(f7) <= sparaminput(dx);
|
152 |
|
|
sfactor(f8) <= sparaminput(cx);sfactor(f9) <= sparaminput(dy);sfactor(f10) <= sparaminput(cy);sfactor(f11) <= sparaminput(dx);
|
153 |
|
|
else --! Producto crux AxD
|
154 |
|
|
--!Multiplicadores:
|
155 |
|
|
sfactor(f0) <= sparaminput(ay);sfactor(f1) <= sparaminput(bz);sfactor(f2) <= sparaminput(az);sfactor(f3) <= sparaminput(by);
|
156 |
|
|
sfactor(f4) <= sparaminput(ax);sfactor(f5) <= sparaminput(bz);sfactor(f6) <= sparaminput(az);sfactor(f7) <= sparaminput(bx);
|
157 |
|
|
sfactor(f8) <= sparaminput(ax);sfactor(f9) <= sparaminput(by);sfactor(f10) <= sparaminput(ay);sfactor(f11) <= sparaminput(bx);
|
158 |
|
|
end if;
|
159 |
|
|
|
160 |
|
|
end if;
|
161 |
|
|
|
162 |
|
|
else --! Producto Punto, magnitud, producto escalar y normalizacion
|
163 |
|
|
if instr3(2)='1' then --!Producto Escalar (INSTR3(1)=0) o Normalizacion (INSTR3(1)=1)
|
164 |
|
|
sfactor(f0) <= (not instr3(1) and sparaminput(ax)) or (instr3(1) and ((not(hblock) and ((not(abblock) and sparaminput(ax)) or(abblock and sparaminput(bx))))or( hblock and snormfifo_q(qx)) ) );
|
165 |
|
|
sfactor(f1) <= (not instr3(1) and sparaminput(bx)) or (instr3(1) and ((not(hblock) and ((not(abblock) and sparaminput(ax)) or(abblock and sparaminput(bx))))or( hblock and sinv32blk(invr321)) ) );
|
166 |
|
|
sfactor(f2) <= (not instr3(1) and sparaminput(ay)) or (instr3(1) and ((not(hblock) and ((not(abblock) and sparaminput(ay)) or(abblock and sparaminput(by))))or( hblock and snormfifo_q(qy)) ) );
|
167 |
|
|
sfactor(f3) <= (not instr3(1) and sparaminput(bx)) or (instr3(1) and ((not(hblock) and ((not(abblock) and sparaminput(ay)) or(abblock and sparaminput(by))))or( hblock and sinv32blk(invr321)) ) );
|
168 |
|
|
sfactor(f4) <= (not instr3(1) and sparaminput(az)) or (instr3(1) and ((not(hblock) and ((not(abblock) and sparaminput(az)) or(abblock and sparaminput(bz))))or( hblock and snormfifo_q(qz)) ) );
|
169 |
|
|
sfactor(f5) <= (not instr3(1) and sparaminput(bx)) or (instr3(1) and ((not(hblock) and ((not(abblock) and sparaminput(az)) or(abblock and sparaminput(bz))))or( hblock and sinv32blk(invr321)) ) );
|
170 |
|
|
sfactor(f6) <= (not instr3(1) and sparaminput(cx)) or (instr3(1) and ((hblock and ((not(cdblock) and sparaminput(cx)) or(cdblock and sparaminput(dx))))or( not(hblock) and snormfifo_q(qx)) ) );
|
171 |
|
|
sfactor(f7) <= (not instr3(1) and sparaminput(dx)) or (instr3(1) and ((hblock and ((not(cdblock) and sparaminput(cx)) or(cdblock and sparaminput(dx))))or( not(hblock) and sinv32blk(invr320)) ) );
|
172 |
|
|
sfactor(f8) <= (not instr3(1) and sparaminput(cy)) or (instr3(1) and ((hblock and ((not(cdblock) and sparaminput(cy)) or(cdblock and sparaminput(dy))))or( not(hblock) and snormfifo_q(qy)) ) );
|
173 |
|
|
sfactor(f9) <= (not instr3(1) and sparaminput(dx)) or (instr3(1) and ((hblock and ((not(cdblock) and sparaminput(cy)) or(cdblock and sparaminput(dy))))or( not(hblock) and sinv32blk(invr320)) ) );
|
174 |
|
|
sfactor(f10) <= (not instr3(1) and sparaminput(cz)) or (instr3(1) and ((hblock and ((not(cdblock) and sparaminput(cz)) or(cdblock and sparaminput(dz))))or( not(hblock) and snormfifo_q(qz)) ) );
|
175 |
|
|
sfactor(f11) <= (not instr3(1) and sparaminput(dx)) or (instr3(1) and ((hblock and ((not(cdblock) and sparaminput(cz)) or(cdblock and sparaminput(dz))))or( not(hblock) and sinv32blk(invr320)) ) );
|
176 |
|
|
elsif instr3(1)='1' then --!Magnitud. El producto punto no se computa porque los factores estan por defecto configurados en producto punto.
|
177 |
|
|
sfactor(f0) <= (not(abblock) and sparaminput(ax))or(abblock and sparaminput(bx));
|
178 |
|
|
sfactor(f1) <= (not(abblock) and sparaminput(ax))or(abblock and sparaminput(bx));
|
179 |
|
|
sfactor(f2) <= (not(abblock) and sparaminput(ay))or(abblock and sparaminput(by));
|
180 |
|
|
sfactor(f3) <= (not(abblock) and sparaminput(ay))or(abblock and sparaminput(by));
|
181 |
|
|
sfactor(f4) <= (not(abblock) and sparaminput(az))or(abblock and sparaminput(bz));
|
182 |
|
|
sfactor(f5) <= (not(abblock) and sparaminput(az))or(abblock and sparaminput(bz));
|
183 |
|
|
sfactor(f6) <= (not(cdblock) and sparaminput(cx))or(cdblock and sparaminput(dx));
|
184 |
|
|
sfactor(f7) <= (not(cdblock) and sparaminput(cx))or(cdblock and sparaminput(dx));
|
185 |
|
|
sfactor(f8) <= (not(cdblock) and sparaminput(cy))or(cdblock and sparaminput(dy));
|
186 |
|
|
sfactor(f9) <= (not(cdblock) and sparaminput(cy))or(cdblock and sparaminput(dy));
|
187 |
|
|
sfactor(f10) <= (not(cdblock) and sparaminput(cz))or(cdblock and sparaminput(dz));
|
188 |
|
|
sfactor(f11) <= (not(cdblock) and sparaminput(cz))or(cdblock and sparaminput(dz));
|
189 |
|
|
|
190 |
|
|
end if;
|
191 |
|
|
end if;
|
192 |
|
|
|
193 |
123 |
jguarin200 |
end process;
|
194 |
|
|
|
195 |
|
|
|
196 |
|
|
end dpc_arch;
|