Lines Matching refs:read_out
970 def bin_data_2_info(info_from_bin, read_out, ddrbin_index, version, info_from_txt): argument
976 for i in range(len(read_out)):
979 if value['v0_info'][0] == read_out[i][0]:
980 temp_value = (read_out[i][1] >> value['v0_info'][1]) & value['v0_info'][2]
994 temp_value = read_out[head_info_name][value['position']]
1005 if position_1 in list(read_out[head_info_name].keys()):
1006 temp_value = read_out[head_info_name][position_1][position_2]
1187 def uart_iomux_count_calculation(ddrbin_index, info_from_txt, info_from_bin, read_out, version): argument
1200 read_out[head_info_name][addr] = 0
1201 read_out[head_info_name][mask] = 0
1202 read_out[head_info_name][value] = 0
1217 def bin_data_readout(filebin, ddrbin_index, read_out, bin_skew_offset, version, info_from_txt): argument
1221 for i in range(len(read_out)):
1223 read_out[i][1] = int.from_bytes(filebin.read(4), byteorder='little')
1241 for key in read_out[head_info_name]:
1245 read_out[head_info_name][key] = temp_value
1272 read_out.update({'skew_info' : rk3528_skew_info})
1520 read_out = copy.deepcopy(sdram_head_info_v0)
1536 read_out = copy.deepcopy(sdram_head_info_v2)
1539 read_out = copy.deepcopy(sdram_head_info_v5)
1542 read_out = copy.deepcopy(sdram_head_info_v6)
1569 uart_iomux_count_calculation(ddrbin_index, info_from_txt, info_from_bin, read_out, version)
1571 …if bin_data_readout(filebin, ddrbin_index, read_out, bin_skew_offset, version, info_from_txt) != 0:
1576 bin_data_2_info(info_from_bin, read_out, ddrbin_index, version, info_from_txt)