Lines Matching refs:socbb

30 	const struct soc_bounding_box_st *socbb,  in get_optimal_ntuple()  argument
34 …float bw_on_sdp = (float)(entry->dcfclk_mhz * socbb->return_bus_width_bytes * ((float)socbb->pct_i… in get_optimal_ntuple()
36 …entry->fabricclk_mhz = bw_on_sdp / (socbb->return_bus_width_bytes * ((float)socbb->pct_ideal_fabri… in get_optimal_ntuple()
37 entry->dram_speed_mts = bw_on_sdp / (socbb->num_chans * in get_optimal_ntuple()
38socbb->dram_channel_width_bytes * ((float)socbb->pct_ideal_dram_bw_after_urgent_pixel_only / 100)); in get_optimal_ntuple()
40 …float bw_on_fabric = (float)(entry->fabricclk_mhz * socbb->return_bus_width_bytes * ((float)socbb-… in get_optimal_ntuple()
42 …entry->dcfclk_mhz = bw_on_fabric / (socbb->return_bus_width_bytes * ((float)socbb->pct_ideal_sdp_b… in get_optimal_ntuple()
43 entry->dram_speed_mts = bw_on_fabric / (socbb->num_chans * in get_optimal_ntuple()
44socbb->dram_channel_width_bytes * ((float)socbb->pct_ideal_dram_bw_after_urgent_pixel_only / 100)); in get_optimal_ntuple()
46 float bw_on_dram = (float)(entry->dram_speed_mts * socbb->num_chans * in get_optimal_ntuple()
47socbb->dram_channel_width_bytes * ((float)socbb->pct_ideal_dram_bw_after_urgent_pixel_only / 100)); in get_optimal_ntuple()
49 …entry->fabricclk_mhz = bw_on_dram / (socbb->return_bus_width_bytes * ((float)socbb->pct_ideal_fabr… in get_optimal_ntuple()
50 …entry->dcfclk_mhz = bw_on_dram / (socbb->return_bus_width_bytes * ((float)socbb->pct_ideal_sdp_bw_… in get_optimal_ntuple()
54 static float calculate_net_bw_in_mbytes_sec(const struct soc_bounding_box_st *socbb, in calculate_net_bw_in_mbytes_sec() argument
57 float memory_bw_mbytes_sec = (float)(entry->dram_speed_mts * socbb->num_chans * in calculate_net_bw_in_mbytes_sec()
58socbb->dram_channel_width_bytes * ((float)socbb->pct_ideal_dram_bw_after_urgent_pixel_only / 100)); in calculate_net_bw_in_mbytes_sec()
60 …fabric_bw_mbytes_sec = (float)(entry->fabricclk_mhz * socbb->return_bus_width_bytes * ((float)socb… in calculate_net_bw_in_mbytes_sec()
62 …float sdp_bw_mbytes_sec = (float)(entry->dcfclk_mhz * socbb->return_bus_width_bytes * ((float)socb… in calculate_net_bw_in_mbytes_sec()
75 static void insert_entry_into_table_sorted(const struct soc_bounding_box_st *socbb, in insert_entry_into_table_sorted() argument
83 get_optimal_ntuple(socbb, entry); in insert_entry_into_table_sorted()
88 net_bw_of_new_state = calculate_net_bw_in_mbytes_sec(socbb, entry); in insert_entry_into_table_sorted()
89 while (net_bw_of_new_state > calculate_net_bw_in_mbytes_sec(socbb, &table->state_array[index])) { in insert_entry_into_table_sorted()