search for: nv_arch_10

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

Did you mean: nv_arch_04
2019 Oct 12
0
[PATCH xf86-video-nouveau] nv4/exa: tiling is unsupported pre-nv10, reduce alignment requirements
....c +++ b/src/nouveau_dri2.c @@ -62,7 +62,10 @@ nouveau_dri2_create_buffer2(ScreenPtr pScreen, DrawablePtr pDraw, unsigned int a ppix->refcnt++; } else { int bpp; - unsigned int usage_hint = NOUVEAU_CREATE_PIXMAP_TILED; + unsigned int usage_hint = 0; + + if (pNv->Architecture >= NV_ARCH_10) + usage_hint |= NOUVEAU_CREATE_PIXMAP_TILED; /* 'format' is just depth (or 0, or maybe it depends on the caller) */ bpp = round_up_pow2(format ? format : pDraw->depth); diff --git a/src/nv_driver.c b/src/nv_driver.c index 42eb9db..a63674c 100644 --- a/src/nv_driver.c +++ b/src...
2007 Jul 05
0
RANDR1.2 and LVDS
...[REG_DISP_SYNC_START] = mode->CrtcVSyncStart - 1; - regp->fp_vert_regs[REG_DISP_SYNC_END] = mode->CrtcVSyncEnd - 1; - regp->fp_vert_regs[REG_DISP_VALID_START] = 0; - regp->fp_vert_regs[REG_DISP_VALID_END] = mode->CrtcVDisplay - 1; - } if (pNv->Architecture >= NV_ARCH_10) @@ -650,11 +668,11 @@ nv_output_lvds_get_modes(xf86OutputPtr output) ScrnInfoPtr pScrn = output->scrn; NVOutputPrivatePtr nv_output = output->driver_private; - // nv_output->fpWidth = NVOutputReadRAMDAC(output, NV_RAMDAC_FP_HDISP_END) + 1; - // nv_output->fpHei...
2010 Jan 06
3
Removal of Non-KMS support
I did a very quick pass at removing all the non-KMS support from the DDX. It's tested on G80 but nowhere else currently, I thought some discussion would be a good idea rather than just ripping it out :) The non-KMS paths are messy, and lets face it, rotting badly. IMO the KMS code is stable enough now that we can continue without the UMS crutch, and indeed, the KMS code supports a lot more