106db52b6SWarner Losh /*- 2*49025a11SWarner Losh * Copyright (c) 2005 The FreeBSD Foundation. 3*49025a11SWarner Losh * 44d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause 571e3c308SPedro F. Giffuni * 6*49025a11SWarner Losh * Derived in part from NetBSD's bus.h files by (alphabetically): 7*49025a11SWarner Losh * Christopher G. Demetriou 8*49025a11SWarner Losh * Charles M. Hannum 9*49025a11SWarner Losh * Jason Thorpe 10*49025a11SWarner Losh * The NetBSD Foundation. 1106db52b6SWarner Losh */ 1206db52b6SWarner Losh 1306db52b6SWarner Losh #ifndef POWERPC_INCLUDE__BUS_H 1406db52b6SWarner Losh #define POWERPC_INCLUDE__BUS_H 1506db52b6SWarner Losh 16c3e289e1SNathan Whitehorn #include <vm/vm_param.h> 17c3e289e1SNathan Whitehorn 1806db52b6SWarner Losh /* 1906db52b6SWarner Losh * Bus address and size types 2006db52b6SWarner Losh */ 21c3e289e1SNathan Whitehorn typedef vm_paddr_t bus_addr_t; 22c3e289e1SNathan Whitehorn typedef vm_size_t bus_size_t; 2306db52b6SWarner Losh 2406db52b6SWarner Losh /* 2506db52b6SWarner Losh * Access methods for bus resources and address space. 2606db52b6SWarner Losh */ 27de2fa7b8SMarcel Moolenaar typedef struct bus_space *bus_space_tag_t; 28c3e289e1SNathan Whitehorn typedef vm_offset_t bus_space_handle_t; 2906db52b6SWarner Losh 3006db52b6SWarner Losh #endif /* POWERPC_INCLUDE__BUS_H */ 31