All of lore.kernel.org
 help / color / mirror / Atom feed
* [kernel PATCH] drm/nv50: decode PGRAPH DATA_ERROR = 0x24
@ 2012-05-06 18:51 Marcin Slusarz
       [not found] ` <20120506185141.GB4311-OI9uyE9O0yo@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Marcin Slusarz @ 2012-05-06 18:51 UTC (permalink / raw)
  To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW


Signed-off-by: Marcin Slusarz <marcin.slusarz-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
 drivers/gpu/drm/nouveau/nv50_graph.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/nv50_graph.c b/drivers/gpu/drm/nouveau/nv50_graph.c
index d0a2e50..86a4969 100644
--- a/drivers/gpu/drm/nouveau/nv50_graph.c
+++ b/drivers/gpu/drm/nouveau/nv50_graph.c
@@ -518,6 +518,7 @@ struct nouveau_enum nv50_data_error_names[] = {
 	{ 0x0000001f, "RT_BPP128_WITH_MS8", NULL },
 	{ 0x00000021, "Z_OUT_OF_BOUNDS", NULL },
 	{ 0x00000023, "XY_OUT_OF_BOUNDS", NULL },
+	{ 0x00000024, "VP_NO_INPUT_MASK", NULL },
 	{ 0x00000027, "CP_MORE_PARAMS_THAN_SHARED", NULL },
 	{ 0x00000028, "CP_NO_REG_SPACE_STRIPED", NULL },
 	{ 0x00000029, "CP_NO_REG_SPACE_PACKED", NULL },
-- 
1.7.8.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [kernel PATCH v2] drm/nv50: decode PGRAPH DATA_ERROR = 0x24
       [not found] ` <20120506185141.GB4311-OI9uyE9O0yo@public.gmane.org>
@ 2012-05-06 21:08   ` Marcin Slusarz
       [not found]     ` <20120506210855.GB11614-OI9uyE9O0yo@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Marcin Slusarz @ 2012-05-06 21:08 UTC (permalink / raw)
  To: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW


Signed-off-by: Marcin Slusarz <marcin.slusarz-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
v2: sync name to envytools
---
 drivers/gpu/drm/nouveau/nv50_graph.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/nv50_graph.c b/drivers/gpu/drm/nouveau/nv50_graph.c
index d0a2e50..28908f4 100644
--- a/drivers/gpu/drm/nouveau/nv50_graph.c
+++ b/drivers/gpu/drm/nouveau/nv50_graph.c
@@ -518,6 +518,7 @@ struct nouveau_enum nv50_data_error_names[] = {
 	{ 0x0000001f, "RT_BPP128_WITH_MS8", NULL },
 	{ 0x00000021, "Z_OUT_OF_BOUNDS", NULL },
 	{ 0x00000023, "XY_OUT_OF_BOUNDS", NULL },
+	{ 0x00000024, "VP_ZERO_INPUTS", NULL },
 	{ 0x00000027, "CP_MORE_PARAMS_THAN_SHARED", NULL },
 	{ 0x00000028, "CP_NO_REG_SPACE_STRIPED", NULL },
 	{ 0x00000029, "CP_NO_REG_SPACE_PACKED", NULL },
-- 
1.7.8.5

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [kernel PATCH v2] drm/nv50: decode PGRAPH DATA_ERROR = 0x24
       [not found]     ` <20120506210855.GB11614-OI9uyE9O0yo@public.gmane.org>
@ 2012-05-09  0:04       ` Ben Skeggs
  0 siblings, 0 replies; 3+ messages in thread
From: Ben Skeggs @ 2012-05-09  0:04 UTC (permalink / raw)
  To: Marcin Slusarz; +Cc: nouveau-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

On Sun, 2012-05-06 at 23:08 +0200, Marcin Slusarz wrote:
> Signed-off-by: Marcin Slusarz <marcin.slusarz-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Pushed, thanks!

> ---
> v2: sync name to envytools
> ---
>  drivers/gpu/drm/nouveau/nv50_graph.c |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/gpu/drm/nouveau/nv50_graph.c b/drivers/gpu/drm/nouveau/nv50_graph.c
> index d0a2e50..28908f4 100644
> --- a/drivers/gpu/drm/nouveau/nv50_graph.c
> +++ b/drivers/gpu/drm/nouveau/nv50_graph.c
> @@ -518,6 +518,7 @@ struct nouveau_enum nv50_data_error_names[] = {
>  	{ 0x0000001f, "RT_BPP128_WITH_MS8", NULL },
>  	{ 0x00000021, "Z_OUT_OF_BOUNDS", NULL },
>  	{ 0x00000023, "XY_OUT_OF_BOUNDS", NULL },
> +	{ 0x00000024, "VP_ZERO_INPUTS", NULL },
>  	{ 0x00000027, "CP_MORE_PARAMS_THAN_SHARED", NULL },
>  	{ 0x00000028, "CP_NO_REG_SPACE_STRIPED", NULL },
>  	{ 0x00000029, "CP_NO_REG_SPACE_PACKED", NULL },

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-05-09  0:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-06 18:51 [kernel PATCH] drm/nv50: decode PGRAPH DATA_ERROR = 0x24 Marcin Slusarz
     [not found] ` <20120506185141.GB4311-OI9uyE9O0yo@public.gmane.org>
2012-05-06 21:08   ` [kernel PATCH v2] " Marcin Slusarz
     [not found]     ` <20120506210855.GB11614-OI9uyE9O0yo@public.gmane.org>
2012-05-09  0:04       ` Ben Skeggs

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.