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