| Submitter | Michael Walle |
|---|---|
| Date | Feb. 17, 2011, 10:45 p.m. |
| Message ID | <1297982718-21865-9-git-send-email-michael@walle.cc> |
| Download | mbox | patch |
| Permalink | /patch/83502/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/lm32.h b/hw/lm32.h new file mode 100644 index 0000000..0a67632 --- /dev/null +++ b/hw/lm32.h @@ -0,0 +1,25 @@ + +#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 = sysbus_from_qdev(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; +}
This patch adds init functions for the PIC and JTAG UART commonly used in the board initialization. Signed-off-by: Michael Walle <michael@walle.cc> --- hw/lm32.h | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) create mode 100644 hw/lm32.h