1#!/usr/bin/env python3 2# 3# Functional test that boots the ASPEED machines 4# 5# SPDX-License-Identifier: GPL-2.0-or-later 6 7import os 8import time 9import tempfile 10import subprocess 11 12from qemu_test import Asset 13from aspeed import AspeedTest 14from qemu_test import exec_command_and_wait_for_pattern, skipIfMissingCommands 15from qemu_test.utils import archive_extract 16 17 18class AST2600Machine(AspeedTest): 19 20 ASSET_BR2_202311_AST2600_FLASH = Asset( 21 ('https://github.com/legoater/qemu-aspeed-boot/raw/master/' 22 'images/ast2600-evb/buildroot-2023.11/flash.img'), 23 'b62808daef48b438d0728ee07662290490ecfa65987bb91294cafb1bb7ad1a68') 24 25 def test_arm_ast2600_evb_buildroot(self): 26 self.set_machine('ast2600-evb') 27 28 image_path = self.ASSET_BR2_202311_AST2600_FLASH.fetch() 29 30 self.vm.add_args('-device', 31 'tmp105,bus=aspeed.i2c.bus.3,address=0x4d,id=tmp-test'); 32 self.vm.add_args('-device', 33 'ds1338,bus=aspeed.i2c.bus.3,address=0x32'); 34 self.vm.add_args('-device', 35 'i2c-echo,bus=aspeed.i2c.bus.3,address=0x42'); 36 self.do_test_arm_aspeed_buildroot_start(image_path, '0xf00', 37 'ast2600-evb login:') 38 39 exec_command_and_wait_for_pattern(self, 40 'echo lm75 0x4d > /sys/class/i2c-dev/i2c-3/device/new_device', 41 'i2c i2c-3: new_device: Instantiated device lm75 at 0x4d'); 42 exec_command_and_wait_for_pattern(self, 43 'cat /sys/class/hwmon/hwmon1/temp1_input', '0') 44 self.vm.cmd('qom-set', path='/machine/peripheral/tmp-test', 45 property='temperature', value=18000); 46 exec_command_and_wait_for_pattern(self, 47 'cat /sys/class/hwmon/hwmon1/temp1_input', '18000') 48 49 exec_command_and_wait_for_pattern(self, 50 'echo ds1307 0x32 > /sys/class/i2c-dev/i2c-3/device/new_device', 51 'i2c i2c-3: new_device: Instantiated device ds1307 at 0x32'); 52 year = time.strftime("%Y") 53 exec_command_and_wait_for_pattern(self, 'hwclock -f /dev/rtc1', year); 54 55 exec_command_and_wait_for_pattern(self, 56 'echo slave-24c02 0x1064 > /sys/bus/i2c/devices/i2c-3/new_device', 57 'i2c i2c-3: new_device: Instantiated device slave-24c02 at 0x64'); 58 exec_command_and_wait_for_pattern(self, 59 'i2cset -y 3 0x42 0x64 0x00 0xaa i', '#'); 60 exec_command_and_wait_for_pattern(self, 61 'hexdump /sys/bus/i2c/devices/3-1064/slave-eeprom', 62 '0000000 ffaa ffff ffff ffff ffff ffff ffff ffff'); 63 self.do_test_arm_aspeed_buildroot_poweroff() 64 65 ASSET_BR2_202302_AST2600_TPM_FLASH = Asset( 66 ('https://github.com/legoater/qemu-aspeed-boot/raw/master/' 67 'images/ast2600-evb/buildroot-2023.02-tpm/flash.img'), 68 'a46009ae8a5403a0826d607215e731a8c68d27c14c41e55331706b8f9c7bd997') 69 70 @skipIfMissingCommands('swtpm') 71 def test_arm_ast2600_evb_buildroot_tpm(self): 72 self.set_machine('ast2600-evb') 73 74 image_path = self.ASSET_BR2_202302_AST2600_TPM_FLASH.fetch() 75 76 tpmstate_dir = tempfile.TemporaryDirectory(prefix="qemu_") 77 socket = os.path.join(tpmstate_dir.name, 'swtpm-socket') 78 79 # We must put the TPM state dir in /tmp/, not the build dir, 80 # because some distros use AppArmor to lock down swtpm and 81 # restrict the set of locations it can access files in. 82 subprocess.run(['swtpm', 'socket', '-d', '--tpm2', 83 '--tpmstate', f'dir={tpmstate_dir.name}', 84 '--ctrl', f'type=unixio,path={socket}']) 85 86 self.vm.add_args('-chardev', f'socket,id=chrtpm,path={socket}') 87 self.vm.add_args('-tpmdev', 'emulator,id=tpm0,chardev=chrtpm') 88 self.vm.add_args('-device', 89 'tpm-tis-i2c,tpmdev=tpm0,bus=aspeed.i2c.bus.12,address=0x2e') 90 self.do_test_arm_aspeed_buildroot_start(image_path, '0xf00', 'Aspeed AST2600 EVB') 91 92 exec_command_and_wait_for_pattern(self, 93 'echo tpm_tis_i2c 0x2e > /sys/bus/i2c/devices/i2c-12/new_device', 94 'tpm_tis_i2c 12-002e: 2.0 TPM (device-id 0x1, rev-id 1)'); 95 exec_command_and_wait_for_pattern(self, 96 'cat /sys/class/tpm/tpm0/pcr-sha256/0', 97 'B804724EA13F52A9072BA87FE8FDCC497DFC9DF9AA15B9088694639C431688E0'); 98 99 self.do_test_arm_aspeed_buildroot_poweroff() 100 101 ASSET_SDK_V806_AST2600_A2 = Asset( 102 'https://github.com/AspeedTech-BMC/openbmc/releases/download/v08.06/ast2600-a2-obmc.tar.gz', 103 '9083506135f622d5e7351fcf7d4e1c7125cee5ba16141220c0ba88931f3681a4') 104 105 def test_arm_ast2600_evb_sdk(self): 106 self.set_machine('ast2600-evb') 107 108 image_path = self.ASSET_SDK_V806_AST2600_A2.fetch() 109 110 archive_extract(image_path, self.workdir) 111 112 self.vm.add_args('-device', 113 'tmp105,bus=aspeed.i2c.bus.5,address=0x4d,id=tmp-test'); 114 self.vm.add_args('-device', 115 'ds1338,bus=aspeed.i2c.bus.5,address=0x32'); 116 self.do_test_arm_aspeed_sdk_start( 117 self.workdir + '/ast2600-a2/image-bmc') 118 119 self.wait_for_console_pattern('ast2600-a2 login:') 120 121 exec_command_and_wait_for_pattern(self, 'root', 'Password:') 122 exec_command_and_wait_for_pattern(self, '0penBmc', 'root@ast2600-a2:~#') 123 124 exec_command_and_wait_for_pattern(self, 125 'echo lm75 0x4d > /sys/class/i2c-dev/i2c-5/device/new_device', 126 'i2c i2c-5: new_device: Instantiated device lm75 at 0x4d'); 127 exec_command_and_wait_for_pattern(self, 128 'cat /sys/class/hwmon/hwmon19/temp1_input', '0') 129 self.vm.cmd('qom-set', path='/machine/peripheral/tmp-test', 130 property='temperature', value=18000); 131 exec_command_and_wait_for_pattern(self, 132 'cat /sys/class/hwmon/hwmon19/temp1_input', '18000') 133 134 exec_command_and_wait_for_pattern(self, 135 'echo ds1307 0x32 > /sys/class/i2c-dev/i2c-5/device/new_device', 136 'i2c i2c-5: new_device: Instantiated device ds1307 at 0x32'); 137 year = time.strftime("%Y") 138 exec_command_and_wait_for_pattern(self, 139 '/sbin/hwclock -f /dev/rtc1', year); 140 141if __name__ == '__main__': 142 AspeedTest.main() 143