mirror of
https://github.com/xemu-project/xemu.git
synced 2025-01-21 03:16:59 +00:00
lm32: pic and juart helper functions
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> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
This commit is contained in:
parent
15d7dc4f80
commit
f89286ae45
25
hw/lm32.h
Normal file
25
hw/lm32.h
Normal file
@ -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;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user