mirror of https://github.com/xemu-project/xemu.git
raspi2 acceptance test: add test for dwc-hsotg (dwc2) USB host
Add a check for functional dwc-hsotg (dwc2) USB host emulation to the Raspi 2 acceptance test Signed-off-by: Paul Zimmerman <pauldzim@gmail.com> Reviewed-by: Philippe Mathieu-Daude <f4bug@amsat.org> Message-id: 20200520235349.21215-8-pauldzim@gmail.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
60bf734e64
commit
d02ded0870
|
@ -405,13 +405,18 @@ class BootLinuxConsole(LinuxKernelTest):
|
||||||
|
|
||||||
self.vm.set_console()
|
self.vm.set_console()
|
||||||
kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
|
kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
|
||||||
serial_kernel_cmdline[uart_id])
|
serial_kernel_cmdline[uart_id] +
|
||||||
|
' root=/dev/mmcblk0p2 rootwait ' +
|
||||||
|
'dwc_otg.fiq_fsm_enable=0')
|
||||||
self.vm.add_args('-kernel', kernel_path,
|
self.vm.add_args('-kernel', kernel_path,
|
||||||
'-dtb', dtb_path,
|
'-dtb', dtb_path,
|
||||||
'-append', kernel_command_line)
|
'-append', kernel_command_line,
|
||||||
|
'-device', 'usb-kbd')
|
||||||
self.vm.launch()
|
self.vm.launch()
|
||||||
console_pattern = 'Kernel command line: %s' % kernel_command_line
|
console_pattern = 'Kernel command line: %s' % kernel_command_line
|
||||||
self.wait_for_console_pattern(console_pattern)
|
self.wait_for_console_pattern(console_pattern)
|
||||||
|
console_pattern = 'Product: QEMU USB Keyboard'
|
||||||
|
self.wait_for_console_pattern(console_pattern)
|
||||||
|
|
||||||
def test_arm_raspi2_uart0(self):
|
def test_arm_raspi2_uart0(self):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue