diff options
Diffstat (limited to 'src/soc/intel/xeon_sp/ebg')
-rw-r--r-- | src/soc/intel/xeon_sp/ebg/include/soc/soc_pm.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/soc/intel/xeon_sp/ebg/include/soc/soc_pm.h b/src/soc/intel/xeon_sp/ebg/include/soc/soc_pm.h new file mode 100644 index 0000000000..d81bbf9a1a --- /dev/null +++ b/src/soc/intel/xeon_sp/ebg/include/soc/soc_pm.h @@ -0,0 +1,13 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef _SOC_EBG_PM_H_ +#define _SOC_EBG_PM_H_ + +#define GPE0_STS(x) (0x60 + ((x) * 4)) +#define GPE0_EN(x) (0x70 + ((x) * 4)) + +/* This is defined as ETR3 in EDS. We named it as ETR here for consistency */ +#define ETR 0x1048 +#define PRSTS 0x1810 + +#endif /* _SOC_EBG_PM_H_ */ |