renode: remove remaining references

We are no longer using Renode in HPS, so this documentation and script
can be removed.

BUG=None
TEST=None

Change-Id: I547e1602614d7128991588e66dabd0c44fc97c5d
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/hps-firmware/+/3995965
Reviewed-by: David Lattimore <dml@chromium.org>
Commit-Queue: Alan Green <avg@chromium.org>
Tested-by: Alan Green <avg@chromium.org>
Auto-Submit: Alan Green <avg@chromium.org>
Reviewed-by: Jakub Młynarczyk <jakubm@chromium.org>
diff --git a/docs/renode.md b/docs/renode.md
deleted file mode 100644
index 3c78983..0000000
--- a/docs/renode.md
+++ /dev/null
@@ -1,44 +0,0 @@
-# Renode
-
-Renode is an open source software created by Antmicro for multinode embedded
-emulation.
-
-## Objective
-
-Remove the dependencies on hardware for testing HPS and purely relying on
-software.
-A subset of the tests is hardware destructive (Flash erases) and does not scale
-up to CQ requirements. [Design document](http://go/cros-hps-renode) provides
-more details about integration of Renode with HPS.
-
-Components emulated in Renode:
-* MCU STM32G0
-
-Components not emulated in Renode:
-* Camera HM01B0
-* SPI Flash GD25LQ128D
-* FPGA LIFCL-17
-
-## Installing Renode
-
-Renode is part of cros_sdk and should be available *inside* the ChromiumOS chroot.
-To install Renode outside of chroot, please follow [Antmicro's README](https://github.com/renode/renode).
-
-## Running Renode
-
-### Locally
-
-Run the script *inside* the ChromiumOS chroot.
-
-```
-scripts/run-tests-renode
-```
-
-This scripts sets up Renode environment in the background and executes
-hps-factory stage1 test suite.
-
-### Commit Queue
-
-HPS tests using Renode run automatically on each change.
-These tests are included the in [hps-firmware ebuild](https://source.corp.google.com/chromeos_public/src/third_party/chromiumos-overlay/chromeos-base/hps-firmware/hps-firmware-9999.ebuild)
-file.
diff --git a/scripts/run-tests-renode b/scripts/run-tests-renode
deleted file mode 100755
index cf4fbd8..0000000
--- a/scripts/run-tests-renode
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/bin/bash
-
-# Copyright 2022 The ChromiumOS Authors
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# Runs firmware tests without hardware.
-# This will run for roughly 2.5mins.
-
-RED='\033[0;31m'
-GREEN='\033[0;32m'
-NORMAL='\033[0m'
-
-set -e
-PROJECT_ROOT=$(realpath "$(dirname "${BASH_SOURCE[0]}")"/..)
-
-echo -e "\n\n${RED}=======================================${NORMAL}"
-echo -e "${GREEN}Running Renode tests${NORMAL}"
-echo -e "${RED}=======================================${NORMAL}"
-
-release_path="rust/mcu/target/thumbv6m-none-eabi/release"
-
-stage0_path="\$stage0?=\$CWD/${release_path}/stage0"
-stage1_path="\$stage1?=\$CWD/${release_path}/stage1_app"
-resc_path="renode/hps_stage1_tests.resc"
-cd "${PROJECT_ROOT}/"
-
-renode --console -e "${stage0_path}; ${stage1_path}; include @${resc_path}" &
-renode_PID=$!
-
-{
-    for _ in {1..150}
-        do
-            if ! ps -p "${renode_PID}" >/dev/null
-            then
-                exit 0
-            else
-                sleep 1
-            fi
-        done
-    einfo "Renode process still exists" && kill "${renode_PID}" && exit 0;
-} &
-
-cd "${PROJECT_ROOT}/rust/target/release/"
-sleep 60
-echo "Start hps-factory test at ${PROJECT_ROOT}"
-./hps-factory --socket /tmp/i2c.sock test-stage1
-factory_PID=$!
-
-wait "${factory_PID}"
-status=$?
-[ "${status}" -eq 0 ] && exit 0
-
-echo "Renode test failed"
-exit 1