2019-07-15 16:46:31 -05:00
|
|
|
pattern xilinx_dsp
|
|
|
|
|
|
|
|
state <SigBit> clock
|
2019-09-05 12:46:33 -05:00
|
|
|
state <SigSpec> sigA sigffAmux sigB sigffBmux sigC sigM sigP
|
2019-09-05 23:38:35 -05:00
|
|
|
state <IdString> postAddAB postAddMuxAB
|
|
|
|
state <bool> ffAenpol ffBenpol ffMenpol ffPenpol
|
2019-07-15 16:46:31 -05:00
|
|
|
|
2019-07-16 16:06:32 -05:00
|
|
|
match dsp
|
|
|
|
select dsp->type.in(\DSP48E1)
|
2019-07-15 16:46:31 -05:00
|
|
|
endmatch
|
|
|
|
|
2019-09-05 12:46:33 -05:00
|
|
|
code sigA sigffAmux sigB sigffBmux sigM
|
2019-09-04 19:18:49 -05:00
|
|
|
sigA = port(dsp, \A);
|
|
|
|
int i;
|
|
|
|
for (i = GetSize(sigA)-1; i > 0; i--)
|
|
|
|
if (sigA[i] != sigA[i-1])
|
|
|
|
break;
|
2019-09-05 12:07:26 -05:00
|
|
|
// Do not remove non-const sign bit
|
|
|
|
if (sigA[i].wire)
|
|
|
|
++i;
|
2019-09-04 19:18:49 -05:00
|
|
|
sigA.remove(i, GetSize(sigA)-i);
|
2019-09-04 19:22:02 -05:00
|
|
|
sigB = port(dsp, \B);
|
|
|
|
for (i = GetSize(sigB)-1; i > 0; i--)
|
|
|
|
if (sigB[i] != sigB[i-1])
|
|
|
|
break;
|
2019-09-05 12:07:26 -05:00
|
|
|
// Do not remove non-const sign bit
|
|
|
|
if (sigB[i].wire)
|
|
|
|
++i;
|
2019-09-04 19:22:02 -05:00
|
|
|
sigB.remove(i, GetSize(sigB)-i);
|
2019-08-13 19:11:35 -05:00
|
|
|
|
2019-09-04 19:06:17 -05:00
|
|
|
SigSpec P = port(dsp, \P);
|
|
|
|
// Only care about those bits that are used
|
|
|
|
for (i = 0; i < GetSize(P); i++) {
|
|
|
|
if (nusers(P[i]) <= 1)
|
|
|
|
break;
|
|
|
|
sigM.append(P[i]);
|
|
|
|
}
|
|
|
|
log_assert(nusers(P.extract_end(i)) <= 1);
|
|
|
|
//if (GetSize(sigM) <= 10)
|
2019-08-30 17:00:56 -05:00
|
|
|
// reject;
|
|
|
|
endcode
|
|
|
|
|
2019-07-15 16:46:31 -05:00
|
|
|
match ffA
|
2019-08-09 17:47:40 -05:00
|
|
|
if param(dsp, \AREG).as_int() == 0
|
2019-08-08 12:51:19 -05:00
|
|
|
select ffA->type.in($dff)
|
2019-07-15 16:46:31 -05:00
|
|
|
// DSP48E1 does not support clock inversion
|
2019-07-18 15:30:35 -05:00
|
|
|
select param(ffA, \CLK_POLARITY).as_bool()
|
2019-09-04 19:18:49 -05:00
|
|
|
filter GetSize(port(ffA, \Q)) >= GetSize(sigA)
|
|
|
|
slice offset GetSize(port(ffA, \Q))
|
|
|
|
filter offset+GetSize(sigA) <= GetSize(port(ffA, \Q)) && port(ffA, \Q).extract(offset, GetSize(sigA)) == sigA
|
2019-07-15 16:46:31 -05:00
|
|
|
optional
|
|
|
|
endmatch
|
|
|
|
|
2019-09-05 12:07:26 -05:00
|
|
|
code sigA sigffAmux clock
|
2019-08-15 14:34:11 -05:00
|
|
|
if (ffA) {
|
|
|
|
for (auto b : port(ffA, \Q))
|
|
|
|
if (b.wire->get_bool_attribute(\keep))
|
|
|
|
reject;
|
2019-09-04 19:18:49 -05:00
|
|
|
|
|
|
|
clock = port(ffA, \CLK).as_bit();
|
2019-09-05 12:07:26 -05:00
|
|
|
|
2019-09-05 12:46:33 -05:00
|
|
|
sigffAmux = sigA;
|
2019-09-05 12:07:26 -05:00
|
|
|
sigA.replace(port(ffA, \Q), port(ffA, \D));
|
2019-08-15 14:34:11 -05:00
|
|
|
}
|
2019-07-15 16:46:31 -05:00
|
|
|
endcode
|
|
|
|
|
2019-09-05 12:07:26 -05:00
|
|
|
match ffAmux
|
2019-09-05 12:46:33 -05:00
|
|
|
if ffA
|
2019-09-05 12:07:26 -05:00
|
|
|
select ffAmux->type.in($mux)
|
2019-09-05 13:55:14 -05:00
|
|
|
filter GetSize(port(ffAmux, \Y)) >= GetSize(sigA)
|
|
|
|
slice offset GetSize(port(ffAmux, \Y))
|
|
|
|
filter offset+GetSize(sigA) <= GetSize(port(ffAmux, \Y)) && port(ffAmux, \Y).extract(offset, GetSize(sigA)) == sigA
|
2019-09-05 23:28:28 -05:00
|
|
|
choice <IdString> BA {\B, \A}
|
|
|
|
filter offset+GetSize(sigffAmux) <= GetSize(port(ffAmux, \Y)) && port(ffAmux, BA).extract(offset, GetSize(sigffAmux)) == sigffAmux
|
|
|
|
define <bool> pol (BA == \B)
|
|
|
|
set ffAenpol pol
|
2019-09-05 12:46:33 -05:00
|
|
|
semioptional
|
2019-09-05 12:07:26 -05:00
|
|
|
endmatch
|
|
|
|
|
2019-07-15 16:46:31 -05:00
|
|
|
match ffB
|
2019-08-09 17:47:40 -05:00
|
|
|
if param(dsp, \BREG).as_int() == 0
|
2019-08-08 12:51:19 -05:00
|
|
|
select ffB->type.in($dff)
|
2019-07-18 15:30:35 -05:00
|
|
|
// DSP48E1 does not support clock inversion
|
2019-07-16 17:54:07 -05:00
|
|
|
select param(ffB, \CLK_POLARITY).as_bool()
|
2019-09-04 19:22:02 -05:00
|
|
|
filter GetSize(port(ffB, \Q)) >= GetSize(sigB)
|
|
|
|
slice offset GetSize(port(ffB, \Q))
|
|
|
|
filter offset+GetSize(sigB) <= GetSize(port(ffB, \Q)) && port(ffB, \Q).extract(offset, GetSize(sigB)) == sigB
|
2019-07-15 16:46:31 -05:00
|
|
|
optional
|
|
|
|
endmatch
|
|
|
|
|
2019-09-05 12:46:33 -05:00
|
|
|
code sigB sigffBmux clock
|
2019-07-15 16:46:31 -05:00
|
|
|
if (ffB) {
|
2019-08-15 14:34:11 -05:00
|
|
|
for (auto b : port(ffB, \Q))
|
|
|
|
if (b.wire->get_bool_attribute(\keep))
|
|
|
|
reject;
|
|
|
|
|
2019-07-15 16:46:31 -05:00
|
|
|
SigBit c = port(ffB, \CLK).as_bit();
|
|
|
|
|
|
|
|
if (clock != SigBit() && c != clock)
|
|
|
|
reject;
|
|
|
|
|
|
|
|
clock = c;
|
2019-09-05 12:46:33 -05:00
|
|
|
|
|
|
|
sigffBmux = sigB;
|
|
|
|
sigB.replace(port(ffB, \Q), port(ffB, \D));
|
2019-07-15 16:46:31 -05:00
|
|
|
}
|
|
|
|
endcode
|
|
|
|
|
2019-09-05 12:46:33 -05:00
|
|
|
match ffBmux
|
|
|
|
if ffB
|
|
|
|
select ffBmux->type.in($mux)
|
2019-09-05 13:55:14 -05:00
|
|
|
filter GetSize(port(ffBmux, \Y)) >= GetSize(sigB)
|
|
|
|
slice offset GetSize(port(ffBmux, \Y))
|
|
|
|
filter offset+GetSize(sigB) <= GetSize(port(ffBmux, \Y)) && port(ffBmux, \Y).extract(offset, GetSize(sigB)) == sigB
|
2019-09-05 23:38:35 -05:00
|
|
|
choice <IdString> BA {\B, \A}
|
|
|
|
filter offset+GetSize(sigffBmux) <= GetSize(port(ffBmux, \Y)) && port(ffBmux, BA).extract(offset, GetSize(sigffBmux)) == sigffBmux
|
|
|
|
define <bool> pol (BA == \B)
|
|
|
|
set ffBenpol pol
|
2019-09-05 12:46:33 -05:00
|
|
|
semioptional
|
|
|
|
endmatch
|
|
|
|
|
2019-09-04 12:52:51 -05:00
|
|
|
match ffMmux
|
|
|
|
select ffMmux->type.in($mux)
|
|
|
|
select nusers(port(ffMmux, \Y)) == 2
|
|
|
|
filter GetSize(port(ffMmux, \Y)) <= GetSize(sigM)
|
2019-09-05 23:38:35 -05:00
|
|
|
choice <IdString> BA {\B, \A}
|
|
|
|
filter port(ffMmux, BA) == sigM.extract(0, GetSize(port(ffMmux, \Y)))
|
|
|
|
filter nusers(sigM.extract_end(GetSize(port(ffMmux, BA)))) <= 1
|
|
|
|
define <bool> pol (BA == \B)
|
|
|
|
set ffMenpol pol
|
2019-09-05 13:46:38 -05:00
|
|
|
optional
|
2019-09-04 12:52:51 -05:00
|
|
|
endmatch
|
|
|
|
|
|
|
|
code sigM
|
|
|
|
if (ffMmux)
|
|
|
|
sigM = port(ffMmux, \Y);
|
|
|
|
endcode
|
|
|
|
|
2019-08-30 17:00:56 -05:00
|
|
|
match ffM
|
|
|
|
if param(dsp, \MREG).as_int() == 0
|
|
|
|
select ffM->type.in($dff)
|
|
|
|
// DSP48E1 does not support clock inversion
|
|
|
|
select param(ffM, \CLK_POLARITY).as_bool()
|
|
|
|
select nusers(port(ffM, \D)) == 2
|
2019-08-30 18:18:58 -05:00
|
|
|
filter GetSize(port(ffM, \D)) <= GetSize(sigM)
|
2019-08-30 17:00:56 -05:00
|
|
|
filter port(ffM, \D) == sigM.extract(0, GetSize(port(ffM, \D)))
|
2019-08-30 18:18:58 -05:00
|
|
|
filter nusers(sigM.extract_end(GetSize(port(ffM, \D)))) <= 1
|
2019-09-04 12:52:51 -05:00
|
|
|
// Check ffMmux (when present) is a $dff enable mux
|
2019-09-05 23:38:35 -05:00
|
|
|
filter !ffMmux || port(ffM, \Q) == port(ffMmux, ffMenpol ? \A : \B)
|
2019-08-30 17:00:56 -05:00
|
|
|
optional
|
|
|
|
endmatch
|
|
|
|
|
|
|
|
code clock sigM sigP
|
|
|
|
if (ffM) {
|
|
|
|
sigM = port(ffM, \Q);
|
2019-09-04 12:52:51 -05:00
|
|
|
|
2019-08-30 17:00:56 -05:00
|
|
|
for (auto b : sigM)
|
|
|
|
if (b.wire->get_bool_attribute(\keep))
|
|
|
|
reject;
|
|
|
|
|
2019-08-30 18:18:58 -05:00
|
|
|
SigBit c = port(ffM, \CLK).as_bit();
|
2019-08-30 17:00:56 -05:00
|
|
|
|
|
|
|
if (clock != SigBit() && c != clock)
|
|
|
|
reject;
|
|
|
|
|
|
|
|
clock = c;
|
|
|
|
}
|
2019-09-04 12:52:51 -05:00
|
|
|
// Cannot have ffMmux enable mux without ffM
|
|
|
|
else if (ffMmux)
|
|
|
|
reject;
|
2019-08-30 17:00:56 -05:00
|
|
|
|
|
|
|
sigP = sigM;
|
2019-08-09 17:19:33 -05:00
|
|
|
endcode
|
|
|
|
|
2019-09-03 18:10:16 -05:00
|
|
|
match postAdd
|
|
|
|
// Ensure that Z mux is not already used
|
|
|
|
if port(dsp, \OPMODE).extract(4,3).is_fully_zero()
|
|
|
|
|
2019-09-03 18:24:59 -05:00
|
|
|
select postAdd->type.in($add)
|
2019-09-03 18:10:16 -05:00
|
|
|
choice <IdString> AB {\A, \B}
|
2019-09-04 12:52:51 -05:00
|
|
|
select nusers(port(postAdd, AB)) <= 3
|
|
|
|
filter ffMmux || nusers(port(postAdd, AB)) == 2
|
|
|
|
filter !ffMmux || nusers(port(postAdd, AB)) == 3
|
2019-09-03 18:10:16 -05:00
|
|
|
filter GetSize(port(postAdd, AB)) <= GetSize(sigP)
|
|
|
|
filter port(postAdd, AB) == sigP.extract(0, GetSize(port(postAdd, AB)))
|
|
|
|
filter nusers(sigP.extract_end(GetSize(port(postAdd, AB)))) <= 1
|
|
|
|
set postAddAB AB
|
2019-08-09 17:19:33 -05:00
|
|
|
optional
|
|
|
|
endmatch
|
|
|
|
|
2019-09-03 18:10:16 -05:00
|
|
|
code sigC sigP
|
|
|
|
if (postAdd) {
|
|
|
|
sigC = port(postAdd, postAddAB == \A ? \B : \A);
|
2019-08-09 17:19:33 -05:00
|
|
|
|
2019-08-30 18:18:58 -05:00
|
|
|
// TODO for DSP48E1, which will have sign extended inputs/outputs
|
|
|
|
//int natural_mul_width = GetSize(port(dsp, \A)) + GetSize(port(dsp, \B));
|
|
|
|
//int actual_mul_width = GetSize(sigP);
|
|
|
|
//int actual_acc_width = GetSize(sigC);
|
2019-08-09 17:19:33 -05:00
|
|
|
|
2019-08-30 18:18:58 -05:00
|
|
|
//if ((actual_acc_width > actual_mul_width) && (natural_mul_width > actual_mul_width))
|
|
|
|
// reject;
|
2019-09-03 18:10:16 -05:00
|
|
|
//if ((actual_acc_width != actual_mul_width) && (param(dsp, \A_SIGNED).as_bool() != param(postAdd, \A_SIGNED).as_bool()))
|
2019-08-09 17:19:33 -05:00
|
|
|
// reject;
|
|
|
|
|
2019-09-03 18:10:16 -05:00
|
|
|
sigP = port(postAdd, \Y);
|
2019-08-09 17:19:33 -05:00
|
|
|
}
|
|
|
|
endcode
|
|
|
|
|
2019-09-05 13:00:27 -05:00
|
|
|
match ffPmux
|
|
|
|
select ffPmux->type.in($mux)
|
|
|
|
select nusers(port(ffPmux, \Y)) == 2
|
|
|
|
filter GetSize(port(ffPmux, \Y)) <= GetSize(sigP)
|
2019-09-05 23:38:35 -05:00
|
|
|
choice <IdString> BA {\B, \A}
|
|
|
|
filter port(ffPmux, BA) == sigP.extract(0, GetSize(port(ffPmux, \Y)))
|
|
|
|
filter nusers(sigP.extract_end(GetSize(port(ffPmux, BA)))) <= 1
|
|
|
|
define <bool> pol (BA == \B)
|
|
|
|
set ffPenpol pol
|
2019-09-05 13:46:38 -05:00
|
|
|
optional
|
2019-09-05 13:00:27 -05:00
|
|
|
endmatch
|
|
|
|
|
|
|
|
code sigP
|
|
|
|
if (ffPmux)
|
2019-09-05 23:38:35 -05:00
|
|
|
sigP.replace(port(ffPmux, ffPenpol ? \A : \B), port(ffPmux, \Y));
|
2019-09-05 13:00:27 -05:00
|
|
|
endcode
|
|
|
|
|
2019-07-16 16:06:32 -05:00
|
|
|
match ffP
|
2019-08-09 17:47:40 -05:00
|
|
|
if param(dsp, \PREG).as_int() == 0
|
2019-08-08 12:51:19 -05:00
|
|
|
select ffP->type.in($dff)
|
2019-07-18 15:30:35 -05:00
|
|
|
// DSP48E1 does not support clock inversion
|
|
|
|
select param(ffP, \CLK_POLARITY).as_bool()
|
2019-09-04 19:06:17 -05:00
|
|
|
filter GetSize(port(ffP, \D)) >= GetSize(sigP)
|
|
|
|
slice offset GetSize(port(ffP, \D))
|
|
|
|
filter offset+GetSize(sigP) <= GetSize(port(ffP, \D)) && port(ffP, \D).extract(offset, GetSize(sigP)) == sigP
|
2019-09-05 13:00:27 -05:00
|
|
|
// Check ffPmux (when present) is a $dff enable mux
|
2019-09-05 23:38:35 -05:00
|
|
|
filter !ffPmux || port(ffP, \Q) == port(ffPmux, ffPenpol ? \A : \B)
|
2019-07-16 16:06:32 -05:00
|
|
|
optional
|
|
|
|
endmatch
|
|
|
|
|
2019-09-03 17:53:10 -05:00
|
|
|
code ffP sigP clock
|
2019-07-16 16:06:32 -05:00
|
|
|
if (ffP) {
|
2019-08-15 14:34:11 -05:00
|
|
|
for (auto b : port(ffP, \Q))
|
|
|
|
if (b.wire->get_bool_attribute(\keep))
|
|
|
|
reject;
|
|
|
|
|
2019-07-16 16:06:32 -05:00
|
|
|
SigBit c = port(ffP, \CLK).as_bit();
|
2019-07-15 16:46:31 -05:00
|
|
|
|
|
|
|
if (clock != SigBit() && c != clock)
|
|
|
|
reject;
|
|
|
|
|
|
|
|
clock = c;
|
2019-09-03 17:53:10 -05:00
|
|
|
|
2019-09-04 18:59:57 -05:00
|
|
|
sigP.replace(port(ffP, \D), port(ffP, \Q));
|
2019-09-03 17:53:10 -05:00
|
|
|
}
|
2019-09-05 13:46:38 -05:00
|
|
|
// Cannot have ffPmux enable mux without ffP
|
|
|
|
else if (ffPmux)
|
|
|
|
reject;
|
2019-09-03 17:53:10 -05:00
|
|
|
endcode
|
|
|
|
|
2019-09-03 18:24:59 -05:00
|
|
|
match postAddMux
|
2019-09-03 18:10:16 -05:00
|
|
|
if postAdd
|
2019-09-03 18:24:59 -05:00
|
|
|
if ffP
|
|
|
|
select postAddMux->type.in($mux)
|
|
|
|
select nusers(port(postAddMux, \Y)) == 2
|
|
|
|
choice <IdString> AB {\A, \B}
|
|
|
|
index <SigSpec> port(postAddMux, AB) === sigP
|
|
|
|
index <SigSpec> port(postAddMux, \Y) === sigC
|
|
|
|
set postAddMuxAB AB
|
2019-09-03 17:53:10 -05:00
|
|
|
optional
|
|
|
|
endmatch
|
|
|
|
|
2019-09-03 18:24:59 -05:00
|
|
|
code sigC
|
|
|
|
if (postAddMux)
|
|
|
|
sigC = port(postAddMux, postAddMuxAB == \A ? \B : \A);
|
2019-09-03 17:53:10 -05:00
|
|
|
endcode
|
2019-08-30 13:02:10 -05:00
|
|
|
|
2019-09-03 17:53:10 -05:00
|
|
|
code
|
2019-08-30 13:02:10 -05:00
|
|
|
accept;
|
2019-07-15 16:46:31 -05:00
|
|
|
endcode
|