mirror of https://github.com/YosysHQ/yosys.git
Do not make ff[MP]mux semioptional, use sigmap
This commit is contained in:
parent
447a31e75d
commit
fe5a1324c9
|
@ -121,7 +121,7 @@ void pack_xilinx_dsp(dict<SigBit, Cell*> &bit_to_driver, xilinx_dsp_pm &pm)
|
||||||
cell->setPort("\\CEM", State::S1);
|
cell->setPort("\\CEM", State::S1);
|
||||||
SigSpec D = st.ffM->getPort("\\D");
|
SigSpec D = st.ffM->getPort("\\D");
|
||||||
SigSpec Q = st.ffM->getPort("\\Q");
|
SigSpec Q = st.ffM->getPort("\\Q");
|
||||||
P.replace(/*pm.sigmap*/(D), Q);
|
P.replace(pm.sigmap(D), Q);
|
||||||
|
|
||||||
cell->setParam("\\MREG", State::S1);
|
cell->setParam("\\MREG", State::S1);
|
||||||
pm.autoremove(st.ffM);
|
pm.autoremove(st.ffM);
|
||||||
|
@ -135,7 +135,7 @@ void pack_xilinx_dsp(dict<SigBit, Cell*> &bit_to_driver, xilinx_dsp_pm &pm)
|
||||||
cell->setPort("\\CEP", State::S1);
|
cell->setPort("\\CEP", State::S1);
|
||||||
SigSpec D = st.ffP->getPort("\\D");
|
SigSpec D = st.ffP->getPort("\\D");
|
||||||
SigSpec Q = st.ffP->getPort("\\Q");
|
SigSpec Q = st.ffP->getPort("\\Q");
|
||||||
P.replace(/*pm.sigmap*/(D), Q);
|
P.replace(pm.sigmap(D), Q);
|
||||||
st.ffP->connections_.at("\\Q").replace(P, pm.module->addWire(NEW_ID, GetSize(P)));
|
st.ffP->connections_.at("\\Q").replace(P, pm.module->addWire(NEW_ID, GetSize(P)));
|
||||||
|
|
||||||
cell->setParam("\\PREG", State::S1);
|
cell->setParam("\\PREG", State::S1);
|
||||||
|
@ -149,6 +149,9 @@ void pack_xilinx_dsp(dict<SigBit, Cell*> &bit_to_driver, xilinx_dsp_pm &pm)
|
||||||
if (st.ffB)
|
if (st.ffB)
|
||||||
log(" ffB:%s", log_id(st.ffB));
|
log(" ffB:%s", log_id(st.ffB));
|
||||||
|
|
||||||
|
if (st.ffM)
|
||||||
|
log(" ffM:%s", log_id(st.ffM));
|
||||||
|
|
||||||
if (st.ffP)
|
if (st.ffP)
|
||||||
log(" ffP:%s", log_id(st.ffP));
|
log(" ffP:%s", log_id(st.ffP));
|
||||||
|
|
||||||
|
|
|
@ -120,7 +120,7 @@ match ffMmux
|
||||||
filter port(ffMmux, AB) == sigM.extract(0, GetSize(port(ffMmux, \Y)))
|
filter port(ffMmux, AB) == sigM.extract(0, GetSize(port(ffMmux, \Y)))
|
||||||
filter nusers(sigM.extract_end(GetSize(port(ffMmux, AB)))) <= 1
|
filter nusers(sigM.extract_end(GetSize(port(ffMmux, AB)))) <= 1
|
||||||
set ffMmuxAB AB
|
set ffMmuxAB AB
|
||||||
semioptional
|
optional
|
||||||
endmatch
|
endmatch
|
||||||
|
|
||||||
code sigM
|
code sigM
|
||||||
|
@ -207,12 +207,12 @@ match ffPmux
|
||||||
filter port(ffPmux, AB) == sigP.extract(0, GetSize(port(ffPmux, \Y)))
|
filter port(ffPmux, AB) == sigP.extract(0, GetSize(port(ffPmux, \Y)))
|
||||||
filter nusers(sigP.extract_end(GetSize(port(ffPmux, AB)))) <= 1
|
filter nusers(sigP.extract_end(GetSize(port(ffPmux, AB)))) <= 1
|
||||||
set ffPmuxAB AB
|
set ffPmuxAB AB
|
||||||
semioptional
|
optional
|
||||||
endmatch
|
endmatch
|
||||||
|
|
||||||
code sigP
|
code sigP
|
||||||
if (ffPmux)
|
if (ffPmux)
|
||||||
sigP = port(ffPmux, \Y);
|
sigP.replace(port(ffPmux, ffPmuxAB), port(ffPmux, \Y));
|
||||||
endcode
|
endcode
|
||||||
|
|
||||||
match ffP
|
match ffP
|
||||||
|
@ -243,6 +243,9 @@ code ffP sigP clock
|
||||||
|
|
||||||
sigP.replace(port(ffP, \D), port(ffP, \Q));
|
sigP.replace(port(ffP, \D), port(ffP, \Q));
|
||||||
}
|
}
|
||||||
|
// Cannot have ffPmux enable mux without ffP
|
||||||
|
else if (ffPmux)
|
||||||
|
reject;
|
||||||
endcode
|
endcode
|
||||||
|
|
||||||
match postAddMux
|
match postAddMux
|
||||||
|
|
Loading…
Reference in New Issue