/* | |
* Copyright 2018 The Hafnium Authors. | |
* | |
* Use of this source code is governed by a BSD-style | |
* license that can be found in the LICENSE file or at | |
* https://opensource.org/licenses/BSD-3-Clause. | |
*/ | |
#include "hf/cpu.h" | |
/** | |
* The entry point of CPUs when they are turned on. It is supposed to initialise | |
* all state and return the first vCPU to run. | |
*/ | |
struct vcpu *cpu_main(struct cpu *c) | |
{ | |
return arch_vcpu_resume(c); | |
} |