From patchwork Fri Sep 6 05:27:05 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: ivanhu X-Patchwork-Id: 1981541 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@legolas.ozlabs.org Authentication-Results: legolas.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=lists.ubuntu.com (client-ip=185.125.189.65; helo=lists.ubuntu.com; envelope-from=fwts-devel-bounces@lists.ubuntu.com; receiver=patchwork.ozlabs.org) Received: from lists.ubuntu.com (lists.ubuntu.com [185.125.189.65]) (using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by legolas.ozlabs.org (Postfix) with ESMTPS id 4X0Pr53hQqz1yh1 for ; Fri, 6 Sep 2024 15:27:33 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=lists.ubuntu.com) by lists.ubuntu.com with esmtp (Exim 4.86_2) (envelope-from ) id 1smRVH-0001MW-4f; Fri, 06 Sep 2024 05:27:27 +0000 Received: from smtp-relay-canonical-0.internal ([10.131.114.83] helo=smtp-relay-canonical-0.canonical.com) by lists.ubuntu.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1smRVG-0001MJ-08 for fwts-devel@lists.ubuntu.com; Fri, 06 Sep 2024 05:27:26 +0000 Received: from canonical.com (unknown [106.104.136.95]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-0.canonical.com (Postfix) with ESMTPSA id 400EF3FF9C for ; Fri, 6 Sep 2024 05:27:24 +0000 (UTC) From: Ivan Hu To: fwts-devel@lists.ubuntu.com Subject: [PATCH] klog.json: Add more missing acpi pcc kernel messages to klog database Date: Fri, 6 Sep 2024 13:27:05 +0800 Message-Id: <20240906052706.7095-2-ivan.hu@canonical.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240906052706.7095-1-ivan.hu@canonical.com> References: <20240906052706.7095-1-ivan.hu@canonical.com> MIME-Version: 1.0 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: "fwts-devel" These messages are specific to the ACPI pcc driver. Signed-off-by: Ivan Hu --- data/klog.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/data/klog.json b/data/klog.json index bea2675e..7ffc7026 100644 --- a/data/klog.json +++ b/data/klog.json @@ -1219,6 +1219,34 @@ "advice": "The PCC mailbox controller could not parse the ACPI Platform Communications Channel Table (PCCT) and find the PCC subspace communication region. The CPU freq driver cannot control CPU performance via the _CPC ACPI tables.", "label": "KlogAcpiPccNoSubspace" }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "pattern": "Failed to find PCC channel for subspace", + "advice": "The ACPI PCC driver failed to find PCC channel for subspace, so it cannot get the details of communicating with the remote by calling the pcc_mbox_request_channel.", + "label": "KlogAcpiPCCSubspaceNotFound" + }, + { + "compare_mode": "regex", + "log_level": "LOG_LEVEL_HIGH", + "pattern": "This channel-.* does not support interrupt", + "advice": "The requested PCC channel for subspace was found not support interrupt, so the requested channel gets free by the ACPI PCC driver.", + "label": "KlogAcpiPCCInterruptNoSupport" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "pattern": "PCC command executed timeout!", + "advice": "The ACPI PCC driver gets the timeout for execute PCC command by the handler.", + "label": "KlogAcpiPCCExecCmdTimeout" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "pattern": "OperationRegion handler could not be installed", + "advice": "TThe ACPI driver could not be initialized, the installation of the space handler failed.", + "label": "KlogAcpiOPRegInitFailed" + }, { "compare_mode": "string", "log_level": "LOG_LEVEL_HIGH",