* [RFC][PATCH 0/2] PCI PM: Fix radeonfb vs pci_set_power_state() problem
@ 2009-03-25 0:38 Rafael J. Wysocki
2009-03-25 0:41 ` [RFC][PATCH 1/2] PCI PM: Introduce __pci_[start|complete]_power_transition() Rafael J. Wysocki
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2009-03-25 0:38 UTC (permalink / raw)
To: Jesse Barnes; +Cc: pm list, LKML, Andrew Morton, Linux PCI
Hi,
The following two patches are intended to fix the problem that will arise
when the PM patches queued up for 2.6.30 are merged and which is that
pci_set_power_state() called by radeonfb to complete the transition into D2
will return immediately due to the device's current_state being already PCI_D2.
1/2 introduces low level PM core functions one of which may be called by the
radeonfb driver to complete the power transition.
2/2 actually makes radeonfb use the new function.
The patches (on top of the linux-next branch of suspend-2.6) have not been
tested yet, but they compile (at least on x86_64).
Comments welcome.
Thanks,
Rafael
^ permalink raw reply [flat|nested] 4+ messages in thread
* [RFC][PATCH 1/2] PCI PM: Introduce __pci_[start|complete]_power_transition()
2009-03-25 0:38 [RFC][PATCH 0/2] PCI PM: Fix radeonfb vs pci_set_power_state() problem Rafael J. Wysocki
@ 2009-03-25 0:41 ` Rafael J. Wysocki
2009-03-25 0:42 ` [RFC][PATCH 2/2] radeonfb: Use __pci_complete_power_transition() Rafael J. Wysocki
[not found] ` <200903250141.08478.rjw@sisk.pl>
2 siblings, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2009-03-25 0:41 UTC (permalink / raw)
To: Jesse Barnes; +Cc: pm list, LKML, Andrew Morton, Linux PCI
From: Rafael J. Wysocki <rjw@sisk.pl>
The radeonfb driver needs to program the device's PMCSR directly due
to some quirky hardware it has to handle (see
http://bugzilla.kernel.org/show_bug.cgi?id=12846 for details) and
after doing that it needs to call the platform (usually ACPI) to
finish the power transition of the device. Currently it uses
pci_set_power_state() for this purpose, however making a specific
assumption about the internal behavior of this function, which has
changed recently so that this assumption is no longer satisfied.
For this reason, introduce __pci_complete_power_transition() that may
be called by the radeonfb driver to complete the power transition of
the device. For symmetry, introduce __pci_start_power_transition().
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
---
drivers/pci/pci.c | 66 +++++++++++++++++++++++++++++++++++++---------------
include/linux/pci.h | 1
2 files changed, 49 insertions(+), 18 deletions(-)
Index: linux-2.6/drivers/pci/pci.c
===================================================================
--- linux-2.6.orig/drivers/pci/pci.c
+++ linux-2.6/drivers/pci/pci.c
@@ -540,6 +540,50 @@ void pci_update_current_state(struct pci
}
/**
+ * pci_platform_power_transition - Use platform to change device power state
+ * @dev: PCI device to handle.
+ * @state: State to put the device into.
+ */
+static int pci_platform_power_transition(
+ struct pci_dev *dev, pci_power_t state)
+{
+ int error = 0;
+
+ if (platform_pci_power_manageable(dev))
+ error = platform_pci_set_power_state(dev, state);
+
+ if (!error)
+ pci_update_current_state(dev, state);
+
+ return error;
+}
+
+/**
+ * __pci_start_power_transition - Start power transition of a PCI device
+ * @dev: PCI device to handle.
+ * @state: State to put the device into.
+ */
+static void __pci_start_power_transition(struct pci_dev *dev, pci_power_t state)
+{
+ if (state == PCI_D0)
+ pci_platform_power_transition(dev, PCI_D0);
+}
+
+/**
+ * __pci_complete_power_transition - Complete power transition of a PCI device
+ * @dev: PCI device to handle.
+ * @state: State to put the device into.
+ *
+ * This function should not be called directly by device drivers.
+ */
+int __pci_complete_power_transition(struct pci_dev *dev, pci_power_t state)
+{
+ return state > PCI_D0 ?
+ pci_platform_power_transition(dev, state) : -ENODEV;
+}
+EXPORT_SYMBOL_GPL(__pci_complete_power_transition);
+
+/**
* pci_set_power_state - Set the power state of a PCI device
* @dev: PCI device to handle.
* @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
@@ -575,16 +619,8 @@ int pci_set_power_state(struct pci_dev *
if (dev->current_state == state)
return 0;
- if (state == PCI_D0) {
- /*
- * Allow the platform to change the state, for example via ACPI
- * _PR0, _PS0 and some such, but do not trust it.
- */
- int ret = platform_pci_power_manageable(dev) ?
- platform_pci_set_power_state(dev, PCI_D0) : 0;
- if (!ret)
- pci_update_current_state(dev, PCI_D0);
- }
+ __pci_start_power_transition(dev, state);
+
/* This device is quirked not to be put into D3, so
don't put it in D3 */
if (state == PCI_D3hot && (dev->dev_flags & PCI_DEV_FLAGS_NO_D3))
@@ -592,14 +628,8 @@ int pci_set_power_state(struct pci_dev *
error = pci_raw_set_power_state(dev, state);
- if (state > PCI_D0 && platform_pci_power_manageable(dev)) {
- /* Allow the platform to finalize the transition */
- int ret = platform_pci_set_power_state(dev, state);
- if (!ret) {
- pci_update_current_state(dev, state);
- error = 0;
- }
- }
+ if (!__pci_complete_power_transition(dev, state))
+ error = 0;
return error;
}
Index: linux-2.6/include/linux/pci.h
===================================================================
--- linux-2.6.orig/include/linux/pci.h
+++ linux-2.6/include/linux/pci.h
@@ -689,6 +689,7 @@ size_t pci_get_rom_size(struct pci_dev *
/* Power management related routines */
int pci_save_state(struct pci_dev *dev);
int pci_restore_state(struct pci_dev *dev);
+int __pci_complete_power_transition(struct pci_dev *dev, pci_power_t state);
int pci_set_power_state(struct pci_dev *dev, pci_power_t state);
pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state);
bool pci_pme_capable(struct pci_dev *dev, pci_power_t state);
^ permalink raw reply [flat|nested] 4+ messages in thread
* [RFC][PATCH 2/2] radeonfb: Use __pci_complete_power_transition()
2009-03-25 0:38 [RFC][PATCH 0/2] PCI PM: Fix radeonfb vs pci_set_power_state() problem Rafael J. Wysocki
2009-03-25 0:41 ` [RFC][PATCH 1/2] PCI PM: Introduce __pci_[start|complete]_power_transition() Rafael J. Wysocki
@ 2009-03-25 0:42 ` Rafael J. Wysocki
[not found] ` <200903250141.08478.rjw@sisk.pl>
2 siblings, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2009-03-25 0:42 UTC (permalink / raw)
To: Jesse Barnes; +Cc: pm list, LKML, Andrew Morton, Linux PCI
From: Rafael J. Wysocki <rjw@sisk.pl>
Use __pci_complete_power_transition() to finalize the transition into
D2 after programming the PMCSR of the device directly.
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
---
drivers/video/aty/radeon_pm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: linux-2.6/drivers/video/aty/radeon_pm.c
===================================================================
--- linux-2.6.orig/drivers/video/aty/radeon_pm.c
+++ linux-2.6/drivers/video/aty/radeon_pm.c
@@ -2582,7 +2582,7 @@ static void radeon_set_suspend(struct ra
* calling pci_set_power_state()
*/
radeonfb_whack_power_state(rinfo, PCI_D2);
- pci_set_power_state(rinfo->pdev, PCI_D2);
+ __pci_complete_power_transition(rinfo->pdev, PCI_D2);
} else {
printk(KERN_DEBUG "radeonfb (%s): switching to D0 state...\n",
pci_name(rinfo->pdev));
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [RFC][PATCH 1/2] PCI PM: Introduce __pci_[start|complete]_power_transition()
[not found] ` <200903250141.08478.rjw@sisk.pl>
@ 2009-03-26 12:15 ` Rafael J. Wysocki
0 siblings, 0 replies; 4+ messages in thread
From: Rafael J. Wysocki @ 2009-03-26 12:15 UTC (permalink / raw)
To: Jesse Barnes; +Cc: pm list, LKML, Andrew Morton, Linux PCI
On Wednesday 25 March 2009, Rafael J. Wysocki wrote:
> From: Rafael J. Wysocki <rjw@sisk.pl>
>
> The radeonfb driver needs to program the device's PMCSR directly due
> to some quirky hardware it has to handle (see
> http://bugzilla.kernel.org/show_bug.cgi?id=12846 for details) and
> after doing that it needs to call the platform (usually ACPI) to
> finish the power transition of the device. Currently it uses
> pci_set_power_state() for this purpose, however making a specific
> assumption about the internal behavior of this function, which has
> changed recently so that this assumption is no longer satisfied.
> For this reason, introduce __pci_complete_power_transition() that may
> be called by the radeonfb driver to complete the power transition of
> the device. For symmetry, introduce __pci_start_power_transition().
>
> Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
Sorry, with this version of the patch the following failure scenarion is
possible:
* a caller of pci_set_power_state() wants to put a device into D3
* pci_raw_set_power_state() fails and returns error code
* device is not power manageable by the platform, so
__pci_complete_power_transition() returns 0
* pci_set_power_state() returns 0, although it should return the error code
from pci_raw_set_power_state().
Also, if the device doesn't support the native PM and is not power manageable
by the platform, we should always fall back to D0.
The updated patch below has these problems fixed.
Thanks,
Rafael
---
From: Rafael J. Wysocki <rjw@sisk.pl>
Subject: PCI PM: Introduce __pci_[start|complete]_power_transition() (rev. 2)
The radeonfb driver needs to program the device's PMCSR directly due
to some quirky hardware it has to handle (see
http://bugzilla.kernel.org/show_bug.cgi?id=12846 for details) and
after doing that it needs to call the platform (usually ACPI) to
finish the power transition of the device. Currently it uses
pci_set_power_state() for this purpose, however making a specific
assumption about the internal behavior of this function, which has
changed recently so that this assumption is no longer satisfied.
For this reason, introduce __pci_complete_power_transition() that may
be called by the radeonfb driver to complete the power transition of
the device. For symmetry, introduce __pci_start_power_transition().
Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl>
---
drivers/pci/pci.c | 69 ++++++++++++++++++++++++++++++++++++++--------------
include/linux/pci.h | 1
2 files changed, 52 insertions(+), 18 deletions(-)
Index: linux-2.6/drivers/pci/pci.c
===================================================================
--- linux-2.6.orig/drivers/pci/pci.c
+++ linux-2.6/drivers/pci/pci.c
@@ -540,6 +540,53 @@ void pci_update_current_state(struct pci
}
/**
+ * pci_platform_power_transition - Use platform to change device power state
+ * @dev: PCI device to handle.
+ * @state: State to put the device into.
+ */
+static int pci_platform_power_transition(
+ struct pci_dev *dev, pci_power_t state)
+{
+ int error;
+
+ if (platform_pci_power_manageable(dev)) {
+ error = platform_pci_set_power_state(dev, state);
+ if (!error)
+ pci_update_current_state(dev, state);
+ } else {
+ error = -ENODEV;
+ pci_update_current_state(dev, PCI_D0);
+ }
+
+ return error;
+}
+
+/**
+ * __pci_start_power_transition - Start power transition of a PCI device
+ * @dev: PCI device to handle.
+ * @state: State to put the device into.
+ */
+static void __pci_start_power_transition(struct pci_dev *dev, pci_power_t state)
+{
+ if (state == PCI_D0)
+ pci_platform_power_transition(dev, PCI_D0);
+}
+
+/**
+ * __pci_complete_power_transition - Complete power transition of a PCI device
+ * @dev: PCI device to handle.
+ * @state: State to put the device into.
+ *
+ * This function should not be called directly by device drivers.
+ */
+int __pci_complete_power_transition(struct pci_dev *dev, pci_power_t state)
+{
+ return state > PCI_D0 ?
+ pci_platform_power_transition(dev, state) : -ENODEV;
+}
+EXPORT_SYMBOL_GPL(__pci_complete_power_transition);
+
+/**
* pci_set_power_state - Set the power state of a PCI device
* @dev: PCI device to handle.
* @state: PCI power state (D0, D1, D2, D3hot) to put the device into.
@@ -575,16 +622,8 @@ int pci_set_power_state(struct pci_dev *
if (dev->current_state == state)
return 0;
- if (state == PCI_D0) {
- /*
- * Allow the platform to change the state, for example via ACPI
- * _PR0, _PS0 and some such, but do not trust it.
- */
- int ret = platform_pci_power_manageable(dev) ?
- platform_pci_set_power_state(dev, PCI_D0) : 0;
- if (!ret)
- pci_update_current_state(dev, PCI_D0);
- }
+ __pci_start_power_transition(dev, state);
+
/* This device is quirked not to be put into D3, so
don't put it in D3 */
if (state == PCI_D3hot && (dev->dev_flags & PCI_DEV_FLAGS_NO_D3))
@@ -592,14 +631,8 @@ int pci_set_power_state(struct pci_dev *
error = pci_raw_set_power_state(dev, state);
- if (state > PCI_D0 && platform_pci_power_manageable(dev)) {
- /* Allow the platform to finalize the transition */
- int ret = platform_pci_set_power_state(dev, state);
- if (!ret) {
- pci_update_current_state(dev, state);
- error = 0;
- }
- }
+ if (!__pci_complete_power_transition(dev, state))
+ error = 0;
return error;
}
Index: linux-2.6/include/linux/pci.h
===================================================================
--- linux-2.6.orig/include/linux/pci.h
+++ linux-2.6/include/linux/pci.h
@@ -689,6 +689,7 @@ size_t pci_get_rom_size(struct pci_dev *
/* Power management related routines */
int pci_save_state(struct pci_dev *dev);
int pci_restore_state(struct pci_dev *dev);
+int __pci_complete_power_transition(struct pci_dev *dev, pci_power_t state);
int pci_set_power_state(struct pci_dev *dev, pci_power_t state);
pci_power_t pci_choose_state(struct pci_dev *dev, pm_message_t state);
bool pci_pme_capable(struct pci_dev *dev, pci_power_t state);
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-03-26 12:15 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-25 0:38 [RFC][PATCH 0/2] PCI PM: Fix radeonfb vs pci_set_power_state() problem Rafael J. Wysocki
2009-03-25 0:41 ` [RFC][PATCH 1/2] PCI PM: Introduce __pci_[start|complete]_power_transition() Rafael J. Wysocki
2009-03-25 0:42 ` [RFC][PATCH 2/2] radeonfb: Use __pci_complete_power_transition() Rafael J. Wysocki
[not found] ` <200903250141.08478.rjw@sisk.pl>
2009-03-26 12:15 ` [RFC][PATCH 1/2] PCI PM: Introduce __pci_[start|complete]_power_transition() Rafael J. Wysocki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox