All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-xe] [PATCH v4 0/3] drm/xe: Add a flag that can disable GuC PM
@ 2023-11-27 22:22 Vinay Belgaumkar
  2023-11-27 22:22 ` [Intel-xe] [PATCH 1/3] drm/xe: Rename xe_gt_idle_sysfs to xe_gt_idle Vinay Belgaumkar
                   ` (9 more replies)
  0 siblings, 10 replies; 17+ messages in thread
From: Vinay Belgaumkar @ 2023-11-27 22:22 UTC (permalink / raw)
  To: intel-xe

This could be used to enable HW C6 and also debug any GuC related
PM issues.

v3: Rebase
v4: Fix another compile issue

Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>

Vinay Belgaumkar (3):
  drm/xe: Rename xe_gt_idle_sysfs to xe_gt_idle
  drm/xe: Add skip_guc_pc flag
  drm/xe: Manually setup C6 when skip_guc_pc is set

 drivers/gpu/drm/xe/Makefile                   |  2 +-
 drivers/gpu/drm/xe/regs/xe_gt_regs.h          |  4 +++
 drivers/gpu/drm/xe/xe_device_types.h          |  2 ++
 drivers/gpu/drm/xe/xe_gt.c                    |  2 +-
 .../xe/{xe_gt_idle_sysfs.c => xe_gt_idle.c}   | 28 +++++++++++++--
 drivers/gpu/drm/xe/xe_gt_idle.h               | 17 +++++++++
 drivers/gpu/drm/xe/xe_gt_idle_sysfs.h         | 13 -------
 ..._idle_sysfs_types.h => xe_gt_idle_types.h} |  0
 drivers/gpu/drm/xe/xe_gt_types.h              |  2 +-
 drivers/gpu/drm/xe/xe_guc_pc.c                | 35 +++++++++++++++++--
 drivers/gpu/drm/xe/xe_pci.c                   |  2 ++
 11 files changed, 86 insertions(+), 21 deletions(-)
 rename drivers/gpu/drm/xe/{xe_gt_idle_sysfs.c => xe_gt_idle.c} (85%)
 create mode 100644 drivers/gpu/drm/xe/xe_gt_idle.h
 delete mode 100644 drivers/gpu/drm/xe/xe_gt_idle_sysfs.h
 rename drivers/gpu/drm/xe/{xe_gt_idle_sysfs_types.h => xe_gt_idle_types.h} (100%)

-- 
2.38.1


^ permalink raw reply	[flat|nested] 17+ messages in thread
* [Intel-xe] [PATCH v3 0/3] drm/xe: Add a flag that can disable GuC PM
@ 2023-11-27 19:58 Vinay Belgaumkar
  2023-11-27 19:58 ` [Intel-xe] [PATCH 3/3] drm/xe: Manually setup C6 when skip_guc_pc is set Vinay Belgaumkar
  0 siblings, 1 reply; 17+ messages in thread
From: Vinay Belgaumkar @ 2023-11-27 19:58 UTC (permalink / raw)
  To: intel-xe

This could be used to enable HW C6 and also debug any GuC related
PM issues.

v3: Rebase

Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>

Vinay Belgaumkar (3):
  drm/xe: Rename xe_gt_idle_sysfs to xe_gt_idle
  drm/xe: Add skip_guc_pc flag
  drm/xe: Manually setup C6 when skip_guc_pc is set

 drivers/gpu/drm/xe/Makefile                   |  2 +-
 drivers/gpu/drm/xe/regs/xe_gt_regs.h          |  4 +++
 drivers/gpu/drm/xe/xe_gt.c                    |  2 +-
 .../xe/{xe_gt_idle_sysfs.c => xe_gt_idle.c}   | 28 +++++++++++++--
 drivers/gpu/drm/xe/xe_gt_idle.h               | 17 +++++++++
 drivers/gpu/drm/xe/xe_gt_idle_sysfs.h         | 13 -------
 ..._idle_sysfs_types.h => xe_gt_idle_types.h} |  0
 drivers/gpu/drm/xe/xe_gt_types.h              |  2 +-
 drivers/gpu/drm/xe/xe_guc_pc.c                | 35 +++++++++++++++++--
 drivers/gpu/drm/xe/xe_pci.c                   |  2 ++
 10 files changed, 84 insertions(+), 21 deletions(-)
 rename drivers/gpu/drm/xe/{xe_gt_idle_sysfs.c => xe_gt_idle.c} (85%)
 create mode 100644 drivers/gpu/drm/xe/xe_gt_idle.h
 delete mode 100644 drivers/gpu/drm/xe/xe_gt_idle_sysfs.h
 rename drivers/gpu/drm/xe/{xe_gt_idle_sysfs_types.h => xe_gt_idle_types.h} (100%)

-- 
2.38.1


^ permalink raw reply	[flat|nested] 17+ messages in thread
* [Intel-xe] [PATCH 0/3] drm/xe: Add a flag that can disable GuC PM
@ 2023-11-27 18:54 Vinay Belgaumkar
  2023-11-27 18:54 ` [Intel-xe] [PATCH 3/3] drm/xe: Manually setup C6 when skip_guc_pc is set Vinay Belgaumkar
  0 siblings, 1 reply; 17+ messages in thread
From: Vinay Belgaumkar @ 2023-11-27 18:54 UTC (permalink / raw)
  To: intel-xe

This could be used to enable HW C6 and also debug any GuC related
PM issues.

Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>

Vinay Belgaumkar (3):
  drm/xe: Rename xe_gt_idle_sysfs to xe_gt_idle
  drm/xe: Add skip_guc_pc flag
  drm/xe: Manually setup C6 when skip_guc_pc is set

 drivers/gpu/drm/xe/Makefile                   |  2 +-
 drivers/gpu/drm/xe/regs/xe_gt_regs.h          |  4 +++
 drivers/gpu/drm/xe/xe_device_types.h          |  2 ++
 drivers/gpu/drm/xe/xe_gt.c                    |  2 +-
 .../xe/{xe_gt_idle_sysfs.c => xe_gt_idle.c}   | 28 +++++++++++++--
 drivers/gpu/drm/xe/xe_gt_idle.h               | 17 +++++++++
 drivers/gpu/drm/xe/xe_gt_idle_sysfs.h         | 13 -------
 ..._idle_sysfs_types.h => xe_gt_idle_types.h} |  0
 drivers/gpu/drm/xe/xe_gt_types.h              |  2 +-
 drivers/gpu/drm/xe/xe_guc_pc.c                | 35 +++++++++++++++++--
 drivers/gpu/drm/xe/xe_pci.c                   |  2 ++
 11 files changed, 86 insertions(+), 21 deletions(-)
 rename drivers/gpu/drm/xe/{xe_gt_idle_sysfs.c => xe_gt_idle.c} (85%)
 create mode 100644 drivers/gpu/drm/xe/xe_gt_idle.h
 delete mode 100644 drivers/gpu/drm/xe/xe_gt_idle_sysfs.h
 rename drivers/gpu/drm/xe/{xe_gt_idle_sysfs_types.h => xe_gt_idle_types.h} (100%)

-- 
2.38.1


^ permalink raw reply	[flat|nested] 17+ messages in thread
* [Intel-xe] [PATCH 0/3] drm/xe: Add a flag that can disable GuC PM
@ 2023-11-22 21:04 Vinay Belgaumkar
  2023-11-22 21:04 ` [Intel-xe] [PATCH 3/3] drm/xe: Manually setup C6 when skip_guc_pc is set Vinay Belgaumkar
  0 siblings, 1 reply; 17+ messages in thread
From: Vinay Belgaumkar @ 2023-11-22 21:04 UTC (permalink / raw)
  To: intel-xe

This could be used to enable HW C6 and also debug any GuC related
PM issues.

Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>

Vinay Belgaumkar (3):
  drm/xe: Rename xe_gt_idle_sysfs to xe_gt_idle
  drm/xe: Add skip_guc_pc flag
  drm/xe: Manually setup C6 when skip_guc_pc is set

 drivers/gpu/drm/xe/Makefile                   |  2 +-
 drivers/gpu/drm/xe/regs/xe_gt_regs.h          |  4 +++
 drivers/gpu/drm/xe/xe_device_types.h          |  2 ++
 drivers/gpu/drm/xe/xe_gt.c                    |  2 +-
 .../xe/{xe_gt_idle_sysfs.c => xe_gt_idle.c}   | 28 +++++++++++++--
 drivers/gpu/drm/xe/xe_gt_idle.h               | 15 ++++++++
 drivers/gpu/drm/xe/xe_gt_idle_sysfs.h         | 13 -------
 ..._idle_sysfs_types.h => xe_gt_idle_types.h} |  0
 drivers/gpu/drm/xe/xe_gt_types.h              |  2 +-
 drivers/gpu/drm/xe/xe_guc_pc.c                | 35 +++++++++++++++++--
 drivers/gpu/drm/xe/xe_pci.c                   |  2 ++
 11 files changed, 84 insertions(+), 21 deletions(-)
 rename drivers/gpu/drm/xe/{xe_gt_idle_sysfs.c => xe_gt_idle.c} (85%)
 create mode 100644 drivers/gpu/drm/xe/xe_gt_idle.h
 delete mode 100644 drivers/gpu/drm/xe/xe_gt_idle_sysfs.h
 rename drivers/gpu/drm/xe/{xe_gt_idle_sysfs_types.h => xe_gt_idle_types.h} (100%)

-- 
2.38.1


^ permalink raw reply	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2023-11-28 21:34 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-27 22:22 [Intel-xe] [PATCH v4 0/3] drm/xe: Add a flag that can disable GuC PM Vinay Belgaumkar
2023-11-27 22:22 ` [Intel-xe] [PATCH 1/3] drm/xe: Rename xe_gt_idle_sysfs to xe_gt_idle Vinay Belgaumkar
2023-11-28 21:31   ` Rodrigo Vivi
2023-11-27 22:22 ` [Intel-xe] [PATCH 2/3] drm/xe: Add skip_guc_pc flag Vinay Belgaumkar
2023-11-28 21:32   ` Rodrigo Vivi
2023-11-27 22:22 ` [Intel-xe] [PATCH 3/3] drm/xe: Manually setup C6 when skip_guc_pc is set Vinay Belgaumkar
2023-11-28 21:33   ` Rodrigo Vivi
2023-11-27 22:52 ` [Intel-xe] ✓ CI.Patch_applied: success for drm/xe: Add a flag that can disable GuC PM (rev4) Patchwork
2023-11-27 22:52 ` [Intel-xe] ✗ CI.checkpatch: warning " Patchwork
2023-11-27 22:53 ` [Intel-xe] ✓ CI.KUnit: success " Patchwork
2023-11-27 23:00 ` [Intel-xe] ✓ CI.Build: " Patchwork
2023-11-27 23:01 ` [Intel-xe] ✓ CI.Hooks: " Patchwork
2023-11-27 23:02 ` [Intel-xe] ✓ CI.checksparse: " Patchwork
2023-11-27 23:37 ` [Intel-xe] ✓ CI.BAT: " Patchwork
  -- strict thread matches above, loose matches on Subject: below --
2023-11-27 19:58 [Intel-xe] [PATCH v3 0/3] drm/xe: Add a flag that can disable GuC PM Vinay Belgaumkar
2023-11-27 19:58 ` [Intel-xe] [PATCH 3/3] drm/xe: Manually setup C6 when skip_guc_pc is set Vinay Belgaumkar
2023-11-27 18:54 [Intel-xe] [PATCH 0/3] drm/xe: Add a flag that can disable GuC PM Vinay Belgaumkar
2023-11-27 18:54 ` [Intel-xe] [PATCH 3/3] drm/xe: Manually setup C6 when skip_guc_pc is set Vinay Belgaumkar
2023-11-22 21:04 [Intel-xe] [PATCH 0/3] drm/xe: Add a flag that can disable GuC PM Vinay Belgaumkar
2023-11-22 21:04 ` [Intel-xe] [PATCH 3/3] drm/xe: Manually setup C6 when skip_guc_pc is set Vinay Belgaumkar

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.