Displaying 2 results from an estimated 2 matches for "a75c35c".
2014 Dec 16
0
[PATCH] mc/nv4c: disable msi
...t;drm/nv4c/mc: nv4x igp's have a different msi rearm register")
Cc: stable at vger.kernel.org
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
nvkm/subdev/mc/nv4c.c | 8 --------
1 file changed, 8 deletions(-)
diff --git a/nvkm/subdev/mc/nv4c.c b/nvkm/subdev/mc/nv4c.c
index a75c35c..165401c 100644
--- a/nvkm/subdev/mc/nv4c.c
+++ b/nvkm/subdev/mc/nv4c.c
@@ -24,13 +24,6 @@
#include "nv04.h"
-static void
-nv4c_mc_msi_rearm(struct nouveau_mc *pmc)
-{
- struct nv04_mc_priv *priv = (void *)pmc;
- nv_wr08(priv, 0x088050, 0xff);
-}
-
struct nouveau_oclass *
nv4c_mc_o...
2014 Feb 05
2
[PATCH 1/3] drm/nv4c/mc: nv4x igp's have a different msi rearm register
...4,7 +24,7 @@
#include "nv04.h"
-static int
+int
nv44_mc_init(struct nouveau_object *object)
{
struct nv04_mc_priv *priv = (void *)object;
diff --git a/drivers/gpu/drm/nouveau/core/subdev/mc/nv4c.c b/drivers/gpu/drm/nouveau/core/subdev/mc/nv4c.c
new file mode 100644
index 0000000..a75c35c
--- /dev/null
+++ b/drivers/gpu/drm/nouveau/core/subdev/mc/nv4c.c
@@ -0,0 +1,45 @@
+/*
+ * Copyright 2014 Ilia Mirkin
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal...