~ubuntu-branches/ubuntu/precise/xserver-xorg-video-intel-lts-quantal/precise-proposed

« back to all changes in this revision

Viewing changes to debian/patches/add-vlv-ids.diff

  • Committer: Package Import Robot
  • Author(s): Maarten Lankhorst
  • Date: 2013-06-19 12:00:59 UTC
  • Revision ID: package-import@ubuntu.com-20130619120059-jlt0e9ghrs6pkcfs
Tags: 2:2.20.9-0ubuntu2.2~precise1
Added patches to add/fix Haswell pci-id's (LP: #1175533)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
commit 4c45e3fe456d211afc6ba69878b413a72ef5d0bf
 
2
Author: Chris Wilson <chris@chris-wilson.co.uk>
 
3
Date:   Tue Feb 5 14:45:39 2013 +0000
 
4
 
 
5
    intel: add more ValleyView PCI IDs
 
6
    
 
7
    Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
 
8
 
 
9
diff --git a/src/intel_driver.h b/src/intel_driver.h
 
10
index b77b8d1..c98025b 100644
 
11
--- a/src/intel_driver.h
 
12
+++ b/src/intel_driver.h
 
13
@@ -230,6 +230,9 @@
 
14
 #define PCI_CHIP_HASWELL_CRW_S_GT2_PLUS        0x0D3A
 
15
 
 
16
 #define PCI_CHIP_VALLEYVIEW_PO         0x0f30
 
17
+#define PCI_CHIP_VALLEYVIEW_1          0x0f31
 
18
+#define PCI_CHIP_VALLEYVIEW_2          0x0f32
 
19
+#define PCI_CHIP_VALLEYVIEW_3          0x0f33
 
20
 
 
21
 #endif
 
22
 
 
23
diff --git a/src/intel_module.c b/src/intel_module.c
 
24
index e15dd90..8f681c9 100644
 
25
--- a/src/intel_module.c
 
26
+++ b/src/intel_module.c
 
27
@@ -306,6 +306,9 @@ static const struct pci_id_match intel_device_match[] = {
 
28
        INTEL_DEVICE_MATCH (PCI_CHIP_HASWELL_CRW_S_GT2_PLUS, &intel_haswell_info ),
 
29
 
 
30
        INTEL_DEVICE_MATCH (PCI_CHIP_VALLEYVIEW_PO, &intel_valleyview_info ),
 
31
+       INTEL_DEVICE_MATCH (PCI_CHIP_VALLEYVIEW_1, &intel_valleyview_info ),
 
32
+       INTEL_DEVICE_MATCH (PCI_CHIP_VALLEYVIEW_2, &intel_valleyview_info ),
 
33
+       INTEL_DEVICE_MATCH (PCI_CHIP_VALLEYVIEW_3, &intel_valleyview_info ),
 
34
 
 
35
        INTEL_DEVICE_MATCH (PCI_MATCH_ANY, &intel_generic_info ),
 
36
 #endif