blob: cd45a940c35472fc235e9b8640fef7b97edc4c45 [file] [log] [blame]
// Copyright 2020 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 LIB_ZX_MSI_H_
#define LIB_ZX_MSI_H_
#include <lib/zx/handle.h>
#include <lib/zx/interrupt.h>
#include <lib/zx/object.h>
#include <lib/zx/resource.h>
#include <lib/zx/vmo.h>
#include <stdint.h>
#include <zircon/types.h>
namespace zx {
// This wrapper encompasses both MsiDispatcher MsiAllocationDispatcher due
// to them only having static members and MsiDispatcher otherwise using the
// same interface as a zx::interrupt.
class msi final : public object<msi> {
public:
static constexpr zx_obj_type_t TYPE = ZX_OBJ_TYPE_MSI_ALLOCATION;
constexpr msi() = default;
explicit msi(zx_handle_t value) : object(value) {}
explicit msi(handle&& h) : object(h.release()) {}
msi(msi&& other) : object(other.release()) {}
msi& operator=(msi&& other) {
reset(other.release());
return *this;
}
static zx_status_t allocate(const resource& resource, uint32_t count, msi* result);
static zx_status_t create(const msi& msi, uint32_t options, uint32_t msi_id, const vmo& vmo,
size_t vmo_offset, interrupt* result);
};
using unowned_msi = unowned<msi>;
} // namespace zx
#endif // LIB_ZX_MSI_H_