From mboxrd@z Thu Jan 1 00:00:00 1970 From: Martin Vegter Subject: backporting support for Intel HD 4600 into Debian Wheezy Date: Sat, 12 Apr 2014 16:07:28 +0200 Message-ID: <534948A0.9050701@aol.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from omr-d09.mx.aol.com (omr-d09.mx.aol.com [205.188.108.133]) by gabe.freedesktop.org (Postfix) with ESMTP id C897D89E8C for ; Sat, 12 Apr 2014 07:13:23 -0700 (PDT) Received: from mtaout-mbe02.mx.aol.com (mtaout-mbe02.mx.aol.com [172.26.254.174]) by omr-d09.mx.aol.com (Outbound Mail Relay) with ESMTP id 3143970000081 for ; Sat, 12 Apr 2014 10:07:31 -0400 (EDT) Received: from [129.132.102.128] (vmx.ethz.ch [129.132.102.128]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mtaout-mbe02.mx.aol.com (MUA/Third Party Client Interface) with ESMTPSA id 90A8038000086 for ; Sat, 12 Apr 2014 10:07:30 -0400 (EDT) List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" To: intel-gfx@lists.freedesktop.org List-Id: intel-gfx@lists.freedesktop.org Hello, I am using Debian Wheezy, and I am trying to backport support for Intel HD 4600 into xserver-xorg-video-intel-2.19.0 I have made following changes to intel_driver.h and intel_module.c (based on commit 45c09bfe58c37bbf7965af25bdd4fa5c37c0908f), but it still does not work properly. Could somebody please advise what else I need to change? src/intel_driver.h 194a195,201 > #define PCI_CHIP_HASWELL_D_GT1 0x0402 > #define PCI_CHIP_HASWELL_D_GT2 0x0412 > #define PCI_CHIP_HASWELL_M_GT1 0x0406 > #define PCI_CHIP_HASWELL_M_GT2 0x0416 > #define PCI_CHIP_HASWELL_CRW_D_GT2 0x0D12 > #define PCI_CHIP_HASWELL_CRW_M_GT2 0x0D16 src/intel_module.c 98a99,102 > static const struct intel_device_info intel_haswell_info = { > .gen = 075, > }; > 147a152,159 > > {PCI_CHIP_HASWELL_D_GT1, "HD Graphics" }, > {PCI_CHIP_HASWELL_D_GT2, "HD Graphics 4600" }, > {PCI_CHIP_HASWELL_M_GT1, "HD Graphics" }, > {PCI_CHIP_HASWELL_M_GT2, "HD Graphics 4600" }, > {PCI_CHIP_HASWELL_CRW_D_GT2, "HD Graphics 4600" }, > {PCI_CHIP_HASWELL_CRW_M_GT2, "HD Graphics 4600" }, > 216a229,235 > > INTEL_DEVICE_MATCH (PCI_CHIP_HASWELL_D_GT1, &intel_haswell_info ), > INTEL_DEVICE_MATCH (PCI_CHIP_HASWELL_D_GT2, &intel_haswell_info ), > INTEL_DEVICE_MATCH (PCI_CHIP_HASWELL_M_GT1, &intel_haswell_info ), > INTEL_DEVICE_MATCH (PCI_CHIP_HASWELL_M_GT2, &intel_haswell_info ), > INTEL_DEVICE_MATCH (PCI_CHIP_HASWELL_CRW_D_GT2, &intel_haswell_info > ), > INTEL_DEVICE_MATCH (PCI_CHIP_HASWELL_CRW_M_GT2, &intel_haswell_info > ),