yosys/passes/pmgen/xilinx_dsp.pmg

104 lines
2.5 KiB
Plaintext
Raw Normal View History

2019-07-15 23:46:31 +02:00
pattern xilinx_dsp
state <SigBit> clock
state <SigSpec> sigPused
2019-07-15 23:46:31 +02:00
2019-07-16 23:06:32 +02:00
match dsp
select dsp->type.in(\DSP48E1)
2019-07-15 23:46:31 +02:00
endmatch
match ffA
select ffA->type.in($dff)
2019-07-15 23:46:31 +02:00
// DSP48E1 does not support clock inversion
2019-07-18 22:30:35 +02:00
select param(ffA, \CLK_POLARITY).as_bool()
filter param(dsp, \AREG).as_int() == 0
2019-07-19 00:22:00 +02:00
filter !port(dsp, \A).remove_const().empty()
2019-07-18 22:30:35 +02:00
filter includes(port(ffA, \Q).to_sigbit_set(), port(dsp, \A).remove_const().to_sigbit_set())
2019-07-15 23:46:31 +02:00
optional
endmatch
2019-07-16 23:06:32 +02:00
code clock
if (ffA)
2019-07-15 23:46:31 +02:00
clock = port(ffA, \CLK).as_bit();
endcode
match ffB
select ffB->type.in($dff)
2019-07-18 22:30:35 +02:00
// DSP48E1 does not support clock inversion
2019-07-17 00:54:07 +02:00
select param(ffB, \CLK_POLARITY).as_bool()
filter param(dsp, \BREG).as_int() == 0
2019-07-19 00:22:00 +02:00
filter !port(dsp, \B).remove_const().empty()
2019-07-18 22:30:35 +02:00
filter includes(port(ffB, \Q).to_sigbit_set(), port(dsp, \B).remove_const().to_sigbit_set())
2019-07-15 23:46:31 +02:00
optional
endmatch
2019-07-16 23:06:32 +02:00
code clock
2019-07-15 23:46:31 +02:00
if (ffB) {
SigBit c = port(ffB, \CLK).as_bit();
if (clock != SigBit() && c != clock)
reject;
clock = c;
}
endcode
// Extract the bits of P that actually have a consumer
// (as opposed to being a dummy)
code sigPused
2019-07-16 23:06:32 +02:00
SigSpec P = port(dsp, \P);
2019-08-09 01:33:37 +02:00
for (int i = 0; i < GetSize(P); i++)
if (P[i].wire && nusers(P[i]) > 1)
sigPused.append(P[i]);
2019-07-16 23:06:32 +02:00
endcode
match ffP
if !sigPused.empty()
select ffP->type.in($dff)
2019-07-16 23:06:32 +02:00
select nusers(port(ffP, \D)) == 2
2019-07-18 22:30:35 +02:00
// DSP48E1 does not support clock inversion
select param(ffP, \CLK_POLARITY).as_bool()
filter param(dsp, \PREG).as_int() == 0
filter param(ffP, \WIDTH).as_int() >= GetSize(sigPused)
filter includes(port(ffP, \D).to_sigbit_set(), sigPused.to_sigbit_set())
2019-07-16 23:06:32 +02:00
optional
endmatch
2019-08-09 01:33:37 +02:00
//// $mux cell left behind by dff2dffe
//// would prefer not to run 'opt_expr -mux_undef'
//// since that would lose information helpful for
//// efficient wide-mux inference
//match muxP
// if !sigPused.empty() && !ffP
// select muxP->type.in($mux)
// select nusers(port(muxP, \B)) == 2
// select port(muxP, \A).is_fully_undef()
// filter param(muxP, \WIDTH).as_int() >= GetSize(sigPused)
// filter includes(port(muxP, \B).to_sigbit_set(), sigPused.to_sigbit_set())
// optional
//endmatch
//
//match ffY
// if muxP
// select ffY->type.in($dff, $dffe)
// select nusers(port(ffY, \D)) == 2
// // DSP48E1 does not support clock inversion
// select param(ffY, \CLK_POLARITY).as_bool()
// filter param(ffY, \WIDTH).as_int() >= GetSize(sigPused)
// filter includes(port(ffY, \D).to_sigbit_set(), port(muxP, \Y).to_sigbit_set())
//endmatch
2019-07-15 23:46:31 +02:00
2019-07-16 23:06:32 +02:00
code ffP clock
2019-08-09 01:33:37 +02:00
// if (ffY)
// ffP = ffY;
2019-07-15 23:46:31 +02:00
2019-07-16 23:06:32 +02:00
if (ffP) {
SigBit c = port(ffP, \CLK).as_bit();
2019-07-15 23:46:31 +02:00
if (clock != SigBit() && c != clock)
reject;
clock = c;
}
endcode