Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751722AbdHAMKq (ORCPT ); Tue, 1 Aug 2017 08:10:46 -0400 Received: from mailout2.hostsharing.net ([83.223.90.233]:55523 "EHLO mailout2.hostsharing.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751101AbdHAMKo (ORCPT ); Tue, 1 Aug 2017 08:10:44 -0400 X-Mailbox-Line: From 42d3fc7c3b18a80eec9a36bb3f71db6db2a20191 Mon Sep 17 00:00:00 2001 Message-Id: From: Lukas Wunner Date: Tue, 1 Aug 2017 14:10:41 +0200 Subject: [PATCH v4 0/5] Apple SPI properties MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To: "Rafael J. Wysocki" , x86@kernel.org, Bjorn Helgaas , Matt Fleming , Ard Biesheuvel , Andreas Noever , Michael Jamet , Yehezkel Bernat , Mika Westerberg Cc: Ronald Tschalaer , Federico Lorenzi , Andy Shevchenko , Leif Liddy , Daniel Roschka , Mark Brown , linux-acpi@vger.kernel.org, linux-spi@vger.kernel.org, linux-kernel@vger.kernel.org, Lv Zheng , Darren Hart Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1912 Lines: 51 Retrieve device properties on Macs with an Apple-specific _DSM and use them in lieu of _CRS data upon SPI slave initialization in preparation of supporting the SPI keyboard on 2015+ MacBooks, v4. Please refer to the cover letter of v1 for further details: http://www.spinics.net/lists/linux-acpi/msg75537.html Changes v3 -> v4: Patch 1: - Extend consolidation of Apple DMI checks to the entire tree instead of just the ACPI core. (Rafael, Andy, Darren) Patches 2 - 5 are as before. Thanks, Lukas Lukas Wunner (5): treewide: Consolidate Apple DMI checks ACPI / property: Don't evaluate objects for devices w/o handle ACPI / property: Support Apple _DSM properties ACPI / scan: Recognize Apple SPI and I2C slaves spi: Use Apple device properties in absence of ACPI resources arch/x86/include/asm/setup.h | 1 + arch/x86/kernel/early-quirks.c | 4 +- arch/x86/kernel/quirks.c | 10 +++ arch/x86/kernel/setup.c | 2 + drivers/acpi/Makefile | 1 + drivers/acpi/internal.h | 6 ++ drivers/acpi/osi.c | 37 ++------- drivers/acpi/pci_root.c | 4 +- drivers/acpi/property.c | 6 ++ drivers/acpi/sbs.c | 25 +----- drivers/acpi/scan.c | 7 ++ drivers/acpi/x86/apple.c | 141 ++++++++++++++++++++++++++++++++ drivers/firmware/efi/apple-properties.c | 5 +- drivers/pci/quirks.c | 5 +- drivers/spi/spi.c | 32 ++++++++ drivers/thunderbolt/icm.c | 13 +-- drivers/thunderbolt/tb.c | 4 +- include/linux/platform_data/x86/apple.h | 13 +++ 18 files changed, 244 insertions(+), 72 deletions(-) create mode 100644 drivers/acpi/x86/apple.c create mode 100644 include/linux/platform_data/x86/apple.h -- 2.11.0