Home
last modified time | relevance | path

Searched refs:hblank_symbols (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/gpu/drm/nouveau/dispnv50/
H A Ddisp.c1613 s32 hblank_symbols; in nv50_sor_dp_watermark_sst() local
1707hblank_symbols = (s32)(div_u64((u64)(rasterWidth - surfaceWidth - MinHBlank) * minRate, pixelClock… in nv50_sor_dp_watermark_sst()
1710 hblank_symbols -= 1; //Stuffer latency to send BS in nv50_sor_dp_watermark_sst()
1711 hblank_symbols -= 3; //SPKT latency to send data to stuffer in nv50_sor_dp_watermark_sst()
1713 hblank_symbols -= numLanesPerLink == 1 ? 9 : numLanesPerLink == 2 ? 6 : 3; in nv50_sor_dp_watermark_sst()
1715 hBlankSym = (hblank_symbols < 0) ? 0 : hblank_symbols; in nv50_sor_dp_watermark_sst()
/linux/drivers/gpu/drm/tegra/
H A Dsor.c471 u32 hblank_symbols; member
1227 config->hblank_symbols = div_u64(num, pclk); in tegra_sor_compute_config()
1230 config->hblank_symbols -= 3; in tegra_sor_compute_config()
1232 config->hblank_symbols -= 12 / link->lanes; in tegra_sor_compute_config()
1239 dev_dbg(sor->dev, "blank symbols: H:%u V:%u\n", config->hblank_symbols, in tegra_sor_compute_config()
1276 value |= config->hblank_symbols & 0xffff; in tegra_sor_apply_config()