xref: /qemu/tests/avocado/machine_aspeed.py (revision 83ecdb18)
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 skipIf
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 = 90
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
159    def do_test_arm_aspeed_buildroot_poweroff(self):
160        exec_command_and_wait_for_pattern(self, 'poweroff',
161                                          'reboot: System halted');
162
163    def test_arm_ast2500_evb_buildroot(self):
164        """
165        :avocado: tags=arch:arm
166        :avocado: tags=machine:ast2500-evb
167        """
168
169        image_url = ('https://github.com/legoater/qemu-aspeed-boot/raw/master/'
170                     'images/ast2500-evb/buildroot-2022.11-2-g15d3648df9/flash.img')
171        image_hash = ('f96d11db521fe7a2787745e9e391225deeeec3318ee0fc07c8b799b8833dd474')
172        image_path = self.fetch_asset(image_url, asset_hash=image_hash,
173                                      algorithm='sha256')
174
175        self.vm.add_args('-device',
176                         'tmp105,bus=aspeed.i2c.bus.3,address=0x4d,id=tmp-test');
177        self.do_test_arm_aspeed_buildroot_start(image_path, '0x0')
178
179        exec_command_and_wait_for_pattern(self,
180             'echo lm75 0x4d > /sys/class/i2c-dev/i2c-3/device/new_device',
181             'i2c i2c-3: new_device: Instantiated device lm75 at 0x4d');
182        exec_command_and_wait_for_pattern(self,
183                             'cat /sys/class/hwmon/hwmon1/temp1_input', '0')
184        self.vm.command('qom-set', path='/machine/peripheral/tmp-test',
185                        property='temperature', value=18000);
186        exec_command_and_wait_for_pattern(self,
187                             'cat /sys/class/hwmon/hwmon1/temp1_input', '18000')
188
189        self.do_test_arm_aspeed_buildroot_poweroff()
190
191    def test_arm_ast2600_evb_buildroot(self):
192        """
193        :avocado: tags=arch:arm
194        :avocado: tags=machine:ast2600-evb
195        """
196
197        image_url = ('https://github.com/legoater/qemu-aspeed-boot/raw/master/'
198                     'images/ast2600-evb/buildroot-2022.11-2-g15d3648df9/flash.img')
199        image_hash = ('e598d86e5ea79671ca8b59212a326c911bc8bea728dec1a1f5390d717a28bb8b')
200        image_path = self.fetch_asset(image_url, asset_hash=image_hash,
201                                      algorithm='sha256')
202
203        self.vm.add_args('-device',
204                         'tmp105,bus=aspeed.i2c.bus.3,address=0x4d,id=tmp-test');
205        self.vm.add_args('-device',
206                         'ds1338,bus=aspeed.i2c.bus.3,address=0x32');
207        self.vm.add_args('-device',
208                         'i2c-echo,bus=aspeed.i2c.bus.3,address=0x42');
209        self.do_test_arm_aspeed_buildroot_start(image_path, '0xf00')
210
211        exec_command_and_wait_for_pattern(self,
212             'echo lm75 0x4d > /sys/class/i2c-dev/i2c-3/device/new_device',
213             'i2c i2c-3: new_device: Instantiated device lm75 at 0x4d');
214        exec_command_and_wait_for_pattern(self,
215                             'cat /sys/class/hwmon/hwmon0/temp1_input', '0')
216        self.vm.command('qom-set', path='/machine/peripheral/tmp-test',
217                        property='temperature', value=18000);
218        exec_command_and_wait_for_pattern(self,
219                             'cat /sys/class/hwmon/hwmon0/temp1_input', '18000')
220
221        exec_command_and_wait_for_pattern(self,
222             'echo ds1307 0x32 > /sys/class/i2c-dev/i2c-3/device/new_device',
223             'i2c i2c-3: new_device: Instantiated device ds1307 at 0x32');
224        year = time.strftime("%Y")
225        exec_command_and_wait_for_pattern(self, 'hwclock -f /dev/rtc1', year);
226
227        exec_command_and_wait_for_pattern(self,
228             'echo slave-24c02 0x1064 > /sys/bus/i2c/devices/i2c-3/new_device',
229             'i2c i2c-3: new_device: Instantiated device slave-24c02 at 0x64');
230        exec_command(self, 'i2cset -y 3 0x42 0x64 0x00 0xaa i');
231        time.sleep(0.1)
232        exec_command_and_wait_for_pattern(self,
233             'hexdump /sys/bus/i2c/devices/3-1064/slave-eeprom',
234             '0000000 ffaa ffff ffff ffff ffff ffff ffff ffff');
235        self.do_test_arm_aspeed_buildroot_poweroff()
236
237    @skipUnless(*has_cmd('swtpm'))
238    def test_arm_ast2600_evb_buildroot_tpm(self):
239        """
240        :avocado: tags=arch:arm
241        :avocado: tags=machine:ast2600-evb
242        """
243
244        image_url = ('https://github.com/legoater/qemu-aspeed-boot/raw/master/'
245                     'images/ast2600-evb/buildroot-2023.02-tpm/flash.img')
246        image_hash = ('a46009ae8a5403a0826d607215e731a8c68d27c14c41e55331706b8f9c7bd997')
247        image_path = self.fetch_asset(image_url, asset_hash=image_hash,
248                                      algorithm='sha256')
249
250        socket = os.path.join(self.vm.sock_dir, 'swtpm-socket')
251
252        subprocess.run(['swtpm', 'socket', '-d', '--tpm2',
253                        '--tpmstate', f'dir={self.vm.temp_dir}',
254                        '--ctrl', f'type=unixio,path={socket}'])
255
256        self.vm.add_args('-chardev', f'socket,id=chrtpm,path={socket}')
257        self.vm.add_args('-tpmdev', 'emulator,id=tpm0,chardev=chrtpm')
258        self.vm.add_args('-device',
259                         'tpm-tis-i2c,tpmdev=tpm0,bus=aspeed.i2c.bus.12,address=0x2e')
260        self.do_test_arm_aspeed_buildroot_start(image_path, '0xf00', 'Aspeed AST2600 EVB')
261        exec_command(self, "passw0rd")
262
263        exec_command_and_wait_for_pattern(self,
264            'echo tpm_tis_i2c 0x2e > /sys/bus/i2c/devices/i2c-12/new_device',
265            'tpm_tis_i2c 12-002e: 2.0 TPM (device-id 0x1, rev-id 1)');
266        exec_command_and_wait_for_pattern(self,
267            'cat /sys/class/tpm/tpm0/pcr-sha256/0',
268            'B804724EA13F52A9072BA87FE8FDCC497DFC9DF9AA15B9088694639C431688E0');
269
270        self.do_test_arm_aspeed_buildroot_poweroff()
271
272class AST2x00MachineSDK(QemuSystemTest, LinuxSSHMixIn):
273
274    EXTRA_BOOTARGS = (
275        'quiet '
276        'systemd.mask=org.openbmc.HostIpmi.service '
277        'systemd.mask=xyz.openbmc_project.Chassis.Control.Power@0.service '
278        'systemd.mask=modprobe@fuse.service '
279        'systemd.mask=rngd.service '
280        'systemd.mask=obmc-console@ttyS2.service '
281    )
282
283    # FIXME: Although these tests boot a whole distro they are still
284    # slower than comparable machine models. There may be some
285    # optimisations which bring down the runtime. In the meantime they
286    # have generous timeouts and are disable for CI which aims for all
287    # tests to run in less than 60 seconds.
288    timeout = 240
289
290    def wait_for_console_pattern(self, success_message, vm=None):
291        wait_for_console_pattern(self, success_message,
292                                 failure_message='Kernel panic - not syncing',
293                                 vm=vm)
294
295    def do_test_arm_aspeed_sdk_start(self, image):
296        self.require_netdev('user')
297        self.vm.set_console()
298        self.vm.add_args('-drive', 'file=' + image + ',if=mtd,format=raw',
299                         '-net', 'nic', '-net', 'user,hostfwd=:127.0.0.1:0-:22')
300        self.vm.launch()
301
302        self.wait_for_console_pattern('U-Boot 2019.04')
303        interrupt_interactive_console_until_pattern(
304            self, 'Hit any key to stop autoboot:', 'ast#')
305        exec_command_and_wait_for_pattern(
306            self, 'setenv bootargs ${bootargs} ' + self.EXTRA_BOOTARGS, 'ast#')
307        exec_command_and_wait_for_pattern(
308            self, 'boot', '## Loading kernel from FIT Image')
309        self.wait_for_console_pattern('Starting kernel ...')
310
311    @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
312    def test_arm_ast2500_evb_sdk(self):
313        """
314        :avocado: tags=arch:arm
315        :avocado: tags=machine:ast2500-evb
316        """
317
318        image_url = ('https://github.com/AspeedTech-BMC/openbmc/releases/'
319                     'download/v08.01/ast2500-default-obmc.tar.gz')
320        image_hash = ('5375f82b4c43a79427909342a1e18b4e48bd663e38466862145d27bb358796fd')
321        image_path = self.fetch_asset(image_url, asset_hash=image_hash,
322                                      algorithm='sha256')
323        archive.extract(image_path, self.workdir)
324
325        self.do_test_arm_aspeed_sdk_start(
326            self.workdir + '/ast2500-default/image-bmc')
327        self.wait_for_console_pattern('nodistro.0 ast2500-default ttyS4')
328
329    @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
330    def test_arm_ast2600_evb_sdk(self):
331        """
332        :avocado: tags=arch:arm
333        :avocado: tags=machine:ast2600-evb
334        """
335
336        image_url = ('https://github.com/AspeedTech-BMC/openbmc/releases/'
337                     'download/v08.01/ast2600-default-obmc.tar.gz')
338        image_hash = ('f12ef15e8c1f03a214df3b91c814515c5e2b2f56119021398c1dbdd626817d15')
339        image_path = self.fetch_asset(image_url, asset_hash=image_hash,
340                                      algorithm='sha256')
341        archive.extract(image_path, self.workdir)
342
343        self.vm.add_args('-device',
344                         'tmp105,bus=aspeed.i2c.bus.5,address=0x4d,id=tmp-test');
345        self.vm.add_args('-device',
346                         'ds1338,bus=aspeed.i2c.bus.5,address=0x32');
347        self.do_test_arm_aspeed_sdk_start(
348            self.workdir + '/ast2600-default/image-bmc')
349        self.wait_for_console_pattern('nodistro.0 ast2600-default ttyS4')
350
351        self.ssh_connect('root', '0penBmc', False)
352        self.ssh_command('dmesg -c > /dev/null')
353
354        self.ssh_command_output_contains(
355             'echo lm75 0x4d > /sys/class/i2c-dev/i2c-5/device/new_device ; '
356             'dmesg -c',
357             'i2c i2c-5: new_device: Instantiated device lm75 at 0x4d');
358        self.ssh_command_output_contains(
359                             'cat /sys/class/hwmon/hwmon19/temp1_input', '0')
360        self.vm.command('qom-set', path='/machine/peripheral/tmp-test',
361                        property='temperature', value=18000);
362        self.ssh_command_output_contains(
363                             'cat /sys/class/hwmon/hwmon19/temp1_input', '18000')
364
365        self.ssh_command_output_contains(
366             'echo ds1307 0x32 > /sys/class/i2c-dev/i2c-5/device/new_device ; '
367             'dmesg -c',
368             'i2c i2c-5: new_device: Instantiated device ds1307 at 0x32');
369        year = time.strftime("%Y")
370        self.ssh_command_output_contains('/sbin/hwclock -f /dev/rtc1', year);
371