blob: 7aee374d2e8cf093a148bccc1ef1ae2e8991a6ac [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);
};