Lines Matching refs:full
1950 a.full = dfixed_const(1000); in evergreen_dram_bandwidth()
1951 yclk.full = dfixed_const(wm->yclk); in evergreen_dram_bandwidth()
1952 yclk.full = dfixed_div(yclk, a); in evergreen_dram_bandwidth()
1953 dram_channels.full = dfixed_const(wm->dram_channels * 4); in evergreen_dram_bandwidth()
1954 a.full = dfixed_const(10); in evergreen_dram_bandwidth()
1955 dram_efficiency.full = dfixed_const(7); in evergreen_dram_bandwidth()
1956 dram_efficiency.full = dfixed_div(dram_efficiency, a); in evergreen_dram_bandwidth()
1957 bandwidth.full = dfixed_mul(dram_channels, yclk); in evergreen_dram_bandwidth()
1958 bandwidth.full = dfixed_mul(bandwidth, dram_efficiency); in evergreen_dram_bandwidth()
1970 a.full = dfixed_const(1000); in evergreen_dram_bandwidth_for_display()
1971 yclk.full = dfixed_const(wm->yclk); in evergreen_dram_bandwidth_for_display()
1972 yclk.full = dfixed_div(yclk, a); in evergreen_dram_bandwidth_for_display()
1973 dram_channels.full = dfixed_const(wm->dram_channels * 4); in evergreen_dram_bandwidth_for_display()
1974 a.full = dfixed_const(10); in evergreen_dram_bandwidth_for_display()
1975 disp_dram_allocation.full = dfixed_const(3); /* XXX worse case value 0.3 */ in evergreen_dram_bandwidth_for_display()
1976 disp_dram_allocation.full = dfixed_div(disp_dram_allocation, a); in evergreen_dram_bandwidth_for_display()
1977 bandwidth.full = dfixed_mul(dram_channels, yclk); in evergreen_dram_bandwidth_for_display()
1978 bandwidth.full = dfixed_mul(bandwidth, disp_dram_allocation); in evergreen_dram_bandwidth_for_display()
1990 a.full = dfixed_const(1000); in evergreen_data_return_bandwidth()
1991 sclk.full = dfixed_const(wm->sclk); in evergreen_data_return_bandwidth()
1992 sclk.full = dfixed_div(sclk, a); in evergreen_data_return_bandwidth()
1993 a.full = dfixed_const(10); in evergreen_data_return_bandwidth()
1994 return_efficiency.full = dfixed_const(8); in evergreen_data_return_bandwidth()
1995 return_efficiency.full = dfixed_div(return_efficiency, a); in evergreen_data_return_bandwidth()
1996 a.full = dfixed_const(32); in evergreen_data_return_bandwidth()
1997 bandwidth.full = dfixed_mul(a, sclk); in evergreen_data_return_bandwidth()
1998 bandwidth.full = dfixed_mul(bandwidth, return_efficiency); in evergreen_data_return_bandwidth()
2010 a.full = dfixed_const(1000); in evergreen_dmif_request_bandwidth()
2011 disp_clk.full = dfixed_const(wm->disp_clk); in evergreen_dmif_request_bandwidth()
2012 disp_clk.full = dfixed_div(disp_clk, a); in evergreen_dmif_request_bandwidth()
2013 a.full = dfixed_const(10); in evergreen_dmif_request_bandwidth()
2014 disp_clk_request_efficiency.full = dfixed_const(8); in evergreen_dmif_request_bandwidth()
2015 disp_clk_request_efficiency.full = dfixed_div(disp_clk_request_efficiency, a); in evergreen_dmif_request_bandwidth()
2016 a.full = dfixed_const(32); in evergreen_dmif_request_bandwidth()
2017 bandwidth.full = dfixed_mul(a, disp_clk); in evergreen_dmif_request_bandwidth()
2018 bandwidth.full = dfixed_mul(bandwidth, disp_clk_request_efficiency); in evergreen_dmif_request_bandwidth()
2045 a.full = dfixed_const(1000); in evergreen_average_bandwidth()
2046 line_time.full = dfixed_const(wm->active_time + wm->blank_time); in evergreen_average_bandwidth()
2047 line_time.full = dfixed_div(line_time, a); in evergreen_average_bandwidth()
2048 bpp.full = dfixed_const(wm->bytes_per_pixel); in evergreen_average_bandwidth()
2049 src_width.full = dfixed_const(wm->src_width); in evergreen_average_bandwidth()
2050 bandwidth.full = dfixed_mul(src_width, bpp); in evergreen_average_bandwidth()
2051 bandwidth.full = dfixed_mul(bandwidth, wm->vsc); in evergreen_average_bandwidth()
2052 bandwidth.full = dfixed_div(bandwidth, line_time); in evergreen_average_bandwidth()
2074 a.full = dfixed_const(2); in evergreen_latency_watermark()
2075 b.full = dfixed_const(1); in evergreen_latency_watermark()
2076 if ((wm->vsc.full > a.full) || in evergreen_latency_watermark()
2077 ((wm->vsc.full > b.full) && (wm->vtaps >= 3)) || in evergreen_latency_watermark()
2079 ((wm->vsc.full >= a.full) && wm->interlaced)) in evergreen_latency_watermark()
2084 a.full = dfixed_const(available_bandwidth); in evergreen_latency_watermark()
2085 b.full = dfixed_const(wm->num_heads); in evergreen_latency_watermark()
2086 a.full = dfixed_div(a, b); in evergreen_latency_watermark()
2090 a.full = dfixed_const(max_src_lines_per_dst_line * wm->src_width * wm->bytes_per_pixel); in evergreen_latency_watermark()
2091 b.full = dfixed_const(1000); in evergreen_latency_watermark()
2092 c.full = dfixed_const(lb_fill_bw); in evergreen_latency_watermark()
2093 b.full = dfixed_div(c, b); in evergreen_latency_watermark()
2094 a.full = dfixed_div(a, b); in evergreen_latency_watermark()
2130 a.full = dfixed_const(1); in evergreen_check_latency_hiding()
2131 if (wm->vsc.full > a.full) in evergreen_check_latency_hiding()
2251 a.full = dfixed_const(1000); in evergreen_program_watermarks()
2252 b.full = dfixed_const(mode->clock); in evergreen_program_watermarks()
2253 b.full = dfixed_div(b, a); in evergreen_program_watermarks()
2254 c.full = dfixed_const(latency_watermark_a); in evergreen_program_watermarks()
2255 c.full = dfixed_mul(c, b); in evergreen_program_watermarks()
2256 c.full = dfixed_mul(c, radeon_crtc->hsc); in evergreen_program_watermarks()
2257 c.full = dfixed_div(c, a); in evergreen_program_watermarks()
2258 a.full = dfixed_const(16); in evergreen_program_watermarks()
2259 c.full = dfixed_div(c, a); in evergreen_program_watermarks()
2263 a.full = dfixed_const(1000); in evergreen_program_watermarks()
2264 b.full = dfixed_const(mode->clock); in evergreen_program_watermarks()
2265 b.full = dfixed_div(b, a); in evergreen_program_watermarks()
2266 c.full = dfixed_const(latency_watermark_b); in evergreen_program_watermarks()
2267 c.full = dfixed_mul(c, b); in evergreen_program_watermarks()
2268 c.full = dfixed_mul(c, radeon_crtc->hsc); in evergreen_program_watermarks()
2269 c.full = dfixed_div(c, a); in evergreen_program_watermarks()
2270 a.full = dfixed_const(16); in evergreen_program_watermarks()
2271 c.full = dfixed_div(c, a); in evergreen_program_watermarks()