summaryrefslogtreecommitdiff
path: root/src/soc
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc')
-rw-r--r--src/soc/intel/common/block/cnvi/cnvi.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/cnvi/cnvi.c b/src/soc/intel/common/block/cnvi/cnvi.c
index fcfb03fd1b..eff5044907 100644
--- a/src/soc/intel/common/block/cnvi/cnvi.c
+++ b/src/soc/intel/common/block/cnvi/cnvi.c
@@ -316,6 +316,28 @@ static void cnvw_fill_ssdt(const struct device *dev)
}
acpigen_pop_len();
+/*
+ * Method (_PS0, 0, Serialized)
+ * {
+ * }
+ *
+ * Method (_PS3, 0, Serialized)
+ * {
+ * }
+ *
+ * Method (_DSW, 3)
+ * {
+ * }
+ */
+ acpigen_write_method_serialized("_PS0", 0);
+ acpigen_pop_len();
+
+ acpigen_write_method_serialized("_PS3", 0);
+ acpigen_pop_len();
+
+ acpigen_write_method("_DSW", 3);
+ acpigen_pop_len();
+
acpigen_write_scope_end();
}