/*-1* Copyright (c) 2005 The FreeBSD Foundation.2*3* SPDX-License-Identifier: BSD-2-Clause4*5* Derived in part from NetBSD's bus.h files by (alphabetically):6* Christopher G. Demetriou7* Charles M. Hannum8* Jason Thorpe9* The NetBSD Foundation.10*/1112#ifndef AMD64_INCLUDE__BUS_H13#define AMD64_INCLUDE__BUS_H1415/*16* Bus address and size types17*/18typedef uint64_t bus_addr_t;19typedef uint64_t bus_size_t;2021/*22* Access methods for bus resources and address space.23*/24typedef uint64_t bus_space_tag_t;25typedef uint64_t bus_space_handle_t;2627#endif /* AMD64_INCLUDE__BUS_H */282930