From patchwork Fri Dec 14 16:33:13 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sinan Kaya X-Patchwork-Id: 10731405 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 347DE6C5 for ; Fri, 14 Dec 2018 16:33:23 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A49592D064 for ; Fri, 14 Dec 2018 16:33:22 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 967092D75A; Fri, 14 Dec 2018 16:33:22 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 521762D064 for ; Fri, 14 Dec 2018 16:33:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729670AbeLNQdV (ORCPT ); Fri, 14 Dec 2018 11:33:21 -0500 Received: from mail.kernel.org ([198.145.29.99]:52566 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729619AbeLNQdV (ORCPT ); Fri, 14 Dec 2018 11:33:21 -0500 Received: from sinanubuntu1604.mkjiurmyylmellclgttazegk5f.bx.internal.cloudapp.net (unknown [23.96.30.70]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 9936A206C2; Fri, 14 Dec 2018 16:33:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1544805201; bh=346RpHc8rBJaKKXgNWOiWbscewjB5gQeDutqSYF5Bp0=; h=From:To:Cc:Subject:Date:From; b=eg91viLoQCTC23PBf00+mk0iSgtrB5cqoqXQKyk0GVFBejj6Skdk9wo/YsQ44m7D1 Oe23ZPFHyNix4YA0WOnNSz7lF1ULCzCBVdB1jD+sNveZf59/23CcXw4EMoUgEUefOe qOc4wMP38VSWQwNOdtIlRIl7/AVg764f5AkmumSI= From: Sinan Kaya To: linux-acpi@vger.kernel.org Cc: Sinan Kaya Subject: [PATCH v9 0/6] ACPI: Allow ACPI to be built without CONFIG_PCI set Date: Fri, 14 Dec 2018 16:33:13 +0000 Message-Id: <20181214163319.27479-1-okaya@kernel.org> X-Mailer: git-send-email 2.19.0 MIME-Version: 1.0 Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP diff from v8: added patches 5/6 and 6/6 for arm64 build without CONFIG_PCI and with CONFIG_ACPI Sinan Kaya (6): ACPI: Allow CONFIG_PCI to be unset for reboot ACPI / OSL: Stub out acpi_os_(read/write)_pci_configurations() PCI/ACPI: Allow ACPI to be built without CONFIG_PCI set ACPICA: Remove PCI bits from ACPICA when CONFIG_PCI is unset arm64: select ACPI PCI code only both features are enabled PCI: Stub out pci_request_acs() when CONFIG_PCI is not set arch/arm64/Kconfig | 4 ++-- arch/x86/include/asm/pci_x86.h | 7 +++++++ drivers/acpi/Kconfig | 1 - drivers/acpi/Makefile | 2 +- drivers/acpi/acpica/Makefile | 2 +- drivers/acpi/acpica/achware.h | 9 +++++++++ drivers/acpi/internal.h | 5 +++++ drivers/acpi/osl.c | 14 ++++++++++++++ drivers/acpi/reboot.c | 10 +++++++--- drivers/pci/Makefile | 2 +- include/acpi/acpi_drivers.h | 7 +++++++ include/acpi/platform/aclinux.h | 4 ++++ include/linux/acpi.h | 7 +++++++ include/linux/pci.h | 8 ++++++++ 14 files changed, 73 insertions(+), 9 deletions(-)