From patchwork Thu Apr 6 22:26:12 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Harrison X-Patchwork-Id: 13204297 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 95D36C76196 for ; Thu, 6 Apr 2023 22:26:54 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 7FF9F10ED42; Thu, 6 Apr 2023 22:26:45 +0000 (UTC) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by gabe.freedesktop.org (Postfix) with ESMTPS id 19FFE10EA51; Thu, 6 Apr 2023 22:26:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1680820003; x=1712356003; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=srxFWQf7u23zMipmJ2f1gQGAmt+BR9Uxv6PgNuAwM2M=; b=VO7tR0jTZmtw6YzHql08Drw0D7yzyjsmAjV4hR3uc3WdBxFIrlHE4Dpo 7YdkV5VYZSt617AMt/7VQDKPHX21B9X6dNzFCFz/Hl+jNla2FHyAF7UxD N0+86XXtWtH8VbKCPFsleNR0Jp6/uWMIEhvlz7PCeQo3E+SGWHVOFNsV5 CRmHux2Jq0YnW9AkreH0SzVMsww7nbxPDZyeq6A6PC65nI3FIgDdKBZuQ arpuIsc0XJ2GEpK2jFu4uI7gz65iL8S6J1Q8jWNTnrYgFZNQNRqaYFflQ uOFHqUAgrWyssZS0YsGfOov+XXR3vexZ4TzJ6gPW6ttp36VUlrhWsNTH2 g==; X-IronPort-AV: E=McAfee;i="6600,9927,10672"; a="341604978" X-IronPort-AV: E=Sophos;i="5.98,323,1673942400"; d="scan'208";a="341604978" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Apr 2023 15:26:42 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10672"; a="776635887" X-IronPort-AV: E=Sophos;i="5.98,323,1673942400"; d="scan'208";a="776635887" Received: from relo-linux-5.jf.intel.com ([10.165.21.152]) by FMSMGA003.fm.intel.com with ESMTP; 06 Apr 2023 15:26:42 -0700 From: John.C.Harrison@Intel.com To: Intel-GFX@Lists.FreeDesktop.Org Date: Thu, 6 Apr 2023 15:26:12 -0700 Message-Id: <20230406222617.790484-1-John.C.Harrison@Intel.com> X-Mailer: git-send-email 2.39.1 MIME-Version: 1.0 Organization: Intel Corporation (UK) Ltd. - Co. Reg. #1134945 - Pipers Way, Swindon SN3 1RJ Subject: [Intel-gfx] [PATCH 0/5] Improvements to GuC error capture list processing 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 The GuC error capture list creation was including Gen8 registers on Xe platforms. While fixing that, it was noticed that there were other issues. The platform naming was wrong, the naming of lists was misleading, the steered register code was duplicated and steered registers were not included on all supported platforms. NB: The changes are being sent as multiple patches to make code review simpler. However, before merging it may be better to squash into a single patch, especially if it going to be sent with a 'fixes' tag. Signed-off-by: John Harrison John Harrison (5): drm/i915/guc: Don't capture Gen8 regs on Xe devices drm/i915/guc: Capture list clean up - 1 drm/i915/guc: Capture list clean up - 2 drm/i915/guc: Capture list clean up - 3 drm/i915/guc: Capture list clean up - 4 .../gpu/drm/i915/gt/uc/intel_guc_capture.c | 199 +++++++----------- 1 file changed, 73 insertions(+), 126 deletions(-)