blob: 1f2bcb3388b3d63f3403744ab81b8f43d7e65b10 [file] [log] [blame]
// Copyright 2016 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.
#pragma once
#include <zircon/compiler.h>
__BEGIN_CDECLS
// The root resource
#define ZX_RSRC_KIND_ROOT (0x0000u)
// Hardware resources
#define ZX_RSRC_KIND_MMIO (0x1000u)
#define ZX_RSRC_KIND_IOPORT (0x1001u)
#define ZX_RSRC_KIND_IRQ (0x1002u)
// Subsystem resources
#define ZX_RSRC_KIND_HYPERVISOR (0x2000u)
__END_CDECLS