Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

87 lines
2.6 KiB
C
Raw Permalink Normal View History

2018-09-25 14:02:31 +01:00
/*
* BBC micro:bit machine
* http://tech.microbit.org/hardware/
*
* Copyright 2018 Joel Stanley <joel@jms.id.au>
*
* This code is licensed under the GPL version 2 or later. See
* the COPYING file in the top-level directory.
*/
#include "qemu/osdep.h"
#include "qapi/error.h"
#include "hw/boards.h"
2019-05-23 14:47:43 +01:00
#include "hw/arm/boot.h"
#include "hw/arm/machines-qom.h"
2024-12-03 15:20:13 +01:00
#include "system/system.h"
#include "system/address-spaces.h"
2018-09-25 14:02:31 +01:00
#include "hw/arm/nrf51_soc.h"
#include "hw/i2c/microbit_i2c.h"
2019-08-12 07:23:51 +02:00
#include "hw/qdev-properties.h"
2020-09-03 16:43:22 -04:00
#include "qom/object.h"
2018-09-25 14:02:31 +01:00
2020-09-03 16:43:22 -04:00
struct MicrobitMachineState {
2018-09-25 14:02:31 +01:00
MachineState parent;
NRF51State nrf51;
MicrobitI2CState i2c;
2020-09-03 16:43:22 -04:00
};
2018-09-25 14:02:31 +01:00
#define TYPE_MICROBIT_MACHINE MACHINE_TYPE_NAME("microbit")
OBJECT_DECLARE_SIMPLE_TYPE(MicrobitMachineState, MICROBIT_MACHINE)
2018-09-25 14:02:31 +01:00
static void microbit_init(MachineState *machine)
{
MicrobitMachineState *s = MICROBIT_MACHINE(machine);
MemoryRegion *system_memory = get_system_memory();
MemoryRegion *mr;
2018-09-25 14:02:31 +01:00
object_initialize_child(OBJECT(machine), "nrf51", &s->nrf51,
TYPE_NRF51_SOC);
2018-10-30 15:23:56 +00:00
qdev_prop_set_chr(DEVICE(&s->nrf51), "serial0", serial_hd(0));
object_property_set_link(OBJECT(&s->nrf51), "memory",
OBJECT(system_memory), &error_fatal);
sysbus_realize(SYS_BUS_DEVICE(&s->nrf51), &error_fatal);
2018-09-25 14:02:31 +01:00
/*
* Overlap the TWI stub device into the SoC. This is a microbit-specific
* hack until we implement the nRF51 TWI controller properly and the
* magnetometer/accelerometer devices.
*/
object_initialize_child(OBJECT(machine), "microbit.twi", &s->i2c,
TYPE_MICROBIT_I2C);
sysbus_realize(SYS_BUS_DEVICE(&s->i2c), &error_fatal);
mr = sysbus_mmio_get_region(SYS_BUS_DEVICE(&s->i2c), 0);
memory_region_add_subregion_overlap(&s->nrf51.container, NRF51_TWI_BASE,
mr, -1);
armv7m_load_kernel(s->nrf51.armv7m.cpu, machine->kernel_filename,
0, s->nrf51.flash_size);
2018-09-25 14:02:31 +01:00
}
static void microbit_machine_class_init(ObjectClass *oc, const void *data)
2018-09-25 14:02:31 +01:00
{
MachineClass *mc = MACHINE_CLASS(oc);
mc->desc = "BBC micro:bit (Cortex-M0)";
2018-09-25 14:02:31 +01:00
mc->init = microbit_init;
mc->max_cpus = 1;
}
static const TypeInfo microbit_info = {
.name = TYPE_MICROBIT_MACHINE,
.parent = TYPE_MACHINE,
.instance_size = sizeof(MicrobitMachineState),
.class_init = microbit_machine_class_init,
.interfaces = arm_machine_interfaces,
2018-09-25 14:02:31 +01:00
};
static void microbit_machine_init(void)
{
type_register_static(&microbit_info);
}
type_init(microbit_machine_init);