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