blob: 06eb011e10a008fc11d1ab0838bfed860d55883a [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.
library fuchsia.hardware.goldfish.addressspace;
using zx;
type AddressSpaceChildDriverType = strict enum : uint32 {
/// The DEFAULT child driver type is for graphics.
DEFAULT = 0;
};
/// Interface for the Goldfish address space driver.
/// See //sdk/fidl/fuchsia.hardware.goldfish for details.
///
@transport("Banjo")
@banjo_layout("ddk-protocol")
protocol GoldfishAddressSpace {
OpenChildDriver(resource struct {
type AddressSpaceChildDriverType;
req zx.handle:CHANNEL;
}) -> (struct {
status zx.status;
});
};