blob: a155de2b60c8a082d97d96922c6cc45d9683a05b [file] [log] [blame]
// Copyright 2019 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.
library zx;
[Transport = "Syscall"]
protocol iommu {
/// Create a new IOMMU object in the kernel.
/// Rights: resource must have resource kind ZX_RSRC_KIND_ROOT.
iommu_create(handle<resource> resource, uint32 type, vector_void desc)
-> (status status, handle<iommu> out);
};