blob: 4533affbf55c7f914916bce9d38c8c0ad8160ab8 [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.kernel;
using zx;
/// Protocol for providing an MMIO resource with access to all valid ranges.
[Discoverable]
protocol MmioResource {
/// Get the MMIO resource handle.
Get() -> (zx.handle:RESOURCE mmio_resource);
};