From: Riana Tauro <riana.tauro@intel.com>
To: Badal Nilawar <badal.nilawar@intel.com>,
<intel-xe@lists.freedesktop.org>, <linux-hwmon@vger.kernel.org>
Cc: linux@roeck-us.net
Subject: Re: [Intel-xe] [PATCH v4 4/6] drm/xe/hwmon: Expose input voltage attribute
Date: Fri, 8 Sep 2023 12:26:50 +0530 [thread overview]
Message-ID: <a1472f2b-2c8d-8213-72eb-6e5f60ce6d15@intel.com> (raw)
In-Reply-To: <20230904182258.2291881-5-badal.nilawar@intel.com>
On 9/4/2023 11:52 PM, Badal Nilawar wrote:
> Use Xe HWMON subsystem to display the input voltage.
>
> v2:
> - Rename hwm_get_vltg to hwm_get_voltage (Riana)
> - Use scale factor SF_VOLTAGE (Riana)
> v3:
> - %s/gt_perf_status/REG_GT_PERF_STATUS/
> - Remove platform check from hwmon_get_voltage()
> v4:
> - Fix review comments (Andi)
>
> Signed-off-by: Badal Nilawar <badal.nilawar@intel.com>
LGTM
Reviewed-by: Riana Tauro <riana.tauro@intel.com>
> ---
> .../ABI/testing/sysfs-driver-intel-xe-hwmon | 6 ++
> drivers/gpu/drm/xe/regs/xe_gt_regs.h | 3 +
> drivers/gpu/drm/xe/xe_hwmon.c | 58 +++++++++++++++++++
> 3 files changed, 67 insertions(+)
>
> diff --git a/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon b/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
> index 37263b09b6e4..7f9407c20864 100644
> --- a/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
> +++ b/Documentation/ABI/testing/sysfs-driver-intel-xe-hwmon
> @@ -44,5 +44,11 @@ Description: RW. Card reactive critical (I1) power limit in milliamperes.
> the operating frequency if the power averaged over a window
> exceeds this limit.
>
> +What: /sys/devices/.../hwmon/hwmon<i>/in0_input
> +Date: September 2023
> +KernelVersion: 6.5
> +Contact: intel-xe@lists.freedesktop.org
> +Description: RO. Current Voltage in millivolt.
> +
> Only supported for particular Intel xe graphics platforms.
>
> diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> index 32adfce8b2db..7ca84a710ce7 100644
> --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> @@ -369,6 +369,9 @@
> #define GT_GFX_RC6_LOCKED XE_REG(0x138104)
> #define GT_GFX_RC6 XE_REG(0x138108)
>
> +#define GT_PERF_STATUS XE_REG(0x1381b4)
> +#define VOLTAGE_MASK REG_GENMASK(10, 0)
> +
> #define GT_INTR_DW(x) XE_REG(0x190018 + ((x) * 4))
>
> #define GUC_SG_INTR_ENABLE XE_REG(0x190038)
> diff --git a/drivers/gpu/drm/xe/xe_hwmon.c b/drivers/gpu/drm/xe/xe_hwmon.c
> index 12298a0e8636..48621a6ea224 100644
> --- a/drivers/gpu/drm/xe/xe_hwmon.c
> +++ b/drivers/gpu/drm/xe/xe_hwmon.c
> @@ -3,7 +3,9 @@
> * Copyright © 2023 Intel Corporation
> */
>
> +#include <linux/hwmon-sysfs.h>
> #include <linux/hwmon.h>
> +#include <linux/types.h>
>
> #include <drm/drm_managed.h>
> #include "regs/xe_mchbar_regs.h"
> @@ -19,6 +21,7 @@ enum xe_hwmon_reg {
> REG_PKG_RAPL_LIMIT,
> REG_PKG_POWER_SKU,
> REG_PKG_POWER_SKU_UNIT,
> + REG_GT_PERF_STATUS,
> };
>
> enum xe_hwmon_reg_operation {
> @@ -32,6 +35,7 @@ enum xe_hwmon_reg_operation {
> */
> #define SF_POWER 1000000 /* microwatts */
> #define SF_CURR 1000 /* milliamperes */
> +#define SF_VOLTAGE 1000 /* millivolts */
>
> struct xe_hwmon {
> struct device *hwmon_dev;
> @@ -66,6 +70,10 @@ static u32 xe_hwmon_get_reg(struct xe_hwmon *hwmon, enum xe_hwmon_reg hwmon_reg)
> else if (xe->info.platform == XE_PVC)
> reg = PVC_GT0_PACKAGE_POWER_SKU_UNIT;
> break;
> + case REG_GT_PERF_STATUS:
> + if (xe->info.platform == XE_DG2)
> + reg = GT_PERF_STATUS;
> + break;
> default:
> XE_MISSING_CASE(hwmon_reg);
> break;
> @@ -189,6 +197,7 @@ static int xe_hwmon_power_rated_max_read(struct xe_hwmon *hwmon, long *value)
> static const struct hwmon_channel_info *hwmon_info[] = {
> HWMON_CHANNEL_INFO(power, HWMON_P_MAX | HWMON_P_RATED_MAX | HWMON_P_CRIT),
> HWMON_CHANNEL_INFO(curr, HWMON_C_CRIT),
> + HWMON_CHANNEL_INFO(in, HWMON_I_INPUT),
> NULL
> };
>
> @@ -211,6 +220,18 @@ static int xe_hwmon_pcode_write_i1(struct xe_gt *gt, u32 uval)
> uval);
> }
>
> +static int xe_hwmon_get_voltage(struct xe_hwmon *hwmon, long *value)
> +{
> + u32 reg_val;
> +
> + xe_hwmon_process_reg(hwmon, REG_GT_PERF_STATUS,
> + REG_READ, ®_val, 0, 0);
> + /* HW register value in units of 2.5 millivolt */
> + *value = DIV_ROUND_CLOSEST(REG_FIELD_GET(VOLTAGE_MASK, reg_val) * 2500, SF_VOLTAGE);
> +
> + return 0;
> +}
> +
> static umode_t
> xe_hwmon_power_is_visible(struct xe_hwmon *hwmon, u32 attr, int chan)
> {
> @@ -319,6 +340,37 @@ xe_hwmon_curr_write(struct xe_hwmon *hwmon, u32 attr, long val)
> }
> }
>
> +static umode_t
> +xe_hwmon_in_is_visible(struct xe_hwmon *hwmon, u32 attr)
> +{
> + switch (attr) {
> + case hwmon_in_input:
> + return xe_hwmon_get_reg(hwmon, REG_GT_PERF_STATUS) ? 0444 : 0;
> + default:
> + return 0;
> + }
> +}
> +
> +static int
> +xe_hwmon_in_read(struct xe_hwmon *hwmon, u32 attr, long *val)
> +{
> + int ret;
> +
> + xe_device_mem_access_get(gt_to_xe(hwmon->gt));
> +
> + switch (attr) {
> + case hwmon_in_input:
> + ret = xe_hwmon_get_voltage(hwmon, val);
> + break;
> + default:
> + ret = -EOPNOTSUPP;
> + }
> +
> + xe_device_mem_access_put(gt_to_xe(hwmon->gt));
> +
> + return ret;
> +}
> +
> static umode_t
> xe_hwmon_is_visible(const void *drvdata, enum hwmon_sensor_types type,
> u32 attr, int channel)
> @@ -335,6 +387,9 @@ xe_hwmon_is_visible(const void *drvdata, enum hwmon_sensor_types type,
> case hwmon_curr:
> ret = xe_hwmon_curr_is_visible(hwmon, attr);
> break;
> + case hwmon_in:
> + ret = xe_hwmon_in_is_visible(hwmon, attr);
> + break;
> default:
> ret = 0;
> break;
> @@ -361,6 +416,9 @@ xe_hwmon_read(struct device *dev, enum hwmon_sensor_types type, u32 attr,
> case hwmon_curr:
> ret = xe_hwmon_curr_read(hwmon, attr, val);
> break;
> + case hwmon_in:
> + ret = xe_hwmon_in_read(hwmon, attr, val);
> + break;
> default:
> ret = -EOPNOTSUPP;
> break;
next prev parent reply other threads:[~2023-09-08 6:57 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-04 18:22 [Intel-xe] [PATCH v4 0/6] Add HWMON support for DGFX Badal Nilawar
2023-09-04 18:22 ` [Intel-xe] [PATCH v4 1/6] drm/xe: Add XE_MISSING_CASE macro Badal Nilawar
2023-09-06 11:13 ` Nilawar, Badal
2023-09-20 13:46 ` Ghimiray, Himal Prasad
2023-09-04 18:22 ` [Intel-xe] [PATCH v4 2/6] drm/xe/hwmon: Expose power attributes Badal Nilawar
2023-09-06 10:23 ` Riana Tauro
2023-09-06 10:58 ` Nilawar, Badal
2023-09-04 18:22 ` [Intel-xe] [PATCH v4 3/6] drm/xe/hwmon: Expose card reactive critical power Badal Nilawar
2023-09-06 14:45 ` Riana Tauro
2023-09-04 18:22 ` [Intel-xe] [PATCH v4 4/6] drm/xe/hwmon: Expose input voltage attribute Badal Nilawar
2023-09-08 6:56 ` Riana Tauro [this message]
2023-09-04 18:22 ` [Intel-xe] [PATCH v4 5/6] drm/xe/hwmon: Expose hwmon energy attribute Badal Nilawar
2023-09-07 5:24 ` Riana Tauro
2023-09-04 18:22 ` [Intel-xe] [PATCH v4 6/6] drm/xe/hwmon: Expose power1_max_interval Badal Nilawar
2023-09-04 18:41 ` [Intel-xe] ✓ CI.Patch_applied: success for Add HWMON support for DGFX (rev4) Patchwork
2023-09-04 18:42 ` [Intel-xe] ✗ CI.checkpatch: warning " Patchwork
2023-09-04 18:43 ` [Intel-xe] ✓ CI.KUnit: success " Patchwork
2023-09-04 18:50 ` [Intel-xe] ✓ CI.Build: " Patchwork
2023-09-04 18:50 ` [Intel-xe] ✗ CI.Hooks: failure " Patchwork
2023-09-04 18:50 ` [Intel-xe] ✗ CI.checksparse: warning " Patchwork
2023-09-04 19:23 ` [Intel-xe] ✗ CI.BAT: failure " Patchwork
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=a1472f2b-2c8d-8213-72eb-6e5f60ce6d15@intel.com \
--to=riana.tauro@intel.com \
--cc=badal.nilawar@intel.com \
--cc=intel-xe@lists.freedesktop.org \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux@roeck-us.net \
/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