Lines Matching refs:bandwidth
2045 fixed20_12 yclk, dram_channels, bandwidth; in evergreen_dram_bandwidth() local
2055 bandwidth.full = dfixed_mul(dram_channels, yclk); in evergreen_dram_bandwidth()
2056 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in evergreen_dram_bandwidth()
2058 return dfixed_trunc(bandwidth); in evergreen_dram_bandwidth()
2065 fixed20_12 yclk, dram_channels, bandwidth; in evergreen_dram_bandwidth_for_display() local
2075 bandwidth.full = dfixed_mul(dram_channels, yclk); in evergreen_dram_bandwidth_for_display()
2076 bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation); in evergreen_dram_bandwidth_for_display()
2078 return dfixed_trunc(bandwidth); in evergreen_dram_bandwidth_for_display()
2085 fixed20_12 sclk, bandwidth; in evergreen_data_return_bandwidth() local
2095 bandwidth.full = dfixed_mul(a, sclk); in evergreen_data_return_bandwidth()
2096 bandwidth.full = dfixed_mul(bandwidth, return_efficiency); in evergreen_data_return_bandwidth()
2098 return dfixed_trunc(bandwidth); in evergreen_data_return_bandwidth()
2105 fixed20_12 disp_clk, bandwidth; in evergreen_dmif_request_bandwidth() local
2115 bandwidth.full = dfixed_mul(a, disp_clk); in evergreen_dmif_request_bandwidth()
2116 bandwidth.full = dfixed_mul(bandwidth, disp_clk_request_efficiency); in evergreen_dmif_request_bandwidth()
2118 return dfixed_trunc(bandwidth); in evergreen_dmif_request_bandwidth()
2140 fixed20_12 bandwidth; in evergreen_average_bandwidth() local
2148 bandwidth.full = dfixed_mul(src_width, bpp); in evergreen_average_bandwidth()
2149 bandwidth.full = dfixed_mul(bandwidth, wm->vsc); in evergreen_average_bandwidth()
2150 bandwidth.full = dfixed_div(bandwidth, line_time); in evergreen_average_bandwidth()
2152 return dfixed_trunc(bandwidth); in evergreen_average_bandwidth()