<div dir="ltr">Hm, I expect you can probably just change the mask to 0x00ff0000, which is what our kernel module accepts anyway.</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sat, Apr 27, 2013 at 5:23 AM, Marek Vasut <span dir="ltr"><<a href="mailto:marex@denx.de" target="_blank">marex@denx.de</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">This patch let's cards with PCI class 0x30200 (3D controller) be<br>
operated by the nouveau driver as well. The nv Quadro NVS 450 is<br>
one such card, where the first GPU has PCI class 0x30000 and the<br>
other GPU has PCI class 0x30200. By ignoring the 1 << 9 bit in<br>
the PCI class mask, displays attached to the other GPU can also<br>
be used now.<br>
<br>
Signed-off-by: Marek Vasut <<a href="mailto:marex@denx.de">marex@denx.de</a>><br>
Cc: Dave Airlie <<a href="mailto:airlied@redhat.com">airlied@redhat.com</a>><br>
---<br>
 src/nv_driver.c |    2 +-<br>
 1 file changed, 1 insertion(+), 1 deletion(-)<br>
<br>
NOTE: I might have sent this to the wrong ML, this is my first<br>
      time submitting a nouveau patch.<br>
<br>
diff --git a/src/nv_driver.c b/src/nv_driver.c<br>
index 2b74fc6..0dce0aa 100644<br>
--- a/src/nv_driver.c<br>
+++ b/src/nv_driver.c<br>
@@ -60,7 +60,7 @@ static Bool   NVUnmapMem(ScrnInfoPtr pScrn);<br>
<br>
 #define NOUVEAU_PCI_DEVICE(_vendor_id, _device_id)                             \<br>
        { (_vendor_id), (_device_id), PCI_MATCH_ANY, PCI_MATCH_ANY,            \<br>
-         0x00030000, 0x00ffffff, 0 }<br>
+         0x00030000, 0x00fffdff, 0 }<br>
<br>
 static const struct pci_id_match nouveau_device_match[] = {<br>
        NOUVEAU_PCI_DEVICE(0x12d2, PCI_MATCH_ANY),<br>
<span class="HOEnZb"><font color="#888888">--<br>
1.7.10.4<br>
<br>
_______________________________________________<br>
Nouveau mailing list<br>
<a href="mailto:Nouveau@lists.freedesktop.org">Nouveau@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/nouveau" target="_blank">http://lists.freedesktop.org/mailman/listinfo/nouveau</a><br>
</font></span></blockquote></div><br></div>