diff --git a/boards/uniboard1/designs/unb1_test/tb/python/tc_unb1_test.py b/boards/uniboard1/designs/unb1_test/tb/python/tc_unb1_test.py index 3cd5dff50d37d6b3a83a4e4452093087e5fa7fba..a3bf96d3cb7bb50eef8e6d8409e714c9323e0fad 100644 --- a/boards/uniboard1/designs/unb1_test/tb/python/tc_unb1_test.py +++ b/boards/uniboard1/designs/unb1_test/tb/python/tc_unb1_test.py @@ -125,6 +125,21 @@ def test_BG_to_DB(tc,io,cmd): + # enable tx_seq + from pi_diag_tx_seq import REGMAP,PiDiagTxSeq + from pi_diag_rx_seq import REGMAP,PiDiagRxSeq + + tx_seq = PiDiagTxSeq(tc,io,inst_name='10GBE') + tx_seq.write(tc.nodeNrs,inst_nrs=0, registers=[('control', 1)],regmap=REGMAP) + + rx_seq = PiDiagRxSeq(tc,io,inst_name='10GBE') + rx_seq.write(tc.nodeNrs,inst_nrs=0, registers=[('control', 1)],regmap=REGMAP) + + on_execute(class_definition=PiDiagTxSeq,regmap=REGMAP) # this reads/shows ALL status + on_execute(class_definition=PiDiagRxSeq,regmap=REGMAP) # this reads/shows ALL status + + + if instanceName == 'DDR': ddr = pi_io_ddr.PiIoDdr(tc,io,nof_inst=1) if tc.sim == True: @@ -294,6 +309,30 @@ def test_tr_10GbE(tc,io,cmd): verify_10GbE_status(tc,stat_name,tr10.read_reg(tc.nodeNrs,'REG_TR_10GBE',inst_offs+(REGMAP[stat_name][2][0]),1)) +def test_tx_seq(tc,io,cmd): + tc.set_section_id('tx seq - ') + tc.append_log(3, '>>>') + tc.append_log(1, '>>> %s' % help_text(tc,io,cmd)) + tc.append_log(3, '>>>') + + from pi_diag_tx_seq import REGMAP,PiDiagTxSeq + # instanceName is taken from tc.gpString + on_execute(class_definition=PiDiagTxSeq,regmap=REGMAP) # this reads/shows ALL status + + +def test_rx_seq(tc,io,cmd): + tc.set_section_id('rx seq - ') + tc.append_log(3, '>>>') + tc.append_log(1, '>>> %s' % help_text(tc,io,cmd)) + tc.append_log(3, '>>>') + + from pi_diag_rx_seq import REGMAP,PiDiagRxSeq + # instanceName is taken from tc.gpString + on_execute(class_definition=PiDiagRxSeq,regmap=REGMAP) # this reads/shows ALL status + + + + def test_ddr_stat(tc,io,cmd): tc.set_section_id('DDR3 status - ') tc.append_log(3, '>>>') @@ -509,6 +548,8 @@ Cmd['WDI'] = (test_wdi, 'using pi_wdi to reset to image in bank 0 (acces Cmd['XAUI'] = (test_tr_xaui, 'using pi_tr_xaui to read xaui status (access REG_TR_XAUI)','(-r for addressing streams)') Cmd['10GBE'] = (test_tr_10GbE,'using pi_tr_10GbE to read 10GbE status (access REG_TR_10GBE)','(-r for addressing streams)') Cmd['DDR'] = (test_ddr_stat,'using pi_io_ddr to read DDR3 status (access REG_IO_DDR)','') +Cmd['TXSEQ'] = (test_tx_seq, 'using pi_diag_tx_seq','') +Cmd['RXSEQ'] = (test_rx_seq, 'using pi_diag_rx_seq','') Cmd['BSN'] = (test_bsn_mon, 'using pi_bsn_monitor to read BSN monitor (access REG_BSN_MONITOR)','') Cmd['BGDB'] = (test_BG_to_DB,'using BG (pi_diag_block_gen.py) and DB (pi_diag_data_buffer.py)','(-r and -s for addressing streams, -n1 for use pps)') Cmd['BGs00100'] = (write_BG_00100,'set test BG pattern ...000000000010000000000...','(-r and -s for addressing streams)')