From patchwork Fri Feb 5 16:00:53 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christopher Covington X-Patchwork-Id: 8236591 X-Patchwork-Delegate: agross@codeaurora.org Return-Path: X-Original-To: patchwork-linux-arm-msm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 02657BEEE5 for ; Fri, 5 Feb 2016 16:01:42 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 2230E20384 for ; Fri, 5 Feb 2016 16:01:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0E64320390 for ; Fri, 5 Feb 2016 16:01:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753140AbcBEQBj (ORCPT ); Fri, 5 Feb 2016 11:01:39 -0500 Received: from smtp.codeaurora.org ([198.145.29.96]:42331 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753113AbcBEQBi (ORCPT ); Fri, 5 Feb 2016 11:01:38 -0500 Received: from smtp.codeaurora.org (localhost [127.0.0.1]) by smtp.codeaurora.org (Postfix) with ESMTP id 5AB2860692; Fri, 5 Feb 2016 16:01:37 +0000 (UTC) Received: by smtp.codeaurora.org (Postfix, from userid 1000) id 4AD9C60499; Fri, 5 Feb 2016 16:01:37 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Spam-Level: X-Spam-Status: No, score=-7.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Received: from illium.qualcomm.com (global_nat1_iad_fw.qualcomm.com [129.46.232.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: cov@smtp.codeaurora.org) by smtp.codeaurora.org (Postfix) with ESMTPSA id AD60F600DE; Fri, 5 Feb 2016 16:01:35 +0000 (UTC) From: Christopher Covington To: "Rafael J. Wysocki" , Len Brown , linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Tomasz Nowicki , linux-arm-msm@vger.kernel.org, Timur Tabi , Jon Masters , Mark Langsdorf , Christopher Covington Subject: [PATCH v2] acpi: pci: QDF2432 32 bit config space accessors Date: Fri, 5 Feb 2016 11:00:53 -0500 Message-Id: <1454688053-2280-1-git-send-email-cov@codeaurora.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1453233259-29562-1-git-send-email-cov@codeaurora.org> References: <1453233259-29562-1-git-send-email-cov@codeaurora.org> X-Virus-Scanned: ClamAV using ClamSMTP Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Qualcomm Technologies QDF2432 SoCs require 32 bit accessors to be used for the PCI configuration space. Register the appropriate quirk. Signed-off-by: Christopher Covington --- Dependent on Tomasz Nowicki's ACPI support for PCI: http://lists.infradead.org/pipermail/linux-arm-kernel/2016-February/thread.html#405148 v1 -> v2: Rebase and use full product name drivers/acpi/mcfg.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/drivers/acpi/mcfg.c b/drivers/acpi/mcfg.c index 4663f70..18e792b 100644 --- a/drivers/acpi/mcfg.c +++ b/drivers/acpi/mcfg.c @@ -78,6 +78,29 @@ static struct pci_ops default_pci_mcfg_ops = { .write = pci_generic_config_write, }; +static const struct dmi_system_id qcom_qdf2432[] = { + { + .ident = "Qualcomm Technologies QDF2432", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Qualcomm"), + DMI_MATCH(DMI_PRODUCT_NAME, "QDF2432"), + }, + }, + { } +}; + +static struct pci_ops qcom_qdf2432_pci_mcfg_ops = { + .map_bus = pci_mcfg_dev_base, + .read = pci_generic_config_read32, + .write = pci_generic_config_write32, +}; + +DECLARE_ACPI_MCFG_FIXUP(qcom_qdf2432, + NULL, + &qcom_qdf2432_pci_mcfg_ops, + PCI_MCFG_DOMAIN_ANY, + PCI_MCFG_BUS_ANY); + struct pci_ops *pci_mcfg_get_ops(struct acpi_pci_root *root) { struct pci_ops *pci_mcfg_ops_quirk;