Displaying 7 results from an estimated 7 matches for "nv50_grctx".
2010 Apr 02
1
[PATCH] drm/nv50: Add NVA3 support in ctxprog/ctxvals generator.
Signed-off-by: Marcin Ko?cielnicki <koriakin at 0x04.net>
---
drivers/gpu/drm/nouveau/nv50_grctx.c | 13 ++++++++++++-
1 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nv50_grctx.c b/drivers/gpu/drm/nouveau/nv50_grctx.c
index 3c3cc46..42a8fb2 100644
--- a/drivers/gpu/drm/nouveau/nv50_grctx.c
+++ b/drivers/gpu/drm/nouveau/nv50_grctx.c
@@ -177,6 +177,7 @@...
2010 Feb 28
1
[PATCH 1/2] drm/nv50: Make ctxprog wait until interrupt handler is done.
This will fix races between generated ctxprogs and interrupt handler.
Signed-off-by: Marcin Ko?cielnicki <koriakin at 0x04.net>
---
drivers/gpu/drm/nouveau/nv50_grctx.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nv50_grctx.c b/drivers/gpu/drm/nouveau/nv50_grctx.c
index d105fcd..9f909ab 100644
--- a/drivers/gpu/drm/nouveau/nv50_grctx.c
+++ b/drivers/gpu/drm/nouveau/nv50_grctx.c
@@ -64,6 +64,9 @@
#define C...
2010 Mar 01
0
[PATCH 2/2 V2] drm/nv50: Improve PGRAPH interrupt handling.
...s/gpu/drm/nouveau/nouveau_drv.h | 4 +
drivers/gpu/drm/nouveau/nouveau_irq.c | 609 ++++++++++++++++++++++++++++---
drivers/gpu/drm/nouveau/nouveau_state.c | 4 +-
drivers/gpu/drm/nouveau/nv50_fb.c | 31 ++
drivers/gpu/drm/nouveau/nv50_graph.c | 16 +
drivers/gpu/drm/nouveau/nv50_grctx.c | 8 +-
7 files changed, 619 insertions(+), 55 deletions(-)
create mode 100644 drivers/gpu/drm/nouveau/nv50_fb.c
diff --git a/drivers/gpu/drm/nouveau/Makefile b/drivers/gpu/drm/nouveau/Makefile
index 32db806..7f0d807 100644
--- a/drivers/gpu/drm/nouveau/Makefile
+++ b/drivers/gpu/drm/nouv...
2011 Oct 09
11
[PATCH 01/10]: nouveau: assorted fixes
Hi,
Here is my patch queue I accumulated over quite a long time.
Patches 1-6 are bugfixes, and rest is mostly RFC.
Comments are welcome.
Best regards,
Maxim Levitsky
2009 Jun 20
0
drm copyright
...ike to get this resolved soon, since we are approaching
code freeze in a few days.
==> nouveau_sgdma.c <==
==> nv04_fb.c <==
==> nv04_instmem.c <==
==> nv04_timer.c <==
==> nv10_fb.c <==
==> nv20_graph.c <==
==> nv40_fb.c <==
==> nv40_mc.c <==
==> nv50_grctx.h <==
robert.
--
Robert Noland <rnoland at 2hip.net>
2Hip Networks
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 196 bytes
Desc: This is a digitally signed message part
Url : http://lists.freedeskt...
2010 Apr 01
1
GeForce GTS 250M: no acceleration...
...is recognized, but I get this
message:
[drm] nouveau 0000:01:00.0: I don't know how to make a ctxprog for your NVa3 card.
[drm] nouveau 0000:01:00.0: Disabling acceleration. Please contact the devs.
I tracked the point in the driver where this message is generated, in
drivers/gpu/drm/nouveau/nv50_grctx.c
and I tried, for the sake of it, just to add the relative
case 0xa3:
line in init, where detection had stopped. Boot was OK, the 'disabling
acceleration' line disappeared. and the framebuffer was
perfect. Indeed, X started, but in a very funny sort of way. Part of
the drawing would...
2010 Feb 25
3
[PATCH 1/3] drm/nv50: Implement ctxprog/state generation.
...s don't work for you for some reason, please
report it.
Signed-off-by: Marcin Ko?cielnicki <koriakin at 0x04.net>
---
drivers/gpu/drm/nouveau/Makefile | 2 +-
drivers/gpu/drm/nouveau/nouveau_drv.h | 1 +
drivers/gpu/drm/nouveau/nv50_graph.c | 74 +-
drivers/gpu/drm/nouveau/nv50_grctx.c | 2367 +++++++++++++++++++++++++++++++++
4 files changed, 2411 insertions(+), 33 deletions(-)
create mode 100644 drivers/gpu/drm/nouveau/nv50_grctx.c
diff --git a/drivers/gpu/drm/nouveau/Makefile b/drivers/gpu/drm/nouveau/Makefile
index 48c290b..32db806 100644
--- a/drivers/gpu/drm/nouveau/Ma...