summaryrefslogtreecommitdiffstats
path: root/rtemsbsd/include/machine/ofw_machdep.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-03-02 16:29:11 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-03-08 09:04:18 +0100
commitc1205ee81e0a3c78ef687fa7c58639d5b7d04784 (patch)
tree2b9affd38109db8a403f992fe6d4c41793d8e64d /rtemsbsd/include/machine/ofw_machdep.h
parentFDT(4): Import from FreeBSD (diff)
downloadrtems-libbsd-c1205ee81e0a3c78ef687fa7c58639d5b7d04784.tar.bz2
FDT(4): Port to RTEMS
Diffstat (limited to 'rtemsbsd/include/machine/ofw_machdep.h')
-rw-r--r--rtemsbsd/include/machine/ofw_machdep.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/rtemsbsd/include/machine/ofw_machdep.h b/rtemsbsd/include/machine/ofw_machdep.h
index 11797da4..941be82f 100644
--- a/rtemsbsd/include/machine/ofw_machdep.h
+++ b/rtemsbsd/include/machine/ofw_machdep.h
@@ -32,6 +32,16 @@
#ifndef _MACHINE_OFW_MACHDEP_H_
#define _MACHINE_OFW_MACHDEP_H_
+#include <sys/types.h>
+#include <sys/bus.h>
+#include <sys/rman.h>
+#include <vm/vm.h>
+
typedef uint32_t cell_t;
+struct mem_region {
+ uint64_t mr_start;
+ uint64_t mr_size;
+};
+
#endif /* _MACHINE_OFW_MACHDEP_H_ */