From nobody Sun Nov 24 15:07:17 2024 Received: from out-177.mta0.migadu.com (out-177.mta0.migadu.com [91.218.175.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C89141CBE82 for ; Mon, 4 Nov 2024 20:04:11 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.177 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730750655; cv=none; b=gdpzmF0fNS+eruZF28f8h1xFQIbPIDzd+G9rBeyeLk50xYFTLsKYnjJvlo7VDGnmd/XMQw/AmsIM+y1bzNVhCUmx6W81YJH1+Pl6LMuNDT1uTaUKHoX89Um5qrunO0ASdj/Rqj5RcIlVV3nXuefti3ehwtqlS36hfQRn9dT6CUk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730750655; c=relaxed/simple; bh=yu7yOiBkigc0Hizwa53zUq8IBTQvJdne6G9w2vObWbA=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=ZDH7mi55F2gr3UJob7HXIoVnyoA+hn4PjaC7zjh11RxQeLGVSuczTbTp13BRbHG3oZ9+2QJBlJ5v0gUCzDaX3eaHfEmg028GTeBUjXExvIaWymi9ci8Ck2U9rdCQzQV6ytTUXlFcxxO/8OMT2WbA8Wg8kjwN/+sjUw3guAG4mpE= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=tsNzNLon; arc=none smtp.client-ip=91.218.175.177 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="tsNzNLon" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1730750649; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=6+Cctltnj8jUTfRPzXWg7X11ZIlWeCkuZhPa7klvD+M=; b=tsNzNLonLnVwGYjHKHR5pndwa0CTcCHa1fkmIv1OZoDAGgf2SOAzTYcs1AW9APE7KXii7X rywSqhbS0+AEi2917D4rrYRiSnWpUHUXJlU5aNJHsE3DnmEpVI9sxJ8x3dE01Gxe7gCX2b ebJRVJE19zFB/IS3KSC1VwpJUZ+xfmQ= From: Sui Jingfeng To: Lucas Stach , Russell King , Christian Gmeiner Cc: David Airlie , Simona Vetter , etnaviv@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, Sui Jingfeng Subject: [etnaviv-next v2 1/3] drm/etnaviv: Drop offset in page manipulation Date: Tue, 5 Nov 2024 04:03:52 +0800 Message-Id: <20241104200354.656525-2-sui.jingfeng@linux.dev> In-Reply-To: <20241104200354.656525-1-sui.jingfeng@linux.dev> References: <20241104200354.656525-1-sui.jingfeng@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" The 'offset' data member of the 'struct scatterlist' denotes the offset into a SG entry in bytes. But under drm subsystem, there has nearly NO drivers that actually tough the 'offset' data member of SG anymore. Especially for drivers that could contact with drm/etnaviv. This means that all DMA addresses that sg_dma_address() gives us will be PAGE_SIZE aligned, in other words, sg->offset will always equal to 0. Drop those compulations about the offset of SG entries can save some extra overhead. Signed-off-by: Sui Jingfeng --- drivers/gpu/drm/etnaviv/etnaviv_mmu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/drm/etnaviv/etnaviv_mmu.c b/drivers/gpu/drm/etnavi= v/etnaviv_mmu.c index 8f33f111f9e8..ddb536d84c58 100644 --- a/drivers/gpu/drm/etnaviv/etnaviv_mmu.c +++ b/drivers/gpu/drm/etnaviv/etnaviv_mmu.c @@ -82,8 +82,8 @@ static int etnaviv_iommu_map(struct etnaviv_iommu_context= *context, return -EINVAL; =20 for_each_sgtable_dma_sg(sgt, sg, i) { - phys_addr_t pa =3D sg_dma_address(sg) - sg->offset; - unsigned int da_len =3D sg_dma_len(sg) + sg->offset; + phys_addr_t pa =3D sg_dma_address(sg); + unsigned int da_len =3D sg_dma_len(sg); unsigned int bytes =3D min_t(unsigned int, da_len, va_len); =20 VERB("map[%d]: %08x %pap(%x)", i, iova, &pa, bytes); --=20 2.34.1 From nobody Sun Nov 24 15:07:17 2024 Received: from out-172.mta0.migadu.com (out-172.mta0.migadu.com [91.218.175.172]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E4AE71D3628 for ; Mon, 4 Nov 2024 20:04:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.172 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730750657; cv=none; b=RQYyORY1tODt0Wrw8q9QvrPL3NFdQvuBD4i3F1FCPQ2iR/kAhvRHQtWQreeTsjjwxdQH72VyCzklTSTrcks4p3BbDzDAU/sSFjnzGKD40dYzz8S5pX4M0+E8KEU7JaiPY6yG515Oc45NI5fPVP9j7HgGXyGZUhqNsY0L65RHyw4= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730750657; c=relaxed/simple; bh=rV6m8i3NZvtr8yHXWxiKJJqbDjQUjVJlRD5EMeUBUeA=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=FDu0X1JFHtg0QSjlhh/5UojotrqMfL9ygLJcpSqoqMpbg3QFA6wIMwTC7qAb8p53enGLxZm/1qyR9JC3ytThkAFeUJlpTC7dTEeGFDQif6RSrROxPetNXDEZ/iGc03T4L9bbMdZShy8cHTS7bldq3srlxTs/SuTe9VUnHyoKlOg= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=jnbYpCw5; arc=none smtp.client-ip=91.218.175.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="jnbYpCw5" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1730750653; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=x4hWc+SA0LxPrteqt2eM979LtFoCBRYmizsNb23n6NU=; b=jnbYpCw5slmXV2Kk/8PUqpn99ukY281IhV6AHXiVEbq5bf0tho+OMsHp7YxK8h7VvnAVnA ETa1b1ev0UZeeUTKgr1gqLVE8mSYc0osesM441O75Tpyu3lsiAme2BFudMuq+iU7gxcgij oq9oKyI5y20t9ycx+5s0brbe7A/bYkw= From: Sui Jingfeng To: Lucas Stach , Russell King , Christian Gmeiner Cc: David Airlie , Simona Vetter , etnaviv@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, Sui Jingfeng Subject: [etnaviv-next v2 2/3] drm/etnaviv: Fix the debug log of the etnaviv_iommu_map() Date: Tue, 5 Nov 2024 04:03:53 +0800 Message-Id: <20241104200354.656525-3-sui.jingfeng@linux.dev> In-Reply-To: <20241104200354.656525-1-sui.jingfeng@linux.dev> References: <20241104200354.656525-1-sui.jingfeng@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" The value of the 'iova' variable is the base GPU virtual address that is going to be mapped, its value won't get updated when etnaviv_context_map() is running under the "for_each_sgtable_dma_sg(sgt, sg, i) {}" loop. Replace it with the 'da' variable, reflect the actual status that GPUVA is being mapped. Signed-off-by: Sui Jingfeng --- drivers/gpu/drm/etnaviv/etnaviv_mmu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/etnaviv/etnaviv_mmu.c b/drivers/gpu/drm/etnavi= v/etnaviv_mmu.c index ddb536d84c58..05021848126e 100644 --- a/drivers/gpu/drm/etnaviv/etnaviv_mmu.c +++ b/drivers/gpu/drm/etnaviv/etnaviv_mmu.c @@ -86,7 +86,7 @@ static int etnaviv_iommu_map(struct etnaviv_iommu_context= *context, unsigned int da_len =3D sg_dma_len(sg); unsigned int bytes =3D min_t(unsigned int, da_len, va_len); =20 - VERB("map[%d]: %08x %pap(%x)", i, iova, &pa, bytes); + VERB("map[%d]: %08x %pap(%x)", i, da, &pa, bytes); =20 ret =3D etnaviv_context_map(context, da, pa, bytes, prot); if (ret) --=20 2.34.1 From nobody Sun Nov 24 15:07:17 2024 Received: from out-177.mta0.migadu.com (out-177.mta0.migadu.com [91.218.175.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5A3E81D4324 for ; Mon, 4 Nov 2024 20:04:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.177 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730750660; cv=none; b=up8IpMC8t5yaHo0iJ/hA2W4NHyFwMi1uKdnl87Re9C3j4bX8J7W41qAQ7viLdHW9J3i++uVHm8Giwx7+XPCGAQv8CP6AfhAy8iS+a2Wt+aWwVCqNZKfNMWmNHgKfItTVwffVE0A95vYL8PCFo4UAeIeU8g75ro/6O9TZeQ6e4KU= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1730750660; c=relaxed/simple; bh=vN8WJL6gCebeft0hTPZTd7oA0FPQi9OEojwwTsZ86mM=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=Z4umwQ9PObvmLB48sc+wmtJLpw2IOxLW5K7HnQ2n22MgiAU6KnCHd5002gcsQ8RuDH4mvpiRyI9IIsfmu4sxWuHIuSw0lTAQv7XnS1rUjtI0bwB01nszdYMcovDCiLlXILo6+obvPLXae87yAMrbQkScPck/PxGCR/N27O3xXqU= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=MxMUUdvX; arc=none smtp.client-ip=91.218.175.177 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="MxMUUdvX" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1730750656; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=Ap8kfns4e0QzWlHcRchP0CB0jDssm0nIfPQZQM5uY6E=; b=MxMUUdvXRP8ULES+/xmT/L4Q70mtUkTb/nb0vQC46GxLEq5UVRT/iNZW0D2IG6LGIreX41 xiAODPKtPhzT/YmwYfHOD9w7PbyF7Kemi6kPB1rnMjPq3B3dXXIIDyc7wEF79nJGcqlFzI UILx1Gt7bCbMwaeinYTxk+GRX7bNEqE= From: Sui Jingfeng To: Lucas Stach , Russell King , Christian Gmeiner Cc: David Airlie , Simona Vetter , etnaviv@lists.freedesktop.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, Sui Jingfeng Subject: [etnaviv-next v2 3/3] drm/etnaviv: Improve VA, PA, SIZE alignment checking Date: Tue, 5 Nov 2024 04:03:54 +0800 Message-Id: <20241104200354.656525-4-sui.jingfeng@linux.dev> In-Reply-To: <20241104200354.656525-1-sui.jingfeng@linux.dev> References: <20241104200354.656525-1-sui.jingfeng@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" We only need checking the alignment on the upper caller function, if those address and/or sizes are pass the check. Those address will certainly pass the same test under the etnaviv_context_unmap() function. Remove redundant alignment tests in etnaviv_context_unmap() and move the alignment tests to the upper caller etnaviv_iommu_map() function. Which reduce some extra overhead. Signed-off-by: Sui Jingfeng --- drivers/gpu/drm/etnaviv/etnaviv_mmu.c | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/drivers/gpu/drm/etnaviv/etnaviv_mmu.c b/drivers/gpu/drm/etnavi= v/etnaviv_mmu.c index 05021848126e..56ae2de76e15 100644 --- a/drivers/gpu/drm/etnaviv/etnaviv_mmu.c +++ b/drivers/gpu/drm/etnaviv/etnaviv_mmu.c @@ -19,12 +19,6 @@ static void etnaviv_context_unmap(struct etnaviv_iommu_c= ontext *context, size_t unmapped_page, unmapped =3D 0; size_t pgsize =3D SZ_4K; =20 - if (!IS_ALIGNED(iova | size, pgsize)) { - pr_err("unaligned: iova 0x%lx size 0x%zx min_pagesz 0x%zx\n", - iova, size, pgsize); - return; - } - while (unmapped < size) { unmapped_page =3D context->global->ops->unmap(context, iova, pgsize); @@ -45,12 +39,6 @@ static int etnaviv_context_map(struct etnaviv_iommu_cont= ext *context, size_t orig_size =3D size; int ret =3D 0; =20 - if (!IS_ALIGNED(iova | paddr | size, pgsize)) { - pr_err("unaligned: iova 0x%lx pa %pa size 0x%zx min_pagesz 0x%zx\n", - iova, &paddr, size, pgsize); - return -EINVAL; - } - while (size) { ret =3D context->global->ops->map(context, iova, paddr, pgsize, prot); @@ -88,6 +76,14 @@ static int etnaviv_iommu_map(struct etnaviv_iommu_contex= t *context, =20 VERB("map[%d]: %08x %pap(%x)", i, da, &pa, bytes); =20 + if (!IS_ALIGNED(iova | pa | bytes, SZ_4K)) { + dev_err(context->global->dev, + "unaligned: iova 0x%x pa %pa size 0x%x\n", + iova, &pa, bytes); + ret =3D -EINVAL; + goto fail; + } + ret =3D etnaviv_context_map(context, da, pa, bytes, prot); if (ret) goto fail; --=20 2.34.1