From: Andrew Morton <akpm@osdl.org>
To: Matthew Wilcox <matthew@wil.cx>
Cc: Greg Kroah-Hartman <gregkh@suse.de>,
linux-pci@atrey.karlin.mff.cuni.cz, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] [PCI] Prevent user config space access during power state transitions
Date: Fri, 13 Oct 2006 22:26:08 -0700 [thread overview]
Message-ID: <20061013222608.660d9a96.akpm@osdl.org> (raw)
In-Reply-To: <1160487497203-git-send-email-matthew@wil.cx>
On Tue, 10 Oct 2006 07:38:17 -0600
Matthew Wilcox <matthew@wil.cx> wrote:
> Section 5.3 of PCI Bus Power Management 1.2 states:
>
> There is a minimum recovery time requirement of 200 µs between when
> a function is programmed from D2 to D0 and when the function can be
> next accessed as a target (including PCI configuration accesses). If
> an access is attempted in violation of the specified minimum recovery
> time, undefined system behavior may result.
>
> We have to prevent the user running lspci during this time, and
> fortunately we already have the pci_block_user_cfg_access() API to
> do this.
>
> Signed-off-by: Matthew Wilcox <matthew@wil.cx>
> ---
> drivers/pci/pci.c | 8 ++++++++
> 1 files changed, 8 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
> index a544997..1bb059a 100644
> --- a/drivers/pci/pci.c
> +++ b/drivers/pci/pci.c
> @@ -366,6 +366,11 @@ pci_set_power_state(struct pci_dev *dev,
> break;
> }
>
> + /* We have to prevent accesses to config space while transitioning
> + * between power states
> + */
> + pci_block_user_cfg_access(dev);
> +
> /* enter specified state */
> pci_write_config_word(dev, pm + PCI_PM_CTRL, pmcsr);
>
> @@ -383,6 +388,9 @@ pci_set_power_state(struct pci_dev *dev,
> if (platform_pci_set_power_state)
> platform_pci_set_power_state(dev, state);
>
> + /* Should be safe to allow userspace access to the device again now */
> + pci_unblock_user_cfg_access(dev);
> +
> dev->current_state = state;
>
> /* According to section 5.4.1 of the "PCI BUS POWER MANAGEMENT
This patch independently causes the same failure: the Vaio doesn't power
off after suspend-to-disk and after a manual power cycle and resume,
networking is dead.
The message `acpi_power_off called' never comes out, so something probably
got stuck.
Or maybe something failed somewhere and the error code which would have
helped us solve this bug was simply ignored.
Note that pci_block_user_cfg_access() calls pci_save_state(), which can
fail. But pci_block_user_cfg_access() discards that information and
returns void. If this happens, userspace config space reads will return...
what?
next prev parent reply other threads:[~2006-10-14 5:26 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-10-10 13:38 Matthew Wilcox
2006-10-14 5:26 ` Andrew Morton [this message]
2006-10-14 5:35 ` Greg KH
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=20061013222608.660d9a96.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=gregkh@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@atrey.karlin.mff.cuni.cz \
--cc=matthew@wil.cx \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®