Skip to content

Commit

Permalink
drm/xe/pm: Add vram_d3cold_threshold for d3cold capable device
Browse files Browse the repository at this point in the history
Do not register vram_d3cold_threshold device sysfs universally
for each gfx device, only register sysfs and set the threshold
value for d3cold capable devices.

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Anshuman Gupta <anshuman.gupta@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Link: https://lore.kernel.org/all/20230802070449.2426563-1-anshuman.gupta@intel.com/
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
  • Loading branch information
Anshuman Gupta authored and Rodrigo Vivi committed Dec 21, 2023
1 parent c7e4a61 commit 3d4b0bf
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions drivers/gpu/drm/xe/xe_pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,11 @@ void xe_pm_init(struct xe_device *xe)
drmm_mutex_init(&xe->drm, &xe->d3cold.lock);

xe->d3cold.capable = xe_pm_pci_d3cold_capable(pdev);
xe_device_sysfs_init(xe);
xe_pm_set_vram_threshold(xe, DEFAULT_VRAM_THRESHOLD);

if (xe->d3cold.capable) {
xe_device_sysfs_init(xe);
xe_pm_set_vram_threshold(xe, DEFAULT_VRAM_THRESHOLD);
}

xe_pm_runtime_init(xe);
}
Expand Down

0 comments on commit 3d4b0bf

Please sign in to comment.