Re: [PATCH 1/5] hw/arm/aspeed: Add get_irq to AspeedSoCClass

2021-08-28 Thread Cédric Le Goater
Hello Peter, On 8/27/21 11:04 PM, p...@fb.com wrote: > From: Peter Delevoryas > > The AST2500 uses different logic than the AST2600 for getting IRQ's. > This adds a virtual `get_irq` function to the Aspeed SOC class, so that > the shared initialization code in `hw/arm/aspeed.c` can retrieve

Re: [PATCH 1/5] hw/arm/aspeed: Add get_irq to AspeedSoCClass

2021-08-27 Thread Peter Delevoryas
on the rest of the series. From: p...@fb.com Date: Friday, August 27, 2021 at 2:06 PM To: Cc: c...@kaod.org , j...@jms.id.au , qemu-devel@nongnu.org , qemu-...@nongnu.org , Peter Delevoryas Subject: [PATCH 1/5] hw/arm/aspeed: Add get_irq to AspeedSoCClass From: Peter Delevoryas The AST2500 uses

[PATCH 1/5] hw/arm/aspeed: Add get_irq to AspeedSoCClass

2021-08-27 Thread pdel
From: Peter Delevoryas The AST2500 uses different logic than the AST2600 for getting IRQ's. This adds a virtual `get_irq` function to the Aspeed SOC class, so that the shared initialization code in `hw/arm/aspeed.c` can retrieve IRQ's. Signed-off-by: Peter Delevoryas ---