From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1AB5BC2D0DC for ; Thu, 2 Jan 2020 11:50:39 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id EA1C1215A4 for ; Thu, 2 Jan 2020 11:50:38 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org EA1C1215A4 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=intel-gfx-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 7D8A189780; Thu, 2 Jan 2020 11:50:38 +0000 (UTC) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by gabe.freedesktop.org (Postfix) with ESMTPS id 9DAD189780 for ; Thu, 2 Jan 2020 11:50:36 +0000 (UTC) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 02 Jan 2020 03:50:35 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.69,386,1571727600"; d="scan'208";a="369308508" Received: from irsmsx108.ger.corp.intel.com ([163.33.3.3]) by orsmga004.jf.intel.com with ESMTP; 02 Jan 2020 03:50:35 -0800 Received: from irsmsx102.ger.corp.intel.com ([169.254.2.130]) by IRSMSX108.ger.corp.intel.com ([169.254.11.217]) with mapi id 14.03.0439.000; Thu, 2 Jan 2020 11:50:34 +0000 From: "Kahola, Mika" To: "intel-gfx@lists.freedesktop.org" , "Deak, Imre" Thread-Topic: [PATCH 3/7] drm/i915: Add debug message for FB plane[0].offset!=0 error Thread-Index: AQHVwDNtjrx/8tORPEqaT/yH55QAfKfXRUaA Date: Thu, 2 Jan 2020 11:50:33 +0000 Message-ID: <6aee4401134fd871f86b9d5e954a17b36a3ec1cc.camel@intel.com> References: <20191231233756.18753-1-imre.deak@intel.com> <20191231233756.18753-4-imre.deak@intel.com> In-Reply-To: <20191231233756.18753-4-imre.deak@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.237.72.159] Content-ID: MIME-Version: 1.0 Subject: Re: [Intel-gfx] [PATCH 3/7] drm/i915: Add debug message for FB plane[0].offset!=0 error X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" On Wed, 2020-01-01 at 01:37 +0200, Imre Deak wrote: > Print a debug message if the FB plane[0] offset is not 0 as expected, > to > help understainding an add FB IOCTL fail. > = > Cc: Chris Wilson > Cc: Ville Syrj=E4l=E4 > Cc: Mika Kahola > Signed-off-by: Imre Deak Reviewed-by: Mika Kahola > --- > drivers/gpu/drm/i915/display/intel_display.c | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > = > diff --git a/drivers/gpu/drm/i915/display/intel_display.c > b/drivers/gpu/drm/i915/display/intel_display.c > index bbc9cf288067..2c2450d3469b 100644 > --- a/drivers/gpu/drm/i915/display/intel_display.c > +++ b/drivers/gpu/drm/i915/display/intel_display.c > @@ -16912,8 +16912,11 @@ static int intel_framebuffer_init(struct > intel_framebuffer *intel_fb, > } > = > /* FIXME need to adjust LINOFF/TILEOFF accordingly. */ > - if (mode_cmd->offsets[0] !=3D 0) > + if (mode_cmd->offsets[0] !=3D 0) { > + DRM_DEBUG_KMS("plane 0 offset (0x%08x) must be 0\n", > + mode_cmd->offsets[0]); > goto err; > + } > = > drm_helper_mode_fill_fb_struct(&dev_priv->drm, fb, mode_cmd); > = _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx