/*-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 POWERPC_INCLUDE__BUS_H13#define POWERPC_INCLUDE__BUS_H1415#include <vm/vm_param.h>1617/*18* Bus address and size types19*/20typedef vm_paddr_t bus_addr_t;21typedef vm_size_t bus_size_t;2223/*24* Access methods for bus resources and address space.25*/26typedef struct bus_space *bus_space_tag_t;27typedef vm_offset_t bus_space_handle_t;2829#endif /* POWERPC_INCLUDE__BUS_H */303132