Lines Matching refs:full
1954 a.full = dfixed_const(1000); in evergreen_dram_bandwidth()
1955 yclk.full = dfixed_const(wm->yclk); in evergreen_dram_bandwidth()
1956 yclk.full = dfixed_div(yclk, a); in evergreen_dram_bandwidth()
1957 dram_channels.full = dfixed_const(wm->dram_channels * 4); in evergreen_dram_bandwidth()
1958 a.full = dfixed_const(10); in evergreen_dram_bandwidth()
1959 dram_efficiency.full = dfixed_const(7); in evergreen_dram_bandwidth()
1960 dram_efficiency.full = dfixed_div(dram_efficiency, a); in evergreen_dram_bandwidth()
1961 bandwidth.full = dfixed_mul(dram_channels, yclk); in evergreen_dram_bandwidth()
1962 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in evergreen_dram_bandwidth()
1974 a.full = dfixed_const(1000); in evergreen_dram_bandwidth_for_display()
1975 yclk.full = dfixed_const(wm->yclk); in evergreen_dram_bandwidth_for_display()
1976 yclk.full = dfixed_div(yclk, a); in evergreen_dram_bandwidth_for_display()
1977 dram_channels.full = dfixed_const(wm->dram_channels * 4); in evergreen_dram_bandwidth_for_display()
1978 a.full = dfixed_const(10); in evergreen_dram_bandwidth_for_display()
1979 disp_dram_allocation.full = dfixed_const(3); /* XXX worse case value 0.3 */ in evergreen_dram_bandwidth_for_display()
1980 disp_dram_allocation.full = dfixed_div(disp_dram_allocation, a); in evergreen_dram_bandwidth_for_display()
1981 bandwidth.full = dfixed_mul(dram_channels, yclk); in evergreen_dram_bandwidth_for_display()
1982 bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation); in evergreen_dram_bandwidth_for_display()
1994 a.full = dfixed_const(1000); in evergreen_data_return_bandwidth()
1995 sclk.full = dfixed_const(wm->sclk); in evergreen_data_return_bandwidth()
1996 sclk.full = dfixed_div(sclk, a); in evergreen_data_return_bandwidth()
1997 a.full = dfixed_const(10); in evergreen_data_return_bandwidth()
1998 return_efficiency.full = dfixed_const(8); in evergreen_data_return_bandwidth()
1999 return_efficiency.full = dfixed_div(return_efficiency, a); in evergreen_data_return_bandwidth()
2000 a.full = dfixed_const(32); in evergreen_data_return_bandwidth()
2001 bandwidth.full = dfixed_mul(a, sclk); in evergreen_data_return_bandwidth()
2002 bandwidth.full = dfixed_mul(bandwidth, return_efficiency); in evergreen_data_return_bandwidth()
2014 a.full = dfixed_const(1000); in evergreen_dmif_request_bandwidth()
2015 disp_clk.full = dfixed_const(wm->disp_clk); in evergreen_dmif_request_bandwidth()
2016 disp_clk.full = dfixed_div(disp_clk, a); in evergreen_dmif_request_bandwidth()
2017 a.full = dfixed_const(10); in evergreen_dmif_request_bandwidth()
2018 disp_clk_request_efficiency.full = dfixed_const(8); in evergreen_dmif_request_bandwidth()
2019 disp_clk_request_efficiency.full = dfixed_div(disp_clk_request_efficiency, a); in evergreen_dmif_request_bandwidth()
2020 a.full = dfixed_const(32); in evergreen_dmif_request_bandwidth()
2021 bandwidth.full = dfixed_mul(a, disp_clk); in evergreen_dmif_request_bandwidth()
2022 bandwidth.full = dfixed_mul(bandwidth, disp_clk_request_efficiency); in evergreen_dmif_request_bandwidth()
2049 a.full = dfixed_const(1000); in evergreen_average_bandwidth()
2050 line_time.full = dfixed_const(wm->active_time + wm->blank_time); in evergreen_average_bandwidth()
2051 line_time.full = dfixed_div(line_time, a); in evergreen_average_bandwidth()
2052 bpp.full = dfixed_const(wm->bytes_per_pixel); in evergreen_average_bandwidth()
2053 src_width.full = dfixed_const(wm->src_width); in evergreen_average_bandwidth()
2054 bandwidth.full = dfixed_mul(src_width, bpp); in evergreen_average_bandwidth()
2055 bandwidth.full = dfixed_mul(bandwidth, wm->vsc); in evergreen_average_bandwidth()
2056 bandwidth.full = dfixed_div(bandwidth, line_time); in evergreen_average_bandwidth()
2078 a.full = dfixed_const(2); in evergreen_latency_watermark()
2079 b.full = dfixed_const(1); in evergreen_latency_watermark()
2080 if ((wm->vsc.full > a.full) || in evergreen_latency_watermark()
2081 ((wm->vsc.full > b.full) && (wm->vtaps >= 3)) || in evergreen_latency_watermark()
2083 ((wm->vsc.full >= a.full) && wm->interlaced)) in evergreen_latency_watermark()
2088 a.full = dfixed_const(available_bandwidth); in evergreen_latency_watermark()
2089 b.full = dfixed_const(wm->num_heads); in evergreen_latency_watermark()
2090 a.full = dfixed_div(a, b); in evergreen_latency_watermark()
2094 a.full = dfixed_const(max_src_lines_per_dst_line * wm->src_width * wm->bytes_per_pixel); in evergreen_latency_watermark()
2095 b.full = dfixed_const(1000); in evergreen_latency_watermark()
2096 c.full = dfixed_const(lb_fill_bw); in evergreen_latency_watermark()
2097 b.full = dfixed_div(c, b); in evergreen_latency_watermark()
2098 a.full = dfixed_div(a, b); in evergreen_latency_watermark()
2134 a.full = dfixed_const(1); in evergreen_check_latency_hiding()
2135 if (wm->vsc.full > a.full) in evergreen_check_latency_hiding()
2255 a.full = dfixed_const(1000); in evergreen_program_watermarks()
2256 b.full = dfixed_const(mode->clock); in evergreen_program_watermarks()
2257 b.full = dfixed_div(b, a); in evergreen_program_watermarks()
2258 c.full = dfixed_const(latency_watermark_a); in evergreen_program_watermarks()
2259 c.full = dfixed_mul(c, b); in evergreen_program_watermarks()
2260 c.full = dfixed_mul(c, radeon_crtc->hsc); in evergreen_program_watermarks()
2261 c.full = dfixed_div(c, a); in evergreen_program_watermarks()
2262 a.full = dfixed_const(16); in evergreen_program_watermarks()
2263 c.full = dfixed_div(c, a); in evergreen_program_watermarks()
2267 a.full = dfixed_const(1000); in evergreen_program_watermarks()
2268 b.full = dfixed_const(mode->clock); in evergreen_program_watermarks()
2269 b.full = dfixed_div(b, a); in evergreen_program_watermarks()
2270 c.full = dfixed_const(latency_watermark_b); in evergreen_program_watermarks()
2271 c.full = dfixed_mul(c, b); in evergreen_program_watermarks()
2272 c.full = dfixed_mul(c, radeon_crtc->hsc); in evergreen_program_watermarks()
2273 c.full = dfixed_div(c, a); in evergreen_program_watermarks()
2274 a.full = dfixed_const(16); in evergreen_program_watermarks()
2275 c.full = dfixed_div(c, a); in evergreen_program_watermarks()