1
|
|
2
|
-- Copyright (C) 1996 Morgan Kaufmann Publishers, Inc
|
3
|
|
4
|
-- This file is part of VESTs (Vhdl tESTs).
|
5
|
|
6
|
-- VESTs is free software; you can redistribute it and/or modify it
|
7
|
-- under the terms of the GNU General Public License as published by the
|
8
|
-- Free Software Foundation; either version 2 of the License, or (at
|
9
|
-- your option) any later version.
|
10
|
|
11
|
-- VESTs is distributed in the hope that it will be useful, but WITHOUT
|
12
|
-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
13
|
-- FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
14
|
-- for more details.
|
15
|
|
16
|
-- You should have received a copy of the GNU General Public License
|
17
|
-- along with VESTs; if not, write to the Free Software Foundation,
|
18
|
-- Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
|
|
20
|
-- ---------------------------------------------------------------------
|
21
|
--
|
22
|
-- $Id: ch_06_mac-b.vhd,v 1.2 2001-10-26 16:29:34 paw Exp $
|
23
|
-- $Revision: 1.2 $
|
24
|
--
|
25
|
-- ---------------------------------------------------------------------
|
26
|
|
27
|
architecture behavioral of mac is
|
28
|
|
29
|
constant Tpd_clk_out : time := 3 ns;
|
30
|
|
31
|
signal fp_x_real, fp_x_imag,
|
32
|
fp_y_real, fp_y_imag,
|
33
|
fp_s_real, fp_s_imag : real := 0.0;
|
34
|
|
35
|
begin
|
36
|
|
37
|
x_real_converter : entity work.to_fp(behavioral)
|
38
|
port map ( x_real, fp_x_real );
|
39
|
|
40
|
x_imag_converter : entity work.to_fp(behavioral)
|
41
|
port map ( x_imag, fp_x_imag );
|
42
|
|
43
|
y_real_converter : entity work.to_fp(behavioral)
|
44
|
port map ( y_real, fp_y_real );
|
45
|
|
46
|
y_imag_converter : entity work.to_fp(behavioral)
|
47
|
port map ( y_imag, fp_y_imag );
|
48
|
|
49
|
behavior : process (clk) is
|
50
|
|
51
|
variable input_x_real, input_x_imag, input_y_real, input_y_imag : real := 0.0;
|
52
|
variable real_part_product_1, real_part_product_2,
|
53
|
imag_part_product_1, imag_part_product_2 : real := 0.0;
|
54
|
variable real_product, imag_product : real := 0.0;
|
55
|
variable real_sum, imag_sum : real := 0.0;
|
56
|
variable real_accumulator_ovf, imag_accumulator_ovf : boolean := false;
|
57
|
|
58
|
type boolean_to_stdulogic_table is array (boolean) of std_ulogic;
|
59
|
constant boolean_to_stdulogic : boolean_to_stdulogic_table
|
60
|
:= (false => '0', true => '1');
|
61
|
|
62
|
begin
|
63
|
if rising_edge(clk) then
|
64
|
-- work from the end of the pipeline back to the start, so as
|
65
|
-- not to overwrite previous results in pipeline registers before
|
66
|
-- they are used
|
67
|
|
68
|
-- update accumulator and generate outputs
|
69
|
if To_X01(clr) = '1' then
|
70
|
real_sum := 0.0;
|
71
|
real_accumulator_ovf := false;
|
72
|
imag_sum := 0.0;
|
73
|
imag_accumulator_ovf := false;
|
74
|
else
|
75
|
real_sum := real_product + real_sum;
|
76
|
real_accumulator_ovf := real_accumulator_ovf
|
77
|
or real_sum < -16.0 or real_sum >= +16.0;
|
78
|
imag_sum := imag_product + imag_sum;
|
79
|
imag_accumulator_ovf := imag_accumulator_ovf
|
80
|
or imag_sum < -16.0 or imag_sum >= +16.0;
|
81
|
end if;
|
82
|
fp_s_real <= real_sum after Tpd_clk_out;
|
83
|
fp_s_imag <= imag_sum after Tpd_clk_out;
|
84
|
ovf <= boolean_to_stdulogic(
|
85
|
real_accumulator_ovf or imag_accumulator_ovf
|
86
|
or real_sum < -1.0 or real_sum >= +1.0
|
87
|
or imag_sum < -1.0 or imag_sum >= +1.0 )
|
88
|
after Tpd_clk_out;
|
89
|
|
90
|
-- update product registers using partial products
|
91
|
real_product := real_part_product_1 - real_part_product_2;
|
92
|
imag_product := imag_part_product_1 + imag_part_product_2;
|
93
|
|
94
|
-- update partial product registers using latched inputs
|
95
|
real_part_product_1 := input_x_real * input_y_real;
|
96
|
real_part_product_2 := input_x_imag * input_y_imag;
|
97
|
imag_part_product_1 := input_x_real * input_y_imag;
|
98
|
imag_part_product_2 := input_x_imag * input_y_real;
|
99
|
|
100
|
-- update input registers using MAC inputs
|
101
|
input_x_real := fp_x_real;
|
102
|
input_x_imag := fp_x_imag;
|
103
|
input_y_real := fp_y_real;
|
104
|
input_y_imag := fp_y_imag;
|
105
|
end if;
|
106
|
end process behavior;
|
107
|
|
108
|
s_real_converter : entity work.to_vector(behavioral)
|
109
|
port map ( fp_s_real, s_real );
|
110
|
|
111
|
s_imag_converter : entity work.to_vector(behavioral)
|
112
|
port map ( fp_s_imag, s_imag );
|
113
|
|
114
|
end architecture behavioral;
|