]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
[PPC64] Implement CAS
authorluporl <luporl@FreeBSD.org>
Wed, 31 Jul 2019 20:31:36 +0000 (20:31 +0000)
committerluporl <luporl@FreeBSD.org>
Wed, 31 Jul 2019 20:31:36 +0000 (20:31 +0000)
commit70ed86f4bad71a7258405d6af4329a339f9c40ab
tree79267a184b6f21264905a4c52f3dfc3e8ad723dc
parent3df08381ed7e96b2d3bcac00c9bd296e4c8966ae
[PPC64] Implement CAS

Guest PPC OSs running under a hypervisor may communicate the features they
support, in order for the hypervisor to expose a virtualized machine in the way
the client (guest OS) expects (see LoPAPR 1.1 - B.6.2.3).

This is done by calling the "/ibm,client-architecture-support" (CAS) method,
informing supported features in option vectors.  Until now, FreeBSD wasn't
using CAS, but instead relied on hypervisor/QEMU's defaults.

The problem is that, without CAS, it is very inconvenient to run POWER9 VMs on
a POWER9 host running with radix enabled.  This happens because, in this case,
the QEMU default is to present the guest OS a dual MMU (HPT/RPT), instead of
presenting a regular HPT MMU, as FreeBSD expects, resulting in an early panic.
The known workarounds required either changing the host to disable radix or
passing a flag to QEMU to run in a POWER8 compatible mode.

With CAS, FreeBSD is now able to communicate that it wants an HPT MMU,
independent of the host setup, which now makes FreeBSD work on POWER9/pseries,
with KVM enabled and without hugepages (support added in a previous commit).

As CAS is invoked through OpenFirmware's call-method interface, it needs to be
performed early, when OpenFirmware is still operational. Besides, now that FDT
is the default way to inspect the device tree on PPC, OFW call-method feature
will be unavailable by default, when control is passed to the kernel. Because
of this, the call to CAS is being performed at the loader, instead of at the
kernel.

To avoid regressions with old platforms, this change uses CAS only on
POWER8/POWER9.

Reviewed by: jhibbits
Differential Revision: https://reviews.freebsd.org/D20827
stand/powerpc/ofw/Makefile
stand/powerpc/ofw/cas.c [new file with mode: 0644]
stand/powerpc/ofw/main.c