Received: by 10.223.164.202 with SMTP id h10csp1994031wrb; Thu, 16 Nov 2017 07:42:38 -0800 (PST) X-Google-Smtp-Source: AGs4zMYO9h+jrafM0+vocYct5rea+vzsRenz8aepmqdpndSxeYvcISXcCenYlCHRU/yXecLWo0ZI X-Received: by 10.101.83.201 with SMTP id z9mr2006412pgr.181.1510846958359; Thu, 16 Nov 2017 07:42:38 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1510846958; cv=none; d=google.com; s=arc-20160816; b=UMtrfTcYGvtw/p0V/rRfQlzECCl5S+KSVGRXqQVBpBB9SSzyG0T/FkAZE6rQ6xpS1O KIHZ1iNxTHlqQUHMPv2irau8WoAW0whgWjk10UqWtaRMlVWlrzN9FebDbng9bCUZXjVr gLLFK7QumDw96p3zVANUReyXfz75SG1AZtaTCjvSCVuYZfOrCmpF70oT0ln4wDfSj8SG W141DZS0/oOBeTLBfogvQoF6YttUjdzEmMJA6x4Lf2HV4oDaFw7EUSQ3O4fwGN1qJvtn +E/iAQ4BDeZmaNl7VSjYtI3lpK6w8m5JzTCx0yZbiRkQLa0M2pYfx2chhxu1tZz+jImJ kxmQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from:arc-authentication-results; bh=YcyJxLDpUpEAeJUAx/mdQ4U8yFOIVgu8XTmXuzYinII=; b=CqXQ3xlOsMspIcErJbZEK1PVFceKP4j/C9D8N7NnhqpzJlLH9UK6bBiYzSn3nwDSjd Q1Ht2vIDonFMuw3QZ+yt02gX2S3GK4WXvkjNeZVGU2JHIawbt0zaPuHMs1tUsK5NKjNm vfPVFBHEjgvy/W5TQgNtnqNPxSlTLr9ndT6fsS2Enjx8iX3dcrabCYHHJMFenm2+OSRO H+zfyeHDrg3pSeru1dqhQ7NqlJf4uOmn2t2duVzKslic341EIXJZQUlbvZLcq686a2CW zNjoWLWD5MYY955SRglT3WFkAfKWjqPQORO/JfUO58Y8L+E+6TwP7GhPjsrG9oEfzq00 ywtg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id n1si1047559pgc.308.2017.11.16.07.42.23; Thu, 16 Nov 2017 07:42:38 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965014AbdKPN6t (ORCPT + 91 others); Thu, 16 Nov 2017 08:58:49 -0500 Received: from mga04.intel.com ([192.55.52.120]:26946 "EHLO mga04.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S935141AbdKPN6R (ORCPT ); Thu, 16 Nov 2017 08:58:17 -0500 Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 16 Nov 2017 02:14:54 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.44,402,1505804400"; d="scan'208";a="176875102" Received: from skchakra-desk.iind.intel.com ([10.66.254.85]) by fmsmga006.fm.intel.com with ESMTP; 16 Nov 2017 02:14:52 -0800 From: Souvik Kumar Chakravarty To: platform-driver-x86@vger.kernel.org Cc: dvhart@infradead.org, andy@infradead.org, linux-kernel@vger.kernel.org, rajneesh.bhardwaj@intel.com, Souvik Kumar Chakravarty Subject: [PATCH v1 2/5] platform/x86: intel_telemetry: Fix suspend stats Date: Thu, 16 Nov 2017 15:48:14 +0530 Message-Id: <1510827497-25188-3-git-send-email-souvik.k.chakravarty@intel.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1510827497-25188-1-git-send-email-souvik.k.chakravarty@intel.com> References: <1510827497-25188-1-git-send-email-souvik.k.chakravarty@intel.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Suspend stats are not reported consistently due to a limitation in the PMC firmware. This limitation causes a delay in updating the s0ix counters and residencies in the telemetry log upon s0ix exit. As a consequence, reading these counters from the suspend-exit notifier may result in zero read. This patch fixes this issue by cross-verifying the s0ix residencies from the GCR TELEM registers in case the counters are not incremented in the telemetry log after suspend. This fixes https://bugzilla.kernel.org/show_bug.cgi?id=197833 Reported-and-tested-by: Rajneesh Bhardwaj Signed-off-by: Souvik Kumar Chakravarty --- drivers/platform/x86/intel_telemetry_debugfs.c | 39 ++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/drivers/platform/x86/intel_telemetry_debugfs.c b/drivers/platform/x86/intel_telemetry_debugfs.c index 4249e826..d0fce8c 100644 --- a/drivers/platform/x86/intel_telemetry_debugfs.c +++ b/drivers/platform/x86/intel_telemetry_debugfs.c @@ -74,6 +74,8 @@ #define TELEM_IOSS_DX_D0IX_EVTS 25 #define TELEM_IOSS_PG_EVTS 30 +#define TELEM_LO_HI_TO64(lo, hi) ((u64)(lo) + ((u64)(hi)<<32)) + #define TELEM_DEBUGFS_CPU(model, data) \ { X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, (unsigned long)&data} @@ -858,6 +860,7 @@ static int pm_suspend_exit_cb(void) static u32 suspend_shlw_ctr_exit, suspend_deep_ctr_exit; static u64 suspend_shlw_res_exit, suspend_deep_res_exit; struct telemetry_debugfs_conf *conf = debugfs_conf; + u32 shlw_lo, shlw_hi, deep_lo, deep_hi; int ret, index; if (!suspend_prep_ok) @@ -890,6 +893,42 @@ static int pm_suspend_exit_cb(void) goto out; } + /* Due to some design limitations in the firmware, sometimes the + * counters do not get updated by the time we reach here. As a + * workaround, we try to see if this was a genuine case of sleep + * failure or not by cross-checking from PMC GCR registers directly. + */ + if ((suspend_shlw_ctr_exit == suspend_shlw_ctr_temp) && + (suspend_deep_ctr_exit == suspend_deep_ctr_temp)) { + ret = intel_pmc_gcr_read(PMC_GCR_TELEM_SHLW_S0IX_LO_REG, + &shlw_lo); + if (ret < 0) + goto out; + + ret = intel_pmc_gcr_read(PMC_GCR_TELEM_SHLW_S0IX_HI_REG, + &shlw_hi); + if (ret < 0) + goto out; + + ret = intel_pmc_gcr_read(PMC_GCR_TELEM_DEEP_S0IX_LO_REG, + &deep_lo); + if (ret < 0) + goto out; + + ret = intel_pmc_gcr_read(PMC_GCR_TELEM_DEEP_S0IX_HI_REG, + &deep_hi); + if (ret < 0) + goto out; + + suspend_shlw_res_exit = TELEM_LO_HI_TO64(shlw_lo, shlw_hi); + if (suspend_shlw_res_exit > suspend_shlw_res_temp) + suspend_shlw_ctr_exit++; + + suspend_deep_res_exit = TELEM_LO_HI_TO64(deep_lo, deep_hi); + if (suspend_deep_res_exit > suspend_deep_res_temp) + suspend_deep_ctr_exit++; + } + suspend_shlw_ctr_exit -= suspend_shlw_ctr_temp; suspend_deep_ctr_exit -= suspend_deep_ctr_temp; suspend_shlw_res_exit -= suspend_shlw_res_temp; -- 2.7.4 From 1583053417100024577@xxx Fri Nov 03 13:56:25 +0000 2017 X-GM-THRID: 1583053417100024577 X-Gmail-Labels: Inbox,Category Forums,HistoricalUnread