Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Nilawar, Badal" <badal.nilawar@intel.com>
To: Karthik Poosa <karthik.poosa@intel.com>,
	<intel-xe@lists.freedesktop.org>
Cc: <anshuman.gupta@intel.com>, <matthew.d.roper@intel.com>
Subject: Re: [PATCH] drm/xe/hwmon: Refactor xe hwmon
Date: Tue, 6 Feb 2024 14:47:32 +0530	[thread overview]
Message-ID: <f4316a0e-2d9f-4ed0-95ed-e87aa74ea707@intel.com> (raw)
In-Reply-To: <20240201180600.434822-1-karthik.poosa@intel.com>



On 01-02-2024 23:36, Karthik Poosa wrote:
> Check latest platform first in xe_hwmon_get_reg.
> Move PVC HWMON registers to regs/xe_pcode.h.
> 
> Suggested-by: Matt Roper <matthew.d.roper@intel.com>
> Signed-off-by: Karthik Poosa <karthik.poosa@intel.com>
Reviewed-by: Badal Nilawar <badal.nilawar@intel.com>
> ---
>   drivers/gpu/drm/xe/regs/xe_gt_regs.h    |  6 ------
>   drivers/gpu/drm/xe/regs/xe_pcode_regs.h | 21 +++++++++++++++++++++
>   drivers/gpu/drm/xe/xe_hwmon.c           | 25 +++++++++++++------------
>   3 files changed, 34 insertions(+), 18 deletions(-)
>   create mode 100644 drivers/gpu/drm/xe/regs/xe_pcode_regs.h
> 
> diff --git a/drivers/gpu/drm/xe/regs/xe_gt_regs.h b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> index cd27480f6486..15ac2d284d48 100644
> --- a/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> +++ b/drivers/gpu/drm/xe/regs/xe_gt_regs.h
> @@ -490,10 +490,4 @@
>   #define   GT_CS_MASTER_ERROR_INTERRUPT		REG_BIT(3)
>   #define   GT_RENDER_USER_INTERRUPT		REG_BIT(0)
>   
> -#define PVC_GT0_PACKAGE_ENERGY_STATUS		XE_REG(0x281004)
> -#define PVC_GT0_PACKAGE_RAPL_LIMIT		XE_REG(0x281008)
> -#define PVC_GT0_PACKAGE_POWER_SKU_UNIT		XE_REG(0x281068)
> -#define PVC_GT0_PLATFORM_ENERGY_STATUS		XE_REG(0x28106c)
> -#define PVC_GT0_PACKAGE_POWER_SKU		XE_REG(0x281080)
> -
>   #endif
> diff --git a/drivers/gpu/drm/xe/regs/xe_pcode_regs.h b/drivers/gpu/drm/xe/regs/xe_pcode_regs.h
> new file mode 100644
> index 000000000000..3dae858508c8
> --- /dev/null
> +++ b/drivers/gpu/drm/xe/regs/xe_pcode_regs.h
> @@ -0,0 +1,21 @@
> +/* SPDX-License-Identifier: MIT */
> +/*
> + * Copyright © 2024 Intel Corporation
> + */
> +
> +#ifndef _XE_PCODE_REGS_H_
> +#define _XE_PCODE_REGS_H_
> +
> +#include "regs/xe_reg_defs.h"
> +
> +/*
> + * This file contains addresses of PCODE registers visible through GT MMIO space.
> + */
> +
> +#define PVC_GT0_PACKAGE_ENERGY_STATUS           XE_REG(0x281004)
> +#define PVC_GT0_PACKAGE_RAPL_LIMIT              XE_REG(0x281008)
> +#define PVC_GT0_PACKAGE_POWER_SKU_UNIT          XE_REG(0x281068)
> +#define PVC_GT0_PLATFORM_ENERGY_STATUS          XE_REG(0x28106c)
> +#define PVC_GT0_PACKAGE_POWER_SKU               XE_REG(0x281080)
> +
> +#endif /* _XE_PCODE_REGS_H_ */
> diff --git a/drivers/gpu/drm/xe/xe_hwmon.c b/drivers/gpu/drm/xe/xe_hwmon.c
> index 89c6f7f84b5a..f0194d5121a5 100644
> --- a/drivers/gpu/drm/xe/xe_hwmon.c
> +++ b/drivers/gpu/drm/xe/xe_hwmon.c
> @@ -10,6 +10,7 @@
>   #include <drm/drm_managed.h>
>   #include "regs/xe_gt_regs.h"
>   #include "regs/xe_mchbar_regs.h"
> +#include "regs/xe_pcode_regs.h"
>   #include "xe_device.h"
>   #include "xe_gt.h"
>   #include "xe_hwmon.h"
> @@ -77,32 +78,32 @@ static u32 xe_hwmon_get_reg(struct xe_hwmon *hwmon, enum xe_hwmon_reg hwmon_reg)
>   
>   	switch (hwmon_reg) {
>   	case REG_PKG_RAPL_LIMIT:
> -		if (xe->info.platform == XE_DG2)
> -			reg = PCU_CR_PACKAGE_RAPL_LIMIT;
> -		else if (xe->info.platform == XE_PVC)
> +		if (xe->info.platform == XE_PVC)
>   			reg = PVC_GT0_PACKAGE_RAPL_LIMIT;
> +		else if (xe->info.platform == XE_DG2)
> +			reg = PCU_CR_PACKAGE_RAPL_LIMIT;
>   		break;
>   	case REG_PKG_POWER_SKU:
> -		if (xe->info.platform == XE_DG2)
> -			reg = PCU_CR_PACKAGE_POWER_SKU;
> -		else if (xe->info.platform == XE_PVC)
> +		if (xe->info.platform == XE_PVC)
>   			reg = PVC_GT0_PACKAGE_POWER_SKU;
> +		else if (xe->info.platform == XE_DG2)
> +			reg = PCU_CR_PACKAGE_POWER_SKU;
>   		break;
>   	case REG_PKG_POWER_SKU_UNIT:
> -		if (xe->info.platform == XE_DG2)
> -			reg = PCU_CR_PACKAGE_POWER_SKU_UNIT;
> -		else if (xe->info.platform == XE_PVC)
> +		if (xe->info.platform == XE_PVC)
>   			reg = PVC_GT0_PACKAGE_POWER_SKU_UNIT;
> +		else if (xe->info.platform == XE_DG2)
> +			reg = PCU_CR_PACKAGE_POWER_SKU_UNIT;
>   		break;
>   	case REG_GT_PERF_STATUS:
>   		if (xe->info.platform == XE_DG2)
>   			reg = GT_PERF_STATUS;
>   		break;
>   	case REG_PKG_ENERGY_STATUS:
> -		if (xe->info.platform == XE_DG2)
> -			reg = PCU_CR_PACKAGE_ENERGY_STATUS;
> -		else if (xe->info.platform == XE_PVC)
> +		if (xe->info.platform == XE_PVC)
>   			reg = PVC_GT0_PLATFORM_ENERGY_STATUS;
> +		else if (xe->info.platform == XE_DG2)
> +			reg = PCU_CR_PACKAGE_ENERGY_STATUS;
>   		break;
>   	default:
>   		drm_warn(&xe->drm, "Unknown xe hwmon reg id: %d\n", hwmon_reg);

  parent reply	other threads:[~2024-02-06  9:18 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-01 18:06 [PATCH] drm/xe/hwmon: Refactor xe hwmon Karthik Poosa
2024-02-01 19:43 ` ✓ CI.Patch_applied: success for drm/xe/hwmon: Refactor xe hwmon (rev2) Patchwork
2024-02-01 19:44 ` ✗ CI.checkpatch: warning " Patchwork
2024-02-01 19:44 ` ✓ CI.KUnit: success " Patchwork
2024-02-01 19:52 ` ✓ CI.Build: " Patchwork
2024-02-01 19:52 ` ✓ CI.Hooks: " Patchwork
2024-02-01 19:53 ` ✓ CI.checksparse: " Patchwork
2024-02-01 20:17 ` ✓ CI.BAT: " Patchwork
2024-02-06  9:17 ` Nilawar, Badal [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-01-26  7:48 [PATCH] drm/xe/hwmon: Refactor xe hwmon Karthik Poosa
2024-01-26 13:11 ` Gupta, Anshuman
2024-01-26 18:14   ` Matt Roper
2024-01-26 15:04 ` Dong, Zhanjun
2024-01-29 19:55   ` Matt Roper
2024-02-01  4:58 ` Nilawar, Badal

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=f4316a0e-2d9f-4ed0-95ed-e87aa74ea707@intel.com \
    --to=badal.nilawar@intel.com \
    --cc=anshuman.gupta@intel.com \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=karthik.poosa@intel.com \
    --cc=matthew.d.roper@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