[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v5 2/2] hw/arm: Add 'virt' platform
From: |
Peter Maydell |
Subject: |
Re: [Qemu-devel] [PATCH v5 2/2] hw/arm: Add 'virt' platform |
Date: |
Sat, 10 Aug 2013 10:14:22 +0100 |
On 10 August 2013 04:23, Anup Patel <address@hidden> wrote:
>
> On Fri, Aug 9, 2013 at 9:53 PM, Peter Maydell <address@hidden> wrote:
>> +static const MemMapEntry a15memmap[] = {
>> + [VIRT_FLASH] = { 0, 0x100000 },
>> + [VIRT_CPUPERIPHS] = { 0x100000, 0x8000 },
>> + /* GIC distributor and CPU interfaces sit inside the CPU peripheral
>> space */
>> + [VIRT_GIC_DIST] = { 0x101000, 0x1000 },
>> + [VIRT_GIC_CPU] = { 0x102000, 0x1000 },
>> + [VIRT_MMIO] = { 0x108000, 0x200 },
>> + /* ...repeating for a total of NUM_VIRTIO_TRANSPORTS, each of that size
>> */
>> + [VIRT_MEM] = { 0x8000000, 30ULL * 1024 * 1024 * 1024 },
>> +};
>
> I think the memory map here is same as v4 patch.
Ugh, you're right. I could have sworn I made that change, and
then when I read that part of the patch I missed that I hadn't
because the only difference is extra zeroes. Sorry, I'll fix
and resend next week.
-- PMM