platform: starfive: call starfive_jh7110_inst_init() in pm_reset_init()
authorNam Cao <namcao@linutronix.de>
Thu, 22 Feb 2024 08:16:19 +0000 (09:16 +0100)
committerAnup Patel <anup@brainfault.org>
Thu, 22 Feb 2024 12:49:01 +0000 (18:19 +0530)
The function starfive_jh7110_inst_init() initialize some power
management unit address and clock addresses, needed for the reset
driver. It doesn't do anything else, and also the reset driver doesn't
work without calling this function. Thus, it does not make much sense
that this function is independent from pm_reset_init().

Delete the separate call to starfive_jh7110_inst_init(), and instead
just call this function inside pm_reset_init().

Doing this also fixes another problem: if starfive_jh7110_inst_init()
returns an error code, it gets propagated to final_init() and OpenSBI
hangs. This hang is not necessary, because failures within
starfive_jh7110_inst_init() only mean OpenSBI cannot perform reboot or
shutdown, but the system can still function normally.

Signed-off-by: Nam Cao <namcao@linutronix.de>
Tested-by: Minda Chen <minda.chen@starfivetech.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
platform/generic/starfive/jh7110.c

index 1ac0854c37242e3ff6d04cdee95ba22e65b6bba1..62dcd25613edf4b8ae6b97b3d6555e18b123a214 100644 (file)
@@ -186,6 +186,8 @@ static struct sbi_system_reset_device pm_reset = {
        .system_reset = pm_system_reset
 };
 
+static int starfive_jh7110_inst_init(void *fdt);
+
 static int pm_reset_init(void *fdt, int nodeoff,
                         const struct fdt_match *match)
 {
@@ -211,6 +213,10 @@ static int pm_reset_init(void *fdt, int nodeoff,
 
        pmic_inst.adapter = adapter;
 
+       rc = starfive_jh7110_inst_init(fdt);
+       if (rc)
+               return rc;
+
        sbi_system_reset_add_device(&pm_reset);
 
        return 0;
@@ -278,7 +284,6 @@ static int starfive_jh7110_final_init(bool cold_boot,
 
        if (cold_boot) {
                fdt_reset_driver_init(fdt, &fdt_reset_pmic);
-               return starfive_jh7110_inst_init(fdt);
        }
 
        return 0;