From patchwork Fri Nov 2 17:15:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin Ian King X-Patchwork-Id: 196627 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id C5BD62C00D0 for ; Sat, 3 Nov 2012 04:15:51 +1100 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1TUKqU-0006XD-Jn; Fri, 02 Nov 2012 17:15:50 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1TUKqL-0006U5-7B for fwts-devel@lists.ubuntu.com; Fri, 02 Nov 2012 17:15:41 +0000 Received: from cpc3-craw6-2-0-cust180.croy.cable.virginmedia.com ([77.100.248.181] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1TUKqL-0007g8-4t for fwts-devel@lists.ubuntu.com; Fri, 02 Nov 2012 17:15:41 +0000 From: Colin King To: fwts-devel@lists.ubuntu.com Subject: [PATCH 18/22] data: klog.json: Add support for the ACPI video handler Date: Fri, 2 Nov 2012 17:15:28 +0000 Message-Id: <1351876532-21869-19-git-send-email-colin.king@canonical.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1351876532-21869-1-git-send-email-colin.king@canonical.com> References: <1351876532-21869-1-git-send-email-colin.king@canonical.com> X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: fwts-devel-bounces@lists.ubuntu.com Errors-To: fwts-devel-bounces@lists.ubuntu.com From: Colin Ian King Add support to check for messages in drivers/acpi/video.c Signed-off-by: Colin Ian King Acked-by: Keng-Yu Lin Acked-by: Alex Hung --- data/klog.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/data/klog.json b/data/klog.json index bca1821..f211cb6 100644 --- a/data/klog.json +++ b/data/klog.json @@ -79,6 +79,38 @@ { "compare_mode": "string", "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_VIDEO", + "pattern": "Failed to switch the brightness", + "advice": "The ACPI video brightness for the LCD could not be set because _BCM failed.", + "label": "KlogAcpiVideoBcmFailed" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_VIDEO", + "pattern": "Invalid _DOD data in element", + "advice": "The ACPI _DOD control returned an element that was not an ACPI integer as expected. This element will be ignored, which could lead to reduced functionality.", + "label": "KlogAcpiVideoDodFailed" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_VIDEO", + "pattern": "Invalid _DDC data", + "advice": "The ACPI _DDC control is returning either a NULL buffer pointer or data that is not an ACPI buffer. The Extended Display Identification Data (EDID) structure that represents the display output device could not be fetched. This may affect video output.", + "label": "KlogAcpiVideoDdcFailed" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", + "tag": "FWTS_TAG_ACPI_VIDEO", + "pattern": "Invalid _BCL data", + "advice": "The ACPI _BCL control is returning either a NULL buffer pointer or data that is not an ACPI package. LCD brightness level queries will not work.", + "label": "KlogAcpiVideoBclFailed" + }, + { + "compare_mode": "string", + "log_level": "LOG_LEVEL_HIGH", "tag": "FWTS_TAG_ACPI", "pattern": "Oops, 'acpi_handle' corrupt", "advice": "Failed to unbind a device, the ACPI handle was corrupt.",