[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v41 19/21] target/avr: Add boot serial test
From: |
Michael Rolnik |
Subject: |
[PATCH v41 19/21] target/avr: Add boot serial test |
Date: |
Sat, 18 Jan 2020 21:14:14 +0200 |
Print out 'T' through serial port
Signed-off-by: Michael Rolnik <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Tested-by: Philippe Mathieu-Daudé <address@hidden>
Acked-by: Thomas Huth <address@hidden>
tests/Makefile.include
---
tests/qtest/boot-serial-test.c | 10 ++++++++++
tests/qtest/Makefile.include | 2 ++
2 files changed, 12 insertions(+)
diff --git a/tests/qtest/boot-serial-test.c b/tests/qtest/boot-serial-test.c
index 05c7f44457..e556f09db8 100644
--- a/tests/qtest/boot-serial-test.c
+++ b/tests/qtest/boot-serial-test.c
@@ -16,6 +16,15 @@
#include "qemu/osdep.h"
#include "libqtest.h"
+static const uint8_t bios_avr[] = {
+ 0x88, 0xe0, /* ldi r24, 0x08 */
+ 0x80, 0x93, 0xc1, 0x00, /* sts 0x00C1, r24 ; Enable tx */
+ 0x86, 0xe0, /* ldi r24, 0x06 */
+ 0x80, 0x93, 0xc2, 0x00, /* sts 0x00C2, r24 ; Set the data bits to 8 */
+ 0x84, 0xe5, /* ldi r24, 0x54 */
+ 0x80, 0x93, 0xc6, 0x00, /* sts 0x00C6, r24 ; Output 'T' */
+};
+
static const uint8_t kernel_mcf5208[] = {
0x41, 0xf9, 0xfc, 0x06, 0x00, 0x00, /* lea 0xfc060000,%a0 */
0x10, 0x3c, 0x00, 0x54, /* move.b #'T',%d0 */
@@ -103,6 +112,7 @@ typedef struct testdef {
static testdef_t tests[] = {
{ "alpha", "clipper", "", "PCI:" },
+ { "avr", "sample", "", "T", sizeof(bios_avr), NULL, bios_avr },
{ "ppc", "ppce500", "", "U-Boot" },
{ "ppc", "40p", "-vga none -boot d", "Trying cd:," },
{ "ppc", "g3beige", "", "PowerPC,750" },
diff --git a/tests/qtest/Makefile.include b/tests/qtest/Makefile.include
index e6bb4ab28c..4817b6320f 100644
--- a/tests/qtest/Makefile.include
+++ b/tests/qtest/Makefile.include
@@ -65,6 +65,8 @@ check-qtest-i386-y += numa-test
check-qtest-x86_64-y += $(check-qtest-i386-y)
+check-qtest-avr-y += boot-serial-test
+
check-qtest-alpha-y += boot-serial-test
check-qtest-alpha-$(CONFIG_VGA) += display-vga-test
--
2.17.2 (Apple Git-113)
- [PATCH v41 08/21] target/avr: Add instruction translation - MCU Control Instructions, (continued)
- [PATCH v41 08/21] target/avr: Add instruction translation - MCU Control Instructions, Michael Rolnik, 2020/01/18
- [PATCH v41 09/21] target/avr: Add instruction translation - CPU main translation function, Michael Rolnik, 2020/01/18
- [PATCH v41 10/21] target/avr: Add instruction disassembly function, Michael Rolnik, 2020/01/18
- [PATCH v41 11/21] hw/avr: Add limited support for USART peripheral, Michael Rolnik, 2020/01/18
- [PATCH v41 12/21] hw/avr: Add limited support for 16 bit timer peripheral, Michael Rolnik, 2020/01/18
- [PATCH v41 13/21] hw/avr: Add dummy mask device, Michael Rolnik, 2020/01/18
- [PATCH v41 14/21] hw/avr: Add example board configuration, Michael Rolnik, 2020/01/18
- [PATCH v41 15/21] target/avr: Add section about AVR into QEMU documentation, Michael Rolnik, 2020/01/18
- [PATCH v41 16/21] target/avr: Register AVR support with the rest of QEMU, Michael Rolnik, 2020/01/18
- [PATCH v41 17/21] target/avr: Add machine none test, Michael Rolnik, 2020/01/18
- [PATCH v41 19/21] target/avr: Add boot serial test,
Michael Rolnik <=
- [PATCH v41 18/21] target/avr: Update build system, Michael Rolnik, 2020/01/18
- [PATCH v41 20/21] target/avr: Add Avocado test, Michael Rolnik, 2020/01/18
- [PATCH v41 21/21] target/avr: Update MAINTAINERS file, Michael Rolnik, 2020/01/18
- Re: [PATCH v41 00/21] QEMU AVR 8 bit cores, Philippe Mathieu-Daudé, 2020/01/20