]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
fwu: provide default fwu_plat_get_bootidx
authorJassi Brar <jaswinder.singh@linaro.org>
Wed, 31 May 2023 05:30:06 +0000 (00:30 -0500)
committerTom Rini <trini@konsulko.com>
Fri, 9 Jun 2023 17:52:40 +0000 (13:52 -0400)
Just like fwu_plat_get_update_index, provide a default/weak
implementation of fwu_plat_get_bootidx. So that most platforms
wouldn't have to re-implement the likely case.

Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
lib/fwu_updates/fwu.c

index 525ac49af378fc868e64a8bfbdb6796a746c440e..cd5c3b64773b0b3250ea4b055964ccd3650bb07b 100644 (file)
@@ -545,6 +545,24 @@ __weak int fwu_plat_get_update_index(uint *update_idx)
        return ret;
 }
 
+/**
+ * fwu_plat_get_bootidx() - Get the value of the boot index
+ * @boot_idx: Boot index value
+ *
+ * Get the value of the bank(partition) from which the platform
+ * has booted. This value is passed to U-Boot from the earlier
+ * stage bootloader which loads and boots all the relevant
+ * firmware images
+ */
+__weak void fwu_plat_get_bootidx(uint *boot_idx)
+{
+       int ret;
+
+       ret = fwu_get_active_index(boot_idx);
+       if (ret < 0)
+               *boot_idx = 0; /* Dummy value */
+}
+
 /**
  * fwu_update_checks_pass() - Check if FWU update can be done
  *