From patchwork Tue Nov 9 11:50:16 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: German Gomez X-Patchwork-Id: 12610453 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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C22B2C433EF for ; Tue, 9 Nov 2021 11:51:53 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 8BD40611CC for ; Tue, 9 Nov 2021 11:51:53 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 8BD40611CC Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=K5igmLNW7Z977jUFDQC+rc/Oy+2nhbaKIYdb5EDnwQ4=; b=POBHg7abxktd9O mXAv/R/qAWc0kRzDu/s6/m+S3WJLt8q1EDOrJiafSTmbRbY40q3EmypGw2VfduPGKb6sxzYdXnure QUNl91xPIwpHsBULgmWccujxJVU0YLmnqmKFoq5MJjvCke8TSXZ73Sq2BryOw6qgfmEJtLXP2bdDE t0YBdlyTAT1z3XZs0pp5tVvFg1tQKHUjr7vJ1D5pBF/hMIqeq0rHeO+o4jW1Zz0wQ1zRCVIRaKJKl 3ULszmsX1ytloYGHQdS0atkt3c6E5NSDstDFhxzkosUczh19NwjMkETkPse7yyLUnQwyIoQoBVVtI JZrJyocUe/e31oRSzXHQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mkPeD-001pG3-S8; Tue, 09 Nov 2021 11:50:41 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mkPe9-001pDr-Iz for linux-arm-kernel@lists.infradead.org; Tue, 09 Nov 2021 11:50:39 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 9D8E1ED1; Tue, 9 Nov 2021 03:50:33 -0800 (PST) Received: from ip-10-252-15-108.eu-west-1.compute.internal (unknown [10.252.15.108]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 846F63F7F5; Tue, 9 Nov 2021 03:50:31 -0800 (PST) From: German Gomez To: linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org, acme@kernel.org Cc: German Gomez , Mark Rutland , Alexander Shishkin , Jiri Olsa , Namhyung Kim , John Garry , Will Deacon , Mathieu Poirier , Leo Yan , linux-arm-kernel@lists.infradead.org Subject: [PATCH v2 0/4] perf arm-spe: Track pid/tid for Arm SPE samples Date: Tue, 9 Nov 2021 11:50:16 +0000 Message-Id: <20211109115020.31623-1-german.gomez@arm.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211109_035037_714342_65F04F71 X-CRM114-Status: UNSURE ( 8.23 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org The following patchset is an iteration on RFC [1] where pid/tid info is assigned to the Arm SPE synthesized samples. Two methods of tracking pids are considered: hardware-based (using Arm SPE CONTEXT packets), and context-switch events (from perf) as fallback. - Patch #1 enables pid tracking using RECORD_SWITCH* events from perf. - Patch #2 updates perf-record documentation and arm-spe recording so that they are consistent. - Patch #3 saves the value of SPE CONTEXT packet to the arm_spe_record struct. - Patch #4 enables hardware-based pid tracking using SPE CONTEXT packets. Changes since v1: - [PATCH 1/4] Fix authorship of commit. - [PATCH 2/4] (New patch) Updated perf-record docs to reflect the behavior of Arm SPE introduced by the previous patch. - [PATCH 3/4] update initialization of context_id field to (u64)-1. - [PATCH 4/4] Update handling of pid/tid tracking fallback following Leo Yan's suggestion. Don't consider per-thread mode on this patch. German Gomez (3): perf arm-spe: Update --switch-events docs in perf-record perf arm-spe: Save context ID in record perf arm-spe: Support hardware-based PID tracing Namhyung Kim (1): perf arm-spe: Track task context switch for cpu-mode events tools/perf/Documentation/perf-record.txt | 2 +- tools/perf/arch/arm64/util/arm-spe.c | 8 +- .../util/arm-spe-decoder/arm-spe-decoder.c | 2 + .../util/arm-spe-decoder/arm-spe-decoder.h | 1 + tools/perf/util/arm-spe.c | 120 ++++++++++++++---- 5 files changed, 104 insertions(+), 29 deletions(-)