All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
To: "Rafael J. Wysocki" <rjw@sisk.pl>
Cc: Jesse Barnes <jbarnes@virtuousgeek.org>,
	Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>,
	Matthew Garrett <mjg59@srcf.ucam.org>,
	linux-pci@vger.kernel.org, linux-pm@lists.linux-foundation.org,
	ACPI Devel Maling List <linux-acpi@vger.kernel.org>,
	Len Brown <lenb@kernel.org>
Subject: Re: [PATCH 4/7] PCI / PCIe: Disable PCIe port services during port initialization
Date: Mon, 02 Aug 2010 18:21:03 +0900	[thread overview]
Message-ID: <4C568DFF.3090708@jp.fujitsu.com> (raw)
In-Reply-To: <201007310034.20027.rjw@sisk.pl>

(2010/07/31 7:34), Rafael J. Wysocki wrote:
> From: Rafael J. Wysocki <rjw@sisk.pl>
> Subject: PCI / PCIe: Disable PCIe port services during port initialization
> 
> In principle PCIe port services may be enabled by the BIOS, so it's
> better to disable them during port initialization to avoid spurious
> events from being generated.
> 
> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
> ---
>  drivers/pci/pcie/portdrv_core.c |   29 ++++++++++++++++++++++++++---
>  1 file changed, 26 insertions(+), 3 deletions(-)
> 
> Index: linux-2.6/drivers/pci/pcie/portdrv_core.c
> ===================================================================
> --- linux-2.6.orig/drivers/pci/pcie/portdrv_core.c
> +++ linux-2.6/drivers/pci/pcie/portdrv_core.c
> @@ -256,20 +256,43 @@ static int get_port_device_capability(st
>  	/* Hot-Plug Capable */
>  	if ((cap_mask & PCIE_PORT_SERVICE_HP) && (reg16 & PCI_EXP_FLAGS_SLOT)) {
>  		pci_read_config_dword(dev, pos + PCI_EXP_SLTCAP, &reg32);
> -		if (reg32 & PCI_EXP_SLTCAP_HPC)
> +		if (reg32 & PCI_EXP_SLTCAP_HPC) {
>  			services |= PCIE_PORT_SERVICE_HP;
> +			/*
> +			 * Disable hot-plug interrupts in case they have been
> +			 * enabled by the BIOS and the hot-plug service driver
> +			 * is not loaded.
> +			 */
> +			pos += PCI_EXP_SLTCTL;
> +			pci_read_config_word(dev, pos, &reg16);
> +			reg16 &= ~(PCI_EXP_SLTCTL_CCIE | PCI_EXP_SLTCTL_HPIE);
> +			pci_write_config_word(dev, pos, reg16);
> +		}
>  	}
>  	/* AER capable */
>  	if ((cap_mask & PCIE_PORT_SERVICE_AER)
> -	    && pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR))
> +	    && pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR)) {
>  		services |= PCIE_PORT_SERVICE_AER;
> +		/*
> +		 * Disable AER on this port in case it's been enabled by the
> +		 * BIOS (the AER service driver will enable it when necessary).
> +		 */
> +		pci_disable_pcie_error_reporting(dev);
> +	}
>  	/* VC support */
>  	if (pci_find_ext_capability(dev, PCI_EXT_CAP_ID_VC))
>  		services |= PCIE_PORT_SERVICE_VC;
>  	/* Root ports are capable of generating PME too */
>  	if ((cap_mask & PCIE_PORT_SERVICE_PME)
> -	    && dev->pcie_type == PCI_EXP_TYPE_ROOT_PORT)
> +	    && dev->pcie_type == PCI_EXP_TYPE_ROOT_PORT) {
>  		services |= PCIE_PORT_SERVICE_PME;
> +		/*
> +		 * Disable PME interrupt on this port in case it's been enabled
> +		 * by the BIOS (the PME service driver will enable it when
> +		 * necessary).
> +		 */
> +		pcie_pme_interrupt_enable(dev, false);
> +	}
>  
>  	return services;
>  }
> 

I believe that comments described well are always welcomed.

Reviewed-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>


  reply	other threads:[~2010-08-02  9:21 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-07-30 22:20 [PATCH 0/7] ACPI / PCI / PCIe: Rework _OSC handling Rafael J. Wysocki
2010-07-30 22:24 ` [PATCH 1/7] ACPI / PCI: Make acpi_pci_run_osc() use capbuf to return the result Rafael J. Wysocki
2010-08-02  9:16   ` Hidetoshi Seto
2010-08-02  9:16   ` Hidetoshi Seto
2010-08-02 14:12     ` Rafael J. Wysocki
2010-08-02 14:12     ` Rafael J. Wysocki
2010-07-30 22:24 ` Rafael J. Wysocki
2010-07-30 22:26 ` [PATCH 2/7] ACPI / PCI: Introduce acpi_pci_root_osc_query() Rafael J. Wysocki
2010-08-02  9:18   ` Hidetoshi Seto
2010-08-02  9:18   ` Hidetoshi Seto
2010-08-02 14:13     ` Rafael J. Wysocki
2010-08-02 14:13     ` Rafael J. Wysocki
2010-07-30 22:26 ` Rafael J. Wysocki
2010-07-30 22:32 ` [PATCH 3/7] PCI / PCIe: Ask BIOS for control of all native services at once (v5) Rafael J. Wysocki
2010-07-30 22:32 ` Rafael J. Wysocki
2010-08-02  9:20   ` Hidetoshi Seto
2010-08-02 14:15     ` Rafael J. Wysocki
2010-08-02 14:15     ` Rafael J. Wysocki
2010-08-02  9:20   ` Hidetoshi Seto
2010-07-30 22:34 ` [PATCH 4/7] PCI / PCIe: Disable PCIe port services during port initialization Rafael J. Wysocki
2010-07-30 22:34 ` Rafael J. Wysocki
2010-08-02  9:21   ` Hidetoshi Seto [this message]
2010-08-02  9:21   ` Hidetoshi Seto
2010-07-30 22:35 ` [PATCH 5/7] PCI / PCIe: Remove the port driver module exit routine Rafael J. Wysocki
2010-08-02  9:21   ` Hidetoshi Seto
2010-08-02 14:18     ` Rafael J. Wysocki
2010-08-02 14:18     ` Rafael J. Wysocki
2010-08-02  9:21   ` Hidetoshi Seto
2010-07-30 22:35 ` Rafael J. Wysocki
2010-07-30 22:36 ` [PATCH 6/7] ACPI / PCI: Do not preserve _OSC control bits returned by a query Rafael J. Wysocki
2010-08-02  9:22   ` Hidetoshi Seto
2010-08-02  9:22   ` Hidetoshi Seto
2010-07-30 22:36 ` Rafael J. Wysocki
2010-07-30 22:37 ` [PATCH 7/7] ACPI / PCI: Reorder checks in acpi_pci_osc_control_set() Rafael J. Wysocki
2010-07-30 22:37 ` Rafael J. Wysocki
2010-08-02  9:23   ` Hidetoshi Seto
2010-08-02  9:23   ` Hidetoshi Seto

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4C568DFF.3090708@jp.fujitsu.com \
    --to=seto.hidetoshi@jp.fujitsu.com \
    --cc=jbarnes@virtuousgeek.org \
    --cc=kaneshige.kenji@jp.fujitsu.com \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=linux-pm@lists.linux-foundation.org \
    --cc=mjg59@srcf.ucam.org \
    --cc=rjw@sisk.pl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.