blob: ce73118c97932156051f5ed73df5c74bfa83c5c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*-
* Copyright (c) 2005 The FreeBSD Foundation.
*
* SPDX-License-Identifier: BSD-2-Clause
*
* Derived in part from NetBSD's bus.h files by (alphabetically):
* Christopher G. Demetriou
* Charles M. Hannum
* Jason Thorpe
* The NetBSD Foundation.
*/
#ifndef AMD64_INCLUDE__BUS_H
#define AMD64_INCLUDE__BUS_H
/*
* Bus address and size types
*/
typedef uint64_t bus_addr_t;
typedef uint64_t bus_size_t;
/*
* Access methods for bus resources and address space.
*/
typedef uint64_t bus_space_tag_t;
typedef uint64_t bus_space_handle_t;
#endif /* AMD64_INCLUDE__BUS_H */
|