/external/qemu/hw/ |
armv7m.c | 128 int iomemtype; local 131 iomemtype = cpu_register_io_memory(bitband_readfn, bitband_writefn, 133 sysbus_init_mmio(dev, 0x02000000, iomemtype);
|
goldfish_device.c | 92 int iomemtype; local 94 iomemtype = cpu_register_io_memory(mem_read, mem_write, opaque); 95 cpu_register_physical_memory(dev->base, dev->size, iomemtype);
|
goldfish_events_device.c | 352 int iomemtype; local 516 iomemtype = cpu_register_io_memory(events_readfn, events_writefn, s); 518 cpu_register_physical_memory(base, 0xfff, iomemtype);
|
goldfish_nand.c | 632 int iomemtype; local 637 iomemtype = cpu_register_io_memory(nand_dev_readfn, nand_dev_writefn, s); 638 cpu_register_physical_memory(base, 0x00000fff, iomemtype);
|
arm_gic.c | 98 int iomemtype; member in struct:gic_state 728 s->iomemtype = cpu_register_io_memory(gic_dist_readfn,
|
armv7m_nvic.c | 398 cpu_register_physical_memory(0xe000e000, 0x1000, s->gic.iomemtype);
|