From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jesse Barnes Subject: [PATCH 11/22] drm/i915: fixup port enumeration on VLV Date: Sat, 2 Feb 2013 13:56:15 +0100 Message-ID: <1359809786-26434-12-git-send-email-jbarnes@virtuousgeek.org> References: <1359809786-26434-1-git-send-email-jbarnes@virtuousgeek.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from oproxy9.bluehost.com (oproxy9.bluehost.com [69.89.24.6]) by gabe.freedesktop.org (Postfix) with SMTP id 56B10E5F79 for ; Sat, 2 Feb 2013 05:26:19 -0800 (PST) Received: from [151.216.70.136] (port=59537 helo=jbarnes-t420.intel.com) by box514.bluehost.com with esmtpsa (TLSv1:CAMELLIA256-SHA:256) (Exim 4.80) (envelope-from ) id 1U1ceF-0006Th-Sb for intel-gfx@lists.freedesktop.org; Sat, 02 Feb 2013 05:56:48 -0700 In-Reply-To: <1359809786-26434-1-git-send-email-jbarnes@virtuousgeek.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org Errors-To: intel-gfx-bounces+gcfxdi-intel-gfx=m.gmane.org@lists.freedesktop.org To: intel-gfx@lists.freedesktop.org List-Id: intel-gfx@lists.freedesktop.org From: Vijay Purushothaman Updated to reflect newer boards. Signed-off-by: Vijay Purushothaman --- drivers/gpu/drm/i915/intel_display.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index c8a9b7d..9f2f817 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c @@ -8092,7 +8092,8 @@ static void intel_setup_outputs(struct drm_device *dev) * IMP : To route DP in PORT_B in VLV X0 board, make sure to remove the * jumper from J3K1 */ - intel_dp_init(dev, DP_B, PORT_B); + // Only for testing - Vijay + //intel_dp_init(dev, DP_B, PORT_B); /* * To get HDMI output on VLV X0, comment the above line (intel_dp_init) @@ -8101,13 +8102,13 @@ static void intel_setup_outputs(struct drm_device *dev) * IMP : To route HDMI in PORT_B in VLV X0 board, make sure to connect * the jumper in J3K1 */ - /* intel_hdmi_init(dev, SDVOB, PORT_B); */ + intel_hdmi_init(dev, SDVOB, PORT_B); /* * For VLV X0, the eDP is supported on PORT_C after rework. * Uncomment the following line if the board is reworked for eDP */ - /* intel_dp_init(dev, DP_C, PORT_C); */ + intel_dp_init(dev, DP_C, PORT_C); } else if (SUPPORTS_DIGITAL_OUTPUTS(dev)) { bool found = false; -- 1.7.9.5