summary refs log tree commit diff stats
path: root/hw/lm32/lm32.h
diff options
context:
space:
mode:
Diffstat (limited to 'hw/lm32/lm32.h')
-rw-r--r--hw/lm32/lm32.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/hw/lm32/lm32.h b/hw/lm32/lm32.h
new file mode 100644
index 0000000000..236686ef2b
--- /dev/null
+++ b/hw/lm32/lm32.h
@@ -0,0 +1,30 @@
+#ifndef HW_LM32_H
+#define HW_LM32_H 1
+
+
+#include "qemu-common.h"
+
+static inline DeviceState *lm32_pic_init(qemu_irq cpu_irq)
+{
+    DeviceState *dev;
+    SysBusDevice *d;
+
+    dev = qdev_create(NULL, "lm32-pic");
+    qdev_init_nofail(dev);
+    d = SYS_BUS_DEVICE(dev);
+    sysbus_connect_irq(d, 0, cpu_irq);
+
+    return dev;
+}
+
+static inline DeviceState *lm32_juart_init(void)
+{
+    DeviceState *dev;
+
+    dev = qdev_create(NULL, "lm32-juart");
+    qdev_init_nofail(dev);
+
+    return dev;
+}
+
+#endif