From patchwork Thu Feb 16 01:10:59 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: John Harrison X-Patchwork-Id: 13142371 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org 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 smtp.lore.kernel.org (Postfix) with ESMTPS id 8929AC636D6 for ; Thu, 16 Feb 2023 01:11:55 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 1BB8010E1B6; Thu, 16 Feb 2023 01:11:49 +0000 (UTC) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by gabe.freedesktop.org (Postfix) with ESMTPS id A759E10E0C6; Thu, 16 Feb 2023 01:11:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1676509905; x=1708045905; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=SNhByuOeoAiHGlo4VH8zFgUa6rswrKwHm4jH04lkieI=; b=KjVe4eTM+uTAJR0VkxIrqOHo5kLJfwpsg7mw+/SLpzVp34qDbS2kVsR1 81QKUAzdiIV4gug06a7xU1lPcY/n9f4u9d8qxoM6YhWxkYEaWIxXzlm/X D2J13q4jL3OFAGtkL1d6CB5SH1RO+07VNO2f16jJ9jqMbdkH3n3nFdwzk FiP+NRP7NCHnv4eV8MrJDTrruXbQWkLPWX00WH40Eeu1icXEfi8yvU03L V3OtKO/AKen1DI1HTEu6qYm5CIIrG6wmcqd5Abd8d3s9VNbiSfigkqZsJ xUKLstu786Qwuho7g+cQQlALxQNCGd24yq1289KzBH9T++eHGmlwzFLuh A==; X-IronPort-AV: E=McAfee;i="6500,9779,10622"; a="311218989" X-IronPort-AV: E=Sophos;i="5.97,301,1669104000"; d="scan'208";a="311218989" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Feb 2023 17:11:45 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10622"; a="733674525" X-IronPort-AV: E=Sophos;i="5.97,301,1669104000"; d="scan'208";a="733674525" Received: from relo-linux-5.jf.intel.com ([10.165.21.152]) by fmsmga008.fm.intel.com with ESMTP; 15 Feb 2023 17:11:45 -0800 From: John.C.Harrison@Intel.com To: Intel-GFX@Lists.FreeDesktop.Org Date: Wed, 15 Feb 2023 17:10:59 -0800 Message-Id: <20230216011101.1909009-1-John.C.Harrison@Intel.com> X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 Organization: Intel Corporation (UK) Ltd. - Co. Reg. #1134945 - Pipers Way, Swindon SN3 1RJ Subject: [Intel-gfx] [PATCH v3 0/2] Don't use stolen memory or BAR mappings for ring buffers 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: , Cc: DRI-Devel@Lists.FreeDesktop.Org Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" From: John Harrison Instruction from hardware arch is that stolen memory and BAR mappings are unsafe for use as ring buffers. There can be issues with cache aliasing due to the CPU access going to memory via the BAR. So, don't do it. v2: Dont use BAR mappings either. Make conditional on LLC so as not to change platforms that don't need to change (Daniele). Add 'Fixes' tags (Tvrtko). v3: Fix dumb typo. Signed-off-by: John Harrison John Harrison (2): drm/i915: Don't use stolen memory for ring buffers with LLC drm/i915: Don't use BAR mappings for ring buffers with LLC drivers/gpu/drm/i915/gt/intel_ring.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Tested-by: Jouni Högander Acked-by: Tvrtko Ursulin