Commit f155972d authored by Kirill Smelkov's avatar Kirill Smelkov

promise/plugin/check_cpri_lock: Fix it to work with Amarisoft 2024-06-15

In that release rf_info started to emit output with "Clock tune:" entry
not indented and so our code was ignoring every line after that leading
to missing to load CPR_option entry and erroring with "no CPRI entry" as
the result.

-> Fix that by adding a quirk to treat "Clock tune:" line specially so
   that processing of per sdr/port records does not stop on it.

/cc @lu.xu
/proposed-for-review-on !135
parent 8fc29341
Pipeline #38082 running with stage
in 0 seconds
......@@ -69,15 +69,19 @@ class RunPromise(JSONPromise):
cur = None
for l in rf_info_text.splitlines():
if not l.startswith(' '): # possibly start of new /dev entry
cur = None
m = re.search(r' (/dev/sdr[^\s]+):\s*$', l)
if m is None: # not so - ignore the line
continue
cur = {}
sdr_devchan = m.group(1)
rf_info[sdr_devchan] = cur
continue
new = True
if l.startswith('Clock tune:'):
new = False # 2024-06-15 started to emit 'Clock tune:' without indent
if new:
cur = None
m = re.search(r' (/dev/sdr[^\s]+):\s*$', l)
if m is None: # not so - ignore the line
continue
cur = {}
sdr_devchan = m.group(1)
rf_info[sdr_devchan] = cur
continue
# indented line - it populates current if it still holds its context
if cur is None:
......
......@@ -161,6 +161,78 @@ PCIe CPRI /dev/sdr0@0:
self.configureLauncher()
self.launcher.run()
def test_2024_06_15(self):
# Amarisoft software from 2024-06-15 has changed format of rf_info
rf_info_data = self.rf_info_data.copy()
rf_info_data['rf_info'] = \
"""
TRX SDR driver 2024-06-11, API v15
PCIe CPRI /dev/sdr0@0:
Hardware ID: 0x4b12
DNA: [0x0068102442f1b05c]
Serial: ''
FPGA revision: 2024-03-14 16:19:27
FPGA vccint: 0.98 V
FPGA vccaux: 1.77 V
FPGA vccbram: 0.99 V
FPGA temperature: 57.6 °C
Clock tune: 0.2 ppm
NUMA: 0
CPRI_option: '5' (x8) signal=yes lock=HW+SW rx/tx=2.433us
Port #0: T14=2.433us
DMA0: TX fifo: 66.67us Usage=16/32768 (0%)
DMA0: RX fifo: 66.67us Usage=16/32768 (0%)
DMA0 Underflows: 0
DMA0: Overflows: 0
BUFS: TX idx=53800.99 RX idx=53800.100
PCIe CPRI /dev/sdr1@0:
Hardware ID: 0x4b12
DNA: [0x0048b504006af054]
Serial: ''
FPGA revision: 2024-03-14 16:19:27
FPGA vccint: 0.99 V
FPGA vccaux: 1.78 V
FPGA vccbram: 0.99 V
FPGA temperature: 51.6 °C
Clock tune: -4.0 ppm
NUMA: 1
CPRI_option: '5' (x8) signal=yes lock=HW+SW rx/tx=1.994us
Port #0: T14=1.994us
DMA0: TX fifo: 66.67us Usage=16/32768 (0%)
DMA0: RX fifo: 66.67us Usage=16/32768 (0%)
DMA0 Underflows: 0
DMA0: Overflows: 0
BUFS: TX idx=53800.114 RX idx=53800.115
PCIe CPRI /dev/sdr0@2:
Hardware ID: 0x4b12
DNA: [0x0068102442f1b05c]
Serial: ''
FPGA revision: 2024-03-14 16:19:27
FPGA vccint: 0.98 V
FPGA vccaux: 1.77 V
FPGA vccbram: 0.98 V
FPGA temperature: 57.6 °C
Clock tune: 0.2 ppm
NUMA: 0
CPRI_option: '5' (x8) signal=yes lock=HW+SW rx/tx=2.393us
Port #0: T14=2.393us
DMA0: TX fifo: 66.67us Usage=16/32768 (0%)
DMA0: RX fifo: 66.67us Usage=16/32768 (0%)
DMA0 Underflows: 0
DMA0: Overflows: 0
BUFS: TX idx=53800.133 RX idx=53800.134
GPS info:
UTC: 2024-10-24 11:51:43
pos: lat=12.34567° long=34.56789°
height: 118.1m nb_sats: 10
"""
self.writeLog(rf_info_data)
for sdr, port in [(0,0), (1,0), (0,2)]:
self.writePromise(sdr_dev='%d' % sdr, sfp_port='%d' % port)
self.configureLauncher()
self.launcher.run()
if __name__ == '__main__':
unittest.main()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment