From patchwork Thu Dec 30 14:17:19 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hans de Goede X-Patchwork-Id: 529027 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 875A5C4167B for ; Thu, 30 Dec 2021 14:17:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239936AbhL3ORl (ORCPT ); Thu, 30 Dec 2021 09:17:41 -0500 Received: from us-smtp-delivery-124.mimecast.com ([170.10.129.124]:58424 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239892AbhL3ORi (ORCPT ); Thu, 30 Dec 2021 09:17:38 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1640873857; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=j/HT5vnocJ2pNpaJQm9Mn4RpRoem8sBDhOspC99X+oI=; b=TBQW9JVtEb/hjaDX/T/mOa/eLEG0xR0iDxtS4vqqiF5IHcKEgWm3TaXF96zJAYNjqHAr4c swLzmG/U7XiRfq/RqrCcIfQKcshQhFNQwpnWW3hm9vx9WNnBKS5yZHBLfiCgqUWGMfgFTJ xbvCX/SL1Orlmp+Yk98D4M9QRmQYJgM= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-599-pRjPNKdMOjGFdvDhyNEvZg-1; Thu, 30 Dec 2021 09:17:31 -0500 X-MC-Unique: pRjPNKdMOjGFdvDhyNEvZg-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D185818460E5; Thu, 30 Dec 2021 14:17:28 +0000 (UTC) Received: from shalem.redhat.com (unknown [10.39.192.254]) by smtp.corp.redhat.com (Postfix) with ESMTP id 837A97AB49; Thu, 30 Dec 2021 14:17:23 +0000 (UTC) From: Hans de Goede To: "Rafael J . Wysocki" , Mark Gross , Andy Shevchenko , Wolfram Sang , Mika Westerberg , Rob Herring , Greg Kroah-Hartman , Jiri Slaby Cc: Hans de Goede , Len Brown , linux-acpi@vger.kernel.org, platform-driver-x86@vger.kernel.org, linux-i2c@vger.kernel.org, Stephan Gerhold , linux-serial@vger.kernel.org Subject: [PATCH v2 0/3] ACPI / pdx86: Add support for x86 Android tablets with broken DSDTs Date: Thu, 30 Dec 2021 15:17:19 +0100 Message-Id: <20211230141722.512395-1-hdegoede@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 Precedence: bulk List-ID: X-Mailing-List: linux-i2c@vger.kernel.org Hi All, Here is v2 of my patch-series to deal with x86 Android tablets with broken DSDTs. The only change in v2 is moving the i2c_acpi_known_good_ids[] list and check to drivers/acpi/x86/utils.c. Since the pdx86 patches are unchanged I'm only sending out the ACPI core changes this time. Since the i2c and serdev ACPI enumeration changes are very small and depend on patch 1, I believe it would be best for all 3 ACPI patches to be merged through Rafael's ACPI tree. Rafael, acks have already been given for merging all patches through the ACPI tree by Mika, Wolfram and Greg. For some more background info here is the v1 cover-letter again: As a small(ish) hoppy project over the holidays I've been looking into getting some (somewhat older) x86 tablets which ship with Android as the only OS on their factory image working with the mainline kernel. These typically have pretty broken DSDTs since the Android image kernel just has everything hardcoded. This patch-series makes most things on 3 of these tablets work with the mainline kernel and lays the groundwork for adding support for similar tablets. Since the ACPI tables on these devices clearly are buggy this series is written so as to add minimal changes to the ACPI core code, leaving all of the heavy lifting to the recently introduced (in linux-next) drivers/platform/x86/x86-android-tablets.c module, which when built as a module only autoloads on affected devices based on DMI matching. And when this module is disabled the added acpi_quirk_skip_*_enumeration() helpers are replaced by inline stubs and even the minimally added core code will be optimized away. Regards, Hans Hans de Goede (3): ACPI / x86: Add acpi_quirk_skip_[i2c_client|serdev]_enumeration() helpers i2c: acpi: Do not instantiate I2C-clients on boards with known bogus DSDT entries serdev: Do not instantiate serdevs on boards with known bogus DSDT entries drivers/acpi/x86/utils.c | 111 ++++++++++++++++++++++++++++++++++++ drivers/i2c/i2c-core-acpi.c | 7 +++ drivers/tty/serdev/core.c | 14 +++++ include/acpi/acpi_bus.h | 16 ++++++ 4 files changed, 148 insertions(+) Acked-by: Rafael J. Wysocki