From patchwork Mon Aug 28 09:47:27 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stanislaw Gruszka X-Patchwork-Id: 13367740 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 0EE7FC83F11 for ; Mon, 28 Aug 2023 09:47:43 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 6E54610E266; Mon, 28 Aug 2023 09:47:42 +0000 (UTC) Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.31]) by gabe.freedesktop.org (Postfix) with ESMTPS id C275310E266 for ; Mon, 28 Aug 2023 09:47:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1693216060; x=1724752060; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=es8Sla09cCwF6lvHsbSc31I6p3KWKijHBz6f1z/SRiA=; b=O3Uj3BZMq8ZKBwLR7PaP12np71rbVXEweuXr6Cm2L11bRIeK61yjqMOW eseDMoqVTIkTrp5hTKoTltwdrB+qbBWgdAs4jaET2rHwY+1Lib/Z/wchK 1V1+BUDrfFkJwL1rnAcvBoCrt6j+WasuryYGXDWZpmHLuVILABJS2UsNn /pZWO5WK9dpTGIAwuvSWZAIaCt761MKLS6yLMuVzlkpAM72cMTv45J4EI NcyRs5/aGiXQLHR/D2jF7TGm73slKYK/fviIKWqJFLmeGsM66X88AKtC3 OpiGnzL+1K77zulNz7bMJnjo6VGJewxawrQOC5CAsXAT4q9k4cYpKuhWG A==; X-IronPort-AV: E=McAfee;i="6600,9927,10815"; a="439011737" X-IronPort-AV: E=Sophos;i="6.02,207,1688454000"; d="scan'208";a="439011737" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Aug 2023 02:47:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10815"; a="852778780" X-IronPort-AV: E=Sophos;i="6.02,207,1688454000"; d="scan'208";a="852778780" Received: from joe-255.igk.intel.com (HELO localhost) ([10.91.220.57]) by fmsmga002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Aug 2023 02:47:38 -0700 From: Stanislaw Gruszka To: dri-devel@lists.freedesktop.org Subject: [PATCH v2 0/9] accel/ivpu: Update for -next 2023.08.25 Date: Mon, 28 Aug 2023 11:47:27 +0200 Message-Id: <20230828094736.4137092-1-stanislaw.gruszka@linux.intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 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: , Cc: Stanislaw Gruszka , Oded Gabbay , Jeffrey Hugo , Jacek Lawrynowicz Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Update for -next: - various cleanups - begin preparation for conversion to GEM SHMEM - print information about used workarounds v2: Fix compilation without CONFIG_PM Jacek Lawrynowicz (4): accel/ivpu: Remove duplicated error messages accel/ivpu: Move ivpu_fw_load() to ivpu_fw_init() accel/ivpu: Add ivpu_bo_vaddr() and ivpu_bo_size() accel/ivpu: Move MMU register definitions to ivpu_mmu.c Karol Wachowski (1): accel/ivpu: Initialize context with SSID = 1 Krystian Pradzynski (1): accel/ivpu: Move set autosuspend delay to HW specific code Stanislaw Gruszka (3): accel/ivpu: Print information about used workarounds accel/ivpu/37xx: Change register rename leftovers accel/ivpu/37xx: White space cleanup drivers/accel/ivpu/ivpu_drv.c | 65 +++------ drivers/accel/ivpu/ivpu_drv.h | 18 ++- drivers/accel/ivpu/ivpu_fw.c | 26 ++-- drivers/accel/ivpu/ivpu_fw.h | 2 +- drivers/accel/ivpu/ivpu_fw_log.c | 6 +- drivers/accel/ivpu/ivpu_gem.c | 30 ++--- drivers/accel/ivpu/ivpu_gem.h | 22 ++- drivers/accel/ivpu/ivpu_hw_37xx.c | 75 ++++++----- drivers/accel/ivpu/ivpu_hw_37xx_reg.h | 187 +++++++++++--------------- drivers/accel/ivpu/ivpu_hw_40xx.c | 7 + drivers/accel/ivpu/ivpu_ipc.c | 19 ++- drivers/accel/ivpu/ivpu_job.c | 8 +- drivers/accel/ivpu/ivpu_mmu.c | 117 ++++++++++------ drivers/accel/ivpu/ivpu_mmu_context.c | 16 ++- drivers/accel/ivpu/ivpu_mmu_context.h | 2 + drivers/accel/ivpu/ivpu_pm.c | 18 +-- drivers/accel/ivpu/ivpu_pm.h | 2 +- 17 files changed, 323 insertions(+), 297 deletions(-)