blob: e04481d7e8d9062afd113d6a0e5766ad75963114 [file] [log] [blame]
// Copyright 2018 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 ddk.protocol.pciroot;
using zx;
[Layout="ddk-protocol"]
interface Pciroot {
1: GetAuxdata(string args) -> (zx.status s, vector<void> data);
2: GetBti(uint32 bdf, uint32 index) -> (zx.status s, handle<bti> bti);
};