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 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 98C96C433EF for ; Tue, 23 Nov 2021 09:49:09 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id D1C586E860; Tue, 23 Nov 2021 09:49:08 +0000 (UTC) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by gabe.freedesktop.org (Postfix) with ESMTPS id 86D406E860 for ; Tue, 23 Nov 2021 09:49:07 +0000 (UTC) X-IronPort-AV: E=McAfee;i="6200,9189,10176"; a="234939129" X-IronPort-AV: E=Sophos;i="5.87,257,1631602800"; d="scan'208";a="234939129" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Nov 2021 01:49:06 -0800 X-IronPort-AV: E=Sophos;i="5.87,257,1631602800"; d="scan'208";a="552910678" Received: from clei4-mobl.ccr.corp.intel.com (HELO [10.209.177.32]) ([10.209.177.32]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Nov 2021 01:49:05 -0800 Message-ID: <82e3fcaf-d676-ea6e-3cc3-ef8ca5d9f176@linux.intel.com> Date: Tue, 23 Nov 2021 09:49:04 +0000 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.2.1 Content-Language: en-US To: =?UTF-8?Q?Zbigniew_Kempczy=c5=84ski?= , intel-gfx@lists.freedesktop.org References: <20211122191314.47254-1-zbigniew.kempczynski@intel.com> From: Tvrtko Ursulin Organization: Intel Corporation UK Plc In-Reply-To: <20211122191314.47254-1-zbigniew.kempczynski@intel.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [Intel-gfx] [PATCH 0/1] Ensure zero alignment on gens < 4 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: Daniel Vetter , Chris Wilson Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" On 22/11/2021 19:13, Zbigniew Kempczyński wrote: > In short - we want to enforce alignment == 0 for gen4+ GEM object > settings. > > Before we merge this we need to inspect all UMD we expect can use > this. My investigation was narrowed to UMD code: > > 1. IGT > 2. Mesa > 3. Media-Driver > 4. NEO > 5. libdrm > 6. xf86-intel-video > > I would like to ask subsystem developers / maintainers to confirm > my analysis. > > 1. IGT: > We've already removed / fixed most of the code where alignment != 0. > What left was few multi-card subtests I'm not able to rewrite due > to lack of such hw (nv + intel on the board). > > 2. Mesa: > gallium/drivers/iris/iris_batch.c,iris_bufmgr.c - it uses softpinning > only with alignment handled by allocator, so drm_i915_gem_exec_object2 > alignment field == 0. > > drivers/dri/i965/brw_batch.c,brw_screen.c - it uses relocations but > it is supported by allocator, there're no direct alignment settings > to value != 0. > > vulcan/anv_batch_chain.c: drm_i915_gem_exec_object2 objects are > initialized within anv_execbuf_add_bo() and .alignment field > is set to 0 there. There's no other place where I've found vulcan > driver touches it both for softpinning / relocations. > > 3. Media-Driver: > It contains modified libdrm code and three functions which do > allocations, all of them uses mos_gem_bo_alloc_internal(): > - mos_gem_bo_alloc() - internally uses alignment == 0, that's ok > - mos_gem_bo_alloc_tiled() - same as mos_gem_bo_alloc() > - mos_gem_bo_alloc_for_render() - this one passes alignment from > the caller and it may be != 0. But I haven't found practical > usage of this function externally (using mos_bo_alloc_for_render() > wrapper). > There's another userptr allocation function: mos_bo_alloc_userptr() > but it doesn't use alignment. > > 4. NEO: > Uses softpinning only with alignment == 0: > source/os_interface/linux/drm_buffer_object.cpp: > void BufferObject::fillExecObject() has execObject.alignment = 0; > > 5. libdrm: > Corresponding functions to Media-Driver: > drm_intel_bo_alloc(), drm_intel_bo_alloc_for_render(), > drm_intel_bo_alloc_userptr() and drm_intel_bo_alloc_tiled(). > Alignment field is used in drm_intel_bo_alloc_for_render() > so couple not rewritten IGTs may encounter issue here (alignment > passed in IGTs which still uses libdrm == 4096). > > 6. xf86-intel-video: > src/sna/kgem.c: _kgem_submit() - alignment is set to 0 so this > shouldn't be a problem. You also need to figure out not only what codebase currently uses this, but what maybe has an older version in the field which used to, right? Otherwise kernel upgrade can break someones old userspace which is not allowed. Just raising this for consideration if it isn't already on your radar. Regards, Tvrtko > > > Cc: Petri Latvala > Cc: Jason Ekstrand > Cc: Dmitry Rogozhkin > Cc: Michal Mrozek > Cc: José Roberto de Souza > Cc: Chris Wilson > Cc: Daniel Vetter > > Zbigniew Kempczyński (1): > i915/gem/i915_gem_execbuffer: Disallow passing alignment > > drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 11 +++++++++++ > 1 file changed, 11 insertions(+) >