On Tue, 10 Oct 2023 at 18:24, Nicholas Piggin <npig...@gmail.com> wrote: > > POWER10 is the latest IBM Power machine. Although it is not offered in > "OPAL mode" (i.e., powernv configuration), so there is a case that it > should remain at powernv9, most of the development work is going into > powernv10 at the moment. > > Signed-off-by: Nicholas Piggin <npig...@gmail.com>
Reviewed-by: Joel Stanley <j...@jms.id.au> Do we need to update the docs? We should consider updating the skiboot to the latest release too. > --- > hw/ppc/pnv.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/hw/ppc/pnv.c b/hw/ppc/pnv.c > index eb54f93986..f3dad5ae05 100644 > --- a/hw/ppc/pnv.c > +++ b/hw/ppc/pnv.c > @@ -2195,8 +2195,6 @@ static void pnv_machine_power9_class_init(ObjectClass > *oc, void *data) > > xfc->match_nvt = pnv_match_nvt; > > - mc->alias = "powernv"; > - > pmc->compat = compat; > pmc->compat_size = sizeof(compat); > pmc->dt_power_mgt = pnv_dt_power_mgt; > @@ -2220,6 +2218,8 @@ static void pnv_machine_power10_class_init(ObjectClass > *oc, void *data) > mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("power10_v2.0"); > compat_props_add(mc->compat_props, phb_compat, G_N_ELEMENTS(phb_compat)); > > + mc->alias = "powernv"; > + > pmc->compat = compat; > pmc->compat_size = sizeof(compat); > pmc->dt_power_mgt = pnv_dt_power_mgt; > -- > 2.42.0 > >