Pack Y register
authorEddie Hung <eddie@fpgeh.com>
Mon, 22 Jul 2019 22:05:16 +0000 (15:05 -0700)
committerEddie Hung <eddie@fpgeh.com>
Mon, 22 Jul 2019 22:05:16 +0000 (15:05 -0700)
passes/pmgen/ice40_dsp.cc
passes/pmgen/ice40_dsp.pmg

index 7215ed473b43c5ca50e4c9f0cfa7bd10452a99f1..5f6a20dfcc71da624639aac4f7c0e526c3350f90 100644 (file)
@@ -80,20 +80,25 @@ void create_ice40_dsp(ice40_dsp_pm &pm)
        SigSpec B = st.sigB;
        B.extend_u0(16, b_signed);
 
-        // MAC only if ffS exists and adder's other input (sigS)
-        //   is output of ffS
-        bool accum = (st.ffS && st.sigS == st.ffS->getPort("\\Q"));
-
        SigSpec CD;
-        if (st.ffS) {
-                if (st.muxA)
-                        CD = st.muxA->getPort("\\B");
-                else if (st.muxB)
-                        CD = st.muxB->getPort("\\A");
-        }
-        else if (!accum)
-                CD = st.sigS.extend_u0(32, st.sigS_signed);
-       CD.extend_u0(32, a_signed && b_signed);
+       bool CD_signed = false;
+       if (st.muxAB != st.addAB) {
+               if (st.muxA)
+                       CD = st.muxA->getPort("\\B");
+               else if (st.muxB)
+                       CD = st.muxB->getPort("\\A");
+               else log_abort();
+               CD_signed = a_signed && b_signed; // TODO: Do muxes have [AB]_SIGNED?
+       }
+       else if (st.addAB) {
+               if (st.addA)
+                       CD = st.addAB->getPort("\\B");
+               else if (st.addB)
+                       CD = st.addAB->getPort("\\A");
+               else log_abort();
+               CD_signed = st.sigS_signed;
+       }
+       CD.extend_u0(32, CD_signed);
 
        cell->setPort("\\A", A);
        cell->setPort("\\B", B);
@@ -153,15 +158,21 @@ void create_ice40_dsp(ice40_dsp_pm &pm)
 
        // SB_MAC16 Output Interface
 
-        if (st.addAB) log_cell(st.addAB);
        SigSpec O = st.ffS ? st.sigS : (st.addAB ? st.addAB->getPort("\\Y") : st.sigY);
        if (GetSize(O) < 32)
                O.append(pm.module->addWire(NEW_ID, 32-GetSize(O)));
 
        cell->setPort("\\O", O);
 
+       // MAC only if ffS exists and adder's other input (sigS)
+       //   is output of ffS
+       bool accum = false;
        if (st.addAB) {
-                log_warning("sigS = %s\n", log_signal(st.sigS));
+                if (st.addA)
+                      accum = (st.ffS && st.addAB->getPort("\\B") == st.ffS->getPort("\\Q"));
+                else if (st.addB)
+                      accum = (st.ffS && st.addAB->getPort("\\A") == st.ffS->getPort("\\Q"));
+                else log_abort();
                 if (accum)
                         log("  accumulator %s (%s)\n", log_id(st.addAB), log_id(st.addAB->type));
                 else
@@ -200,12 +211,12 @@ void create_ice40_dsp(ice40_dsp_pm &pm)
 
        cell->setParam("\\TOPOUTPUT_SELECT", Const(st.ffS ? 1 : (st.addAB ? 0 : 3), 2));
        cell->setParam("\\TOPADDSUB_LOWERINPUT", Const(2, 2));
-       cell->setParam("\\TOPADDSUB_UPPERINPUT", st.ffS ? State::S0 : State::S1);
+       cell->setParam("\\TOPADDSUB_UPPERINPUT", accum ? State::S0 : State::S1);
        cell->setParam("\\TOPADDSUB_CARRYSELECT", Const(3, 2));
 
        cell->setParam("\\BOTOUTPUT_SELECT", Const(st.ffS ? 1 : (st.addAB ? 0 : 3), 2));
        cell->setParam("\\BOTADDSUB_LOWERINPUT", Const(2, 2));
-       cell->setParam("\\BOTADDSUB_UPPERINPUT", st.ffS ? State::S0 : State::S1);
+       cell->setParam("\\BOTADDSUB_UPPERINPUT", accum ? State::S0 : State::S1);
        cell->setParam("\\BOTADDSUB_CARRYSELECT", Const(0, 2));
 
        cell->setParam("\\MODE_8x8", State::S0);
@@ -215,7 +226,8 @@ void create_ice40_dsp(ice40_dsp_pm &pm)
        pm.autoremove(st.mul);
        pm.autoremove(st.ffY);
        pm.autoremove(st.addAB);
-       pm.autoremove(st.ffS);
+        if (st.ffS)
+                st.ffS->connections_.at("\\Q").replace(st.sigS, pm.module->addWire(NEW_ID, GetSize(st.sigS)));
 }
 
 struct Ice40DspPass : public Pass {
index a92cf8dd4b1d67e3c1c3eb05ff9e8eb2ed590c96..223f9b2e43efbb9debf3bbab92bcbf69f221349e 100644 (file)
@@ -143,17 +143,21 @@ endcode
 match ffS
        if muxAB
        select ffS->type.in($dff)
-       select nusers(port(ffS, \D)) == 2
-       index <SigSpec> port(ffS, \D) === port(muxAB, \Y)
-       index <SigSpec> port(ffS, \Q) === sigS
+       filter nusers(port(muxAB, \Y)) == 2
+       filter includes(port(ffS, \D).to_sigbit_set(), port(muxAB, \Y).to_sigbit_set())
        optional
 endmatch
 
-code clock clock_pol
+code clock clock_pol sigS
        if (ffS) {
                SigBit c = port(ffS, \CLK).as_bit();
                bool cp = param(ffS, \CLK_POLARITY).as_bool();
 
+               if (port(ffS, \Q) != sigS) {
+                       sigS = port(muxAB, \Y);
+                       sigS.replace(port(ffS, \D), port(ffS, \Q));
+               }
+
                if (clock != SigBit() && (c != clock || cp != clock_pol))
                        reject;