Revision 1724f049 hw/realview.c

b/hw/realview.c
196 196
        /* Core tile RAM.  */
197 197
        low_ram_size = ram_size - 0x20000000;
198 198
        ram_size = 0x20000000;
199
        ram_offset = qemu_ram_alloc(low_ram_size);
199
        ram_offset = qemu_ram_alloc(NULL, "realview.lowmem", low_ram_size);
200 200
        cpu_register_physical_memory(0x20000000, low_ram_size,
201 201
                                     ram_offset | IO_MEM_RAM);
202 202
    }
203 203

  
204
    ram_offset = qemu_ram_alloc(ram_size);
204
    ram_offset = qemu_ram_alloc(NULL, "realview.highmem", ram_size);
205 205
    low_ram_size = ram_size;
206 206
    if (low_ram_size > 0x10000000)
207 207
      low_ram_size = 0x10000000;
......
354 354
       startup code.  I guess this works on real hardware because the
355 355
       BootROM happens to be in ROM/flash or in memory that isn't clobbered
356 356
       until after Linux boots the secondary CPUs.  */
357
    ram_offset = qemu_ram_alloc(0x1000);
357
    ram_offset = qemu_ram_alloc(NULL, "realview.hack", 0x1000);
358 358
    cpu_register_physical_memory(SMP_BOOT_ADDR, 0x1000,
359 359
                                 ram_offset | IO_MEM_RAM);
360 360

  

Also available in: Unified diff