Received: by 10.223.176.5 with SMTP id f5csp3895832wra; Mon, 29 Jan 2018 22:08:35 -0800 (PST) X-Google-Smtp-Source: AH8x227b1TgAbd2Jzs6sZ+BgOcm5+yxTh3LXQ2adW5lUyVdedWtWjIKjNP4YdB+F3FfPDnO/Ygu6 X-Received: by 10.99.127.85 with SMTP id p21mr23356918pgn.137.1517292515126; Mon, 29 Jan 2018 22:08:35 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1517292515; cv=none; d=google.com; s=arc-20160816; b=SokdELmvdXNOCmPiU6ghcesf9Ml8pSTuckIAa+AyXEMoHkwdBFcEo/5ZeT7xsXsGF5 tl1pl3erRS58y/btknAXNKiX50hh8hUd2P4qAdChAarWS9dtctFPDm/Ho0EYUMJWq5Wi t35i8sQbE+wbyffNPL1ZiknzxXVw82QbcbVEN72gUTnsgO0w6duXdNy6B4JoMMNsot1+ /qyo5Fq5e5zB3aehhb6YemiDz3npolboxE9FVU4ggVdJrGR3/w1vOHGkcycUsdrg/R9K y22pduHP3mQgBDK5ZwTl6DfXaBf4xCeHiVmQ3Rs2D7Hv5Vy6lK3NE6m9MrCkdTrAFF/v TF5g== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:message-id:date:subject:cc:to:from :arc-authentication-results; bh=KYiruZphAFnOSIasei+SvK8x6kmE/NAOiVtxmaMo7ls=; b=Asx/72pTk7gQPyzH7WQXLZm/NHLhwwSdG7G2mvym9xzcNT/AdO3OCTq8k6KyitDZX5 LsfcL+BLAeHfff5k5qZT5ivD/2SYgdyQuzMZIRntcHEjqD/Qg3Z/xC+iCTt7bXvG0TZR OFlKU4vh630i/JNdbX/fhFL9cmIlcogqM87py3JJid5pcOS8wpbal2DBUv51pCiJjwvU WCMIwtzqOBzz3gCsBIDk66aCxmXPJ94rDVTNi2NpZwire1NEbRSLxbOHMQm1CllvV+ke ILIbMj2wqDYnhf8TtagcPHpBgy7aEAF0FFHqh4foKz9AGURmOktd6fxou1Sn6Z19t8XD /CTQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=canonical.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id t70si3975291pgd.13.2018.01.29.22.08.20; Mon, 29 Jan 2018 22:08:35 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=canonical.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752759AbeA3GHy (ORCPT + 99 others); Tue, 30 Jan 2018 01:07:54 -0500 Received: from youngberry.canonical.com ([91.189.89.112]:40057 "EHLO youngberry.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752385AbeA3GHx (ORCPT ); Tue, 30 Jan 2018 01:07:53 -0500 Received: from 114-32-108-117.hinet-ip.hinet.net ([114.32.108.117] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1egP5C-0000Us-Bs; Tue, 30 Jan 2018 06:07:50 +0000 From: Kai-Heng Feng To: rjw@rjwysocki.net Cc: lenb@kernel.org, andy.shevchenko@gmail.com, linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org, Kai-Heng Feng , Mario Limonciello Subject: [PATCH] ACPI: Parse entire table as a term_list for Dell XPS 9570 and Precision M5530 Date: Tue, 30 Jan 2018 14:07:44 +0800 Message-Id: <20180130060744.19049-1-kai.heng.feng@canonical.com> X-Mailer: git-send-email 2.15.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The i2c touchpad on Dell XPS 9570 and Precision M5530 doesn't work out of box. The touchpad relies on its _INI method to update its _HID value from XXXX0000 to SYNA2393. Also, the _STA relies on value of I2CN to report correct status. Set acpi_gbl_parse_table_as_term_list so the value of I2CN can be correctly set up, and _INI can get run. The ACPI table in this machine is designed to get parsed this way. Also, change the quirk table to a more generic name. Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=198515 Cc: Mario Limonciello Signed-off-by: Kai-Heng Feng --- v2: Andy's suggestion, merge to a single quirk table. drivers/acpi/bus.c | 35 ++++++++++++++++++++++++++++++++--- 1 file changed, 32 insertions(+), 3 deletions(-) diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index 4d0979e02a28..3999e175b6f4 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c @@ -65,9 +65,38 @@ static int set_copy_dsdt(const struct dmi_system_id *id) acpi_gbl_copy_dsdt_locally = 1; return 0; } + +static int set_gbl_term_list(const struct dmi_system_id *id) +{ + pr_notice("%s detected - parse the entire table as a term_list\n", + id->ident); + acpi_gbl_parse_table_as_term_list = 1; + return 0; +} #endif -static const struct dmi_system_id dsdt_dmi_table[] __initconst = { +static const struct dmi_system_id acpi_quirks_dmi_table[] __initconst = { + /* + * Touchpad on Dell XPS 9570/Precision M5530 doesn't work under I2C + * mode. + * https://bugzilla.kernel.org/show_bug.cgi?id=198515 + */ + { + .callback = set_gbl_term_list, + .ident = "Dell Precision M5530", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Precision M5530"), + }, + }, + { + .callback = set_gbl_term_list, + .ident = "Dell XPS 15 9570", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "XPS 15 9570"), + }, + }, /* * Invoke DSDT corruption work-around on all Toshiba Satellite. * https://bugzilla.kernel.org/show_bug.cgi?id=14679 @@ -83,7 +112,7 @@ static const struct dmi_system_id dsdt_dmi_table[] __initconst = { {} }; #else -static const struct dmi_system_id dsdt_dmi_table[] __initconst = { +static const struct dmi_system_id acpi_quirks_dmi_table[] __initconst = { {} }; #endif @@ -1005,7 +1034,7 @@ void __init acpi_early_init(void) * If the machine falls into the DMI check table, * DSDT will be copied to memory */ - dmi_check_system(dsdt_dmi_table); + dmi_check_system(acpi_quirks_dmi_table); status = acpi_reallocate_root_table(); if (ACPI_FAILURE(status)) { -- 2.15.1