From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gabriele Paoloni Subject: [RFC PATCH v2 0/3] Add ACPI support for HiSilicon PCIe Host Controllers Date: Mon, 8 Feb 2016 12:41:01 +0000 Message-ID: <1454935264-6076-1-git-send-email-gabriele.paoloni@huawei.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from szxga01-in.huawei.com ([58.251.152.64]:9052 "EHLO szxga01-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750983AbcBHMmX (ORCPT ); Mon, 8 Feb 2016 07:42:23 -0500 Sender: linux-acpi-owner@vger.kernel.org List-Id: linux-acpi@vger.kernel.org To: guohanjun@huawei.com, wangzhou1@hisilicon.com, liudongdong3@huawei.com, linuxarm@huawei.com, qiujiang@huawei.com, bhelgaas@google.com, arnd@arndb.de, Lorenzo.Pieralisi@arm.com, tn@semihalf.com Cc: gabriele.paoloni@huawei.com, zhangjukuo@huawei.com, xuwei5@hisilicon.com, liguozhu@hisilicon.com, linux-pci@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org, jcm@redhat.com From: gabriele paoloni This patchset adds ACPI support for the HiSilicon Hip05/Hip06 SoC PCIe controllers The four patches respectively: - re-architect the current HiSilicon driver to make it scalable to the new ACPI quirks - rework the current HiSilicon driver to make it ECAM compliant - adds the HiSilicon ACPI specific quirks. This patchset is based on https://github.com/semihalf-nowicki-tomasz/linux.git branch pci-acpi-v4 Changes v1 -> v2: removed the ACPI quirks dependency on Designware framework gabriele paoloni (3): PCI: hisi: re-architect Hip05/Hip06 controllers driver to preapare for ACPI PCI: hisi: Make the HiSilicon PCIe host controller ECAM compliant PCI/ACPI: hisi: Add ACPI support for HiSilicon SoCs Host Controllers MAINTAINERS | 3 + drivers/pci/host/Kconfig | 8 ++ drivers/pci/host/Makefile | 3 +- drivers/pci/host/pcie-designware.c | 4 +- drivers/pci/host/pcie-designware.h | 2 + drivers/pci/host/pcie-hisi-acpi.c | 188 ++++++++++++++++++++++++++++++++++++ drivers/pci/host/pcie-hisi-common.c | 73 ++++++++++++++ drivers/pci/host/pcie-hisi.c | 144 +++++++++++++-------------- drivers/pci/host/pcie-hisi.h | 25 +++++ 9 files changed, 367 insertions(+), 83 deletions(-) create mode 100644 drivers/pci/host/pcie-hisi-acpi.c create mode 100644 drivers/pci/host/pcie-hisi-common.c create mode 100644 drivers/pci/host/pcie-hisi.h -- 1.9.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751881AbcBHMm2 (ORCPT ); Mon, 8 Feb 2016 07:42:28 -0500 Received: from szxga01-in.huawei.com ([58.251.152.64]:9052 "EHLO szxga01-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750983AbcBHMmX (ORCPT ); Mon, 8 Feb 2016 07:42:23 -0500 From: Gabriele Paoloni To: , , , , , , , , CC: , , , , , , , , Subject: [RFC PATCH v2 0/3] Add ACPI support for HiSilicon PCIe Host Controllers Date: Mon, 8 Feb 2016 12:41:01 +0000 Message-ID: <1454935264-6076-1-git-send-email-gabriele.paoloni@huawei.com> X-Mailer: git-send-email 2.7.1.windows.1 MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.203.181.156] X-CFilter-Loop: Reflected X-Mirapoint-Virus-RAPID-Raw: score=unknown(0), refid=str=0001.0A020202.56B88D19.00FB,ss=1,re=0.000,recu=0.000,reip=0.000,cl=1,cld=1,fgs=0, ip=0.0.0.0, so=2013-06-18 04:22:30, dmn=2013-03-21 17:37:32 X-Mirapoint-Loop-Id: 528564113c32318decf72a693a944977 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: gabriele paoloni This patchset adds ACPI support for the HiSilicon Hip05/Hip06 SoC PCIe controllers The four patches respectively: - re-architect the current HiSilicon driver to make it scalable to the new ACPI quirks - rework the current HiSilicon driver to make it ECAM compliant - adds the HiSilicon ACPI specific quirks. This patchset is based on https://github.com/semihalf-nowicki-tomasz/linux.git branch pci-acpi-v4 Changes v1 -> v2: removed the ACPI quirks dependency on Designware framework gabriele paoloni (3): PCI: hisi: re-architect Hip05/Hip06 controllers driver to preapare for ACPI PCI: hisi: Make the HiSilicon PCIe host controller ECAM compliant PCI/ACPI: hisi: Add ACPI support for HiSilicon SoCs Host Controllers MAINTAINERS | 3 + drivers/pci/host/Kconfig | 8 ++ drivers/pci/host/Makefile | 3 +- drivers/pci/host/pcie-designware.c | 4 +- drivers/pci/host/pcie-designware.h | 2 + drivers/pci/host/pcie-hisi-acpi.c | 188 ++++++++++++++++++++++++++++++++++++ drivers/pci/host/pcie-hisi-common.c | 73 ++++++++++++++ drivers/pci/host/pcie-hisi.c | 144 +++++++++++++-------------- drivers/pci/host/pcie-hisi.h | 25 +++++ 9 files changed, 367 insertions(+), 83 deletions(-) create mode 100644 drivers/pci/host/pcie-hisi-acpi.c create mode 100644 drivers/pci/host/pcie-hisi-common.c create mode 100644 drivers/pci/host/pcie-hisi.h -- 1.9.1 From mboxrd@z Thu Jan 1 00:00:00 1970 From: gabriele.paoloni@huawei.com (Gabriele Paoloni) Date: Mon, 8 Feb 2016 12:41:01 +0000 Subject: [RFC PATCH v2 0/3] Add ACPI support for HiSilicon PCIe Host Controllers Message-ID: <1454935264-6076-1-git-send-email-gabriele.paoloni@huawei.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org From: gabriele paoloni This patchset adds ACPI support for the HiSilicon Hip05/Hip06 SoC PCIe controllers The four patches respectively: - re-architect the current HiSilicon driver to make it scalable to the new ACPI quirks - rework the current HiSilicon driver to make it ECAM compliant - adds the HiSilicon ACPI specific quirks. This patchset is based on https://github.com/semihalf-nowicki-tomasz/linux.git branch pci-acpi-v4 Changes v1 -> v2: removed the ACPI quirks dependency on Designware framework gabriele paoloni (3): PCI: hisi: re-architect Hip05/Hip06 controllers driver to preapare for ACPI PCI: hisi: Make the HiSilicon PCIe host controller ECAM compliant PCI/ACPI: hisi: Add ACPI support for HiSilicon SoCs Host Controllers MAINTAINERS | 3 + drivers/pci/host/Kconfig | 8 ++ drivers/pci/host/Makefile | 3 +- drivers/pci/host/pcie-designware.c | 4 +- drivers/pci/host/pcie-designware.h | 2 + drivers/pci/host/pcie-hisi-acpi.c | 188 ++++++++++++++++++++++++++++++++++++ drivers/pci/host/pcie-hisi-common.c | 73 ++++++++++++++ drivers/pci/host/pcie-hisi.c | 144 +++++++++++++-------------- drivers/pci/host/pcie-hisi.h | 25 +++++ 9 files changed, 367 insertions(+), 83 deletions(-) create mode 100644 drivers/pci/host/pcie-hisi-acpi.c create mode 100644 drivers/pci/host/pcie-hisi-common.c create mode 100644 drivers/pci/host/pcie-hisi.h -- 1.9.1