search for: agpv3

Displaying 3 results from an estimated 3 matches for "agpv3".

Did you mean: agp3
2013 Oct 27
3
[PATCH] drm/nouveau/agp: add a quirk list to limit agp modes
...rk->chip_device) { + agpmode = quirk->mode; + nv_info(device, "Forcing agp mode to %dX. Use agpmode to override.\n", + agpmode); + break; + } + ++quirk; + } + + /* * AGP mode set in the command line. */ - if (nouveau_agpmode > 0) { + if (agpmode > 0) { bool agpv3 = mode & 0x8; - int rate = agpv3 ? nouveau_agpmode / 4 : nouveau_agpmode; + int rate = agpv3 ? agpmode / 4 : agpmode; mode = (mode & ~0x7) | (rate & 0x7); } @@ -90,7 +124,7 @@ nouveau_agp_reset(struct nouveau_drm *drm) if (ret) return; - mode.mode = get_agp_mode(drm,...
2013 Oct 28
0
[PATCH] drm/nouveau/agp: add a quirk list to limit agp modes
...(device, "Forcing agp mode to %dX. Use agpmode to override.\n", > + agpmode); > + break; > + } > + ++quirk; > + } > + > + /* > * AGP mode set in the command line. > */ > - if (nouveau_agpmode > 0) { > + if (agpmode > 0) { > bool agpv3 = mode & 0x8; > - int rate = agpv3 ? nouveau_agpmode / 4 : nouveau_agpmode; > + int rate = agpv3 ? agpmode / 4 : agpmode; > > mode = (mode & ~0x7) | (rate & 0x7); > } > @@ -90,7 +124,7 @@ nouveau_agp_reset(struct nouveau_drm *drm) > if (ret) > r...
2020 May 11
10
[RFC] Remove AGP support from Radeon/Nouveau/TTM
Hi guys, Well let's face it AGP is a total headache to maintain and dead for at least 10+ years. We have a lot of x86 specific stuff in the architecture independent graphics memory management to get the caching right, abusing the DMA API on multiple occasions, need to distinct between AGP and driver specific page tables etc etc... So the idea here is to just go ahead and remove the support