Re: [PATCH v7 0/8] Add Axiado SoC AX3000 and EVK board
Peter Maydell <[email protected]>
| Newsgroups | gmane.comp.emulators.qemu |
|---|---|
| Message-ID | <CAFEAcA_=DVVwQYdpwnhbzF_GwR9gZp4sJa-C97caA0i7zofADA@mail.gmail.com> |
On Mon, 13 Jul 2026 at 08:31, Kuan-Jui Chiu <[email protected]> wrote: > > This patchset introduces Axiado SoC AX3000 and a EVK SCM3003 for emulation > The model for Axiado SoC AX3000 supports > 4 Cortex-A53 CPUs > Arm Generic Interrupt Controller v3 > 4 Cadence UARTs > 1 SDHCI controller with PHY > 8 Cadence GPIOs Thanks; I've applied this to target-arm.next ready for when the tree reopens for 11.2. I made a couple of minor fixes to save you doing another respin: (1) you can't use %lx in logging printf format strings for printing a variable of type 'hwaddr' (it isn't a "long" on all hosts, and this won't compile on some systems) -- you need HWADDR_PRIx . I fixed some cases of this in patches 2 and 4. (2) we don't require the "<public>" and "<private>" marker comments any more, so I removed them from patch 7. -- PMM