blob: 82d6cedf60e4e747d528442c918a7532dd00d8ca [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GARNET_BIN_GUEST_VMM_LINUX_H_
#define GARNET_BIN_GUEST_VMM_LINUX_H_
#include "garnet/bin/guest/vmm/dev_mem.h"
#include "garnet/bin/guest/vmm/device/phys_mem.h"
#include "garnet/bin/guest/vmm/platform_device.h"
class GuestConfig;
zx_status_t setup_linux(const GuestConfig& cfg, const PhysMem& phys_mem,
const DevMem& dev_mem,
const std::vector<PlatformDevice*>& devices,
uintptr_t* guest_ip, uintptr_t* boot_ptr);
#endif // GARNET_BIN_GUEST_VMM_LINUX_H_