Changeset 961 for branches/reconfiguration/platforms
- Timestamp:
- Mar 30, 2015, 11:26:28 AM (10 years ago)
- Location:
- branches/reconfiguration/platforms/tsar_generic_iob
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/reconfiguration/platforms/tsar_generic_iob/top.cpp
r957 r961 85 85 // - FBUF_X_SIZE : width of frame buffer (pixels) 86 86 // - FBUF_Y_SIZE : heigth of frame buffer (lines) 87 // - XCU_NB_INPUTS : number of HWIs = number of WTIs = number of PTIs 87 // - XCU_NB_HWI : number of HWIs 88 // - XCU_NB_PTI : number of PTIs 89 // - XCU_NB_WTI : number of WTIs 90 // - XCU_NB_OUT : number of OUTs 88 91 // 89 92 // Some secondary hardware parameters must be defined in this top.cpp file: … … 1153 1156 L1_DSETS, 1154 1157 XRAM_LATENCY, 1155 XCU_NB_INPUTS, 1158 XCU_NB_HWI, 1159 XCU_NB_PTI, 1160 XCU_NB_WTI, 1161 XCU_NB_OUT, 1156 1162 1157 1163 distributed_boot, -
branches/reconfiguration/platforms/tsar_generic_iob/tsar_iob_cluster/caba/source/include/tsar_iob_cluster.h
r926 r961 233 233 size_t l1_d_sets, 234 234 size_t xram_latency, 235 size_t xcu_nb_inputs, 235 size_t xcu_nb_hwi, 236 size_t xcu_nb_pti, 237 size_t xcu_nb_wti, 238 size_t xcu_nb_out, 236 239 237 240 bool distboot, -
branches/reconfiguration/platforms/tsar_generic_iob/tsar_iob_cluster/caba/source/src/tsar_iob_cluster.cpp
r931 r961 73 73 size_t l1_d_sets, 74 74 size_t xram_latency, 75 size_t xcu_nb_inputs, 75 size_t xcu_nb_hwi, 76 size_t xcu_nb_pti, 77 size_t xcu_nb_wti, 78 size_t xcu_nb_out, 76 79 77 80 bool distboot, … … 193 196 mt_int, // mapping table INT network 194 197 IntTab(cluster_id, int_xicu_tgt_id), // TGTID direct space 195 xcu_nb_ inputs,// number of timer IRQs196 xcu_nb_ inputs,// number of hard IRQs197 xcu_nb_ inputs,// number of soft IRQs198 16,// number of output IRQs198 xcu_nb_pti, // number of timer IRQs 199 xcu_nb_hwi, // number of hard IRQs 200 xcu_nb_wti, // number of soft IRQs 201 xcu_nb_out, // number of output IRQs 199 202 5); // number of config regs 200 203 … … 542 545 xicu->p_resetn (this->p_resetn); 543 546 xicu->p_vci (signal_int_vci_tgt_xicu); 544 for ( size_t i=0 ; i < 16; i++)547 for ( size_t i=0 ; i < xcu_nb_out ; i++) 545 548 { 546 549 xicu->p_irq[i] (signal_proc_it[i]); 547 550 } 548 for ( size_t i=0 ; i < xcu_nb_ inputs; i++)551 for ( size_t i=0 ; i < xcu_nb_hwi ; i++) 549 552 { 550 553 if ( i == 0 ) xicu->p_hwi[i] (signal_irq_memc);
Note: See TracChangeset
for help on using the changeset viewer.