]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
sandbox: Reduce keyed autoboot delay
authorSimon Glass <sjg@chromium.org>
Sat, 24 Jul 2021 21:14:39 +0000 (15:14 -0600)
committerSimon Glass <sjg@chromium.org>
Sun, 1 Aug 2021 15:05:24 +0000 (09:05 -0600)
The autoboot tests are a recent addition to U-Boot, providing much-needed
coverage in this area.

A side effect of the keyed autoboot test is that this feature is enabled
in sandbox always. This changes the autoboot prompt and confuses the
pytests. Some tests become slower, for example the vboot tests take about
27s now instead of 3s.

We don't actually need this feature enabled to be able to run the tests.
Add a switch to allow sandbox to turn it on and off as needed. Use this
in the one test that needs it.

Add a command-line flag in case this is desired in normal use.

Signed-off-by: Simon Glass <sjg@chromium.org>
Fixes: 25c8b9f298e ("test: add first autoboot unit tests")
Reviewed-by: Steffen Jaeckel <jaeckel-floss@eyet-services.de>
arch/sandbox/cpu/start.c
arch/sandbox/cpu/state.c
arch/sandbox/include/asm/state.h
common/autoboot.c
include/autoboot.h
test/common/test_autoboot.c

index 777db4e9522ccf9413ebb9a98cc20f47b14846d4..a74f5ec7ba0a37e00663c14be7c410ebf1caa36c 100644 (file)
@@ -400,6 +400,15 @@ static int sandbox_cmdline_cb_signals(struct sandbox_state *state,
 SANDBOX_CMDLINE_OPT_SHORT(signals, 'S', 0,
                          "Handle signals (such as SIGSEGV) in sandbox");
 
+static int sandbox_cmdline_cb_autoboot_keyed(struct sandbox_state *state,
+                                            const char *arg)
+{
+       state->autoboot_keyed = true;
+
+       return 0;
+}
+SANDBOX_CMDLINE_OPT(autoboot_keyed, 0, "Allow keyed autoboot");
+
 static void setup_ram_buf(struct sandbox_state *state)
 {
        /* Zero the RAM buffer if we didn't read it, to keep valgrind happy */
index a4d99bade41c3d9efe0f1ab816aada08657c20b1..4e822538baf9960edbc2b9aabc91123193e0b418 100644 (file)
@@ -4,6 +4,7 @@
  */
 
 #include <common.h>
+#include <autoboot.h>
 #include <bloblist.h>
 #include <errno.h>
 #include <fdtdec.h>
@@ -378,6 +379,23 @@ void state_reset_for_test(struct sandbox_state *state)
        state->next_tag = state->ram_size;
 }
 
+bool autoboot_keyed(void)
+{
+       struct sandbox_state *state = state_get_current();
+
+       return IS_ENABLED(CONFIG_AUTOBOOT_KEYED) && state->autoboot_keyed;
+}
+
+bool autoboot_set_keyed(bool autoboot_keyed)
+{
+       struct sandbox_state *state = state_get_current();
+       bool old_val = state->autoboot_keyed;
+
+       state->autoboot_keyed = autoboot_keyed;
+
+       return old_val;
+}
+
 int state_init(void)
 {
        state = &main_state;
index 1c4c571e28d3e629f93b5f11b6d806ed454b391a..10352a587e484ac8cf8340074e50d3b646b768a6 100644 (file)
@@ -94,6 +94,7 @@ struct sandbox_state {
        bool run_unittests;             /* Run unit tests */
        const char *select_unittests;   /* Unit test to run */
        bool handle_signals;            /* Handle signals within sandbox */
+       bool autoboot_keyed;            /* Use keyed-autoboot feature */
 
        /* Pointer to information for each SPI bus/cs */
        struct sandbox_spi_info spi[CONFIG_SANDBOX_SPI_MAX_BUS]
index 8b9e9aa878588063f99674cd3677cf9276d87cd4..5bb2e190895fc62d788fa4143c5f4212cf405095 100644 (file)
@@ -406,7 +406,7 @@ static int abortboot(int bootdelay)
        int abort = 0;
 
        if (bootdelay >= 0) {
-               if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
+               if (autoboot_keyed())
                        abort = abortboot_key_sequence(bootdelay);
                else
                        abort = abortboot_single_key(bootdelay);
@@ -481,7 +481,7 @@ void autoboot_command(const char *s)
                bool lock;
                int prev;
 
-               lock = IS_ENABLED(CONFIG_AUTOBOOT_KEYED) &&
+               lock = autoboot_keyed() &&
                        !IS_ENABLED(CONFIG_AUTOBOOT_KEYED_CTRLC);
                if (lock)
                        prev = disable_ctrlc(1); /* disable Ctrl-C checking */
@@ -498,4 +498,4 @@ void autoboot_command(const char *s)
                if (s)
                        run_command_list(s, -1, 0);
        }
-}
\ No newline at end of file
+}
index ac8157e570440c2899bfc8f3959ea6ad1d646da5..d6915dd0cc6f4380a457d19decda23a1e9fa05f5 100644 (file)
 #ifndef __AUTOBOOT_H
 #define __AUTOBOOT_H
 
+#include <stdbool.h>
+
+#ifdef CONFIG_SANDBOX
+
+/**
+ * autoboot_keyed() - check whether keyed autoboot should be used
+ *
+ * This is only implemented for sandbox since other platforms don't have a way
+ * of controlling the feature at runtime.
+ *
+ * @return true if enabled, false if not
+ */
+bool autoboot_keyed(void);
+
+/**
+ * autoboot_set_keyed() - set whether keyed autoboot should be used
+ *
+ * @autoboot_keyed: true to enable the feature, false to disable
+ * @return old value of the flag
+ */
+bool autoboot_set_keyed(bool autoboot_keyed);
+#else
+static inline bool autoboot_keyed(void)
+{
+       /* There is no runtime flag, so just use the CONFIG */
+       return IS_ENABLED(CONFIG_AUTOBOOT_KEYED);
+}
+
+static inline bool autoboot_set_keyed(bool autoboot_keyed)
+{
+       /* There is no runtime flag to set */
+       return false;
+}
+
+#endif
+
 #ifdef CONFIG_AUTOBOOT
 /**
  * bootdelay_process() - process the bootd delay
index 6564ac704965fa089ee5063a19f585ceae53658a..42a1e4ab1fa0ae39b114061e690a0d5b3f20b2e5 100644 (file)
 static int check_for_input(struct unit_test_state *uts, const char *in,
                           bool correct)
 {
+       bool old_val;
        /* The bootdelay is set to 1 second in test_autoboot() */
        const char *autoboot_prompt =
                "Enter password \"a\" in 1 seconds to stop autoboot";
 
        console_record_reset_enable();
        console_in_puts(in);
+
+       /* turn on keyed autoboot for the test, if possible */
+       old_val = autoboot_set_keyed(true);
        autoboot_command("echo Autoboot password unlock not successful");
+       old_val = autoboot_set_keyed(old_val);
+
        ut_assert_nextline(autoboot_prompt);
        if (!correct)
                ut_assert_nextline("Autoboot password unlock not successful");