tests/boot-serial-test: Add support for the raspi2 machine
The raspi2 machine supports loading firmware images, so we can easily load a small test sequence as raw binary blob here to test the UART. Signed-off-by: Thomas Huth <thuth@redhat.com> Message-Id: <1512031988-32490-8-git-send-email-thuth@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
		
							parent
							
								
									7244edf22e
								
							
						
					
					
						commit
						52cb6817a7
					
				@ -362,6 +362,7 @@ check-qtest-arm-y += tests/virtio-blk-test$(EXESUF)
 | 
				
			|||||||
gcov-files-arm-y += arm-softmmu/hw/block/virtio-blk.c
 | 
					gcov-files-arm-y += arm-softmmu/hw/block/virtio-blk.c
 | 
				
			||||||
check-qtest-arm-y += tests/test-arm-mptimer$(EXESUF)
 | 
					check-qtest-arm-y += tests/test-arm-mptimer$(EXESUF)
 | 
				
			||||||
gcov-files-arm-y += hw/timer/arm_mptimer.c
 | 
					gcov-files-arm-y += hw/timer/arm_mptimer.c
 | 
				
			||||||
 | 
					check-qtest-arm-y += tests/boot-serial-test$(EXESUF)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
check-qtest-aarch64-y = tests/numa-test$(EXESUF)
 | 
					check-qtest-aarch64-y = tests/numa-test$(EXESUF)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
@ -47,6 +47,14 @@ static const uint8_t bios_moxiesim[] = {
 | 
				
			|||||||
    0x1a, 0x00, 0x00, 0x00, 0x10, 0x00      /* jmpa  0x1000 */
 | 
					    0x1a, 0x00, 0x00, 0x00, 0x10, 0x00      /* jmpa  0x1000 */
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static const uint8_t bios_raspi2[] = {
 | 
				
			||||||
 | 
					    0x08, 0x30, 0x9f, 0xe5,                 /* ldr   r3,[pc,#8]    Get base */
 | 
				
			||||||
 | 
					    0x54, 0x20, 0xa0, 0xe3,                 /* mov     r2,#'T' */
 | 
				
			||||||
 | 
					    0x00, 0x20, 0xc3, 0xe5,                 /* strb    r2,[r3] */
 | 
				
			||||||
 | 
					    0xfb, 0xff, 0xff, 0xea,                 /* b       loop */
 | 
				
			||||||
 | 
					    0x00, 0x10, 0x20, 0x3f,                 /* 0x3f201000 = UART0 base addr */
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
typedef struct testdef {
 | 
					typedef struct testdef {
 | 
				
			||||||
    const char *arch;       /* Target architecture */
 | 
					    const char *arch;       /* Target architecture */
 | 
				
			||||||
    const char *machine;    /* Name of the machine */
 | 
					    const char *machine;    /* Name of the machine */
 | 
				
			||||||
@ -78,6 +86,7 @@ static testdef_t tests[] = {
 | 
				
			|||||||
    { "microblazeel", "petalogix-ml605", "", "TT",
 | 
					    { "microblazeel", "petalogix-ml605", "", "TT",
 | 
				
			||||||
      sizeof(kernel_plml605), kernel_plml605 },
 | 
					      sizeof(kernel_plml605), kernel_plml605 },
 | 
				
			||||||
    { "moxie", "moxiesim", "", "TT", sizeof(bios_moxiesim), 0, bios_moxiesim },
 | 
					    { "moxie", "moxiesim", "", "TT", sizeof(bios_moxiesim), 0, bios_moxiesim },
 | 
				
			||||||
 | 
					    { "arm", "raspi2", "", "TT", sizeof(bios_raspi2), 0, bios_raspi2 },
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    { NULL }
 | 
					    { NULL }
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user