All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-xe] [PATCH v6 0/5] Add HWMON support for DGFX
@ 2023-09-25  8:18 ` Badal Nilawar
  0 siblings, 0 replies; 71+ messages in thread
From: Badal Nilawar @ 2023-09-25  8:18 UTC (permalink / raw)
  To: intel-xe, linux-hwmon; +Cc: linux, rodrigo.vivi

This series adds the hwmon support on xe driver for 
DGFX. This is ported from i915 hwmon. 

v3: Fix review comments (Matt Brost/Andi) 

v4:
  - Squashed "Add HWMON infrastructure" patch to "Expose power attributes"
  - Dropped changes related to disable PL1 to boost firmware loading. 
    Will handle it saperate patch/series.
  - Dropped changes related to gt specific energy attributes. 
    Will handle gt specific energy attributes in saperate patch/series with design
    change suggested by Guenter
  - Fix review comments (Andi/Guenter)

v5: Rebased and clean up

v6: 
  - Dropped XE_MISSING_CASE patch
  - Fix couple of review comments 

Badal Nilawar (5):
  drm/xe/hwmon: Expose power attributes
  drm/xe/hwmon: Expose card reactive critical power
  drm/xe/hwmon: Expose input voltage attribute
  drm/xe/hwmon: Expose hwmon energy attribute
  drm/xe/hwmon: Expose power1_max_interval

 .../ABI/testing/sysfs-driver-intel-xe-hwmon   |  72 ++
 drivers/gpu/drm/xe/Makefile                   |   3 +
 drivers/gpu/drm/xe/regs/xe_gt_regs.h          |   9 +
 drivers/gpu/drm/xe/regs/xe_mchbar_regs.h      |  44 +
 drivers/gpu/drm/xe/xe_device.c                |   3 +
 drivers/gpu/drm/xe/xe_device_types.h          |   2 +
 drivers/gpu/drm/xe/xe_hwmon.c                 | 757 ++++++++++++++++++
 drivers/gpu/drm/xe/xe_hwmon.h                 |  19 +
 drivers/gpu/drm/xe/xe_pcode.h                 |   5 +
 drivers/gpu/drm/xe/xe_pcode_api.h             |   7 +
 10 files changed, 921 insertions(+)
 create mode 100644 Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
 create mode 100644 drivers/gpu/drm/xe/regs/xe_mchbar_regs.h
 create mode 100644 drivers/gpu/drm/xe/xe_hwmon.c
 create mode 100644 drivers/gpu/drm/xe/xe_hwmon.h

-- 
2.25.1


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

end of thread, other threads:[~2023-10-04 16:12 UTC | newest]

Thread overview: 71+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-25  8:18 [Intel-xe] [PATCH v6 0/5] Add HWMON support for DGFX Badal Nilawar
2023-09-25  8:18 ` Badal Nilawar
2023-09-25  8:18 ` [Intel-xe] [PATCH v6 1/5] drm/xe/hwmon: Expose power attributes Badal Nilawar
2023-09-25  8:18   ` Badal Nilawar
2023-09-25  8:58   ` [Intel-xe] " Andi Shyti
2023-09-25  8:58     ` Andi Shyti
2023-09-27  4:45   ` [Intel-xe] " Dixit, Ashutosh
2023-09-27  4:45     ` Dixit, Ashutosh
2023-09-27 10:28     ` [Intel-xe] " Nilawar, Badal
2023-09-27 10:28       ` Nilawar, Badal
2023-09-28  4:54       ` [Intel-xe] " Dixit, Ashutosh
2023-09-28  4:54         ` Dixit, Ashutosh
2023-09-27  4:53   ` [Intel-xe] " Dixit, Ashutosh
2023-09-27  4:53     ` Dixit, Ashutosh
2023-09-27  8:39     ` [Intel-xe] " Nilawar, Badal
2023-09-27  8:39       ` Nilawar, Badal
2023-09-28  4:55       ` [Intel-xe] " Dixit, Ashutosh
2023-09-28  4:55         ` Dixit, Ashutosh
2023-09-29  6:37         ` [Intel-xe] " Nilawar, Badal
2023-09-29  6:37           ` Nilawar, Badal
2023-09-29 16:48           ` [Intel-xe] " Dixit, Ashutosh
2023-09-29 16:48             ` Dixit, Ashutosh
2023-09-29 21:41             ` [Intel-xe] " Dixit, Ashutosh
2023-09-29 21:41               ` Dixit, Ashutosh
2023-10-04  0:52               ` [Intel-xe] " Dixit, Ashutosh
2023-10-04  0:52                 ` Dixit, Ashutosh
2023-10-04  6:43                 ` Nilawar, Badal
2023-10-04  6:43                   ` Nilawar, Badal
2023-10-04 15:56                   ` Rodrigo Vivi
2023-10-04 15:56                     ` Rodrigo Vivi
2023-10-04 16:11                     ` Rodrigo Vivi
2023-10-04 16:11                       ` Rodrigo Vivi
2023-10-04 10:18               ` Nilawar, Badal
2023-10-04 10:18                 ` Nilawar, Badal
2023-09-28  4:55   ` [Intel-xe] " Dixit, Ashutosh
2023-09-28  4:55     ` Dixit, Ashutosh
2023-09-25  8:18 ` [Intel-xe] [PATCH v6 2/5] drm/xe/hwmon: Expose card reactive critical power Badal Nilawar
2023-09-25  8:18   ` Badal Nilawar
2023-09-25  9:03   ` [Intel-xe] " Andi Shyti
2023-09-25  9:03     ` Andi Shyti
2023-09-25  8:18 ` [Intel-xe] [PATCH v6 3/5] drm/xe/hwmon: Expose input voltage attribute Badal Nilawar
2023-09-25  8:18   ` Badal Nilawar
2023-09-25  9:04   ` [Intel-xe] " Andi Shyti
2023-09-25  9:04     ` Andi Shyti
2023-09-25  8:18 ` [Intel-xe] [PATCH v6 4/5] drm/xe/hwmon: Expose hwmon energy attribute Badal Nilawar
2023-09-25  8:18   ` Badal Nilawar
2023-09-25 11:49   ` [Intel-xe] " Andi Shyti
2023-09-25 11:49     ` Andi Shyti
2023-09-25  8:18 ` [Intel-xe] [PATCH v6 5/5] drm/xe/hwmon: Expose power1_max_interval Badal Nilawar
2023-09-25  8:18   ` Badal Nilawar
2023-09-25 11:56   ` [Intel-xe] " Andi Shyti
2023-09-25 11:56     ` Andi Shyti
     [not found]     ` <e5801f36-2f9a-6d24-7af2-1e7174f2e0b4@intel.com>
2023-09-26  8:01       ` [Intel-xe] " Andi Shyti
2023-09-26  8:01         ` Andi Shyti
2023-09-26  9:00         ` [Intel-xe] " Nilawar, Badal
2023-09-26  9:00           ` Nilawar, Badal
2023-09-26 21:01           ` [Intel-xe] " Andi Shyti
2023-09-26 21:01             ` Andi Shyti
2023-09-27  3:32             ` [Intel-xe] " Dixit, Ashutosh
2023-09-27  3:32               ` Dixit, Ashutosh
2023-09-27  9:04               ` [Intel-xe] " Nilawar, Badal
2023-09-27  9:04                 ` Nilawar, Badal
2023-09-27  9:31                 ` [Intel-xe] " Gupta, Anshuman
2023-09-27  9:31                   ` Gupta, Anshuman
2023-09-25  8:20 ` [Intel-xe] ✓ CI.Patch_applied: success for Add HWMON support for DGFX (rev6) Patchwork
2023-09-25  8:20 ` [Intel-xe] ✗ CI.checkpatch: warning " Patchwork
2023-09-25  8:21 ` [Intel-xe] ✓ CI.KUnit: success " Patchwork
2023-09-25  8:28 ` [Intel-xe] ✓ CI.Build: " Patchwork
2023-09-25  8:28 ` [Intel-xe] ✗ CI.Hooks: failure " Patchwork
2023-09-25  8:30 ` [Intel-xe] ✓ CI.checksparse: success " Patchwork
2023-09-25  9:04 ` [Intel-xe] ✗ CI.BAT: failure " Patchwork

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.