[PATCH 0/6] hw/arm/cubieboard: Few cleanups, add acceptance tests

Philippe Mathieu-Daudé posted 6 patches 4 years, 4 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20191230110953.25496-1-f4bug@amsat.org
Test asan failed
Test checkpatch passed
Test FreeBSD failed
Test docker-mingw@fedora failed
Test docker-clang@ubuntu failed
Test docker-quick@centos7 failed
include/hw/arm/allwinner-a10.h         |  7 ---
hw/arm/allwinner-a10.c                 | 39 ++++++------
hw/arm/cubieboard.c                    | 24 ++++++++
tests/acceptance/boot_linux_console.py | 85 ++++++++++++++++++++++++++
4 files changed, 130 insertions(+), 25 deletions(-)
[PATCH 0/6] hw/arm/cubieboard: Few cleanups, add acceptance tests
Posted by Philippe Mathieu-Daudé 4 years, 4 months ago
After looking at Niek Linnenbank implementation of the
Allwinner H3 [1], I looked what is common in the A10 [2].

Add some tests before modifying the code further.

[1] https://www.mail-archive.com/qemu-devel@nongnu.org/msg665532.html
[2] https://www.mail-archive.com/qemu-devel@nongnu.org/msg666809.html

Philippe Mathieu-Daudé (6):
  tests/boot_linux_console: Add initrd test for the CubieBoard
  tests/boot_linux_console: Add a SD card test for the CubieBoard
  hw/arm/allwinner-a10: Move SoC definitions out of header
  hw/arm/allwinner-a10: Simplify by passing IRQs with qdev_pass_gpios()
  hw/arm/allwinner-a10: Remove local qemu_irq variables
  hw/arm/cubieboard: Disable unsupported M-USB in device tree blob [RFC]

 include/hw/arm/allwinner-a10.h         |  7 ---
 hw/arm/allwinner-a10.c                 | 39 ++++++------
 hw/arm/cubieboard.c                    | 24 ++++++++
 tests/acceptance/boot_linux_console.py | 85 ++++++++++++++++++++++++++
 4 files changed, 130 insertions(+), 25 deletions(-)

-- 
2.21.0


Re: [PATCH 0/6] hw/arm/cubieboard: Few cleanups, add acceptance tests
Posted by Peter Maydell 4 years, 4 months ago
On Mon, 30 Dec 2019 at 11:09, Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:
>
> After looking at Niek Linnenbank implementation of the
> Allwinner H3 [1], I looked what is common in the A10 [2].
>
> Add some tests before modifying the code further.
>
> [1] https://www.mail-archive.com/qemu-devel@nongnu.org/msg665532.html
> [2] https://www.mail-archive.com/qemu-devel@nongnu.org/msg666809.html
>
> Philippe Mathieu-Daudé (6):
>   tests/boot_linux_console: Add initrd test for the CubieBoard
>   tests/boot_linux_console: Add a SD card test for the CubieBoard
>   hw/arm/allwinner-a10: Move SoC definitions out of header
>   hw/arm/allwinner-a10: Simplify by passing IRQs with qdev_pass_gpios()
>   hw/arm/allwinner-a10: Remove local qemu_irq variables
>   hw/arm/cubieboard: Disable unsupported M-USB in device tree blob [RFC]

I've added patches 1-5 to target-arm.next (but not the RFC patch 6,
which I've replied with my view on.)

thanks
-- PMM