MT8195: Enable LAVA test job submission

It runs BL31 boot test on Tomato Chromebook

Signed-off-by: Arthur She <arthur.she@linaro.org>
Change-Id: I84bb7f057a5daf0a49977e854009c6f5bc76ce67
diff --git a/mt8195_utils.sh b/mt8195_utils.sh
new file mode 100644
index 0000000..97a2fab
--- /dev/null
+++ b/mt8195_utils.sh
@@ -0,0 +1,23 @@
+#!/usr/bin/env bash
+#
+# Copyright (c) 2023, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+set -u
+
+gen_mt8195_yaml(){
+    local yaml_file="$workspace/mt8195.yaml"
+    local job_file="$workspace/job.yaml"
+    local payload_type="${payload_type:?}"
+
+    bin_mode="$mode" \
+        "$ci_root/script/gen_mt8195_${payload_type}_yaml.sh" > "$yaml_file"
+
+    cp "$yaml_file" "$job_file"
+    archive_file "$yaml_file"
+    archive_file "$job_file"
+}
+
+set +u