summaryrefslogtreecommitdiffstats
path: root/src/soc/intel
diff options
context:
space:
mode:
authorSubrata Banik <subratabanik@google.com>2023-01-20 12:29:24 +0530
committerSubrata Banik <subratabanik@google.com>2023-01-21 03:19:05 +0000
commit89faeca93d7c9d32abf07c3ff960cb8c41f3d6db (patch)
treea125b8a99776b95bf97692fc0db8f8e192eb301d /src/soc/intel
parentb81ad9c6b15fc27047d6f5906e5909f77f0440df (diff)
downloadcoreboot-89faeca93d7c9d32abf07c3ff960cb8c41f3d6db.tar.gz
coreboot-89faeca93d7c9d32abf07c3ff960cb8c41f3d6db.tar.bz2
coreboot-89faeca93d7c9d32abf07c3ff960cb8c41f3d6db.zip
soc/intel/apollolake: Fix indentation for the PMC (pm.h) macros
This patch fixes the alignment of the PMC macros defined in the pm.h file. Signed-off-by: Subrata Banik <subratabanik@google.com> Change-Id: Ia8d35a5d104658b7900fde7f7b8c6f88530a614e Reviewed-on: https://review.coreboot.org/c/coreboot/+/72129 Reviewed-by: Sean Rhodes <sean@starlabs.systems> Reviewed-by: Sridhar Siricilla <sridhar.siricilla@intel.com> Reviewed-by: Elyes Haouas <ehaouas@noos.fr> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel')
-rw-r--r--src/soc/intel/apollolake/include/soc/pm.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/soc/intel/apollolake/include/soc/pm.h b/src/soc/intel/apollolake/include/soc/pm.h
index c1dee0c3cde0..ff5d567d479c 100644
--- a/src/soc/intel/apollolake/include/soc/pm.h
+++ b/src/soc/intel/apollolake/include/soc/pm.h
@@ -165,21 +165,21 @@
WARM_RESET_STS | GLOBAL_RESET_STS | \
SRS | MS4V)
#define GEN_PMCON2 0x1024
-# define LPC_LPB_CLK_CTRL ((1 << 11) | (1 << 12) | (1 << 13))
-# define BIOS_PCI_EXP_EN (1 << 10)
-# define PWRBTN_LVL (1 << 9)
-# define SMI_LOCK (1 << 4)
-# define PER_SMI_SEL (1 << 0)
+#define LPC_LPB_CLK_CTRL ((1 << 11) | (1 << 12) | (1 << 13))
+#define BIOS_PCI_EXP_EN (1 << 10)
+#define PWRBTN_LVL (1 << 9)
+#define SMI_LOCK (1 << 4)
+#define PER_SMI_SEL (1 << 0)
#define GEN_PMCON3 0x1028
-# define SLP_S3_ASSERT_WIDTH_SHIFT 10
-# define SLP_S3_ASSERT_MASK (0x3 << SLP_S3_ASSERT_WIDTH_SHIFT)
-# define SLP_S3_ASSERT_60_USEC 0x0
-# define SLP_S3_ASSERT_1_MSEC 0x1
-# define SLP_S3_ASSERT_50_MSEC 0x2
-# define SLP_S3_ASSERT_2_SEC 0x3
+#define SLP_S3_ASSERT_WIDTH_SHIFT 10
+#define SLP_S3_ASSERT_MASK (0x3 << SLP_S3_ASSERT_WIDTH_SHIFT)
+#define SLP_S3_ASSERT_60_USEC 0x0
+#define SLP_S3_ASSERT_1_MSEC 0x1
+#define SLP_S3_ASSERT_50_MSEC 0x2
+#define SLP_S3_ASSERT_2_SEC 0x3
#define ETR 0x1048
-# define CF9_LOCK (1 << 31)
-# define CF9_GLB_RST (1 << 20)
+#define CF9_LOCK (1 << 31)
+#define CF9_GLB_RST (1 << 20)
#define GPIO_GPE_CFG 0x1050
#define GPE0_DWX_MASK 0xf
#define GPE0_DW_SHIFT(x) (4 + 4*(x))