aboutsummaryrefslogtreecommitdiff
path: root/src/ec/google/wilco/romstage.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ec/google/wilco/romstage.c')
-rw-r--r--src/ec/google/wilco/romstage.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ec/google/wilco/romstage.c b/src/ec/google/wilco/romstage.c
new file mode 100644
index 0000000000..4f5eef2aeb
--- /dev/null
+++ b/src/ec/google/wilco/romstage.c
@@ -0,0 +1,23 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2019 Google LLC
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#include "commands.h"
+#include "ec.h"
+#include "romstage.h"
+
+void wilco_ec_romstage_init(void)
+{
+ wilco_ec_send(KB_BIOS_PROGRESS, BIOS_PROGRESS_BEFORE_MEMORY);
+}