1# Functional test that boots the ASPEED SoCs with firmware 2# 3# Copyright (C) 2022 ASPEED Technology Inc 4# 5# This work is licensed under the terms of the GNU GPL, version 2 or 6# later. See the COPYING file in the top-level directory. 7 8import time 9import os 10import tempfile 11import subprocess 12 13from avocado_qemu import LinuxSSHMixIn 14from avocado_qemu import QemuSystemTest 15from avocado_qemu import wait_for_console_pattern 16from avocado_qemu import exec_command 17from avocado_qemu import exec_command_and_wait_for_pattern 18from avocado_qemu import interrupt_interactive_console_until_pattern 19from avocado_qemu import has_cmd 20from avocado.utils import archive 21from avocado import skipUnless 22from avocado import skipUnless 23 24 25class AST1030Machine(QemuSystemTest): 26 """Boots the zephyr os and checks that the console is operational""" 27 28 timeout = 10 29 30 def test_ast1030_zephyros_1_04(self): 31 """ 32 :avocado: tags=arch:arm 33 :avocado: tags=machine:ast1030-evb 34 :avocado: tags=os:zephyr 35 """ 36 tar_url = ('https://github.com/AspeedTech-BMC' 37 '/zephyr/releases/download/v00.01.04/ast1030-evb-demo.zip') 38 tar_hash = '4c6a8ce3a8ba76ef1a65dae419ae3409343c4b20' 39 tar_path = self.fetch_asset(tar_url, asset_hash=tar_hash) 40 archive.extract(tar_path, self.workdir) 41 kernel_file = self.workdir + "/ast1030-evb-demo/zephyr.elf" 42 self.vm.set_console() 43 self.vm.add_args('-kernel', kernel_file, 44 '-nographic') 45 self.vm.launch() 46 wait_for_console_pattern(self, "Booting Zephyr OS") 47 exec_command_and_wait_for_pattern(self, "help", 48 "Available commands") 49 50 def test_ast1030_zephyros_1_07(self): 51 """ 52 :avocado: tags=arch:arm 53 :avocado: tags=machine:ast1030-evb 54 :avocado: tags=os:zephyr 55 """ 56 tar_url = ('https://github.com/AspeedTech-BMC' 57 '/zephyr/releases/download/v00.01.07/ast1030-evb-demo.zip') 58 tar_hash = '40ac87eabdcd3b3454ce5aad11fedc72a33ecda2' 59 tar_path = self.fetch_asset(tar_url, asset_hash=tar_hash) 60 archive.extract(tar_path, self.workdir) 61 kernel_file = self.workdir + "/ast1030-evb-demo/zephyr.bin" 62 self.vm.set_console() 63 self.vm.add_args('-kernel', kernel_file, 64 '-nographic') 65 self.vm.launch() 66 wait_for_console_pattern(self, "Booting Zephyr OS") 67 for shell_cmd in [ 68 'kernel stacks', 69 'otp info conf', 70 'otp info scu', 71 'hwinfo devid', 72 'crypto aes256_cbc_vault', 73 'random get', 74 'jtag JTAG1 sw_xfer high TMS', 75 'adc ADC0 resolution 12', 76 'adc ADC0 read 42', 77 'adc ADC1 read 69', 78 'i2c scan I2C_0', 79 'i3c attach I3C_0', 80 'hash test', 81 'kernel uptime', 82 'kernel reboot warm', 83 'kernel uptime', 84 'kernel reboot cold', 85 'kernel uptime', 86 ]: exec_command_and_wait_for_pattern(self, shell_cmd, "uart:~$") 87 88class AST2x00Machine(QemuSystemTest): 89 90 timeout = 180 91 92 def wait_for_console_pattern(self, success_message, vm=None): 93 wait_for_console_pattern(self, success_message, 94 failure_message='Kernel panic - not syncing', 95 vm=vm) 96 97 def do_test_arm_aspeed(self, image): 98 self.vm.set_console() 99 self.vm.add_args('-drive', 'file=' + image + ',if=mtd,format=raw', 100 '-net', 'nic') 101 self.vm.launch() 102 103 self.wait_for_console_pattern("U-Boot 2016.07") 104 self.wait_for_console_pattern("## Loading kernel from FIT Image at 20080000") 105 self.wait_for_console_pattern("Starting kernel ...") 106 self.wait_for_console_pattern("Booting Linux on physical CPU 0x0") 107 wait_for_console_pattern(self, 108 "aspeed-smc 1e620000.spi: read control register: 203b0641") 109 self.wait_for_console_pattern("ftgmac100 1e660000.ethernet eth0: irq ") 110 self.wait_for_console_pattern("systemd[1]: Set hostname to") 111 112 def test_arm_ast2400_palmetto_openbmc_v2_9_0(self): 113 """ 114 :avocado: tags=arch:arm 115 :avocado: tags=machine:palmetto-bmc 116 """ 117 118 image_url = ('https://github.com/openbmc/openbmc/releases/download/2.9.0/' 119 'obmc-phosphor-image-palmetto.static.mtd') 120 image_hash = ('3e13bbbc28e424865dc42f35ad672b10f2e82cdb11846bb28fa625b48beafd0d') 121 image_path = self.fetch_asset(image_url, asset_hash=image_hash, 122 algorithm='sha256') 123 124 self.do_test_arm_aspeed(image_path) 125 126 def test_arm_ast2500_romulus_openbmc_v2_9_0(self): 127 """ 128 :avocado: tags=arch:arm 129 :avocado: tags=machine:romulus-bmc 130 """ 131 132 image_url = ('https://github.com/openbmc/openbmc/releases/download/2.9.0/' 133 'obmc-phosphor-image-romulus.static.mtd') 134 image_hash = ('820341076803f1955bc31e647a512c79f9add4f5233d0697678bab4604c7bb25') 135 image_path = self.fetch_asset(image_url, asset_hash=image_hash, 136 algorithm='sha256') 137 138 self.do_test_arm_aspeed(image_path) 139 140 def do_test_arm_aspeed_buildroot_start(self, image, cpu_id, pattern='Aspeed EVB'): 141 self.require_netdev('user') 142 143 self.vm.set_console() 144 self.vm.add_args('-drive', 'file=' + image + ',if=mtd,format=raw', 145 '-net', 'nic', '-net', 'user') 146 self.vm.launch() 147 148 self.wait_for_console_pattern('U-Boot 2019.04') 149 self.wait_for_console_pattern('## Loading kernel from FIT Image') 150 self.wait_for_console_pattern('Starting kernel ...') 151 self.wait_for_console_pattern('Booting Linux on physical CPU ' + cpu_id) 152 self.wait_for_console_pattern('lease of 10.0.2.15') 153 # the line before login: 154 self.wait_for_console_pattern(pattern) 155 time.sleep(0.1) 156 exec_command(self, 'root') 157 time.sleep(0.1) 158 exec_command(self, "passw0rd") 159 160 def do_test_arm_aspeed_buildroot_poweroff(self): 161 exec_command_and_wait_for_pattern(self, 'poweroff', 162 'reboot: System halted'); 163 164 def test_arm_ast2500_evb_buildroot(self): 165 """ 166 :avocado: tags=arch:arm 167 :avocado: tags=machine:ast2500-evb 168 """ 169 170 image_url = ('https://github.com/legoater/qemu-aspeed-boot/raw/master/' 171 'images/ast2500-evb/buildroot-2023.11/flash.img') 172 image_hash = ('c23db6160cf77d0258397eb2051162c8473a56c441417c52a91ba217186e715f') 173 image_path = self.fetch_asset(image_url, asset_hash=image_hash, 174 algorithm='sha256') 175 176 self.vm.add_args('-device', 177 'tmp105,bus=aspeed.i2c.bus.3,address=0x4d,id=tmp-test'); 178 self.do_test_arm_aspeed_buildroot_start(image_path, '0x0', 'Aspeed AST2500 EVB') 179 180 exec_command_and_wait_for_pattern(self, 181 'echo lm75 0x4d > /sys/class/i2c-dev/i2c-3/device/new_device', 182 'i2c i2c-3: new_device: Instantiated device lm75 at 0x4d'); 183 exec_command_and_wait_for_pattern(self, 184 'cat /sys/class/hwmon/hwmon1/temp1_input', '0') 185 self.vm.cmd('qom-set', path='/machine/peripheral/tmp-test', 186 property='temperature', value=18000); 187 exec_command_and_wait_for_pattern(self, 188 'cat /sys/class/hwmon/hwmon1/temp1_input', '18000') 189 190 self.do_test_arm_aspeed_buildroot_poweroff() 191 192 def test_arm_ast2600_evb_buildroot(self): 193 """ 194 :avocado: tags=arch:arm 195 :avocado: tags=machine:ast2600-evb 196 """ 197 198 image_url = ('https://github.com/legoater/qemu-aspeed-boot/raw/master/' 199 'images/ast2600-evb/buildroot-2023.11/flash.img') 200 image_hash = ('b62808daef48b438d0728ee07662290490ecfa65987bb91294cafb1bb7ad1a68') 201 image_path = self.fetch_asset(image_url, asset_hash=image_hash, 202 algorithm='sha256') 203 204 self.vm.add_args('-device', 205 'tmp105,bus=aspeed.i2c.bus.3,address=0x4d,id=tmp-test'); 206 self.vm.add_args('-device', 207 'ds1338,bus=aspeed.i2c.bus.3,address=0x32'); 208 self.vm.add_args('-device', 209 'i2c-echo,bus=aspeed.i2c.bus.3,address=0x42'); 210 self.do_test_arm_aspeed_buildroot_start(image_path, '0xf00', 'Aspeed AST2600 EVB') 211 212 exec_command_and_wait_for_pattern(self, 213 'echo lm75 0x4d > /sys/class/i2c-dev/i2c-3/device/new_device', 214 'i2c i2c-3: new_device: Instantiated device lm75 at 0x4d'); 215 exec_command_and_wait_for_pattern(self, 216 'cat /sys/class/hwmon/hwmon1/temp1_input', '0') 217 self.vm.cmd('qom-set', path='/machine/peripheral/tmp-test', 218 property='temperature', value=18000); 219 exec_command_and_wait_for_pattern(self, 220 'cat /sys/class/hwmon/hwmon1/temp1_input', '18000') 221 222 exec_command_and_wait_for_pattern(self, 223 'echo ds1307 0x32 > /sys/class/i2c-dev/i2c-3/device/new_device', 224 'i2c i2c-3: new_device: Instantiated device ds1307 at 0x32'); 225 year = time.strftime("%Y") 226 exec_command_and_wait_for_pattern(self, 'hwclock -f /dev/rtc1', year); 227 228 exec_command_and_wait_for_pattern(self, 229 'echo slave-24c02 0x1064 > /sys/bus/i2c/devices/i2c-3/new_device', 230 'i2c i2c-3: new_device: Instantiated device slave-24c02 at 0x64'); 231 exec_command(self, 'i2cset -y 3 0x42 0x64 0x00 0xaa i'); 232 time.sleep(0.1) 233 exec_command_and_wait_for_pattern(self, 234 'hexdump /sys/bus/i2c/devices/3-1064/slave-eeprom', 235 '0000000 ffaa ffff ffff ffff ffff ffff ffff ffff'); 236 self.do_test_arm_aspeed_buildroot_poweroff() 237 238 @skipUnless(*has_cmd('swtpm')) 239 def test_arm_ast2600_evb_buildroot_tpm(self): 240 """ 241 :avocado: tags=arch:arm 242 :avocado: tags=machine:ast2600-evb 243 """ 244 245 image_url = ('https://github.com/legoater/qemu-aspeed-boot/raw/master/' 246 'images/ast2600-evb/buildroot-2023.02-tpm/flash.img') 247 image_hash = ('a46009ae8a5403a0826d607215e731a8c68d27c14c41e55331706b8f9c7bd997') 248 image_path = self.fetch_asset(image_url, asset_hash=image_hash, 249 algorithm='sha256') 250 251 # force creation of VM object, which also defines self._sd 252 vm = self.vm 253 254 socket = os.path.join(self._sd.name, 'swtpm-socket') 255 256 subprocess.run(['swtpm', 'socket', '-d', '--tpm2', 257 '--tpmstate', f'dir={self.vm.temp_dir}', 258 '--ctrl', f'type=unixio,path={socket}']) 259 260 self.vm.add_args('-chardev', f'socket,id=chrtpm,path={socket}') 261 self.vm.add_args('-tpmdev', 'emulator,id=tpm0,chardev=chrtpm') 262 self.vm.add_args('-device', 263 'tpm-tis-i2c,tpmdev=tpm0,bus=aspeed.i2c.bus.12,address=0x2e') 264 self.do_test_arm_aspeed_buildroot_start(image_path, '0xf00', 'Aspeed AST2600 EVB') 265 266 exec_command_and_wait_for_pattern(self, 267 'echo tpm_tis_i2c 0x2e > /sys/bus/i2c/devices/i2c-12/new_device', 268 'tpm_tis_i2c 12-002e: 2.0 TPM (device-id 0x1, rev-id 1)'); 269 exec_command_and_wait_for_pattern(self, 270 'cat /sys/class/tpm/tpm0/pcr-sha256/0', 271 'B804724EA13F52A9072BA87FE8FDCC497DFC9DF9AA15B9088694639C431688E0'); 272 273 self.do_test_arm_aspeed_buildroot_poweroff() 274 275class AST2x00MachineSDK(QemuSystemTest, LinuxSSHMixIn): 276 277 EXTRA_BOOTARGS = ( 278 'quiet ' 279 'systemd.mask=org.openbmc.HostIpmi.service ' 280 'systemd.mask=xyz.openbmc_project.Chassis.Control.Power@0.service ' 281 'systemd.mask=modprobe@fuse.service ' 282 'systemd.mask=rngd.service ' 283 'systemd.mask=obmc-console@ttyS2.service ' 284 ) 285 286 # FIXME: Although these tests boot a whole distro they are still 287 # slower than comparable machine models. There may be some 288 # optimisations which bring down the runtime. In the meantime they 289 # have generous timeouts and are disable for CI which aims for all 290 # tests to run in less than 60 seconds. 291 timeout = 240 292 293 def wait_for_console_pattern(self, success_message, vm=None): 294 wait_for_console_pattern(self, success_message, 295 failure_message='Kernel panic - not syncing', 296 vm=vm) 297 298 def do_test_arm_aspeed_sdk_start(self, image): 299 self.require_netdev('user') 300 self.vm.set_console() 301 self.vm.add_args('-drive', 'file=' + image + ',if=mtd,format=raw', 302 '-net', 'nic', '-net', 'user,hostfwd=:127.0.0.1:0-:22') 303 self.vm.launch() 304 305 self.wait_for_console_pattern('U-Boot 2019.04') 306 interrupt_interactive_console_until_pattern( 307 self, 'Hit any key to stop autoboot:', 'ast#') 308 exec_command_and_wait_for_pattern( 309 self, 'setenv bootargs ${bootargs} ' + self.EXTRA_BOOTARGS, 'ast#') 310 exec_command_and_wait_for_pattern( 311 self, 'boot', '## Loading kernel from FIT Image') 312 self.wait_for_console_pattern('Starting kernel ...') 313 314 def do_test_aarch64_aspeed_sdk_start(self, image): 315 self.vm.set_console() 316 self.vm.add_args('-drive', 'file=' + image + ',if=mtd,format=raw', 317 '-net', 'nic', '-net', 'user,hostfwd=:127.0.0.1:0-:22') 318 319 self.vm.launch() 320 321 self.wait_for_console_pattern('U-Boot 2023.10') 322 self.wait_for_console_pattern('## Loading kernel from FIT Image') 323 self.wait_for_console_pattern('Starting kernel ...') 324 325 @skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'Test is unstable on GitLab') 326 327 def test_arm_ast2500_evb_sdk(self): 328 """ 329 :avocado: tags=arch:arm 330 :avocado: tags=machine:ast2500-evb 331 :avocado: tags=flaky 332 """ 333 334 image_url = ('https://github.com/AspeedTech-BMC/openbmc/releases/' 335 'download/v08.06/ast2500-default-obmc.tar.gz') 336 image_hash = ('e1755f3cadff69190438c688d52dd0f0d399b70a1e14b1d3d5540fc4851d38ca') 337 image_path = self.fetch_asset(image_url, asset_hash=image_hash, 338 algorithm='sha256') 339 archive.extract(image_path, self.workdir) 340 341 self.do_test_arm_aspeed_sdk_start( 342 self.workdir + '/ast2500-default/image-bmc') 343 self.wait_for_console_pattern('nodistro.0 ast2500-default ttyS4') 344 345 @skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'Test is unstable on GitLab') 346 347 def test_arm_ast2600_evb_sdk(self): 348 """ 349 :avocado: tags=arch:arm 350 :avocado: tags=machine:ast2600-evb 351 :avocado: tags=flaky 352 """ 353 354 image_url = ('https://github.com/AspeedTech-BMC/openbmc/releases/' 355 'download/v08.06/ast2600-a2-obmc.tar.gz') 356 image_hash = ('9083506135f622d5e7351fcf7d4e1c7125cee5ba16141220c0ba88931f3681a4') 357 image_path = self.fetch_asset(image_url, asset_hash=image_hash, 358 algorithm='sha256') 359 archive.extract(image_path, self.workdir) 360 361 self.vm.add_args('-device', 362 'tmp105,bus=aspeed.i2c.bus.5,address=0x4d,id=tmp-test'); 363 self.vm.add_args('-device', 364 'ds1338,bus=aspeed.i2c.bus.5,address=0x32'); 365 self.do_test_arm_aspeed_sdk_start( 366 self.workdir + '/ast2600-a2/image-bmc') 367 self.wait_for_console_pattern('nodistro.0 ast2600-a2 ttyS4') 368 369 self.ssh_connect('root', '0penBmc', False) 370 self.ssh_command('dmesg -c > /dev/null') 371 372 self.ssh_command_output_contains( 373 'echo lm75 0x4d > /sys/class/i2c-dev/i2c-5/device/new_device ; ' 374 'dmesg -c', 375 'i2c i2c-5: new_device: Instantiated device lm75 at 0x4d'); 376 self.ssh_command_output_contains( 377 'cat /sys/class/hwmon/hwmon19/temp1_input', '0') 378 self.vm.cmd('qom-set', path='/machine/peripheral/tmp-test', 379 property='temperature', value=18000); 380 self.ssh_command_output_contains( 381 'cat /sys/class/hwmon/hwmon19/temp1_input', '18000') 382 383 self.ssh_command_output_contains( 384 'echo ds1307 0x32 > /sys/class/i2c-dev/i2c-5/device/new_device ; ' 385 'dmesg -c', 386 'i2c i2c-5: new_device: Instantiated device ds1307 at 0x32'); 387 year = time.strftime("%Y") 388 self.ssh_command_output_contains('/sbin/hwclock -f /dev/rtc1', year); 389 390 def test_aarch64_ast2700_evb_sdk_v09_02(self): 391 """ 392 :avocado: tags=arch:aarch64 393 :avocado: tags=machine:ast2700-evb 394 """ 395 396 image_url = ('https://github.com/AspeedTech-BMC/openbmc/releases/' 397 'download/v09.02/ast2700-default-obmc.tar.gz') 398 image_hash = 'ac969c2602f4e6bdb69562ff466b89ae3fe1d86e1f6797bb7969d787f82116a7' 399 image_path = self.fetch_asset(image_url, asset_hash=image_hash, 400 algorithm='sha256') 401 archive.extract(image_path, self.workdir) 402 403 num_cpu = 4 404 image_dir = self.workdir + '/ast2700-default/' 405 uboot_size = os.path.getsize(image_dir + 'u-boot-nodtb.bin') 406 uboot_dtb_load_addr = hex(0x400000000 + uboot_size) 407 408 load_images_list = [ 409 { 410 'addr': '0x400000000', 411 'file': image_dir + 'u-boot-nodtb.bin' 412 }, 413 { 414 'addr': str(uboot_dtb_load_addr), 415 'file': image_dir + 'u-boot.dtb' 416 }, 417 { 418 'addr': '0x430000000', 419 'file': image_dir + 'bl31.bin' 420 }, 421 { 422 'addr': '0x430080000', 423 'file': image_dir + 'optee/tee-raw.bin' 424 } 425 ] 426 427 for load_image in load_images_list: 428 addr = load_image['addr'] 429 file = load_image['file'] 430 self.vm.add_args('-device', 431 f'loader,force-raw=on,addr={addr},file={file}') 432 433 for i in range(num_cpu): 434 self.vm.add_args('-device', 435 f'loader,addr=0x430000000,cpu-num={i}') 436 437 self.vm.add_args('-smp', str(num_cpu)) 438 self.do_test_aarch64_aspeed_sdk_start(image_dir + 'image-bmc') 439 self.wait_for_console_pattern('nodistro.0 ast2700-default ttyS12') 440 self.ssh_connect('root', '0penBmc', False) 441 442class AST2x00MachineMMC(QemuSystemTest): 443 444 timeout = 240 445 446 def wait_for_console_pattern(self, success_message, vm=None): 447 wait_for_console_pattern(self, success_message, 448 failure_message='Kernel panic - not syncing', 449 vm=vm) 450 451 def test_arm_aspeed_emmc_boot(self): 452 """ 453 :avocado: tags=arch:arm 454 :avocado: tags=machine:rainier-bmc 455 :avocado: tags=device:emmc 456 """ 457 458 image_url = ('https://fileserver.linaro.org/s/B6pJTwWEkzSDi36/download/' 459 'mmc-p10bmc-20240617.qcow2') 460 image_hash = ('d523fb478d2b84d5adc5658d08502bc64b1486955683814f89c6137518acd90b') 461 image_path = self.fetch_asset(image_url, asset_hash=image_hash, 462 algorithm='sha256') 463 464 self.require_netdev('user') 465 466 self.vm.set_console() 467 self.vm.add_args('-drive', 468 'file=' + image_path + ',if=sd,id=sd2,index=2', 469 '-net', 'nic', '-net', 'user') 470 self.vm.launch() 471 472 self.wait_for_console_pattern('U-Boot SPL 2019.04') 473 self.wait_for_console_pattern('Trying to boot from MMC1') 474 self.wait_for_console_pattern('U-Boot 2019.04') 475 self.wait_for_console_pattern('eMMC 2nd Boot') 476 self.wait_for_console_pattern('## Loading kernel from FIT Image') 477 self.wait_for_console_pattern('Starting kernel ...') 478 self.wait_for_console_pattern('Booting Linux on physical CPU 0xf00') 479 self.wait_for_console_pattern('mmcblk0: p1 p2 p3 p4 p5 p6 p7') 480 self.wait_for_console_pattern('IBM eBMC (OpenBMC for IBM Enterprise') 481