lkml.org 
[lkml]   [2021]   [Oct]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH] PCI: Put power resources not tied to a physical node in D3cold
From
Date
On 10/8/2021 12:07, Rafael J. Wysocki wrote:
> On Friday, October 8, 2021 5:47:53 PM CEST Limonciello, Mario wrote:
>> On 10/8/2021 09:05, Rafael J. Wysocki wrote:
>>> On Thursday, October 7, 2021 10:51:26 PM CEST Mario Limonciello wrote:
>>>> I found a case that a system that two physical SATA controllers share
>>>> the same ACPI Power Resource. When a drive is connected to one of
>>>> the controllers then it will bind with PCI devices with the ahci driver
>>>> and form a relationship with the firmware node and physical node. During
>>>> s2idle I see that the constraints are met for this device as it is
>>>> transitioned into the appropriate state. However the second ACPI node
>>>> doesn't have any relationship with a physical node and stays in "D0":
>>>>
>>>> ```
>>>> ACPI: \_SB_.PCI0.GP18.SATA: ACPI: PM: Power state change: D0 -> D3cold
>>>> ACPI: PM: Power resource [P0SA] still in use
>>>> acpi device:2a: Power state changed to D3cold
>>>> ```
>>>>
>>>> Due to the refcounting used on the shared power resource putting the
>>>> device with a physical node into D3 doesn't result in the _OFF method
>>>> being called.
>>>>
>>>> To help with this type of problem, make a new helper function that can
>>>> be used to check all the children of an ACPI device and put any firmware
>>>> nodes that don't have physical devices into D3cold to allow shared
>>>> resources to transition. Call this helper function after PCI devices have
>>>> been scanned and ACPI companions have had a chance to associate.
>>>>
>>>> After making this change, here is what the flow looks like:
>>>> ```
>>>> <snip:bootup>
>>>> ACPI: \_SB_.PCI0.GP18.SAT1: ACPI: PM: Power state change: D0 -> D3cold
>>>> ACPI: PM: Power resource [P0SA] still in use
>>>> acpi device:2c: Power state changed to D3cold
>>>> <snip:suspend>
>>>> ACPI: \_SB_.PCI0.GP18.SATA: ACPI: PM: Power state change: D0 -> D3cold
>>>> ACPI: PM: Power resource [P0SA] turned off
>>>> acpi device:2a: Power state changed to D3cold
>>>> ```
>>>>
>>>> Link: https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Flore.kernel.org%2Flinux-acpi%2F0571292a-286b-18f2-70ad-12b125a61469%40amd.com%2FT%2F%23m042055c5ca1e49c2829655511f04b0311c142559&amp;data=04%7C01%7Cmario.limonciello%40amd.com%7C9ce40aa8a6354d6894e208d98a7e169c%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637693098112854874%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&amp;sdata=jHHPR2OmnkwP2au7%2FdwQLIlgVfayGN3AEM7isFcu1bc%3D&amp;reserved=0
>>>> BugLink: https://nam11.safelinks.protection.outlook.com/?url=https%3A%2F%2Fbugzilla.kernel.org%2Fshow_bug.cgi%3Fid%3D214091&amp;data=04%7C01%7Cmario.limonciello%40amd.com%7C9ce40aa8a6354d6894e208d98a7e169c%7C3dd8961fe4884e608e11a82d994e183d%7C0%7C0%7C637693098112864844%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&amp;sdata=cXXxJBffXddl8EEhJKXXt8zL7hL36DRkR%2BWwK7Pormw%3D&amp;reserved=0
>>>> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com>
>>>> ---
>>>> drivers/acpi/device_pm.c | 34 ++++++++++++++++++++++++++++++++++
>>>> drivers/pci/probe.c | 5 +++++
>>>> include/acpi/acpi_bus.h | 1 +
>>>> 3 files changed, 40 insertions(+)
>>>>
>>>> diff --git a/drivers/acpi/device_pm.c b/drivers/acpi/device_pm.c
>>>> index 0028b6b51c87..0fb0bbeeae9e 100644
>>>> --- a/drivers/acpi/device_pm.c
>>>> +++ b/drivers/acpi/device_pm.c
>>>> @@ -149,6 +149,40 @@ static int acpi_dev_pm_explicit_set(struct acpi_device *adev, int state)
>>>> return 0;
>>>> }
>>>>
>>>> +/**
>>>> + * acpi_device_turn_off_absent_children - Turn off power resources for
>>>> + * children not physically present.
>>>> + * @parent: ACPI bridge device
>>>> + */
>>>> +int acpi_device_turn_off_absent_children(struct acpi_device *parent)
>>>> +{
>>>> + struct acpi_device *adev;
>>>> + int ret = 0;
>>>> +
>>>> + if (!parent)
>>>> + return -EINVAL;
>>>> +
>>>> + list_for_each_entry(adev, &parent->children, node) {
>>>
>>> It is better to use device_for_each_child() for this, walking the children list
>>> without locking is questionable.
>>>
>>>> + int state;
>>>> +
>>>> + if (!adev->flags.power_manageable ||
>>>
>>> This need not be checked, acpi_device_set_power() checks it.
>>>
>>>> + !adev->power.flags.power_resources)
>>>
>>> And I'm not sure about this too. Even if there are no power resources, it
>>> would be still prudent to release PM resources referred to by unused device
>>> objects by calling _PS3 on them.
>>>
>>>> + continue;
>>>> + if (acpi_get_first_physical_node(adev))
>>>> + continue;
>>>
>>> In addition to this, I would check if the device object has _ADR, because
>>> there are legitimate cases when device objects with a _HID have no physical
>>> nodes.
>>>
>>>> + ret = acpi_device_get_power(adev, &state);
>>>> + if (ret)
>>>> + return ret;
>>>> + if (state == ACPI_STATE_D3_COLD)
>>>> + continue;
>>>
>>> The above is not necessary.
>>>
>>>> + ret = acpi_device_set_power(adev, ACPI_STATE_D3_COLD);
>>>> + if (ret)
>>>> + return ret;
>>>> + }
>>>> + return ret;
>>>> +}
>>>> +EXPORT_SYMBOL_GPL(acpi_device_turn_off_absent_children);
>>>
>>> And I would put this function into glue.c.
>>>
>>>> +
>>>> /**
>>>> * acpi_device_set_power - Set power state of an ACPI device.
>>>> * @device: Device to set the power state of.
>>>> diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c
>>>> index 79177ac37880..1a45182394d1 100644
>>>> --- a/drivers/pci/probe.c
>>>> +++ b/drivers/pci/probe.c
>>>> @@ -2939,6 +2939,11 @@ static unsigned int pci_scan_child_bus_extend(struct pci_bus *bus,
>>>> }
>>>> }
>>>>
>>>> + /* check for and turn off dangling power resources */
>>>> + for_each_pci_bridge(dev, bus) {
>>>> + acpi_device_turn_off_absent_children(ACPI_COMPANION(&dev->dev));
>>>
>>> IMO it would be better to call this from inside of the ACPI subsystem and
>>> after scanning the entire bus.
>>>
>>>> + }
>>>> +
>>>> /*
>>>> * We've scanned the bus and so we know all about what's on
>>>> * the other side of any bridges that may be on this bus plus
>>>> diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h
>>>> index 13d93371790e..0eba08b60e13 100644
>>>> --- a/include/acpi/acpi_bus.h
>>>> +++ b/include/acpi/acpi_bus.h
>>>> @@ -510,6 +510,7 @@ int acpi_bus_get_status(struct acpi_device *device);
>>>>
>>>> int acpi_bus_set_power(acpi_handle handle, int state);
>>>> const char *acpi_power_state_string(int state);
>>>> +int acpi_device_turn_off_absent_children(struct acpi_device *parent);
>>>> int acpi_device_set_power(struct acpi_device *device, int state);
>>>> int acpi_bus_init_power(struct acpi_device *device);
>>>> int acpi_device_fix_up_power(struct acpi_device *device);
>>>>
>>>
>>> Overall, something like the appended patch might work. >
>>> Note that on my test-bed machine it makes no difference, though.
>>
>> Yes this helps the resources on the identified problematic machine.
>>
>>>
>>> ---
>>> drivers/acpi/glue.c | 28 ++++++++++++++++++++++++++++
>>> drivers/acpi/internal.h | 2 ++
>>> drivers/acpi/pci_root.c | 1 +
>>> 3 files changed, 31 insertions(+)
>>>
>>> Index: linux-pm/drivers/acpi/glue.c
>>> ===================================================================
>>> --- linux-pm.orig/drivers/acpi/glue.c
>>> +++ linux-pm/drivers/acpi/glue.c
>>> @@ -350,3 +350,31 @@ void acpi_device_notify_remove(struct de
>>>
>>> acpi_unbind_one(dev);
>>> }
>>> +
>>> +static int acpi_dev_turn_off_if_unused(struct device *dev, void *not_used)
>>> +{
>>> + struct acpi_device *adev = to_acpi_device(dev);
>>> +
>>> + acpi_dev_turn_off_unused_descendants(adev);
>>> +
>>> + if (adev->pnp.type.bus_address && !acpi_get_first_physical_node(adev))
>>> + acpi_device_set_power(adev, ACPI_STATE_D3_COLD);
>>> +
>>> + return 0;
>>> +}
>>> +
>>> +/**
>>> + * acpi_dev_turn_off_unused_descendants - Put unused descendants into D3cold.
>>> + * @adev: ACPI device object at the top of a branch of device hierarchy.
>>> + *
>>> + * Walk the branch of the hierarchy of ACPI device objects starting at @adev
>>> + * and put all of the objects in it that have _ADR and have no corresponding
>>> + * physical nodes into D3cold.
>>> + *
>>> + * This allows power resources that are only referred to by unused ACPI device
>>> + * objects to be turned off.
>>> + */
>>> +void acpi_dev_turn_off_unused_descendants(struct acpi_device *adev)
>>> +{
>>> + device_for_each_child(&adev->dev, NULL, acpi_dev_turn_off_if_unused);
>>> +}
>>> Index: linux-pm/drivers/acpi/internal.h
>>> ===================================================================
>>> --- linux-pm.orig/drivers/acpi/internal.h
>>> +++ linux-pm/drivers/acpi/internal.h
>>> @@ -88,6 +88,8 @@ bool acpi_scan_is_offline(struct acpi_de
>>> acpi_status acpi_sysfs_table_handler(u32 event, void *table, void *context);
>>> void acpi_scan_table_notify(void);
>>>
>>> +void acpi_dev_turn_off_unused_descendants(struct acpi_device *adev);
>>> +
>>> /* --------------------------------------------------------------------------
>>> Device Node Initialization / Removal
>>> -------------------------------------------------------------------------- */
>>> Index: linux-pm/drivers/acpi/pci_root.c
>>> ===================================================================
>>> --- linux-pm.orig/drivers/acpi/pci_root.c
>>> +++ linux-pm/drivers/acpi/pci_root.c
>>> @@ -630,6 +630,7 @@ static int acpi_pci_root_add(struct acpi
>>>
>>> pci_lock_rescan_remove();
>>> pci_bus_add_devices(root->bus);
>>> + acpi_dev_turn_off_unused_descendants(root->device);
>>> pci_unlock_rescan_remove();
>>> return 1;
>>>
>>>
>>>
>>>
>>
>> When you submit this if no other changes, please include:
>>
>> Tested-by: Mario Limonciello <mario.limonciello@amd.com>
>
> Thanks, but we may do better in a couple of ways.
>
> First off, there's no particular reason to restrict the walk to the device
> objects below the host bridge one.
>
> Second, if the physical node appears while we're removing power from the
> device, whoever adds it may be confused, so it's better to avoid that.
>
> Please check if the appended one still works for you.
>
> ---
> drivers/acpi/glue.c | 16 ++++++++++++++++
> drivers/acpi/internal.h | 1 +
> drivers/acpi/scan.c | 6 ++++++
> 3 files changed, 23 insertions(+)
>
> Index: linux-pm/drivers/acpi/scan.c
> ===================================================================
> --- linux-pm.orig/drivers/acpi/scan.c
> +++ linux-pm/drivers/acpi/scan.c
> @@ -2559,6 +2559,12 @@ int __init acpi_scan_init(void)
> }
> }
>
> + /*
> + * Make sure that power management resources are not blocked by ACPI
> + * device objects with no users.
> + */
> + bus_for_each_dev(&acpi_bus_type, NULL, NULL, acpi_dev_turn_off_if_unused);
> +
> acpi_turn_off_unused_power_resources();
>
> acpi_scan_initialized = true;
> Index: linux-pm/drivers/acpi/glue.c
> ===================================================================
> --- linux-pm.orig/drivers/acpi/glue.c
> +++ linux-pm/drivers/acpi/glue.c
> @@ -350,3 +350,19 @@ void acpi_device_notify_remove(struct de
>
> acpi_unbind_one(dev);
> }
> +
> +int acpi_dev_turn_off_if_unused(struct device *dev, void *not_used)
> +{
> + struct acpi_device *adev = to_acpi_device(dev);
> +
> + if (adev->pnp.type.bus_address) {
> + mutex_lock(&adev->physical_node_lock);
> +
> + if (list_empty(&adev->physical_node_list))
> + acpi_device_set_power(adev, ACPI_STATE_D3_COLD);
> +
> + mutex_unlock(&adev->physical_node_lock);
> + }
> +
> + return 0;
> +}
> Index: linux-pm/drivers/acpi/internal.h
> ===================================================================
> --- linux-pm.orig/drivers/acpi/internal.h
> +++ linux-pm/drivers/acpi/internal.h
> @@ -117,6 +117,7 @@ bool acpi_device_is_battery(struct acpi_
> bool acpi_device_is_first_physical_node(struct acpi_device *adev,
> const struct device *dev);
> int acpi_bus_register_early_device(int type);
> +int acpi_dev_turn_off_if_unused(struct device *dev, void *not_used);
>
> /* --------------------------------------------------------------------------
> Device Matching and Notification
>
>
>

I suppose it's intentional - but I did notice a few other devices that
are affected now too. Power resources dangling around for some other
buttons. However those devices are still indeed working properly. And
yes this one still works too for the original reason that prompted this.

Tested-by: Mario Limonciello <mario.limonciello@amd.com>

\
 
 \ /
  Last update: 2021-10-08 20:12    [W:0.098 / U:1.616 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site