]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
board: starfive: spl: Support VisionFive 2 Lite
authorHal Feng <hal.feng@starfivetech.com>
Fri, 24 Oct 2025 08:59:31 +0000 (16:59 +0800)
committerLeo Yu-Chi Liang <ycliang@andestech.com>
Mon, 16 Mar 2026 17:36:57 +0000 (01:36 +0800)
Choose the matching FIT config on the VisionFive 2 Lite board.

Reviewed-by: E Shattow <e@freeshell.de>
Signed-off-by: Hal Feng <hal.feng@starfivetech.com>
board/starfive/visionfive2/spl.c

index 2d9431d297695af3e91bfc89746d78af25f68c7a..c607627e10fd76f792b2a19427a83748729d9164 100644 (file)
@@ -140,6 +140,9 @@ int board_fit_config_name_match(const char *name)
        } else if (!strcmp(name, "starfive/jh7110-starfive-visionfive-2-v1.3b") &&
                    !strncmp(get_product_id_from_eeprom(), "VF7110B", 7)) {
                return 0;
+       } else if (!strcmp(name, "starfive/jh7110-starfive-visionfive-2-lite") &&
+                   !strncmp(get_product_id_from_eeprom(), "VF7110SL", 8)) {
+               return 0;
        }
 
        return -EINVAL;