2024-08-30 16:38:11 +03:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
#
|
2021-10-11 15:59:30 +03:00
|
|
|
# Test that the U-Boot firmware boots on ppc 405 machines and check the console
|
|
|
|
#
|
|
|
|
# Copyright (c) 2021 Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# This work is licensed under the terms of the GNU GPL, version 2 or
|
|
|
|
# later. See the COPYING file in the top-level directory.
|
|
|
|
|
2024-08-30 16:38:11 +03:00
|
|
|
from qemu_test import QemuSystemTest, Asset
|
|
|
|
from qemu_test import wait_for_console_pattern
|
|
|
|
from qemu_test import exec_command_and_wait_for_pattern
|
2021-10-11 15:59:30 +03:00
|
|
|
|
2021-09-27 19:14:33 +03:00
|
|
|
class Ppc405Machine(QemuSystemTest):
|
2021-10-11 15:59:30 +03:00
|
|
|
|
|
|
|
timeout = 90
|
|
|
|
|
2024-08-30 16:38:11 +03:00
|
|
|
ASSET_UBOOT = Asset(
|
|
|
|
('https://gitlab.com/huth/u-boot/-/raw/taihu-2021-10-09/'
|
|
|
|
'u-boot-taihu.bin'),
|
|
|
|
'a076bb6cdeaafa406330e51e074b66d8878d9036d67d4caa0137be03ee4c112c')
|
|
|
|
|
2021-10-11 15:59:30 +03:00
|
|
|
def do_test_ppc405(self):
|
2024-08-30 16:38:11 +03:00
|
|
|
file_path = self.ASSET_UBOOT.fetch()
|
2021-10-11 15:59:30 +03:00
|
|
|
self.vm.set_console(console_index=1)
|
|
|
|
self.vm.add_args('-bios', file_path)
|
|
|
|
self.vm.launch()
|
|
|
|
wait_for_console_pattern(self, 'AMCC PPC405EP Evaluation Board')
|
|
|
|
exec_command_and_wait_for_pattern(self, 'reset', 'AMCC PowerPC 405EP')
|
|
|
|
|
|
|
|
def test_ppc_ref405ep(self):
|
2022-03-14 17:57:17 +03:00
|
|
|
self.require_accelerator("tcg")
|
2024-08-30 16:38:11 +03:00
|
|
|
self.set_machine('ref405ep')
|
2021-10-11 15:59:30 +03:00
|
|
|
self.do_test_ppc405()
|
2024-08-30 16:38:11 +03:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
QemuSystemTest.main()
|