[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-arm] [PATCH 1/2] hw/arm/aspeed: directly map the serial device
From: |
Philippe Mathieu-Daudé |
Subject: |
Re: [Qemu-arm] [PATCH 1/2] hw/arm/aspeed: directly map the serial device to the system address space |
Date: |
Thu, 8 Feb 2018 14:40:12 -0300 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.2 |
On 02/08/2018 02:30 PM, Peter Maydell wrote:
> On 8 February 2018 at 17:22, Philippe Mathieu-Daudé <address@hidden> wrote:
>> Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
>> ---
>> hw/arm/aspeed_soc.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/hw/arm/aspeed_soc.c b/hw/arm/aspeed_soc.c
>> index c83b7e207b..a786750e14 100644
>> --- a/hw/arm/aspeed_soc.c
>> +++ b/hw/arm/aspeed_soc.c
>> @@ -257,7 +257,7 @@ static void aspeed_soc_realize(DeviceState *dev, Error
>> **errp)
>> /* UART - attach an 8250 to the IO space as our UART5 */
>> if (serial_hds[0]) {
>> qemu_irq uart5 = qdev_get_gpio_in(DEVICE(&s->vic), uart_irqs[4]);
>> - serial_mm_init(&s->iomem, ASPEED_SOC_UART_5_BASE, 2,
>> + serial_mm_init(get_system_memory(), ASPEED_SOC_UART_5_BASE, 2,
>> uart5, 38400, serial_hds[0], DEVICE_LITTLE_ENDIAN);
>> }
>
> Is this a bug fix? It certainly changes behaviour, which
> suggests that a fuller commit message would be useful.
This patch is buggy indeed, using system_memory the serial address
should be ASPEED_SOC_IOMEM_BASE + ASPEED_SOC_UART_5_BASE.
Thanks!
Phil.