From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id F35A9C31E57 for ; Mon, 17 Jun 2019 10:43:04 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D281E2147A for ; Mon, 17 Jun 2019 10:43:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726728AbfFQKnE (ORCPT ); Mon, 17 Jun 2019 06:43:04 -0400 Received: from cloudserver094114.home.pl ([79.96.170.134]:64671 "EHLO cloudserver094114.home.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726427AbfFQKnE (ORCPT ); Mon, 17 Jun 2019 06:43:04 -0400 Received: from 79.184.254.20.ipv4.supernova.orange.pl (79.184.254.20) (HELO kreacher.localnet) by serwer1319399.home.pl (79.96.170.134) with SMTP (IdeaSmtpServer 0.83.267) id d1245691e53fa191; Mon, 17 Jun 2019 12:43:02 +0200 From: "Rafael J. Wysocki" To: Mika Westerberg Cc: Bjorn Helgaas , Len Brown , Lukas Wunner , Keith Busch , Alex Williamson , Alexandru Gagniuc , linux-acpi@vger.kernel.org, linux-pci@vger.kernel.org Subject: Re: [PATCH v2 0/2] PCI: Power management improvements Date: Mon, 17 Jun 2019 12:43:01 +0200 Message-ID: <24804374.PG13b4niSC@kreacher> In-Reply-To: <20190612105739.88578-1-mika.westerberg@linux.intel.com> References: <20190612105739.88578-1-mika.westerberg@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org On Wednesday, June 12, 2019 12:57:37 PM CEST Mika Westerberg wrote: > Hi all, > > This series includes a couple of changes to the PCI power management that > should make Linux follow the PCIe spec better. The issues this series aims > to solve came up with Intel Ice Lake Thunderbolt enabling where the > controller is first time integrated into the SoC but I think these issues > are generic to any platform having similar configuration. > > Changes from v1 > > * I dropped the last patch as it requires bit more work and not dependent > on the other two. I will send it out separately. > * Re-arranged conditionals in wait_for_downstream_link() > * Moved comments to be part of kernel-doc > * Added tags from Rafael and Lukas > > Previous version is here: > > https://www.spinics.net/lists/linux-pci/msg83582.html > > Mika Westerberg (2): > PCI: Add missing link delays required by the PCIe spec > PCI: Do not poll for PME if the device is in D3cold > > drivers/pci/pci.c | 36 +++++++++++++----- > drivers/pci/pci.h | 1 + > drivers/pci/pcie/portdrv_core.c | 66 +++++++++++++++++++++++++++++++++ > 3 files changed, 93 insertions(+), 10 deletions(-) > > Both added to my 5.3 queue, thanks!