Changeset 926 for branches/reconfiguration/platforms/tsar_generic_iob/tsar_iob_cluster/caba/source/src/tsar_iob_cluster.cpp
- Timestamp:
- Jan 20, 2015, 4:06:49 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/reconfiguration/platforms/tsar_generic_iob/tsar_iob_cluster/caba/source/src/tsar_iob_cluster.cpp
r904 r926 51 51 size_t int_xicu_tgt_id, // local index 52 52 size_t int_mdma_tgt_id, // local index 53 size_t int_ brom_tgt_id, // local index53 size_t int_drom_tgt_id, // local index 54 54 size_t int_iobx_tgt_id, // local index 55 55 … … 210 210 nb_dmas); // number of IRQs 211 211 212 /////////// DISTRIBUTED BOOTROM213 std::ostringstream s_ brom;214 s_ brom << "brom_" << x_id << "_" << y_id;215 brom = new VciSimpleRom<vci_param_int>(216 s_ brom.str().c_str(),217 IntTab(cluster_id, int_ brom_tgt_id),212 /////////// DISTRIBUTED ROM 213 std::ostringstream s_drom; 214 s_drom << "drom_" << x_id << "_" << y_id; 215 drom = new VciSimpleRom<vci_param_int>( 216 s_drom.str().c_str(), 217 IntTab(cluster_id, int_drom_tgt_id), 218 218 mt_int, 219 219 loader, … … 473 473 int_xbar_d->p_to_target[int_xicu_tgt_id] (signal_int_vci_tgt_xicu); 474 474 int_xbar_d->p_to_target[int_mdma_tgt_id] (signal_int_vci_tgt_mdma); 475 int_xbar_d->p_to_target[int_ brom_tgt_id] (signal_int_vci_tgt_brom);475 int_xbar_d->p_to_target[int_drom_tgt_id] (signal_int_vci_tgt_drom); 476 476 int_xbar_d->p_to_initiator[int_mdma_ini_id] (signal_int_vci_ini_mdma); 477 477 for (size_t p = 0; p < nb_procs; p++) … … 597 597 mdma->p_irq[i] (signal_irq_mdma[i]); 598 598 599 /////////////////////////////////// BROM600 brom->p_clk (this->p_clk);601 brom->p_resetn (this->p_resetn);602 brom->p_vci (signal_int_vci_tgt_brom);599 /////////////////////////////////// DROM 600 drom->p_clk (this->p_clk); 601 drom->p_resetn (this->p_resetn); 602 drom->p_vci (signal_int_vci_tgt_drom); 603 603 604 604 //////////////////////////// RAM network CMD & RSP routers
Note: See TracChangeset
for help on using the changeset viewer.