2 * Intel Core SoC Power Management Controller Header File
4 * Copyright (c) 2016, Intel Corporation.
7 * Authors: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
8 * Vishwanath Somayaji <vishwanath.somayaji@intel.com>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms and conditions of the GNU General Public License,
12 * version 2, as published by the Free Software Foundation.
14 * This program is distributed in the hope it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
24 /* Sunrise Point Power Management Controller PCI Device ID */
25 #define SPT_PMC_PCI_DEVICE_ID 0x9d21
27 #define SPT_PMC_BASE_ADDR_OFFSET 0x48
28 #define SPT_PMC_SLP_S0_RES_COUNTER_OFFSET 0x13c
29 #define SPT_PMC_MMIO_REG_LEN 0x100
30 #define SPT_PMC_SLP_S0_RES_COUNTER_STEP 0x64
33 * struct pmc_dev - pmc device structure
34 * @base_addr: comtains pmc base address
35 * @regbase: pointer to io-remapped memory location
36 * @dbgfs_dir: path to debug fs interface
37 * @feature_available: flag to indicate whether
38 * the feature is available
39 * on a particular platform or not.
41 * pmc_dev contains info about power management controller device.
45 void __iomem
*regbase
;
46 struct dentry
*dbgfs_dir
;
50 #endif /* PMC_CORE_H */