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 27AEAC25B10 for ; Mon, 13 May 2024 11:41:21 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 68B9D10E6BD; Mon, 13 May 2024 11:41:20 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=collabora.com header.i=@collabora.com header.b="yyjz5oDU"; dkim-atps=neutral Received: from madrid.collaboradmins.com (madrid.collaboradmins.com [46.235.227.194]) by gabe.freedesktop.org (Postfix) with ESMTPS id 03E4710E6D6 for ; Mon, 13 May 2024 11:41:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1715600477; bh=HDbJG3VcN3NoNEujZuQ4qYOxM+tcj1RO6xBsPQa3lQ8=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=yyjz5oDUF75RhXiJUTa7wlbkCPqF1bdmt4lbAzPq5iaQqDpzxnLI1SNRV256BqF6y HEWPSU6W8EOY1W3GbwI4ko0RTLEPfKhuLj/i2NOrz8iyRrGSOac1/1VHZrEaM3rkBj z4vS+t6YvjDPHepMMefxYSWM4ESaob04kaxYpCYd+u9ZgU3KLLuMjSApBL/B9OOl/v R9GJOsi4aqOA/wNYeTljEztoRySRezvCuBTy1R04ErysMw80RNz0b1ffewgo1GSOFa j/ZrsFrC21Gmpc/zcPxJ8tyrjOYeoncFy0Nj9kVlbIjiugqXYCx6AfNXX8LYIkmyaK y35EGjj0CGTWw== Received: from localhost (cola.collaboradmins.com [195.201.22.229]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: bbrezillon) by madrid.collaboradmins.com (Postfix) with ESMTPSA id 56676378212E; Mon, 13 May 2024 11:41:17 +0000 (UTC) Date: Mon, 13 May 2024 13:41:15 +0200 From: Boris Brezillon To: Boris Brezillon , Steven Price , Liviu Dudau , =?UTF-8?B?QWRy?= =?UTF-8?B?acOhbg==?= Larumbe Cc: dri-devel@lists.freedesktop.org, kernel@collabora.com Subject: Re: [PATCH v4 0/5] drm/panthor: Collection of tiler heap related fixes Message-ID: <20240513134115.22c59487@collabora.com> In-Reply-To: <20240502165158.1458959-1-boris.brezillon@collabora.com> References: <20240502165158.1458959-1-boris.brezillon@collabora.com> Organization: Collabora X-Mailer: Claws Mail 4.2.0 (GTK 3.24.41; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Thu, 2 May 2024 18:51:53 +0200 Boris Brezillon wrote: > This is a collection of tiler heap fixes for bugs/oddities found while > looking at incremental rendering. > > Ideally, we want to land those before 6.10 is released, so we don't need > to increment the driver version to reflect the ABI changes. > > Changelog detailed in each commit. > > Regards, > > Boris > > Antonino Maniscalco (1): > drm/panthor: Fix tiler OOM handling to allow incremental rendering > > Boris Brezillon (4): > drm/panthor: Make sure the tiler initial/max chunks are consistent > drm/panthor: Relax the constraints on the tiler chunk size > drm/panthor: Fix an off-by-one in the heap context retrieval logic > drm/panthor: Document drm_panthor_tiler_heap_destroy::handle validity > constraints Queued to drm-misc-next-fixes. > > drivers/gpu/drm/panthor/panthor_heap.c | 28 ++++++++++++++++--------- > drivers/gpu/drm/panthor/panthor_sched.c | 7 ++++++- > include/uapi/drm/panthor_drm.h | 20 ++++++++++++++---- > 3 files changed, 40 insertions(+), 15 deletions(-) >