aboutsummaryrefslogtreecommitdiff
path: root/hw/arm/microbit.c
diff options
context:
space:
mode:
authorJulia Suvorova <jusual@mail.ru>2018-10-30 15:23:56 +0000
committerPeter Maydell <peter.maydell@linaro.org>2018-11-02 14:03:33 +0000
commitb0014913f2e415abe3434dec7ad7ce20afb491cd (patch)
tree485a0d8e585a2f279b5dc23a4bcab07f7445e758 /hw/arm/microbit.c
parent19790847e25c7e82bba9eb13d82894506eeabe09 (diff)
hw/arm/nrf51_soc: Connect UART to nRF51 SoC
Wire up nRF51 UART in the corresponding SoC. Signed-off-by: Julia Suvorova <jusual@mail.ru> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm/microbit.c')
-rw-r--r--hw/arm/microbit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/arm/microbit.c b/hw/arm/microbit.c
index e7d74116a5..a734e7f650 100644
--- a/hw/arm/microbit.c
+++ b/hw/arm/microbit.c
@@ -12,6 +12,7 @@
#include "qapi/error.h"
#include "hw/boards.h"
#include "hw/arm/arm.h"
+#include "sysemu/sysemu.h"
#include "exec/address-spaces.h"
#include "hw/arm/nrf51_soc.h"
@@ -35,6 +36,7 @@ static void microbit_init(MachineState *machine)
sysbus_init_child_obj(OBJECT(machine), "nrf51", soc, sizeof(s->nrf51),
TYPE_NRF51_SOC);
+ qdev_prop_set_chr(DEVICE(&s->nrf51), "serial0", serial_hd(0));
object_property_set_link(soc, OBJECT(system_memory), "memory",
&error_fatal);
object_property_set_bool(soc, true, "realized", &error_fatal);