Lines Matching refs:bandwidth
2000 fixed20_12 yclk, dram_channels, bandwidth; in evergreen_dram_bandwidth() local
2010 bandwidth.full = dfixed_mul(dram_channels, yclk); in evergreen_dram_bandwidth()
2011 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in evergreen_dram_bandwidth()
2013 return dfixed_trunc(bandwidth); in evergreen_dram_bandwidth()
2020 fixed20_12 yclk, dram_channels, bandwidth; in evergreen_dram_bandwidth_for_display() local
2030 bandwidth.full = dfixed_mul(dram_channels, yclk); in evergreen_dram_bandwidth_for_display()
2031 bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation); in evergreen_dram_bandwidth_for_display()
2033 return dfixed_trunc(bandwidth); in evergreen_dram_bandwidth_for_display()
2040 fixed20_12 sclk, bandwidth; in evergreen_data_return_bandwidth() local
2050 bandwidth.full = dfixed_mul(a, sclk); in evergreen_data_return_bandwidth()
2051 bandwidth.full = dfixed_mul(bandwidth, return_efficiency); in evergreen_data_return_bandwidth()
2053 return dfixed_trunc(bandwidth); in evergreen_data_return_bandwidth()
2060 fixed20_12 disp_clk, bandwidth; in evergreen_dmif_request_bandwidth() local
2070 bandwidth.full = dfixed_mul(a, disp_clk); in evergreen_dmif_request_bandwidth()
2071 bandwidth.full = dfixed_mul(bandwidth, disp_clk_request_efficiency); in evergreen_dmif_request_bandwidth()
2073 return dfixed_trunc(bandwidth); in evergreen_dmif_request_bandwidth()
2095 fixed20_12 bandwidth; in evergreen_average_bandwidth() local
2103 bandwidth.full = dfixed_mul(src_width, bpp); in evergreen_average_bandwidth()
2104 bandwidth.full = dfixed_mul(bandwidth, wm->vsc); in evergreen_average_bandwidth()
2105 bandwidth.full = dfixed_div(bandwidth, line_time); in evergreen_average_bandwidth()
2107 return dfixed_trunc(bandwidth); in evergreen_average_bandwidth()