Lines Matching refs:full
3241 min_mem_eff.full = dfixed_const_8(0); in r100_bandwidth_update()
3262 temp_ff.full = dfixed_const(temp); in r100_bandwidth_update()
3263 mem_bw.full = dfixed_mul(mclk_ff, temp_ff); in r100_bandwidth_update()
3265 pix_clk.full = 0; in r100_bandwidth_update()
3266 pix_clk2.full = 0; in r100_bandwidth_update()
3267 peak_disp_bw.full = 0; in r100_bandwidth_update()
3269 temp_ff.full = dfixed_const(1000); in r100_bandwidth_update()
3270 pix_clk.full = dfixed_const(mode1->clock); /* convert to fixed point */ in r100_bandwidth_update()
3271 pix_clk.full = dfixed_div(pix_clk, temp_ff); in r100_bandwidth_update()
3272 temp_ff.full = dfixed_const(pixel_bytes1); in r100_bandwidth_update()
3273 peak_disp_bw.full += dfixed_mul(pix_clk, temp_ff); in r100_bandwidth_update()
3276 temp_ff.full = dfixed_const(1000); in r100_bandwidth_update()
3277 pix_clk2.full = dfixed_const(mode2->clock); /* convert to fixed point */ in r100_bandwidth_update()
3278 pix_clk2.full = dfixed_div(pix_clk2, temp_ff); in r100_bandwidth_update()
3279 temp_ff.full = dfixed_const(pixel_bytes2); in r100_bandwidth_update()
3280 peak_disp_bw.full += dfixed_mul(pix_clk2, temp_ff); in r100_bandwidth_update()
3283 mem_bw.full = dfixed_mul(mem_bw, min_mem_eff); in r100_bandwidth_update()
3284 if (peak_disp_bw.full >= mem_bw.full) { in r100_bandwidth_update()
3325 trcd_ff.full = dfixed_const(mem_trcd); in r100_bandwidth_update()
3326 trp_ff.full = dfixed_const(mem_trp); in r100_bandwidth_update()
3327 tras_ff.full = dfixed_const(mem_tras); in r100_bandwidth_update()
3345 tcas_ff.full += dfixed_const(data); in r100_bandwidth_update()
3375 tcas_ff.full += trbs_ff.full; in r100_bandwidth_update()
3378 sclk_eff_ff.full = sclk_ff.full; in r100_bandwidth_update()
3382 agpmode_ff.full = dfixed_const(radeon_agpmode); in r100_bandwidth_update()
3383 temp_ff.full = dfixed_const_666(16); in r100_bandwidth_update()
3384 sclk_eff_ff.full -= dfixed_mul(agpmode_ff, temp_ff); in r100_bandwidth_update()
3389 sclk_delay_ff.full = dfixed_const(250); in r100_bandwidth_update()
3394 sclk_delay_ff.full = dfixed_const(41); in r100_bandwidth_update()
3396 sclk_delay_ff.full = dfixed_const(33); in r100_bandwidth_update()
3399 sclk_delay_ff.full = dfixed_const(57); in r100_bandwidth_update()
3401 sclk_delay_ff.full = dfixed_const(41); in r100_bandwidth_update()
3405 mc_latency_sclk.full = dfixed_div(sclk_delay_ff, sclk_eff_ff); in r100_bandwidth_update()
3409 k1.full = dfixed_const(40); in r100_bandwidth_update()
3412 k1.full = dfixed_const(20); in r100_bandwidth_update()
3416 k1.full = dfixed_const(40); in r100_bandwidth_update()
3420 temp_ff.full = dfixed_const(2); in r100_bandwidth_update()
3421 mc_latency_mclk.full = dfixed_mul(trcd_ff, temp_ff); in r100_bandwidth_update()
3422 temp_ff.full = dfixed_const(c); in r100_bandwidth_update()
3423 mc_latency_mclk.full += dfixed_mul(tcas_ff, temp_ff); in r100_bandwidth_update()
3424 temp_ff.full = dfixed_const(4); in r100_bandwidth_update()
3425 mc_latency_mclk.full += dfixed_mul(tras_ff, temp_ff); in r100_bandwidth_update()
3426 mc_latency_mclk.full += dfixed_mul(trp_ff, temp_ff); in r100_bandwidth_update()
3427 mc_latency_mclk.full += k1.full; in r100_bandwidth_update()
3429 mc_latency_mclk.full = dfixed_div(mc_latency_mclk, mclk_ff); in r100_bandwidth_update()
3430 mc_latency_mclk.full += dfixed_div(temp_ff, sclk_eff_ff); in r100_bandwidth_update()
3435 temp_ff.full = dfixed_const((2 * (cur_size - (rdev->mc.vram_is_ddr + 1)))); in r100_bandwidth_update()
3436 temp_ff.full += trcd_ff.full; in r100_bandwidth_update()
3437 if (temp_ff.full < tras_ff.full) in r100_bandwidth_update()
3438 temp_ff.full = tras_ff.full; in r100_bandwidth_update()
3439 cur_latency_mclk.full = dfixed_div(temp_ff, mclk_ff); in r100_bandwidth_update()
3441 temp_ff.full = dfixed_const(cur_size); in r100_bandwidth_update()
3442 cur_latency_sclk.full = dfixed_div(temp_ff, sclk_eff_ff); in r100_bandwidth_update()
3446 disp_latency_overhead.full = dfixed_const(8); in r100_bandwidth_update()
3447 disp_latency_overhead.full = dfixed_div(disp_latency_overhead, sclk_ff); in r100_bandwidth_update()
3448 mc_latency_mclk.full += disp_latency_overhead.full + cur_latency_mclk.full; in r100_bandwidth_update()
3449 mc_latency_sclk.full += disp_latency_overhead.full + cur_latency_sclk.full; in r100_bandwidth_update()
3451 if (mc_latency_mclk.full > mc_latency_sclk.full) in r100_bandwidth_update()
3452 disp_latency.full = mc_latency_mclk.full; in r100_bandwidth_update()
3454 disp_latency.full = mc_latency_sclk.full; in r100_bandwidth_update()
3475 temp_ff.full = dfixed_const((16/pixel_bytes1)); in r100_bandwidth_update()
3476 disp_drain_rate.full = dfixed_div(pix_clk, temp_ff); in r100_bandwidth_update()
3481 crit_point_ff.full = dfixed_mul(disp_drain_rate, disp_latency); in r100_bandwidth_update()
3482 crit_point_ff.full += dfixed_const_half(0); in r100_bandwidth_update()
3555 temp_ff.full = dfixed_const((16/pixel_bytes2)); in r100_bandwidth_update()
3556 disp_drain_rate2.full = dfixed_div(pix_clk2, temp_ff); in r100_bandwidth_update()
3577 temp_ff.full = dfixed_const(temp); in r100_bandwidth_update()
3578 temp_ff.full = dfixed_mul(mclk_ff, temp_ff); in r100_bandwidth_update()
3579 if (sclk_ff.full < temp_ff.full) in r100_bandwidth_update()
3580 temp_ff.full = sclk_ff.full; in r100_bandwidth_update()
3582 read_return_rate.full = temp_ff.full; in r100_bandwidth_update()
3585 temp_ff.full = read_return_rate.full - disp_drain_rate.full; in r100_bandwidth_update()
3586 time_disp1_drop_priority.full = dfixed_div(crit_point_ff, temp_ff); in r100_bandwidth_update()
3588 time_disp1_drop_priority.full = 0; in r100_bandwidth_update()
3590 crit_point_ff.full = disp_latency.full + time_disp1_drop_priority.full + disp_latency.full; in r100_bandwidth_update()
3591 crit_point_ff.full = dfixed_mul(crit_point_ff, disp_drain_rate2); in r100_bandwidth_update()
3592 crit_point_ff.full += dfixed_const_half(0); in r100_bandwidth_update()