public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
To: "David E. Box" <david.e.box@linux.intel.com>,
	rajvi.jingar@linux.intel.com,
	platform-driver-x86@vger.kernel.org,
	linux-kernel@vger.kernel.org, hdegoede@redhat.com,
	ilpo.jarvinen@linux.intel.com
Subject: Re: [PATCH 2/3] platform/x86/intel/pmc/lnl: Remove SSRAM support
Date: Thu, 22 Feb 2024 19:06:01 -0800	[thread overview]
Message-ID: <98369369-9569-4c7a-8827-269fcc71a3de@linux.intel.com> (raw)
In-Reply-To: <20240221211204.515159-2-david.e.box@linux.intel.com>


On 2/21/24 1:12 PM, David E. Box wrote:
> A recent PMC firmware change in Lunar Lake caused the pmc_core driver to
> fail to probe. This is due to a change in the GUID for PMC telemetry
> coming from the SSRAM device. We are told the current update may change
> again before a final release so we can't upstream a fix just yet. In the
> meantime, remove SSRAM support for Lunar Lake so the driver can load and
> provide some basic functionality.

I would remove usage of "We" and just comment that that the value
is expected to change again. So disable the support till it is finalized.

>
> Fixes: 3748dfdae2a6 ("platform/x86/intel/pmc: Add Lunar Lake M support to intel_pmc_core driver")
> Signed-off-by: David E. Box <david.e.box@linux.intel.com>
> ---

Change looks fine to me.

Reviewed-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
>  drivers/platform/x86/intel/pmc/lnl.c | 38 +++-------------------------
>  1 file changed, 4 insertions(+), 34 deletions(-)
>
> diff --git a/drivers/platform/x86/intel/pmc/lnl.c b/drivers/platform/x86/intel/pmc/lnl.c
> index abad17cdd3d7..068d72504683 100644
> --- a/drivers/platform/x86/intel/pmc/lnl.c
> +++ b/drivers/platform/x86/intel/pmc/lnl.c
> @@ -13,21 +13,6 @@
>  
>  #include "core.h"
>  
> -#define SOCM_LPM_REQ_GUID	0x11594920
> -
> -#define PMC_DEVID_SOCM	0xa87f
> -
> -static const u8 LNL_LPM_REG_INDEX[] = {0, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20};
> -
> -static struct pmc_info lnl_pmc_info_list[] = {
> -	{
> -		.guid	= SOCM_LPM_REQ_GUID,
> -		.devid	= PMC_DEVID_SOCM,
> -		.map	= &lnl_socm_reg_map,
> -	},
> -	{}
> -};
> -
>  const struct pmc_bit_map lnl_ltr_show_map[] = {
>  	{"SOUTHPORT_A",		CNP_PMC_LTR_SPA},
>  	{"SOUTHPORT_B",		CNP_PMC_LTR_SPB},
> @@ -490,7 +475,6 @@ const struct pmc_reg_map lnl_socm_reg_map = {
>  	.lpm_sts = lnl_lpm_maps,
>  	.lpm_status_offset = MTL_LPM_STATUS_OFFSET,
>  	.lpm_live_status_offset = MTL_LPM_LIVE_STATUS_OFFSET,
> -	.lpm_reg_index = LNL_LPM_REG_INDEX,
>  };
>  
>  #define LNL_NPU_PCI_DEV		0x643e
> @@ -517,33 +501,19 @@ static int lnl_resume(struct pmc_dev *pmcdev)
>  int lnl_core_init(struct pmc_dev *pmcdev)
>  {
>  	int ret;
> -	int func = 2;
> -	bool ssram_init = true;
>  	struct pmc *pmc = pmcdev->pmcs[PMC_IDX_SOC];
>  
>  	lnl_d3_fixup();
>  
>  	pmcdev->suspend = cnl_suspend;
>  	pmcdev->resume = lnl_resume;
> -	pmcdev->regmap_list = lnl_pmc_info_list;
> -	ret = pmc_core_ssram_init(pmcdev, func);
>  
> -	/* If regbase not assigned, set map and discover using legacy method */
> -	if (ret) {
> -		ssram_init = false;
> -		pmc->map = &lnl_socm_reg_map;
> -		ret = get_primary_reg_base(pmc);
> -		if (ret)
> -			return ret;
> -	}
> +	pmc->map = &lnl_socm_reg_map;
> +	ret = get_primary_reg_base(pmc);
> +	if (ret)
> +		return ret;
>  
>  	pmc_core_get_low_power_modes(pmcdev);
>  
> -	if (ssram_init) {
> -		ret = pmc_core_ssram_get_lpm_reqs(pmcdev);
> -		if (ret)
> -			return ret;
> -	}
> -
>  	return 0;
>  }

-- 
Sathyanarayanan Kuppuswamy
Linux Kernel Developer


  reply	other threads:[~2024-02-23  3:06 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-21 21:12 [PATCH 1/3] platform/x86/intel/vsec: Remove nuisance message David E. Box
2024-02-21 21:12 ` [PATCH 2/3] platform/x86/intel/pmc/lnl: Remove SSRAM support David E. Box
2024-02-23  3:06   ` Kuppuswamy Sathyanarayanan [this message]
2024-02-26 15:03   ` Ilpo Järvinen
2024-02-21 21:12 ` [PATCH 3/3] platform/x86/intel/pmc/arl: Put GNA device in D3 David E. Box
2024-02-23  3:09   ` Kuppuswamy Sathyanarayanan
2024-02-26 15:01   ` Ilpo Järvinen
2024-02-23  3:02 ` [PATCH 1/3] platform/x86/intel/vsec: Remove nuisance message Kuppuswamy Sathyanarayanan
2024-02-26 14:54 ` Ilpo Järvinen

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=98369369-9569-4c7a-8827-269fcc71a3de@linux.intel.com \
    --to=sathyanarayanan.kuppuswamy@linux.intel.com \
    --cc=david.e.box@linux.intel.com \
    --cc=hdegoede@redhat.com \
    --cc=ilpo.jarvinen@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=platform-driver-x86@vger.kernel.org \
    --cc=rajvi.jingar@linux.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