From patchwork Tue Nov 22 20:09:12 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Harrison X-Patchwork-Id: 13052707 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 33435C433FE for ; Tue, 22 Nov 2022 20:09:28 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 4BC4F10E1D9; Tue, 22 Nov 2022 20:09:27 +0000 (UTC) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by gabe.freedesktop.org (Postfix) with ESMTPS id 8AAB310E1D9; Tue, 22 Nov 2022 20:09:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1669147764; x=1700683764; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=QjhOcRyuKZxwtyPzGdapyZa/nYZN8ckwvHZ4/FbiN1g=; b=EzGzNoIIJ3Ziu11CevfhQyIiSCSOwGtQWH4jqpk+N1ZVdJOUtF6cqUVS HPUzOBInKIlR3F2yHgV3i7+Kejb2FMnMjD7Zcgw2Z1jWdVYMz7F8dwCFf FKbgs0XsUFqS2nxjl72aFYJi71ZQ0JECAoTX/A3MeVSH6pP9mKlnOa+w6 oDo6ewW7jUOWmNUUPFMGHoz32JLaa2tlRr7QwNWfIoZNsSJoWBZKs/0JR 8sROAlLOKG7uL1ux65ZBPsLRT/nuWodleKjRALAFQzpEkU63rzUL97a8r QwGcgegwuS7rGjFgwFhfOJYJcJINJiHzAFlGquJ+qnd5a6Qo9au8C2CPQ w==; X-IronPort-AV: E=McAfee;i="6500,9779,10539"; a="301459450" X-IronPort-AV: E=Sophos;i="5.96,185,1665471600"; d="scan'208";a="301459450" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Nov 2022 12:09:23 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10539"; a="783966947" X-IronPort-AV: E=Sophos;i="5.96,185,1665471600"; d="scan'208";a="783966947" Received: from relo-linux-5.jf.intel.com ([10.165.21.144]) by fmsmga001.fm.intel.com with ESMTP; 22 Nov 2022 12:09:22 -0800 From: John.C.Harrison@Intel.com To: Intel-GFX@Lists.FreeDesktop.Org Date: Tue, 22 Nov 2022 12:09:12 -0800 Message-Id: <20221122200915.680629-1-John.C.Harrison@Intel.com> X-Mailer: git-send-email 2.37.3 MIME-Version: 1.0 Organization: Intel Corporation (UK) Ltd. - Co. Reg. #1134945 - Pipers Way, Swindon SN3 1RJ Subject: [Intel-gfx] [PATCH 0/3] More GuC firmware version improvements 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 Start using the 'submission API version' for deciding which GuC API to use in the submission code. Correct version number manipulation code to support full 32bit major/minor/patch components, except for GuC which is guaranteed to be 8bit safe. Other minor code clean ups around version number handling. Signed-off-by: John Harrison John Harrison (3): drm/i915/uc: Rationalise delimiters in filename macros drm/i915/uc: More refactoring of UC version numbers drm/i915/guc: Use GuC submission API version number drivers/gpu/drm/i915/gt/uc/intel_guc.h | 11 ++ .../gpu/drm/i915/gt/uc/intel_guc_submission.c | 15 +- drivers/gpu/drm/i915/gt/uc/intel_uc.c | 6 +- drivers/gpu/drm/i915/gt/uc/intel_uc_fw.c | 173 ++++++++++++------ drivers/gpu/drm/i915/gt/uc/intel_uc_fw.h | 15 +- drivers/gpu/drm/i915/gt/uc/intel_uc_fw_abi.h | 3 +- 6 files changed, 150 insertions(+), 73 deletions(-)