Displaying 5 results from an estimated 5 matches for "9361ce8".
2015 Mar 21
0
[PATCH] use defined method names where available
...GIN_NV04(push, NV50_3D(FP_START_ID), 1);
PUSH_DATA (push, PFP_NV12);
- BEGIN_NV04(push, SUBC_3D(0x1334), 1);
+ BEGIN_NV04(push, NV50_3D(TIC_FLUSH), 1);
PUSH_DATA (push, 0);
BEGIN_NV04(push, NV50_3D(BIND_TIC(2)), 1);
diff --git a/src/nv_accel_common.c b/src/nv_accel_common.c
index f0c2d62..9361ce8 100644
--- a/src/nv_accel_common.c
+++ b/src/nv_accel_common.c
@@ -145,13 +145,13 @@ NV11SyncToVBlank(PixmapPtr ppix, BoxPtr box)
head = drmmode_head(crtc);
- BEGIN_NV04(push, SUBC_BLIT(0x0000012C), 1);
+ BEGIN_NV04(push, NV15_BLIT(FLIP_INCR_WRITE), 1);
PUSH_DATA (push, 0);
- BEGIN_NV04(pus...
2016 Oct 16
2
[PATCH] exa: add GM10x acceleration support
...redVideo(pScreen, TRUE);
} else
- if (pNv->Architecture >= NV_TESLA && pNv->Architecture < NV_MAXWELL) {
+ if (pNv->Architecture >= NV_TESLA) {
textureAdaptor[0] = NV50SetupTexturedVideo(pScreen);
}
}
diff --git a/src/nv_accel_common.c b/src/nv_accel_common.c
index 9361ce8..5d12dd8 100644
--- a/src/nv_accel_common.c
+++ b/src/nv_accel_common.c
@@ -722,6 +722,7 @@ NVAccelCommonInit(ScrnInfoPtr pScrn)
switch (pNv->Architecture) {
case NV_FERMI:
case NV_KEPLER:
+ case NV_MAXWELL:
INIT_CONTEXT_OBJECT(3D_NVC0);
break;
case NV_TESLA:
diff --git a/src/nv_dr...
2016 Oct 27
0
[PATCH v2 1/7] exa: add GM10x acceleration support
...redVideo(pScreen, TRUE);
} else
- if (pNv->Architecture >= NV_TESLA && pNv->Architecture < NV_MAXWELL) {
+ if (pNv->Architecture >= NV_TESLA) {
textureAdaptor[0] = NV50SetupTexturedVideo(pScreen);
}
}
diff --git a/src/nv_accel_common.c b/src/nv_accel_common.c
index 9361ce8..5d12dd8 100644
--- a/src/nv_accel_common.c
+++ b/src/nv_accel_common.c
@@ -722,6 +722,7 @@ NVAccelCommonInit(ScrnInfoPtr pScrn)
switch (pNv->Architecture) {
case NV_FERMI:
case NV_KEPLER:
+ case NV_MAXWELL:
INIT_CONTEXT_OBJECT(3D_NVC0);
break;
case NV_TESLA:
diff --git a/src/nv_dr...
2016 Oct 17
0
[PATCH] exa: add GM10x acceleration support
...gt; - if (pNv->Architecture >= NV_TESLA && pNv->Architecture < NV_MAXWELL) {
> + if (pNv->Architecture >= NV_TESLA) {
> textureAdaptor[0] = NV50SetupTexturedVideo(pScreen);
> }
> }
> diff --git a/src/nv_accel_common.c b/src/nv_accel_common.c
> index 9361ce8..5d12dd8 100644
> --- a/src/nv_accel_common.c
> +++ b/src/nv_accel_common.c
> @@ -722,6 +722,7 @@ NVAccelCommonInit(ScrnInfoPtr pScrn)
> switch (pNv->Architecture) {
> case NV_FERMI:
> case NV_KEPLER:
> + case NV_MAXWELL:
> INIT_CONTEXT_OBJECT(3D_NVC0);
> b...
2016 Oct 27
11
[PATCH v2 0/7] Add Maxwell support
I believe I've addressed all the feedback from the first time around, and
also made fixes necessary for GM20x based on testing results. I believe
now it should actually work for all GM10x and GM20x. Further, GP10x should
be very easy to add, but without someone to actually test I didn't want to
claim support for it.
Ilia Mirkin (7):
exa: add GM10x acceleration support
hwdefs: update