public inbox for linux-pci@vger.kernel.org
 help / color / mirror / Atom feed
From: "Poosa, Karthik" <karthik.poosa@intel.com>
To: Rodrigo Vivi <rodrigo.vivi@intel.com>,
	Anshuman Gupta <anshuman.gupta@intel.com>
Cc: <intel-xe@lists.freedesktop.org>, <linux-acpi@vger.kernel.org>,
	<linux-pci@vger.kernel.org>, <rafael@kernel.org>,
	<lenb@kernel.org>, <bhelgaas@google.com>,
	<ilpo.jarvinen@linux.intel.com>, <lucas.demarchi@intel.com>,
	<badal.nilawar@intel.com>, <kam.nasim@intel.com>
Subject: Re: [RFC 4/6] drm/xe/vrsr: Refactor d3cold.allowed to a enum
Date: Tue, 1 Apr 2025 10:54:23 +0530	[thread overview]
Message-ID: <68e05f3d-96e0-40f4-b2af-d6e297195de5@intel.com> (raw)
In-Reply-To: <Z88hR4PN2wuAhdE3@intel.com>


On 10-03-2025 22:58, Rodrigo Vivi wrote:
> On Mon, Feb 24, 2025 at 10:18:47PM +0530, Anshuman Gupta wrote:
>> Add xe_d3_state enum to add support for VRAM Self Refresh
>> d3cold state.
>>
>> Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
>> ---
>>   drivers/gpu/drm/xe/xe_device_types.h | 5 +++--
>>   drivers/gpu/drm/xe/xe_pm.c           | 6 +++---
>>   drivers/gpu/drm/xe/xe_pm.h           | 6 ++++++
>>   3 files changed, 12 insertions(+), 5 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
>> index da7946b75cd5..937461939ecc 100644
>> --- a/drivers/gpu/drm/xe/xe_device_types.h
>> +++ b/drivers/gpu/drm/xe/xe_device_types.h
>> @@ -19,6 +19,7 @@
>>   #include "xe_memirq_types.h"
>>   #include "xe_oa_types.h"
>>   #include "xe_platform_types.h"
>> +#include "xe_pm.h"
>>   #include "xe_pmu_types.h"
>>   #include "xe_pt_types.h"
>>   #include "xe_sriov_types.h"
>> @@ -488,8 +489,8 @@ struct xe_device {
>>   		/** @d3cold.capable: Indicates if root port is d3cold capable */
>>   		bool capable;
>>   
>> -		/** @d3cold.allowed: Indicates if d3cold is a valid device state */
>> -		bool allowed;
>> +		/** @d3cold.allowed: Indicates d3cold target state */
>> +		enum xe_d3_state allowed;
> let's also rename the variable name to 'target_state'
>
> or xe->d3cold.allowed = XE_D3HOT //becomes strange
>
> xe->d3.target_state = XE_D3HOT sounds better imho
>
>>   
>>   		/** @d3cold.vrsr_capable: Indicates if d3cold VRAM Self Refresh is supported */
>>   		bool vrsr_capable;
>> diff --git a/drivers/gpu/drm/xe/xe_pm.c b/drivers/gpu/drm/xe/xe_pm.c
>> index 32583651988f..81e67b5693dc 100644
>> --- a/drivers/gpu/drm/xe/xe_pm.c
>> +++ b/drivers/gpu/drm/xe/xe_pm.c
>> @@ -859,7 +859,7 @@ void xe_pm_d3cold_allowed_toggle(struct xe_device *xe)
>>   	int i;
>>   
>>   	if (!xe->d3cold.capable) {
>> -		xe->d3cold.allowed = false;
>> +		xe->d3cold.allowed = XE_D3HOT;
>>   		return;
>>   	}
>>   
>> @@ -874,9 +874,9 @@ void xe_pm_d3cold_allowed_toggle(struct xe_device *xe)
>>   	mutex_lock(&xe->d3cold.lock);
>>   
>>   	if (total_vram_used_mb < xe->d3cold.vram_threshold)
>> -		xe->d3cold.allowed = true;
>> +		xe->d3cold.allowed = XE_D3COLD_OFF;
>>   	else
>> -		xe->d3cold.allowed = false;
>> +		xe->d3cold.allowed = XE_D3HOT;
>>   
>>   	mutex_unlock(&xe->d3cold.lock);
>>   }
>> diff --git a/drivers/gpu/drm/xe/xe_pm.h b/drivers/gpu/drm/xe/xe_pm.h
>> index c9f176912b46..b7b74757ce21 100644
>> --- a/drivers/gpu/drm/xe/xe_pm.h
>> +++ b/drivers/gpu/drm/xe/xe_pm.h
>> @@ -12,6 +12,12 @@
>>   
>>   struct xe_device;
>>   
>> +enum xe_d3_state {
>> +	XE_D3HOT = 0,
>> +	XE_D3COLD_OFF,
>> +	XE_D3COLD_VRSR,
>> +};
Could you please reorder the enum based on the level of power 
consumption as shown below ?

+enum xe_d3_state {
+    XE_D3HOT = 0,
+    XE_D3COLD_VRSR,
+    XE_D3COLD_OFF,
+};

>> +
>>   int xe_pm_suspend(struct xe_device *xe);
>>   int xe_pm_resume(struct xe_device *xe);
>>   
>> -- 
>> 2.34.1
>>

  reply	other threads:[~2025-04-01  5:24 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-24 16:48 [RFC 0/6] VRAM Self Refresh Anshuman Gupta
2025-02-24 16:48 ` [RFC 1/6] PCI/ACPI: Implement PCI FW _DSM method Anshuman Gupta
2025-02-24 19:40   ` Bjorn Helgaas
2025-02-25 18:25     ` Gupta, Anshuman
2025-02-25 20:30       ` Bjorn Helgaas
2025-02-24 16:48 ` [RFC 2/6] drm/xe/vrsr: Detect vrsr capability Anshuman Gupta
2025-03-07 21:50   ` Rodrigo Vivi
2025-02-24 16:48 ` [RFC 3/6] drm/xe/vrsr: Apis to init and enable VRSR feature Anshuman Gupta
2025-02-24 19:43   ` Bjorn Helgaas
2025-03-10 17:23   ` Rodrigo Vivi
2025-02-24 16:48 ` [RFC 4/6] drm/xe/vrsr: Refactor d3cold.allowed to a enum Anshuman Gupta
2025-03-10 17:28   ` Rodrigo Vivi
2025-04-01  5:24     ` Poosa, Karthik [this message]
2025-02-24 16:48 ` [RFC 5/6] drm/xe/pm: D3Cold target state Anshuman Gupta
2025-02-24 19:45   ` Bjorn Helgaas
2025-02-25 17:49   ` Ville Syrjälä
2025-02-25 18:00     ` Gupta, Anshuman
2025-02-25 18:44       ` Ville Syrjälä
2025-02-24 16:48 ` [RFC 6/6] drm/xe/vrsr: Enable VRSR Anshuman Gupta
2025-04-01  5:19   ` [RFC,6/6] " Poosa, Karthik

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=68e05f3d-96e0-40f4-b2af-d6e297195de5@intel.com \
    --to=karthik.poosa@intel.com \
    --cc=anshuman.gupta@intel.com \
    --cc=badal.nilawar@intel.com \
    --cc=bhelgaas@google.com \
    --cc=ilpo.jarvinen@linux.intel.com \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=kam.nasim@intel.com \
    --cc=lenb@kernel.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=lucas.demarchi@intel.com \
    --cc=rafael@kernel.org \
    --cc=rodrigo.vivi@intel.com \
    /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