[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PULL v5 39/43] hw/hppa: Implement DINO system board
From: |
Philippe Mathieu-Daudé |
Subject: |
Re: [Qemu-devel] [PULL v5 39/43] hw/hppa: Implement DINO system board |
Date: |
Fri, 26 Mar 2021 19:44:06 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.0 |
On 3/26/21 1:29 PM, Richard Henderson wrote:
> On 3/25/21 5:17 PM, Philippe Mathieu-Daudé wrote:
>>> + /* Set up windows into PCI bus memory. */
>>> + for (i = 1; i < 31; i++) {
>>> + uint32_t addr = 0xf0000000 + i * DINO_MEM_CHUNK_SIZE;
>>> + char *name = g_strdup_printf("PCI Outbound Window %d", i);
>>> + memory_region_init_alias(&s->pci_mem_alias[i], OBJECT(s),
>>> + name, &s->pci_mem, addr,
>>> + DINO_MEM_CHUNK_SIZE);
>>
>> Where are these aliases mapped?
>
> gsc_to_pci_forwarding
Doh I missed it, thanks!