aboutsummaryrefslogtreecommitdiffstats
path: root/hw/ppc/e500-ccsr.h
diff options
context:
space:
mode:
Diffstat (limited to 'hw/ppc/e500-ccsr.h')
-rw-r--r--hw/ppc/e500-ccsr.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/hw/ppc/e500-ccsr.h b/hw/ppc/e500-ccsr.h
new file mode 100644
index 000000000..249c17be3
--- /dev/null
+++ b/hw/ppc/e500-ccsr.h
@@ -0,0 +1,18 @@
+#ifndef E500_CCSR_H
+#define E500_CCSR_H
+
+#include "hw/sysbus.h"
+#include "qom/object.h"
+
+struct PPCE500CCSRState {
+ /*< private >*/
+ SysBusDevice parent;
+ /*< public >*/
+
+ MemoryRegion ccsr_space;
+};
+
+#define TYPE_CCSR "e500-ccsr"
+OBJECT_DECLARE_SIMPLE_TYPE(PPCE500CCSRState, CCSR)
+
+#endif /* E500_CCSR_H */