summaryrefslogtreecommitdiff
path: root/src/soc/intel/alderlake/romstage/pch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/alderlake/romstage/pch.c')
-rw-r--r--src/soc/intel/alderlake/romstage/pch.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/soc/intel/alderlake/romstage/pch.c b/src/soc/intel/alderlake/romstage/pch.c
new file mode 100644
index 0000000000..bec6150374
--- /dev/null
+++ b/src/soc/intel/alderlake/romstage/pch.c
@@ -0,0 +1,10 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include <intelblocks/smbus.h>
+#include <soc/romstage.h>
+
+void romstage_pch_init(void)
+{
+ /* Program SMBus base address and enable it */
+ smbus_common_init();
+}