1 |
51 |
robfinch |
// ============================================================================
|
2 |
|
|
// __
|
3 |
|
|
// \\__/ o\ (C) 2006-2018 Robert Finch, Waterloo
|
4 |
|
|
// \ __ / All rights reserved.
|
5 |
|
|
// \/_// robfinch<remove>@finitron.ca
|
6 |
|
|
// ||
|
7 |
|
|
//
|
8 |
|
|
// This source file is free software: you can redistribute it and/or modify
|
9 |
|
|
// it under the terms of the GNU Lesser General Public License as published
|
10 |
|
|
// by the Free Software Foundation, either version 3 of the License, or
|
11 |
|
|
// (at your option) any later version.
|
12 |
|
|
//
|
13 |
|
|
// This source file is distributed in the hope that it will be useful,
|
14 |
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
15 |
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
16 |
|
|
// GNU General Public License for more details.
|
17 |
|
|
//
|
18 |
|
|
// You should have received a copy of the GNU General Public License
|
19 |
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
20 |
|
|
//
|
21 |
|
|
//
|
22 |
|
|
// fpUnit.v
|
23 |
|
|
// - floating point unit
|
24 |
|
|
// - parameterized width
|
25 |
|
|
// - IEEE 754 representation
|
26 |
|
|
//
|
27 |
|
|
// NaN Value Origin
|
28 |
|
|
// 31'h7FC00001 - infinity - infinity
|
29 |
|
|
// 31'h7FC00002 - infinity / infinity
|
30 |
|
|
// 31'h7FC00003 - zero / zero
|
31 |
|
|
// 31'h7FC00004 - infinity X zero
|
32 |
|
|
// 31'h7FC00005 - square root of infinity
|
33 |
|
|
//
|
34 |
|
|
// Whenever the fpu encounters a NaN input, the NaN is
|
35 |
|
|
// passed through to the output.
|
36 |
|
|
//
|
37 |
|
|
// Ref: Webpack 8.2 Spartan3-4 xc3s1000-4ft256
|
38 |
|
|
// 2335 LUTS / 1260 slices / 43.4 MHz
|
39 |
|
|
// Ref: Webpack 13.1 Spartan3e xc3s1200e-4fg320
|
40 |
|
|
// 2433 LUTs / 1301 slices / 51.6 MHz
|
41 |
|
|
//
|
42 |
|
|
// Instr. Cyc Lat
|
43 |
|
|
// fc__ ; 1 0 compare, lt le gt ge eq ne or un
|
44 |
|
|
// fabs ; 1 0 absolute value
|
45 |
|
|
// fnabs ; 1 0 negative absolute value
|
46 |
|
|
// fneg ; 1 0 negate
|
47 |
|
|
// fmov ; 1 0 move
|
48 |
|
|
// fman ; 1 0 get mantissa
|
49 |
|
|
// fsign ; 1 0 get sign
|
50 |
|
|
//
|
51 |
|
|
// f2i ; 1 1 convert float to integer
|
52 |
|
|
// i2f ; 1 1 convert integer to float
|
53 |
|
|
//
|
54 |
|
|
// fadd ; 1 5 addition
|
55 |
|
|
// fsub ; 1 5 subtraction
|
56 |
|
|
// fmul ; 1 6 multiplication
|
57 |
|
|
//
|
58 |
|
|
// fdiv ; 43 43 division
|
59 |
|
|
//
|
60 |
|
|
// ftx ; 1 0 trigger fp exception
|
61 |
|
|
// fcx ; 1 0 clear fp exception
|
62 |
|
|
// fex ; 1 0 enable fp exception
|
63 |
|
|
// fdx ; 1 0 disable fp exception
|
64 |
|
|
// frm ; 1 0 set rounding mode
|
65 |
|
|
// fstat ; 1 0 get status register
|
66 |
|
|
//
|
67 |
|
|
// related integer:
|
68 |
|
|
// graf ; 1 0 get random float (0,1]
|
69 |
|
|
//
|
70 |
|
|
// ============================================================================
|
71 |
|
|
//
|
72 |
|
|
`define TRUE 1'b1
|
73 |
|
|
`define FALSE 1'b0
|
74 |
|
|
|
75 |
|
|
`define VECTOR 6'h01
|
76 |
|
|
`define VFABS 6'h03
|
77 |
|
|
`define VFADD 6'h04
|
78 |
|
|
`define VFSUB 6'h05
|
79 |
|
|
`define VFSxx 6'h06
|
80 |
|
|
`define VFNEG 6'h16
|
81 |
|
|
`define VFTOI 6'h24
|
82 |
|
|
`define VITOF 6'h25
|
83 |
|
|
`define VFMUL 6'h3A
|
84 |
|
|
`define VFDIV 6'h3E
|
85 |
|
|
`define FLOAT 6'h0F
|
86 |
|
|
`define FMOV 6'h10
|
87 |
|
|
`define FTOI 6'h12
|
88 |
|
|
`define ITOF 6'h13
|
89 |
|
|
`define FNEG 6'h14
|
90 |
|
|
`define FABS 6'h15
|
91 |
|
|
`define FSIGN 6'h16
|
92 |
|
|
`define FMAN 6'h17
|
93 |
|
|
`define FNABS 6'h18
|
94 |
|
|
`define FCVTSD 6'h19
|
95 |
|
|
`define FCVTSQ 6'h1B
|
96 |
|
|
`define FSTAT 6'h1C
|
97 |
|
|
`define FSQRT 6'h1D
|
98 |
|
|
`define FTX 6'h20
|
99 |
|
|
`define FCX 6'h21
|
100 |
|
|
`define FEX 6'h22
|
101 |
|
|
`define FDX 6'h23
|
102 |
|
|
`define FRM 6'h24
|
103 |
|
|
`define FCVTDS 6'h29
|
104 |
|
|
|
105 |
|
|
`define FADD 6'h04
|
106 |
|
|
`define FSUB 6'h05
|
107 |
|
|
`define FCMP 6'h06
|
108 |
|
|
`define FMUL 6'h08
|
109 |
|
|
`define FDIV 6'h09
|
110 |
|
|
|
111 |
|
|
`include "fp_defines.v"
|
112 |
|
|
|
113 |
|
|
module fpUnit(rst, clk, clk4x, ce, ir, ld, a, b, imm, o, csr_i, status, exception, done, rm
|
114 |
|
|
);
|
115 |
|
|
|
116 |
|
|
parameter WID = 64;
|
117 |
|
|
localparam MSB = WID-1;
|
118 |
|
|
localparam EMSB = WID==128 ? 14 :
|
119 |
|
|
WID==96 ? 14 :
|
120 |
|
|
WID==80 ? 14 :
|
121 |
|
|
WID==64 ? 10 :
|
122 |
|
|
WID==52 ? 10 :
|
123 |
|
|
WID==48 ? 10 :
|
124 |
|
|
WID==44 ? 10 :
|
125 |
|
|
WID==42 ? 10 :
|
126 |
|
|
WID==40 ? 9 :
|
127 |
|
|
WID==32 ? 7 :
|
128 |
|
|
WID==24 ? 6 : 4;
|
129 |
|
|
localparam FMSB = WID==128 ? 111 :
|
130 |
|
|
WID==96 ? 79 :
|
131 |
|
|
WID==80 ? 63 :
|
132 |
|
|
WID==64 ? 51 :
|
133 |
|
|
WID==52 ? 39 :
|
134 |
|
|
WID==48 ? 35 :
|
135 |
|
|
WID==44 ? 31 :
|
136 |
|
|
WID==42 ? 29 :
|
137 |
|
|
WID==40 ? 28 :
|
138 |
|
|
WID==32 ? 22 :
|
139 |
|
|
WID==24 ? 15 : 9;
|
140 |
|
|
localparam EMSBS = 7;
|
141 |
|
|
localparam FMSBS = 22;
|
142 |
|
|
localparam FX = (FMSB+2)*2-1; // the MSB of the expanded fraction
|
143 |
|
|
localparam EX = FX + 1 + EMSB + 1 + 1 - 1;
|
144 |
|
|
localparam FXS = (FMSBS+2)*2-1; // the MSB of the expanded fraction
|
145 |
|
|
localparam EXS = FXS + 1 + EMSBS + 1 + 1 - 1;
|
146 |
|
|
|
147 |
|
|
input rst;
|
148 |
|
|
input clk;
|
149 |
|
|
input clk4x;
|
150 |
|
|
input ce;
|
151 |
|
|
input [31:0] ir;
|
152 |
|
|
input ld;
|
153 |
|
|
input [MSB:0] a;
|
154 |
|
|
input [MSB:0] b;
|
155 |
|
|
input [5:0] imm;
|
156 |
|
|
output tri [MSB:0] o;
|
157 |
|
|
input [31:0] csr_i;
|
158 |
|
|
output [31:0] status;
|
159 |
|
|
output exception;
|
160 |
|
|
output done;
|
161 |
|
|
input [2:0] rm;
|
162 |
|
|
|
163 |
|
|
reg [7:0] fpcnt;
|
164 |
|
|
assign done = fpcnt==8'h00;
|
165 |
|
|
|
166 |
|
|
//------------------------------------------------------------
|
167 |
|
|
// constants
|
168 |
|
|
wire infXpq = {15{1'b1}};
|
169 |
|
|
wire infXp = {11{1'b1}}; // value for infinite exponent / nan
|
170 |
|
|
wire infXps = {8{1'b1}};
|
171 |
|
|
|
172 |
|
|
// Variables
|
173 |
|
|
wire divByZero; // attempt to divide by zero
|
174 |
|
|
wire inf; // result is infinite (+ or -)
|
175 |
|
|
wire zero; // result is zero (+ or -)
|
176 |
|
|
wire ns; // nan sign
|
177 |
|
|
wire nss;
|
178 |
|
|
wire nso;
|
179 |
|
|
wire nsos;
|
180 |
|
|
wire isNan,isNans;
|
181 |
|
|
wire nanx,nanxs;
|
182 |
|
|
|
183 |
|
|
// Decode fp operation
|
184 |
|
|
wire [5:0] op = ir[5:0];
|
185 |
|
|
wire [5:0] func6b = ir[31:26];
|
186 |
|
|
wire [2:0] prec = 3'd4;//ir[25:24];
|
187 |
|
|
|
188 |
|
|
wire fstat = {op,func6b} == {`FLOAT,`FSTAT}; // get status
|
189 |
|
|
wire fdiv = {op,func6b} == {`FLOAT,`FDIV};
|
190 |
|
|
wire ftx = {op,func6b} == {`FLOAT,`FTX}; // trigger exception
|
191 |
|
|
wire fcx = {op,func6b} == {`FLOAT,`FCX}; // clear exception
|
192 |
|
|
wire fex = {op,func6b} == {`FLOAT,`FEX}; // enable exception
|
193 |
|
|
wire fdx = {op,func6b} == {`FLOAT,`FDX}; // disable exception
|
194 |
|
|
wire fcmp = {op,func6b} == {`FLOAT,`FCMP};
|
195 |
|
|
wire frm = {op,func6b} == {`FLOAT,`FRM}; // set rounding mode
|
196 |
|
|
|
197 |
|
|
wire zl_op = (op==`FLOAT && (
|
198 |
|
|
(func6b==`FABS || func6b==`FNABS || func6b==`FMOV || func6b==`FNEG || func6b==`FSIGN || func6b==`FMAN || func6b==`FCVTSQ)) ||
|
199 |
|
|
func6b==`FCMP);
|
200 |
|
|
wire loo_op = (op==`FLOAT && (func6b==`ITOF || func6b==`FTOI));
|
201 |
|
|
wire loo_done;
|
202 |
|
|
|
203 |
|
|
wire subinf;
|
204 |
|
|
wire zerozero;
|
205 |
|
|
wire infzero;
|
206 |
|
|
wire infdiv;
|
207 |
|
|
|
208 |
|
|
// floating point control and status
|
209 |
|
|
|
210 |
|
|
wire inexe_i = csr_i[28];
|
211 |
|
|
wire dbzxe_i = csr_i[27];
|
212 |
|
|
wire underxe_i = csr_i[26];
|
213 |
|
|
wire overxe_i = csr_i[25];
|
214 |
|
|
wire invopxe_i = csr_i[24];
|
215 |
|
|
wire fractie_i = csr_i[22];
|
216 |
|
|
wire rawayz_i = csr_i[21];
|
217 |
|
|
wire C_i = csr_i[20];
|
218 |
|
|
wire neg_i = csr_i[19];
|
219 |
|
|
wire pos_i = csr_i[18];
|
220 |
|
|
wire zero_i = csr_i[17];
|
221 |
|
|
wire inf_i = csr_i[16];
|
222 |
|
|
wire swt_i = csr_i[15];
|
223 |
|
|
wire inex_i = csr_i[14];
|
224 |
|
|
wire dbzx_i = csr_i[13];
|
225 |
|
|
wire underx_i = csr_i[12];
|
226 |
|
|
wire overx_i = csr_i[11];
|
227 |
|
|
wire giopx_i = csr_i[10];
|
228 |
|
|
wire gx_i = csr_i[9];
|
229 |
|
|
wire sumx_i = csr_i[8];
|
230 |
|
|
wire cvt_i = csr_i[7];
|
231 |
|
|
wire sqrtx_i = csr_i[6];
|
232 |
|
|
wire NaNCmpx_i = csr_i[5];
|
233 |
|
|
wire infzerox_i = csr_i[4];
|
234 |
|
|
wire zerozerox_i= csr_i[3];
|
235 |
|
|
wire infdivx_i = csr_i[2];
|
236 |
|
|
wire subinfx_i = csr_i[1];
|
237 |
|
|
wire snanx_i = csr_i[0];
|
238 |
|
|
reg inexe; // inexact exception enable
|
239 |
|
|
reg dbzxe; // divide by zero exception enable
|
240 |
|
|
reg underxe; // underflow exception enable
|
241 |
|
|
reg overxe; // overflow exception enable
|
242 |
|
|
reg invopxe; // invalid operation exception enable
|
243 |
|
|
|
244 |
|
|
reg nsfp; // non-standard floating point indicator
|
245 |
|
|
|
246 |
|
|
reg fractie; // fraction inexact
|
247 |
|
|
reg raz; // rounded away from zero
|
248 |
|
|
|
249 |
|
|
reg inex; // inexact exception
|
250 |
|
|
reg dbzx; // divide by zero exception
|
251 |
|
|
reg underx; // underflow exception
|
252 |
|
|
reg overx; // overflow exception
|
253 |
|
|
reg giopx; // global invalid operation exception
|
254 |
|
|
reg sx; // summary exception
|
255 |
|
|
|
256 |
|
|
reg swtx; // software triggered exception indicator
|
257 |
|
|
|
258 |
|
|
wire gx = swtx|inex|dbzx|underx|overx|giopx; // global exception indicator
|
259 |
|
|
|
260 |
|
|
// breakdown of invalid operation exceptions
|
261 |
|
|
reg cvtx; // conversion exception
|
262 |
|
|
reg sqrtx; // squareroot exception
|
263 |
|
|
reg NaNCmpx; // NaN comparison exception
|
264 |
|
|
reg infzerox; // multiply infinity by zero
|
265 |
|
|
reg zerozerox; // division of zero by zero
|
266 |
|
|
reg infdivx; // division of infinities
|
267 |
|
|
reg subinfx; // subtraction of infinities
|
268 |
|
|
reg snanx; // signalling nan
|
269 |
|
|
|
270 |
|
|
wire divDone;
|
271 |
|
|
wire pipe_ce = ce;// & divDone; // divide must be done in order for pipe to clock
|
272 |
|
|
wire precmatch = 1'b0;//WID==32 ? ir[28:27]==2'b00 :
|
273 |
|
|
//WID==64 ? ir[28:27]==2'b01 : 1;
|
274 |
|
|
/*
|
275 |
|
|
WID==80 ? ir[28:27]==2'b10 :
|
276 |
|
|
ir[28:27]==2'b11;
|
277 |
|
|
*/
|
278 |
|
|
always @(posedge clk)
|
279 |
|
|
// reset: disable and clear all exceptions and status
|
280 |
|
|
if (rst) begin
|
281 |
|
|
inex <= 1'b0;
|
282 |
|
|
dbzx <= 1'b0;
|
283 |
|
|
underx <= 1'b0;
|
284 |
|
|
overx <= 1'b0;
|
285 |
|
|
giopx <= 1'b0;
|
286 |
|
|
swtx <= 1'b0;
|
287 |
|
|
sx <= 1'b0;
|
288 |
|
|
NaNCmpx <= 1'b0;
|
289 |
|
|
|
290 |
|
|
inexe <= 1'b0;
|
291 |
|
|
dbzxe <= 1'b0;
|
292 |
|
|
underxe <= 1'b0;
|
293 |
|
|
overxe <= 1'b0;
|
294 |
|
|
invopxe <= 1'b0;
|
295 |
|
|
|
296 |
|
|
nsfp <= 1'b0;
|
297 |
|
|
|
298 |
|
|
infzerox <= 1'b0;
|
299 |
|
|
zerozerox <= 1'b0;
|
300 |
|
|
subinfx <= 1'b0;
|
301 |
|
|
infdivx <= 1'b0;
|
302 |
|
|
|
303 |
|
|
cvtx <= 1'b0;
|
304 |
|
|
sqrtx <= 1'b0;
|
305 |
|
|
raz <= 1'b0;
|
306 |
|
|
fractie <= 1'b0;
|
307 |
|
|
snanx <= 1'b0;
|
308 |
|
|
end
|
309 |
|
|
else if (pipe_ce) begin
|
310 |
|
|
if (ftx && precmatch) begin
|
311 |
|
|
inex <= (a[4]|imm[4]);
|
312 |
|
|
dbzx <= (a[3]|imm[3]);
|
313 |
|
|
underx <= (a[2]|imm[2]);
|
314 |
|
|
overx <= (a[1]|imm[1]);
|
315 |
|
|
giopx <= (a[0]|imm[0]);
|
316 |
|
|
swtx <= 1'b1;
|
317 |
|
|
sx <= 1'b1;
|
318 |
|
|
end
|
319 |
|
|
|
320 |
|
|
infzerox <= infzero & invopxe_i;
|
321 |
|
|
zerozerox <= zerozero & invopxe_i;
|
322 |
|
|
subinfx <= subinf & invopxe_i;
|
323 |
|
|
infdivx <= infdiv & invopxe_i;
|
324 |
|
|
dbzx <= divByZero & dbzxe_i;
|
325 |
|
|
NaNCmpx <= nanx & fcmp & invopxe_i; // must be a compare
|
326 |
|
|
// sx <= sx |
|
327 |
|
|
// (invopxe & nanx & fcmp) |
|
328 |
|
|
// (invopxe & (infzero|zerozero|subinf|infdiv)) |
|
329 |
|
|
// (dbzxe & divByZero);
|
330 |
|
|
snanx <= isNan & invopxe_i;
|
331 |
|
|
end
|
332 |
|
|
|
333 |
|
|
// Decompose operands into sign,exponent,mantissa
|
334 |
|
|
wire sa, sb, sas, sbs;
|
335 |
|
|
wire [FMSB:0] ma, mb;
|
336 |
|
|
wire [22:0] mas, mbs;
|
337 |
|
|
|
338 |
|
|
wire aInf, bInf, aInfs, bInfs;
|
339 |
|
|
wire aNan, bNan, aNans, bNans;
|
340 |
|
|
wire az, bz, azs, bzs;
|
341 |
|
|
wire [2:0] rmd4; // 1st stage delayed
|
342 |
|
|
wire [5:0] op1, op2;
|
343 |
|
|
wire [5:0] fn2;
|
344 |
|
|
|
345 |
|
|
wire [MSB:0] zld_o,lood_o;
|
346 |
|
|
wire [31:0] zls_o,loos_o;
|
347 |
|
|
wire [WID-1:0] zlq_o, looq_o;
|
348 |
|
|
fpZLUnit #(WID) u6 (.ir(ir), .a(a), .b(b), .o(zlq_o), .nanx(nanx) );
|
349 |
|
|
fpLOOUnit #(WID) u7 (.clk(clk), .ce(pipe_ce), .ir(ir), .a(a), .o(looq_o), .done() );
|
350 |
|
|
//fpLOOUnit #(32) u7s (.clk(clk), .ce(pipe_ce), .rm(rm), .op(op), .fn(fn), .a(a[31:0]), .o(loos_o), .done() );
|
351 |
|
|
|
352 |
|
|
fp_decomp #(WID) u1 (.i(a), .sgn(sa), .man(ma), .vz(az), .inf(aInf), .nan(aNan) );
|
353 |
|
|
fp_decomp #(WID) u2 (.i(b), .sgn(sb), .man(mb), .vz(bz), .inf(bInf), .nan(bNan) );
|
354 |
|
|
//fp_decomp #(32) u1s (.i(a[31:0]), .sgn(sas), .man(mas), .vz(azs), .inf(aInfs), .nan(aNans) );
|
355 |
|
|
//fp_decomp #(32) u2s (.i(b[31:0]), .sgn(sbs), .man(mbs), .vz(bzs), .inf(bInfs), .nan(bNans) );
|
356 |
|
|
|
357 |
|
|
wire [2:0] rmd = ir[26:24]==3'b111 ? rm : ir[26:24];
|
358 |
|
|
delay4 #(3) u3 (.clk(clk), .ce(pipe_ce), .i(rmd), .o(rmd4) );
|
359 |
|
|
delay1 #(6) u4 (.clk(clk), .ce(pipe_ce), .i(func6b), .o(op1) );
|
360 |
|
|
delay2 #(6) u5 (.clk(clk), .ce(pipe_ce), .i(func6b), .o(op2) );
|
361 |
|
|
delay2 #(6) u5b (.clk(clk), .ce(pipe_ce), .i(func6b), .o(fn2) );
|
362 |
|
|
|
363 |
|
|
delay5 delay5_3(.clk(clk), .ce(pipe_ce), .i((bz & !aNan & fdiv)|(bzs & !aNans & fdivs)), .o(divByZero) );
|
364 |
|
|
|
365 |
|
|
// Compute NaN output sign
|
366 |
|
|
wire aob_nan = aNan|bNan; // one of the operands is a nan
|
367 |
|
|
wire bothNan = aNan&bNan; // both of the operands are nans
|
368 |
|
|
//wire aob_nans = aNans|bNans; // one of the operands is a nan
|
369 |
|
|
//wire bothNans = aNans&bNans; // both of the operands are nans
|
370 |
|
|
|
371 |
|
|
assign ns = bothNan ?
|
372 |
|
|
(ma==mb ? sa & sb : ma < mb ? sb : sa) :
|
373 |
|
|
aNan ? sa : sb;
|
374 |
|
|
//assign nss = bothNans ?
|
375 |
|
|
// (mas==mbs ? sas & sbs : mas < mbs ? sbs : sas) :
|
376 |
|
|
// aNans ? sas : sbs;
|
377 |
|
|
|
378 |
|
|
delay5 u8(.clk(clk), .ce(ce), .i(ns), .o(nso) );
|
379 |
|
|
delay5 u9(.clk(clk), .ce(ce), .i(aob_nan), .o(isNan) );
|
380 |
|
|
//delay5 u8s(.clk(clk), .ce(ce), .i(nss), .o(nsos) );
|
381 |
|
|
//delay5 u9s(.clk(clk), .ce(ce), .i(aob_nans), .o(isNans) );
|
382 |
|
|
|
383 |
|
|
wire [MSB:0] fpu_o;
|
384 |
|
|
wire [MSB+3:0] fpn_o;
|
385 |
|
|
wire [EX:0] fdiv_o;
|
386 |
|
|
wire [EX:0] fmul_o;
|
387 |
|
|
wire [EX:0] fas_o;
|
388 |
|
|
wire [EX:0] fsqrt_o;
|
389 |
|
|
reg [EX:0] fres;
|
390 |
|
|
wire [31:0] fpus_o;
|
391 |
|
|
wire [31+3:0] fpns_o;
|
392 |
|
|
wire [EXS:0] fdivs_o;
|
393 |
|
|
wire [EXS:0] fmuls_o;
|
394 |
|
|
wire [EXS:0] fass_o;
|
395 |
|
|
reg [EXS:0] fress;
|
396 |
|
|
wire divUnder,divUnders;
|
397 |
|
|
wire mulUnder,mulUnders;
|
398 |
|
|
reg under,unders;
|
399 |
|
|
wire sqrneg;
|
400 |
|
|
|
401 |
|
|
fpAddsub #(WID) u10(.clk(clk), .ce(pipe_ce), .rm(rmd), .op(func6b[0]), .a(a), .b(b), .o(fas_o) );
|
402 |
|
|
fpDiv #(WID) u11(.clk(clk), .clk4x(clk4x), .ce(pipe_ce), .ld(ld), .a(a), .b(b), .o(fdiv_o), .sign_exe(), .underflow(divUnder), .done(divDone) );
|
403 |
|
|
fpMul #(WID) u12(.clk(clk), .ce(pipe_ce), .a(a), .b(b), .o(fmul_o), .sign_exe(), .inf(), .underflow(mulUnder) );
|
404 |
|
|
fpSqrt #(WID) u13(.rst(rst), .clk(clk4x), .ce(pipe_ce), .ld(ld), .a(a), .o(fsqrt_o), .done(), .sqrinf(), .sqrneg(sqrneg) );
|
405 |
|
|
/*
|
406 |
|
|
fpAddsub #(32) u10s(.clk(clk), .ce(pipe_ce), .rm(rm), .op(op[0]), .a(a[31:0]), .b(b[31:0]), .o(fass_o) );
|
407 |
|
|
fpDiv #(32) u11s(.clk(clk), .ce(pipe_ce), .ld(ld), .a(a[31:0]), .b(b[31:0]), .o(fdivs_o), .sign_exe(), .underflow(divUnders), .done() );
|
408 |
|
|
fpMul #(32) u12s(.clk(clk), .ce(pipe_ce), .a(a[31:0]), .b(b[31:0]), .o(fmuls_o), .sign_exe(), .inf(), .underflow(mulUnders) );
|
409 |
|
|
*/
|
410 |
|
|
always @*
|
411 |
|
|
case(op2)
|
412 |
|
|
`FLOAT:
|
413 |
|
|
case (fn2)
|
414 |
|
|
`FMUL: under = mulUnder;
|
415 |
|
|
`FDIV: under = divUnder;
|
416 |
|
|
default: begin under = 0; unders = 0; end
|
417 |
|
|
endcase
|
418 |
|
|
`VECTOR:
|
419 |
|
|
case (fn2)
|
420 |
|
|
`VFMUL: under = mulUnder;
|
421 |
|
|
`VFDIV: under = divUnder;
|
422 |
|
|
default: begin under = 0; unders = 0; end
|
423 |
|
|
endcase
|
424 |
|
|
default: begin under = 0; unders = 0; end
|
425 |
|
|
endcase
|
426 |
|
|
|
427 |
|
|
always @*
|
428 |
|
|
case(op2)
|
429 |
|
|
`FLOAT:
|
430 |
|
|
case(fn2)
|
431 |
|
|
`FADD: fres <= fas_o;
|
432 |
|
|
`FSUB: fres <= fas_o;
|
433 |
|
|
`FMUL: fres <= fmul_o;
|
434 |
|
|
`FDIV: fres <= fdiv_o;
|
435 |
|
|
`FSQRT: fres <= fsqrt_o;
|
436 |
|
|
default: begin fres <= fas_o; fress <= fass_o; end
|
437 |
|
|
endcase
|
438 |
|
|
`VECTOR:
|
439 |
|
|
case(fn2)
|
440 |
|
|
`VFADD: fres <= fas_o;
|
441 |
|
|
`VFSUB: fres <= fas_o;
|
442 |
|
|
`VFMUL: fres <= fmul_o;
|
443 |
|
|
`VFDIV: fres <= fdiv_o;
|
444 |
|
|
default: begin fres <= fas_o; fress <= fass_o; end
|
445 |
|
|
endcase
|
446 |
|
|
default: begin fres <= fas_o; fress <= fass_o; end
|
447 |
|
|
endcase
|
448 |
|
|
|
449 |
|
|
// pipeline stage
|
450 |
|
|
// one cycle latency
|
451 |
|
|
fpNormalize #(WID) fpn0(.clk(clk), .ce(pipe_ce), .under(under), .i(fres), .o(fpn_o) );
|
452 |
|
|
//fpNormalize #(32) fpns(.clk(clk), .ce(pipe_ce), .under(unders), .i(fress), .o(fpns_o) );
|
453 |
|
|
|
454 |
|
|
// pipeline stage
|
455 |
|
|
// one cycle latency
|
456 |
|
|
fpRoundReg #(WID) fpr0(.clk(clk), .ce(pipe_ce), .rm(rmd4), .i(fpn_o), .o(fpu_o) );
|
457 |
|
|
//fpRoundReg #(32) fprs(.clk(clk), .ce(pipe_ce), .rm(rm4), .i(fpns_o), .o(fpus_o) );
|
458 |
|
|
|
459 |
|
|
wire so = (isNan?nso:fpu_o[WID-1]);
|
460 |
|
|
//single ? (isNans?nsos:fpus_o[31]): (isNan?nso:fpu_o[63]);
|
461 |
|
|
|
462 |
|
|
//fix: status should be registered
|
463 |
|
|
assign status = {
|
464 |
|
|
rm,
|
465 |
|
|
inexe,
|
466 |
|
|
dbzxe,
|
467 |
|
|
underxe,
|
468 |
|
|
overxe,
|
469 |
|
|
invopxe,
|
470 |
|
|
nsfp,
|
471 |
|
|
|
472 |
|
|
fractie,
|
473 |
|
|
raz,
|
474 |
|
|
1'b0,
|
475 |
|
|
so & !zero,
|
476 |
|
|
!so & !zero,
|
477 |
|
|
zero,
|
478 |
|
|
inf,
|
479 |
|
|
|
480 |
|
|
swtx,
|
481 |
|
|
inex,
|
482 |
|
|
dbzx,
|
483 |
|
|
underx,
|
484 |
|
|
overx,
|
485 |
|
|
giopx,
|
486 |
|
|
gx,
|
487 |
|
|
sx,
|
488 |
|
|
|
489 |
|
|
1'b0, // cvtx
|
490 |
|
|
sqrneg, // sqrtx
|
491 |
|
|
fcmp & nanx,
|
492 |
|
|
infzero,
|
493 |
|
|
zerozero,
|
494 |
|
|
infdiv,
|
495 |
|
|
subinf,
|
496 |
|
|
isNan
|
497 |
|
|
};
|
498 |
|
|
|
499 |
|
|
assign o = (!fstat) ?
|
500 |
|
|
(frm|fcx|fdx|fex) ? (a|imm) :
|
501 |
|
|
zl_op ? zlq_o :
|
502 |
|
|
loo_op ? looq_o :
|
503 |
|
|
{so,fpu_o[MSB-1:0]} : 'bz;
|
504 |
|
|
assign zero = fpu_o[MSB-1:0]==0;
|
505 |
|
|
|
506 |
|
|
wire [7:0] maxdivcnt;
|
507 |
|
|
generate begin
|
508 |
|
|
if (WID==128) begin
|
509 |
|
|
assign inf = &fpu_o[126:112] && fpu_o[111:0]==0;
|
510 |
|
|
assign subinf = fpu_o[126:0]==`QSUBINFQ;
|
511 |
|
|
assign infdiv = fpu_o[126:0]==`QINFDIVQ;
|
512 |
|
|
assign zerozero = fpu_o[126:0]==`QZEROZEROQ;
|
513 |
|
|
assign infzero = fpu_o[126:0]==`QINFZEROQ;
|
514 |
|
|
assign maxdivcnt = 8'd64;
|
515 |
|
|
end
|
516 |
|
|
else if (WID==80) begin
|
517 |
|
|
assign inf = &fpu_o[78:64] && fpu_o[63:0]==0;
|
518 |
|
|
assign subinf = fpu_o[78:0]==`QSUBINFDX;
|
519 |
|
|
assign infdiv = fpu_o[78:0]==`QINFDIVDX;
|
520 |
|
|
assign zerozero = fpu_o[78:0]==`QZEROZERODX;
|
521 |
|
|
assign infzero = fpu_o[78:0]==`QINFZERODX;
|
522 |
|
|
assign maxdivcnt = 8'd40;
|
523 |
|
|
end
|
524 |
|
|
else if (WID==64) begin
|
525 |
|
|
assign inf = &fpu_o[62:52] && fpu_o[51:0]==0;
|
526 |
|
|
assign subinf = fpu_o[62:0]==`QSUBINFD;
|
527 |
|
|
assign infdiv = fpu_o[62:0]==`QINFDIVD;
|
528 |
|
|
assign zerozero = fpu_o[62:0]==`QZEROZEROD;
|
529 |
|
|
assign infzero = fpu_o[62:0]==`QINFZEROD;
|
530 |
|
|
assign maxdivcnt = 8'd32;
|
531 |
|
|
end
|
532 |
|
|
else if (WID==32) begin
|
533 |
|
|
assign inf = &fpu_o[30:23] && fpu_o[22:0]==0;
|
534 |
|
|
assign subinf = fpu_o[30:0]==`QSUBINFS;
|
535 |
|
|
assign infdiv = fpu_o[30:0]==`QINFDIVS;
|
536 |
|
|
assign zerozero = fpu_o[30:0]==`QZEROZEROS;
|
537 |
|
|
assign infzero = fpu_o[30:0]==`QINFZEROS;
|
538 |
|
|
assign maxdivcnt = 8'd16;
|
539 |
|
|
end
|
540 |
|
|
end
|
541 |
|
|
endgenerate
|
542 |
|
|
|
543 |
|
|
assign exception = gx;
|
544 |
|
|
|
545 |
|
|
// Generate a done signal. Latency varys depending on the instruction.
|
546 |
|
|
always @(posedge clk)
|
547 |
|
|
begin
|
548 |
|
|
if (rst)
|
549 |
|
|
fpcnt <= 8'h00;
|
550 |
|
|
else begin
|
551 |
|
|
if (ld)
|
552 |
|
|
case(ir[5:0])
|
553 |
|
|
`FLOAT:
|
554 |
|
|
case(func6b)
|
555 |
|
|
`FABS,`FNABS,`FNEG,`FMAN,`FMOV,`FSIGN,
|
556 |
|
|
`FCVTSD,`FCVTSQ,`FCVTDS: begin fpcnt <= 8'd0; end
|
557 |
|
|
`FTOI: begin fpcnt <= 8'd1; end
|
558 |
|
|
`ITOF: begin fpcnt <= 8'd1; end
|
559 |
|
|
`FCMP: begin fpcnt <= 8'd0; end
|
560 |
|
|
`FADD: begin fpcnt <= 8'd6; end
|
561 |
|
|
`FSUB: begin fpcnt <= 8'd6; end
|
562 |
|
|
`FMUL: begin fpcnt <= 8'd6; end
|
563 |
|
|
`FDIV: begin fpcnt <= maxdivcnt; end
|
564 |
|
|
`FSQRT: begin fpcnt <= maxdivcnt; end
|
565 |
|
|
default: fpcnt <= 8'h00;
|
566 |
|
|
endcase
|
567 |
|
|
`VECTOR:
|
568 |
|
|
case(func6b)
|
569 |
|
|
`VFNEG: begin fpcnt <= 8'd0; end
|
570 |
|
|
`VFADD: begin fpcnt <= 8'd6; end
|
571 |
|
|
`VFSUB: begin fpcnt <= 8'd6; end
|
572 |
|
|
`VFSxx: begin fpcnt <= 8'd0; end
|
573 |
|
|
`VFMUL: begin fpcnt <= 8'd6; end
|
574 |
|
|
`VFDIV: begin fpcnt <= maxdivcnt; end
|
575 |
|
|
`VFTOI: begin fpcnt <= 8'd1; end
|
576 |
|
|
`VITOF: begin fpcnt <= 8'd1; end
|
577 |
|
|
default: fpcnt <= 8'h00;
|
578 |
|
|
endcase
|
579 |
|
|
default: fpcnt <= 8'h00;
|
580 |
|
|
endcase
|
581 |
|
|
else if (!done)
|
582 |
|
|
fpcnt <= fpcnt - 1;
|
583 |
|
|
end
|
584 |
|
|
end
|
585 |
|
|
endmodule
|
586 |
|
|
|