-- Collects the data coming in over each of the BX for 8BXs and repeats that 2040 times. Each MPA sends one counter data per 8BXs. So, since there are 8 MPAs connected to CIC2, there would be 8 counter data per 8BXs. As CIC2 output is sorted based on the bits corresponding to the bend info,
-- counter data won't be in a sequence. Need to check the AX bits to know which data corresponds to which MPA at the end of accumulation. The assumption here is that the first 8 "stub data" would correspond to the counter data from 8 MPAs.
-- in each BX, data is collected from L1 to L6 over 16 rows in 640MHz mode and over 8 rows for 320MHz mode. So slvs_lines_i(0)(15) (in 640MHz mode)/slvs_lines_i(0)(7)(in 320MHz mode) corresponds to bit 'C' in Figure 13 of CIC2_specs_v1p0 (MSB first logic).
-- inputting each of the AX bits plus parsed counter data (S10 B12 B11 B10 Z13 Z12 Z11 Z10 S17 S16 S15 S14 S13 S12 S11 - format as per the logic in slvs_debug_generic_line_fifo) into data_out.
-- inputting each of the AX bits plus parsed counter data (S10 B12 B11 B10 Z13 Z12 Z11 Z10 S17 S16 S15 S14 S13 S12 S11 - format as per the logic in slvs_debug_generic_line_fifo) into data_out.
-- to understand the parsing logic, for counter_num = 0, pkg_data((352 - (counter_num*21)) downto (352 - (counter_num*21) - 2)) would correspond to pkg_data(352 downto 350) which is [A12 A11 A10] in Figure 13 of CIC2_specs_v1p0.
-- to understand the parsing logic, for counter_num = 0, pkg_data((352 - (counter_num*21)) downto (352 - (counter_num*21) - 2)) would correspond to pkg_data(352 downto 350) which is [A12 A11 A10] in Figure 13 of CIC2_specs_v1p0.
-- Collects the data coming in over each of the BX for 8BXs and repeats that 2040 times. Each MPA sends one counter data per 8BXs. So, since there are 8 MPAs connected to CIC2, there would be 8 counter data per 8BXs. As CIC2 output is sorted based on the bits corresponding to the bend info,
-- counter data won't be in a sequence. Need to check the AX bits to know which data corresponds to which MPA at the end of accumulation. The assumption here is that the first 8 "stub data" would correspond to the counter data from 8 MPAs.
-- in each BX, data is collected from L1 to L6 over 16 rows in 640MHz mode and over 8 rows for 320MHz mode. So slvs_lines_i(0)(15) (in 640MHz mode)/slvs_lines_i(0)(7)(in 320MHz mode) corresponds to bit 'C' in Figure 13 of CIC2_specs_v1p0 (MSB first logic).