From patchwork Wed Apr 3 12:34:11 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christian Lamparter X-Patchwork-Id: 2390571 Return-Path: X-Original-To: patchwork-dri-devel@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by patchwork1.kernel.org (Postfix) with ESMTP id B63F73FD8C for ; Thu, 4 Apr 2013 06:06:02 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A8927E5C11 for ; Wed, 3 Apr 2013 23:06:02 -0700 (PDT) X-Original-To: dri-devel@lists.freedesktop.org Delivered-To: dri-devel@lists.freedesktop.org Received: from mail-bk0-f50.google.com (mail-bk0-f50.google.com [209.85.214.50]) by gabe.freedesktop.org (Postfix) with ESMTP id 8C662E603A; Wed, 3 Apr 2013 05:34:18 -0700 (PDT) Received: by mail-bk0-f50.google.com with SMTP id jg1so785089bkc.9 for ; Wed, 03 Apr 2013 05:34:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=x-received:subject:from:date:to:cc:mime-version:content-type :content-transfer-encoding:message-id; bh=rG7ivZ4fg9DZkCGl3Ye98jnqi67Fh5TkT55RmCZRBks=; b=w/2if+paEjq+yaN0KOa9YVdKLNngmf/TE/lv4YO1H8oqRoJL/Pu7KPoUw6pLbSZ6sJ WdL5AAi/fr8ksrm5BZoy34hRTyOhfoA22XBGOTA1cmyjDF30frz3xO2oc6EU946GuTAk 0FnBfW+05O0Hbs3xh8kOhBTiiFAsIs2lgOQhMRVTjt/VDsMJ1uEY3LED4QTD5DyCvv5Z o1S7Mcclhe2mdK8gglbsbucqXxMz/8Yz3F8eaQFmjWYTw1SyLRMuVttD+MMqIwqWbhRL h4YdAdiXjT3eqvLt+uHQ9K9A4S6dogTE36L29Rx3UOQAgRerw25jO6A8iUwfcEQ2niEI /dDw== X-Received: by 10.205.71.72 with SMTP id yj8mr1135687bkb.103.1364992454889; Wed, 03 Apr 2013 05:34:14 -0700 (PDT) Received: from blech.mobile (f053219072.adsl.alicedsl.de. [78.53.219.72]) by mx.google.com with ESMTPS id w6sm2712795bkz.17.2013.04.03.05.34.13 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 03 Apr 2013 05:34:14 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by blech.mobile (Postfix) with ESMTP id 8DA4B1007E2; Wed, 3 Apr 2013 14:34:12 +0200 (CEST) Received: from blech.mobile ([127.0.0.1]) by localhost (localhost [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xLWWlKQaMwUv; Wed, 3 Apr 2013 14:34:12 +0200 (CEST) Received: from blech.localnet (localhost [127.0.0.1]) by blech.mobile (Postfix) with ESMTP id 112C51003D7; Wed, 3 Apr 2013 14:34:12 +0200 (CEST) Subject: [PATCH] drm/i915: Add no-lvds quirk for Fujitsu Esprimo Q900 From: Christian Lamparter Date: Wed, 3 Apr 2013 14:34:11 +0200 To: dri-devel@lists.freedesktop.org MIME-Version: 1.0 Message-Id: <201304031434.11772.chunkeey@googlemail.com> X-Mailman-Approved-At: Wed, 03 Apr 2013 22:47:52 -0700 Cc: daniel.vetter@ffwll.ch, intel-gfx@lists.freedesktop.org X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org Errors-To: dri-devel-bounces+patchwork-dri-devel=patchwork.kernel.org@lists.freedesktop.org The "Mobile Sandy Bridge CPUs" in the Fujitsu Esprimo Q900 mini desktop PCs are probably misleading the LVDS detection code in intel_lvds_supported. Nothing is connected to the LVDS ports in these systems. Signed-off-by: Christian Lamparter --- drivers/gpu/drm/i915/intel_lvds.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/drivers/gpu/drm/i915/intel_lvds.c b/drivers/gpu/drm/i915/intel_lvds.c index 3d1d974..65893b0 100644 --- a/drivers/gpu/drm/i915/intel_lvds.c +++ b/drivers/gpu/drm/i915/intel_lvds.c @@ -850,6 +850,14 @@ static const struct dmi_system_id intel_no_lvds[] = { DMI_MATCH(DMI_PRODUCT_NAME, "X7SPA-H"), }, }, + { + .callback = intel_no_lvds_dmi_callback, + .ident = "Fujitsu Esprimo Q900", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"), + DMI_MATCH(DMI_PRODUCT_NAME, "ESPRIMO Q900"), + }, + }, { } /* terminating entry */ };