2019-07-15 16:46:31 -05:00
|
|
|
pattern xilinx_dsp
|
|
|
|
|
2019-09-06 23:01:36 -05:00
|
|
|
state <std::function<SigSpec(const SigSpec&)>> unextend
|
2019-07-15 16:46:31 -05:00
|
|
|
state <SigBit> clock
|
2019-09-06 23:01:36 -05:00
|
|
|
state <SigSpec> sigA sigffAmuxY sigB sigffBmuxY sigC sigffCmuxY sigD sigffDmuxY sigM sigP
|
2019-09-05 23:38:35 -05:00
|
|
|
state <IdString> postAddAB postAddMuxAB
|
2019-09-06 23:01:36 -05:00
|
|
|
state <bool> ffAenpol ffADenpol ffBenpol ffCenpol ffDenpol ffMenpol ffPenpol
|
2019-09-06 13:58:56 -05:00
|
|
|
state <int> ffPoffset
|
2019-07-15 16:46:31 -05:00
|
|
|
|
2019-09-09 17:51:14 -05:00
|
|
|
state <Cell*> ffAD ffADmux ffA ffAmux ffB ffBmux ffC ffCmux ffD ffDmux
|
|
|
|
|
|
|
|
// subpattern
|
|
|
|
state <SigSpec> dffQ
|
|
|
|
state <bool> dffenpol_
|
|
|
|
udata <SigSpec> dffD
|
|
|
|
udata <SigBit> dffclock
|
|
|
|
udata <Cell*> dff dffmux
|
|
|
|
udata <bool> dffenpol
|
|
|
|
|
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-09 17:51:14 -05:00
|
|
|
code unextend sigA sigB sigC sigD sigM
|
2019-09-06 23:01:36 -05:00
|
|
|
unextend = [](const SigSpec &sig) {
|
2019-09-06 20:40:11 -05:00
|
|
|
int i;
|
|
|
|
for (i = GetSize(sig)-1; i > 0; i--)
|
|
|
|
if (sig[i] != sig[i-1])
|
|
|
|
break;
|
|
|
|
// Do not remove non-const sign bit
|
2019-09-06 23:01:36 -05:00
|
|
|
if (sig[i].wire)
|
2019-09-06 20:40:11 -05:00
|
|
|
++i;
|
|
|
|
return sig.extract(0, i);
|
|
|
|
};
|
2019-09-06 23:01:36 -05:00
|
|
|
sigA = unextend(port(dsp, \A));
|
|
|
|
sigB = unextend(port(dsp, \B));
|
2019-08-13 19:11:35 -05:00
|
|
|
|
2019-09-06 20:40:11 -05:00
|
|
|
sigC = dsp->connections_.at(\C, SigSpec());
|
2019-09-06 16:06:57 -05:00
|
|
|
sigD = dsp->connections_.at(\D, SigSpec());
|
|
|
|
|
2019-09-04 19:06:17 -05:00
|
|
|
SigSpec P = port(dsp, \P);
|
|
|
|
// Only care about those bits that are used
|
2019-09-06 20:40:11 -05:00
|
|
|
int i;
|
2019-09-04 19:06:17 -05:00
|
|
|
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-09-09 17:51:14 -05:00
|
|
|
code dffQ ffAD ffADmux ffADenpol sigA clock
|
|
|
|
if (param(dsp, \ADREG).as_int() == 0) {
|
|
|
|
dffQ = sigA;
|
|
|
|
subpattern(in_dffe);
|
|
|
|
if (dff) {
|
|
|
|
ffAD = dff;
|
|
|
|
clock = dffclock;
|
|
|
|
if (dffmux) {
|
|
|
|
ffADmux = dffmux;
|
|
|
|
ffADenpol = dffenpol;
|
|
|
|
}
|
|
|
|
sigA = dffD;
|
|
|
|
}
|
2019-09-06 16:06:57 -05:00
|
|
|
}
|
|
|
|
endcode
|
|
|
|
|
|
|
|
match preAdd
|
|
|
|
if sigD.empty() || sigD.is_fully_zero()
|
|
|
|
// Ensure that preAdder not already used
|
|
|
|
if dsp->parameters.at(\USE_DPORT, Const("FALSE")).decode_string() == "FALSE"
|
|
|
|
if dsp->connections_.at(\INMODE, Const(0, 5)).is_fully_zero()
|
|
|
|
|
|
|
|
select preAdd->type.in($add)
|
|
|
|
// Output has to be 25 bits or less
|
|
|
|
select GetSize(port(preAdd, \Y)) <= 25
|
|
|
|
select nusers(port(preAdd, \Y)) == 2
|
|
|
|
choice <IdString> AB {\A, \B}
|
|
|
|
// A port has to be 30 bits or less
|
|
|
|
select GetSize(port(preAdd, AB)) <= 30
|
|
|
|
define <IdString> BA (AB == \A ? \B : \A)
|
|
|
|
// D port has to be 25 bits or less
|
|
|
|
select GetSize(port(preAdd, BA)) <= 25
|
|
|
|
index <SigSpec> port(preAdd, \Y) === sigA
|
|
|
|
|
|
|
|
optional
|
|
|
|
endmatch
|
|
|
|
|
|
|
|
code sigA sigD
|
|
|
|
if (preAdd) {
|
|
|
|
sigA = port(preAdd, \A);
|
|
|
|
sigD = port(preAdd, \B);
|
|
|
|
if (GetSize(sigA) < GetSize(sigD))
|
|
|
|
std::swap(sigA, sigD);
|
|
|
|
}
|
|
|
|
endcode
|
|
|
|
|
2019-09-09 17:51:14 -05:00
|
|
|
code dffQ ffA ffAmux ffAenpol sigA clock ffAD ffADmux ffADenpol
|
|
|
|
// Only search for ffA if there was a pre-adder
|
|
|
|
// (otherwise ffA would have been matched as ffAD)
|
|
|
|
if (preAdd) {
|
|
|
|
if (param(dsp, \AREG).as_int() == 0) {
|
|
|
|
dffQ = sigA;
|
|
|
|
subpattern(in_dffe);
|
|
|
|
if (dff) {
|
|
|
|
ffA = dff;
|
|
|
|
clock = dffclock;
|
|
|
|
if (dffmux) {
|
|
|
|
ffAmux = dffmux;
|
|
|
|
ffAenpol = dffenpol;
|
|
|
|
}
|
|
|
|
sigA = dffD;
|
|
|
|
}
|
|
|
|
}
|
2019-09-06 16:06:57 -05:00
|
|
|
}
|
2019-09-09 17:51:14 -05:00
|
|
|
// And if there wasn't a pre-adder,
|
|
|
|
// move AD register to A
|
|
|
|
else if (ffAD) {
|
|
|
|
log_assert(!ffA && !ffAmux);
|
|
|
|
std::swap(ffA, ffAD);
|
|
|
|
std::swap(ffAmux, ffADmux);
|
2019-09-06 16:06:57 -05:00
|
|
|
ffAenpol = ffADenpol;
|
|
|
|
}
|
|
|
|
endcode
|
|
|
|
|
2019-09-09 17:51:14 -05:00
|
|
|
code dffQ ffB ffBmux ffBenpol sigB clock
|
|
|
|
if (param(dsp, \BREG).as_int() == 0) {
|
|
|
|
dffQ = sigB;
|
|
|
|
subpattern(in_dffe);
|
|
|
|
if (dff) {
|
|
|
|
ffB = dff;
|
|
|
|
clock = dffclock;
|
|
|
|
if (dffmux) {
|
|
|
|
ffBmux = dffmux;
|
|
|
|
ffBenpol = dffenpol;
|
|
|
|
}
|
|
|
|
sigB = dffD;
|
|
|
|
}
|
2019-07-15 16:46:31 -05:00
|
|
|
}
|
|
|
|
endcode
|
|
|
|
|
2019-09-09 17:51:14 -05:00
|
|
|
code dffQ ffD ffDmux ffDenpol sigD clock
|
|
|
|
if (param(dsp, \DREG).as_int() == 0) {
|
|
|
|
dffQ = sigD;
|
|
|
|
subpattern(in_dffe);
|
|
|
|
if (dff) {
|
|
|
|
ffD = dff;
|
|
|
|
clock = dffclock;
|
|
|
|
if (dffmux) {
|
|
|
|
ffDmux = dffmux;
|
|
|
|
ffDenpol = dffenpol;
|
|
|
|
}
|
|
|
|
sigD = dffD;
|
|
|
|
}
|
2019-09-06 17:32:26 -05:00
|
|
|
}
|
|
|
|
endcode
|
|
|
|
|
2019-09-04 12:52:51 -05:00
|
|
|
match ffMmux
|
2019-09-06 13:58:56 -05:00
|
|
|
if param(dsp, \MREG).as_int() == 0
|
|
|
|
if nusers(sigM) == 2
|
2019-09-04 12:52:51 -05:00
|
|
|
select ffMmux->type.in($mux)
|
2019-09-06 11:59:35 -05:00
|
|
|
choice <IdString> BA {\B, \A}
|
2019-09-06 23:01:36 -05:00
|
|
|
// new-value net must have exactly two users: dsp and ffMmux
|
2019-09-06 11:59:35 -05:00
|
|
|
select nusers(port(ffMmux, BA)) == 2
|
|
|
|
define <IdString> AB (BA == \B ? \A : \B)
|
|
|
|
// keep-last-value net must have at least three users: ffMmux, ffM, downstream sink(s)
|
|
|
|
select nusers(port(ffMmux, AB)) >= 3
|
|
|
|
// ffMmux output must have two users: ffMmux and ffM.D
|
2019-09-04 12:52:51 -05:00
|
|
|
select nusers(port(ffMmux, \Y)) == 2
|
2019-09-06 23:01:36 -05:00
|
|
|
filter GetSize(unextend(port(ffMmux, BA))) <= GetSize(sigM)
|
|
|
|
filter unextend(port(ffMmux, BA)) == sigM.extract(0, GetSize(unextend(port(ffMmux, BA))))
|
2019-09-06 11:59:35 -05:00
|
|
|
// Remaining bits on sigM must not have any other users
|
2019-09-06 23:01:36 -05:00
|
|
|
filter nusers(sigM.extract_end(GetSize(unextend(port(ffMmux, BA))))) <= 1
|
2019-09-06 16:36:10 -05:00
|
|
|
define <bool> pol (AB == \A)
|
2019-09-05 23:38:35 -05:00
|
|
|
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-09-06 14:07:35 -05:00
|
|
|
match ffM_enable
|
|
|
|
if ffMmux
|
|
|
|
if nusers(sigM) == 2
|
|
|
|
select ffM_enable->type.in($dff)
|
|
|
|
// DSP48E1 does not support clock inversion
|
|
|
|
select param(ffM_enable, \CLK_POLARITY).as_bool()
|
|
|
|
index <SigSpec> port(ffM_enable, \D) === sigM
|
|
|
|
index <SigSpec> port(ffM_enable, \Q) === port(ffMmux, ffMenpol ? \A : \B)
|
|
|
|
endmatch
|
|
|
|
|
2019-08-30 17:00:56 -05:00
|
|
|
match ffM
|
2019-09-06 14:07:35 -05:00
|
|
|
if !ffM_enable
|
2019-08-30 17:00:56 -05:00
|
|
|
if param(dsp, \MREG).as_int() == 0
|
2019-09-06 13:58:56 -05:00
|
|
|
if nusers(sigM) == 2
|
2019-08-30 17:00:56 -05:00
|
|
|
select ffM->type.in($dff)
|
|
|
|
// DSP48E1 does not support clock inversion
|
|
|
|
select param(ffM, \CLK_POLARITY).as_bool()
|
2019-09-06 14:07:35 -05:00
|
|
|
index <SigSpec> port(ffM, \D) === sigM
|
2019-08-30 17:00:56 -05:00
|
|
|
optional
|
|
|
|
endmatch
|
|
|
|
|
2019-09-06 14:07:35 -05:00
|
|
|
code ffM clock sigM sigP
|
|
|
|
if (ffM_enable) {
|
|
|
|
log_assert(!ffM);
|
|
|
|
ffM = ffM_enable;
|
|
|
|
}
|
2019-08-30 17:00:56 -05:00
|
|
|
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-06 16:57:36 -05:00
|
|
|
// No enable mux possible without flop
|
|
|
|
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-06 12:35:06 -05:00
|
|
|
select GetSize(port(postAdd, \Y)) <= 48
|
|
|
|
select nusers(port(postAdd, \Y)) == 2
|
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-06 23:01:36 -05:00
|
|
|
filter GetSize(unextend(port(postAdd, AB))) <= GetSize(sigP)
|
|
|
|
filter unextend(port(postAdd, AB)) == sigP.extract(0, GetSize(unextend(port(postAdd, AB))))
|
|
|
|
filter nusers(sigP.extract_end(GetSize(unextend(port(postAdd, AB))))) <= 1
|
2019-09-03 18:10:16 -05:00
|
|
|
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
|
2019-09-06 13:38:19 -05:00
|
|
|
if param(dsp, \PREG).as_int() == 0
|
2019-09-06 17:11:41 -05:00
|
|
|
// If ffMmux and no postAdd new-value net must have exactly three users: ffMmux, ffM and ffPmux
|
|
|
|
if !ffMmux || postAdd || nusers(sigP) == 3
|
2019-09-06 16:57:36 -05:00
|
|
|
// Otherwise new-value net must have exactly two users: dsp and ffPmux
|
2019-09-06 17:11:41 -05:00
|
|
|
if (ffMmux && !postAdd) || nusers(sigP) == 2
|
2019-09-06 16:57:36 -05:00
|
|
|
|
2019-09-05 13:00:27 -05:00
|
|
|
select ffPmux->type.in($mux)
|
2019-09-06 13:58:56 -05:00
|
|
|
// ffPmux output must have two users: ffPmux and ffP.D
|
|
|
|
select nusers(port(ffPmux, \Y)) == 2
|
|
|
|
filter GetSize(port(ffPmux, \Y)) >= GetSize(sigP)
|
|
|
|
|
|
|
|
slice offset GetSize(port(ffPmux, \Y))
|
|
|
|
filter offset+GetSize(sigP) <= GetSize(port(ffPmux, \Y))
|
2019-09-06 16:36:10 -05:00
|
|
|
choice <IdString> BA {\B, \A}
|
2019-09-06 13:58:56 -05:00
|
|
|
filter port(ffPmux, BA).extract(offset, GetSize(sigP)) == sigP
|
|
|
|
|
2019-09-06 11:59:35 -05:00
|
|
|
define <IdString> AB (BA == \B ? \A : \B)
|
|
|
|
// keep-last-value net must have at least three users: ffPmux, ffP, downstream sink(s)
|
2019-09-06 13:58:56 -05:00
|
|
|
filter nusers(port(ffPmux, AB)) >= 3
|
2019-09-06 16:36:10 -05:00
|
|
|
define <bool> pol (AB == \A)
|
2019-09-05 23:38:35 -05:00
|
|
|
set ffPenpol pol
|
2019-09-06 13:58:56 -05:00
|
|
|
set ffPoffset offset
|
2019-09-05 13:46:38 -05:00
|
|
|
optional
|
2019-09-05 13:00:27 -05:00
|
|
|
endmatch
|
|
|
|
|
|
|
|
code sigP
|
|
|
|
if (ffPmux)
|
2019-09-06 13:58:56 -05:00
|
|
|
sigP.replace(port(ffPmux, ffPenpol ? \B : \A), port(ffPmux, \Y));
|
2019-09-05 13:00:27 -05:00
|
|
|
endcode
|
|
|
|
|
2019-09-06 13:58:56 -05:00
|
|
|
match ffP_enable
|
|
|
|
if ffPmux
|
|
|
|
if nusers(sigP) == 2
|
|
|
|
select ffP_enable->type.in($dff)
|
|
|
|
// DSP48E1 does not support clock inversion
|
|
|
|
select param(ffP_enable, \CLK_POLARITY).as_bool()
|
|
|
|
index <SigSpec> port(ffP_enable, \D) === port(ffPmux, \Y)
|
|
|
|
index <SigSpec> port(ffP_enable, \Q) === port(ffPmux, ffPenpol ? \A : \B)
|
|
|
|
filter GetSize(port(ffP_enable, \D)) >= GetSize(sigP)
|
|
|
|
filter ffPoffset+GetSize(sigP) <= GetSize(port(ffP_enable, \D))
|
|
|
|
filter port(ffP_enable, \D).extract(ffPoffset, GetSize(sigP)) == sigP
|
|
|
|
endmatch
|
|
|
|
|
2019-07-16 16:06:32 -05:00
|
|
|
match ffP
|
2019-09-06 13:58:56 -05:00
|
|
|
if !ffP_enable
|
2019-08-09 17:47:40 -05:00
|
|
|
if param(dsp, \PREG).as_int() == 0
|
2019-09-06 17:51:21 -05:00
|
|
|
// If ffMmux and no postAdd new-value net must have exactly three users: ffMmux, ffM and ffPmux
|
|
|
|
if !ffMmux || postAdd || nusers(sigP) == 3
|
|
|
|
// Otherwise new-value net must have exactly two users: dsp and ffPmux
|
|
|
|
if (ffMmux && !postAdd) || nusers(sigP) == 2
|
2019-09-06 16:57:36 -05:00
|
|
|
|
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))
|
2019-09-06 13:38:19 -05:00
|
|
|
filter offset+GetSize(sigP) <= GetSize(port(ffP, \D))
|
|
|
|
filter port(ffP, \D).extract(offset, GetSize(sigP)) == sigP
|
2019-07-16 16:06:32 -05:00
|
|
|
optional
|
|
|
|
endmatch
|
|
|
|
|
2019-09-03 17:53:10 -05:00
|
|
|
code ffP sigP clock
|
2019-09-06 13:58:56 -05:00
|
|
|
if (ffP_enable) {
|
|
|
|
log_assert(!ffP);
|
|
|
|
ffP = ffP_enable;
|
|
|
|
}
|
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-06 16:57:36 -05:00
|
|
|
// No enable mux possible without flop
|
|
|
|
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-09 17:51:14 -05:00
|
|
|
code dffQ ffC ffCmux ffCenpol sigC clock
|
|
|
|
if (param(dsp, \CREG).as_int() == 0) {
|
|
|
|
dffQ = sigC;
|
|
|
|
subpattern(in_dffe);
|
|
|
|
if (dff) {
|
|
|
|
ffC = dff;
|
|
|
|
clock = dffclock;
|
|
|
|
if (dffmux) {
|
|
|
|
ffCmux = dffmux;
|
|
|
|
ffCenpol = dffenpol;
|
|
|
|
}
|
|
|
|
sigC = dffD;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
endcode
|
|
|
|
|
|
|
|
code
|
|
|
|
accept;
|
|
|
|
endcode
|
|
|
|
|
|
|
|
subpattern in_dffe
|
|
|
|
arg dffQ clock dffenpol_
|
|
|
|
|
|
|
|
match ff
|
|
|
|
select ff->type.in($dff)
|
2019-09-06 23:01:36 -05:00
|
|
|
// DSP48E1 does not support clock inversion
|
2019-09-09 17:51:14 -05:00
|
|
|
select param(ff, \CLK_POLARITY).as_bool()
|
|
|
|
filter GetSize(port(ff, \Q)) >= GetSize(dffQ)
|
|
|
|
slice offset GetSize(port(ff, \Q))
|
|
|
|
filter offset+GetSize(dffQ) <= GetSize(port(ff, \Q))
|
|
|
|
filter port(ff, \Q).extract(offset, GetSize(dffQ)) == dffQ
|
|
|
|
semioptional
|
2019-09-06 23:01:36 -05:00
|
|
|
endmatch
|
|
|
|
|
2019-09-09 17:51:14 -05:00
|
|
|
code dffQ
|
|
|
|
if (ff) {
|
|
|
|
for (auto b : dffQ)
|
2019-09-06 23:01:36 -05:00
|
|
|
if (b.wire->get_bool_attribute(\keep))
|
|
|
|
reject;
|
|
|
|
|
2019-09-09 17:51:14 -05:00
|
|
|
if (clock != SigBit()) {
|
|
|
|
if (port(ff, \CLK) != clock)
|
|
|
|
reject;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
dffclock = port(ff, \CLK);
|
|
|
|
|
|
|
|
dff = ff;
|
|
|
|
dffD = dffQ;
|
|
|
|
dffD.replace(port(ff, \Q), port(ff, \D));
|
|
|
|
// Only search for ffmux if ff.Q has at
|
|
|
|
// least 3 users (ff, dsp, ffmux) and
|
|
|
|
// its ff.D only has two (ff, ffmux)
|
|
|
|
if (!(nusers(dffQ) >= 3 && nusers(dffD) == 2))
|
|
|
|
dffQ = SigSpec();
|
2019-09-06 23:01:36 -05:00
|
|
|
}
|
2019-09-09 17:59:10 -05:00
|
|
|
else {
|
|
|
|
dff = nullptr;
|
2019-09-09 17:51:14 -05:00
|
|
|
dffQ = SigSpec();
|
2019-09-09 17:59:10 -05:00
|
|
|
}
|
2019-09-06 23:01:36 -05:00
|
|
|
endcode
|
|
|
|
|
2019-09-09 17:51:14 -05:00
|
|
|
match ffmux
|
|
|
|
if !dffQ.empty()
|
|
|
|
select ffmux->type.in($mux)
|
|
|
|
index <SigSpec> port(ffmux, \Y) === port(ff, \D)
|
|
|
|
filter GetSize(port(ffmux, \Y)) >= GetSize(dffD)
|
|
|
|
slice offset GetSize(port(ffmux, \Y))
|
|
|
|
filter offset+GetSize(dffD) <= GetSize(port(ffmux, \Y))
|
|
|
|
filter port(ffmux, \Y).extract(offset, GetSize(dffD)) == dffD
|
2019-09-06 23:01:36 -05:00
|
|
|
choice <IdString> AB {\A, \B}
|
2019-09-09 17:51:14 -05:00
|
|
|
filter offset+GetSize(dffQ) <= GetSize(port(ffmux, \Y))
|
|
|
|
filter port(ffmux, AB).extract(offset, GetSize(dffQ)) == dffQ
|
2019-09-06 23:01:36 -05:00
|
|
|
define <bool> pol (AB == \A)
|
2019-09-09 17:51:14 -05:00
|
|
|
set dffenpol_ pol
|
|
|
|
semioptional
|
2019-09-06 23:01:36 -05:00
|
|
|
endmatch
|
|
|
|
|
2019-09-03 17:53:10 -05:00
|
|
|
code
|
2019-09-09 17:51:14 -05:00
|
|
|
if (ffmux) {
|
|
|
|
dffmux = ffmux;
|
|
|
|
dffenpol = dffenpol_;
|
|
|
|
dffD = port(ffmux, dffenpol ? \B : \A);
|
|
|
|
}
|
2019-09-09 17:59:10 -05:00
|
|
|
else
|
|
|
|
dffmux = nullptr;
|
2019-07-15 16:46:31 -05:00
|
|
|
endcode
|