From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751484AbdJENCm (ORCPT ); Thu, 5 Oct 2017 09:02:42 -0400 Received: from cloudserver094114.home.net.pl ([79.96.170.134]:50047 "EHLO cloudserver094114.home.net.pl" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751280AbdJENCj (ORCPT ); Thu, 5 Oct 2017 09:02:39 -0400 From: "Rafael J. Wysocki" To: Srinivas Pandruvada Cc: "Rafael J. Wysocki" , Lv , Len Brown , ACPI Devel Maling List , Linux Kernel Mailing List Subject: Re: [PATCH] ACPI / LPIT: Add Low Power Idle Table (LPIT) support Date: Thu, 05 Oct 2017 14:53:15 +0200 Message-ID: <2963401.h7Kb59fPkb@aspire.rjw.lan> In-Reply-To: <1507166834.13183.2.camel@linux.intel.com> References: <1507160613-56852-1-git-send-email-srinivas.pandruvada@linux.intel.com> <1507166834.13183.2.camel@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thursday, October 5, 2017 3:27:14 AM CEST Srinivas Pandruvada wrote: > On Thu, 2017-10-05 at 02:51 +0200, Rafael J. Wysocki wrote: > > On Thu, Oct 5, 2017 at 2:39 AM, Srinivas Pandruvada > > wrote: > > > > > > On Thu, 2017-10-05 at 02:10 +0200, Rafael J. Wysocki wrote: > > > > > > > > On Thu, Oct 5, 2017 at 1:43 AM, Srinivas Pandruvada > > > > wrote: > > > > > > > > > > > > > > > Added functionality to read LPIT table, which provides: > > > > > > > > > > - Sysfs interface to read residency counters via > > > > > /sys/devices/system/cpu/cpuidle/low_power_idle_cpu_residency_us > > > > > /sys/devices/system/cpu/cpuidle/low_power_idle_system_residency > > > > > _us > > > > > > > > > > > > > [...] > > > > > > > > > > > > > > > > > +int lpit_read_residency_count_address(u64 *address) > > > > > +{ > > > > > + if (!residency_info_mem.gaddr.address) > > > > > + return -EINVAL; > > > > > + > > > > > + *address = residency_info_mem.gaddr.address; > > > > > + > > > > > + return 0; > > > > > +} > > > > I don't see users of this. Are there any? > > > The user will be pmc_core_driver which will go through platform x86 > > > drivers tree. > > OK > > > > > > > > Also some mei drivers will also need. > > What for? > They also need to get the PMC base address. Fair enough. > [...] > > > > > + > > > > > +#endif > > > > > +#endif > > > > The above can go into internal.h or sleep.h in drivers/acpi/ IMO. > > > > There's not need to export it. > > > The pmc core driver is in drivers/platform/x86. Do you want to > > > include > > > a local file from there? > > So the _init() thing can go to internal.h and the one-line header of > > the other one can go to include/linux/acpi.h just fine. > OK. > > > > > And it would be good to mention what is going to use it in the > > changelog. > It is already described in the change log for pmc core driver. OK, I seem to have overlooked that, sorry. Thanks, Rafael