I understand that qemu uses binary translation to emulate machines, so irrespective of the underlying architecture, it can provide emulation.
And, KVM uses Hardware Virtualization technique to make this process faster. Thus, KVM requires VT support from underlying architectures (which x86 processor provides).
I have emulated powerpc architecture with qemu over x86 architecture. My question is whether it is possible to run KVM over this powerpc architecture. We can implement nested virtualization by using software virtualization over hardware virtualization(qemu over kvm) but is this true for the reverse case(kvm over qemu). Any explanation in the answers would be quite helpful.
Thanks