intel_pmc_core.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Intel Core SoC Power Management Controller Header File
  3. *
  4. * Copyright (c) 2016, Intel Corporation.
  5. * All Rights Reserved.
  6. *
  7. * Authors: Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
  8. * Vishwanath Somayaji <vishwanath.somayaji@intel.com>
  9. *
  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.
  13. *
  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
  17. * more details.
  18. *
  19. */
  20. #ifndef PMC_CORE_H
  21. #define PMC_CORE_H
  22. /* Sunrise Point Power Management Controller PCI Device ID */
  23. #define SPT_PMC_PCI_DEVICE_ID 0x9d21
  24. #define SPT_PMC_BASE_ADDR_OFFSET 0x48
  25. #define SPT_PMC_SLP_S0_RES_COUNTER_OFFSET 0x13c
  26. #define SPT_PMC_MMIO_REG_LEN 0x100
  27. #define SPT_PMC_SLP_S0_RES_COUNTER_STEP 0x64
  28. /**
  29. * struct pmc_dev - pmc device structure
  30. * @base_addr: comtains pmc base address
  31. * @regbase: pointer to io-remapped memory location
  32. * @dbgfs_dir: path to debug fs interface
  33. * @feature_available: flag to indicate whether
  34. * the feature is available
  35. * on a particular platform or not.
  36. *
  37. * pmc_dev contains info about power management controller device.
  38. */
  39. struct pmc_dev {
  40. u32 base_addr;
  41. void __iomem *regbase;
  42. struct dentry *dbgfs_dir;
  43. bool has_slp_s0_res;
  44. };
  45. #endif /* PMC_CORE_H */