platform: generic: Don't mark non-MMU HARTs as invalid
authorAnup Patel <anup.patel@wdc.com>
Wed, 9 Sep 2020 08:24:03 +0000 (13:54 +0530)
committerAnup Patel <anup@brainfault.org>
Wed, 16 Sep 2020 03:35:31 +0000 (09:05 +0530)
commitaaeca7eb4efa96cfde3973f425a6769b50285756
treeeea2e688fac58419ebf2a06270e922a22262f5e3
parent172fa1601c7faaa01c547e8c498f5bdefd52d7cb
platform: generic: Don't mark non-MMU HARTs as invalid

Currently, the generic platform fw_platform_init() marks non-MMU
HARTs (e.g. E-core on SiFive Unleashed) as invalid. This means
such non-MMU HARTs won't be allowed to go ahead by sbi_init().

The sbi_init() now has a check for next stage privilege mode when
selecting coldboot HART. This check will force non-MMU HARTS (i.e.
HARTs without S-mode) to proceed in warmboot path and wait in the
HSM STOPPED state. This means we don't need to mark non-MMU HARTs
as invalid in generic platform fw_platform_init().

Signed-off-by: Anup Patel <anup.patel@wdc.com>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
platform/generic/platform.c