]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
platform/x86: intel_pmc_ipc: use gcr mem base for S0ix counter read
authorKuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Sun, 9 Apr 2017 22:00:21 +0000 (15:00 -0700)
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Fri, 28 Apr 2017 18:51:28 +0000 (21:51 +0300)
To maintain the uniformity in accessing GCR registers, this patch
modifies the S0ix counter read function to use GCR address base
instead of ipc address base.

Signed-off-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Reviewed-by: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
Tested-by: Shanth Murthy <shanth.murthy@intel.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
arch/x86/include/asm/intel_pmc_ipc.h
drivers/platform/x86/intel_pmc_ipc.c

index 8402efef10ad30e712a729aa929ecd52dad5f819..fac89eb78a6bd150c70bbcd71e684929f53ae0fc 100644 (file)
@@ -25,6 +25,8 @@
 
 /* GCR reg offsets from gcr base*/
 #define PMC_GCR_PMC_CFG_REG            0x08
+#define PMC_GCR_TELEM_DEEP_S0IX_REG    0x78
+#define PMC_GCR_TELEM_SHLW_S0IX_REG    0x80
 
 #if IS_ENABLED(CONFIG_INTEL_PMC_IPC)
 
index 0a39b0f17bbeba012e59967385b819cf866f8918..e4d4dfe3e1d1b5950cd1723ea60e343a4d140875 100644 (file)
 #define IPC_WRITE_BUFFER       0x80
 #define IPC_READ_BUFFER                0x90
 
-/* PMC Global Control Registers */
-#define GCR_TELEM_DEEP_S0IX_OFFSET     0x1078
-#define GCR_TELEM_SHLW_S0IX_OFFSET     0x1080
-
 /* Residency with clock rate at 19.2MHz to usecs */
 #define S0IX_RESIDENCY_IN_USECS(d, s)          \
 ({                                             \
@@ -202,7 +198,7 @@ static inline u32 ipc_data_readl(u32 offset)
 
 static inline u64 gcr_data_readq(u32 offset)
 {
-       return readq(ipcdev.ipc_base + offset);
+       return readq(ipcdev.gcr_mem_base + offset);
 }
 
 static inline int is_gcr_valid(u32 offset)
@@ -902,8 +898,8 @@ int intel_pmc_s0ix_counter_read(u64 *data)
        if (!ipcdev.has_gcr_regs)
                return -EACCES;
 
-       deep = gcr_data_readq(GCR_TELEM_DEEP_S0IX_OFFSET);
-       shlw = gcr_data_readq(GCR_TELEM_SHLW_S0IX_OFFSET);
+       deep = gcr_data_readq(PMC_GCR_TELEM_DEEP_S0IX_REG);
+       shlw = gcr_data_readq(PMC_GCR_TELEM_SHLW_S0IX_REG);
 
        *data = S0IX_RESIDENCY_IN_USECS(deep, shlw);