1438eff63SJamin Lin# Functional test that boots the ASPEED SoCs with firmware
2438eff63SJamin Lin#
3438eff63SJamin Lin# Copyright (C) 2022 ASPEED Technology Inc
4438eff63SJamin Lin#
5438eff63SJamin Lin# This work is licensed under the terms of the GNU GPL, version 2 or
6438eff63SJamin Lin# later.  See the COPYING file in the top-level directory.
7438eff63SJamin Lin
8f7bc7da0SCédric Le Goaterimport time
992f8e8e2SAlex Bennéeimport os
10f7bc7da0SCédric Le Goater
11438eff63SJamin Linfrom avocado_qemu import QemuSystemTest
12438eff63SJamin Linfrom avocado_qemu import wait_for_console_pattern
13f7bc7da0SCédric Le Goaterfrom avocado_qemu import exec_command
14438eff63SJamin Linfrom avocado_qemu import exec_command_and_wait_for_pattern
15438eff63SJamin Linfrom avocado.utils import archive
1692f8e8e2SAlex Bennéefrom avocado import skipIf
17438eff63SJamin Lin
18438eff63SJamin Lin
19438eff63SJamin Linclass AST1030Machine(QemuSystemTest):
20438eff63SJamin Lin    """Boots the zephyr os and checks that the console is operational"""
21438eff63SJamin Lin
22438eff63SJamin Lin    timeout = 10
23438eff63SJamin Lin
24438eff63SJamin Lin    def test_ast1030_zephyros(self):
25438eff63SJamin Lin        """
26438eff63SJamin Lin        :avocado: tags=arch:arm
27438eff63SJamin Lin        :avocado: tags=machine:ast1030-evb
28438eff63SJamin Lin        """
29438eff63SJamin Lin        tar_url = ('https://github.com/AspeedTech-BMC'
30438eff63SJamin Lin                   '/zephyr/releases/download/v00.01.04/ast1030-evb-demo.zip')
31438eff63SJamin Lin        tar_hash = '4c6a8ce3a8ba76ef1a65dae419ae3409343c4b20'
32438eff63SJamin Lin        tar_path = self.fetch_asset(tar_url, asset_hash=tar_hash)
33438eff63SJamin Lin        archive.extract(tar_path, self.workdir)
34438eff63SJamin Lin        kernel_file = self.workdir + "/ast1030-evb-demo/zephyr.elf"
35438eff63SJamin Lin        self.vm.set_console()
36438eff63SJamin Lin        self.vm.add_args('-kernel', kernel_file,
37438eff63SJamin Lin                         '-nographic')
38438eff63SJamin Lin        self.vm.launch()
39438eff63SJamin Lin        wait_for_console_pattern(self, "Booting Zephyr OS")
40438eff63SJamin Lin        exec_command_and_wait_for_pattern(self, "help",
41438eff63SJamin Lin                                          "Available commands")
42341e21faSCédric Le Goater
43341e21faSCédric Le Goaterclass AST2x00Machine(QemuSystemTest):
44341e21faSCédric Le Goater
45b1ceae2fSAlex Bennée    timeout = 90
46b1ceae2fSAlex Bennée
47341e21faSCédric Le Goater    def wait_for_console_pattern(self, success_message, vm=None):
48341e21faSCédric Le Goater        wait_for_console_pattern(self, success_message,
49341e21faSCédric Le Goater                                 failure_message='Kernel panic - not syncing',
50341e21faSCédric Le Goater                                 vm=vm)
51341e21faSCédric Le Goater
52341e21faSCédric Le Goater    def do_test_arm_aspeed(self, image):
53341e21faSCédric Le Goater        self.vm.set_console()
54341e21faSCédric Le Goater        self.vm.add_args('-drive', 'file=' + image + ',if=mtd,format=raw',
55341e21faSCédric Le Goater                         '-net', 'nic')
56341e21faSCédric Le Goater        self.vm.launch()
57341e21faSCédric Le Goater
58341e21faSCédric Le Goater        self.wait_for_console_pattern("U-Boot 2016.07")
59341e21faSCédric Le Goater        self.wait_for_console_pattern("## Loading kernel from FIT Image at 20080000")
60341e21faSCédric Le Goater        self.wait_for_console_pattern("Starting kernel ...")
61341e21faSCédric Le Goater        self.wait_for_console_pattern("Booting Linux on physical CPU 0x0")
62341e21faSCédric Le Goater        wait_for_console_pattern(self,
63341e21faSCédric Le Goater                "aspeed-smc 1e620000.spi: read control register: 203b0641")
64341e21faSCédric Le Goater        self.wait_for_console_pattern("ftgmac100 1e660000.ethernet eth0: irq ")
65341e21faSCédric Le Goater        self.wait_for_console_pattern("systemd[1]: Set hostname to")
66341e21faSCédric Le Goater
67341e21faSCédric Le Goater    def test_arm_ast2400_palmetto_openbmc_v2_9_0(self):
68341e21faSCédric Le Goater        """
69341e21faSCédric Le Goater        :avocado: tags=arch:arm
70341e21faSCédric Le Goater        :avocado: tags=machine:palmetto-bmc
71341e21faSCédric Le Goater        """
72341e21faSCédric Le Goater
73341e21faSCédric Le Goater        image_url = ('https://github.com/openbmc/openbmc/releases/download/2.9.0/'
74341e21faSCédric Le Goater                     'obmc-phosphor-image-palmetto.static.mtd')
75341e21faSCédric Le Goater        image_hash = ('3e13bbbc28e424865dc42f35ad672b10f2e82cdb11846bb28fa625b48beafd0d')
76341e21faSCédric Le Goater        image_path = self.fetch_asset(image_url, asset_hash=image_hash,
77341e21faSCédric Le Goater                                      algorithm='sha256')
78341e21faSCédric Le Goater
79341e21faSCédric Le Goater        self.do_test_arm_aspeed(image_path)
80341e21faSCédric Le Goater
81341e21faSCédric Le Goater    def test_arm_ast2500_romulus_openbmc_v2_9_0(self):
82341e21faSCédric Le Goater        """
83341e21faSCédric Le Goater        :avocado: tags=arch:arm
84341e21faSCédric Le Goater        :avocado: tags=machine:romulus-bmc
85341e21faSCédric Le Goater        """
86341e21faSCédric Le Goater
87341e21faSCédric Le Goater        image_url = ('https://github.com/openbmc/openbmc/releases/download/2.9.0/'
88341e21faSCédric Le Goater                     'obmc-phosphor-image-romulus.static.mtd')
89341e21faSCédric Le Goater        image_hash = ('820341076803f1955bc31e647a512c79f9add4f5233d0697678bab4604c7bb25')
90341e21faSCédric Le Goater        image_path = self.fetch_asset(image_url, asset_hash=image_hash,
91341e21faSCédric Le Goater                                      algorithm='sha256')
92341e21faSCédric Le Goater
93341e21faSCédric Le Goater        self.do_test_arm_aspeed(image_path)
94f7bc7da0SCédric Le Goater
95*7b5093b8SCédric Le Goater    def do_test_arm_aspeed_buildroot_start(self, image, cpu_id):
960793fe01SPeter Maydell        self.require_netdev('user')
970793fe01SPeter Maydell
98f7bc7da0SCédric Le Goater        self.vm.set_console()
99f7bc7da0SCédric Le Goater        self.vm.add_args('-drive', 'file=' + image + ',if=mtd,format=raw',
100f7bc7da0SCédric Le Goater                         '-net', 'nic', '-net', 'user')
101f7bc7da0SCédric Le Goater        self.vm.launch()
102f7bc7da0SCédric Le Goater
103f7bc7da0SCédric Le Goater        self.wait_for_console_pattern('U-Boot 2019.04')
104f7bc7da0SCédric Le Goater        self.wait_for_console_pattern('## Loading kernel from FIT Image')
105f7bc7da0SCédric Le Goater        self.wait_for_console_pattern('Starting kernel ...')
106f7bc7da0SCédric Le Goater        self.wait_for_console_pattern('Booting Linux on physical CPU ' + cpu_id)
107f7bc7da0SCédric Le Goater        self.wait_for_console_pattern('lease of 10.0.2.15')
10865711f9aSAlex Bennée        # the line before login:
109f7bc7da0SCédric Le Goater        self.wait_for_console_pattern('Aspeed EVB')
11065711f9aSAlex Bennée        time.sleep(0.1)
111f7bc7da0SCédric Le Goater        exec_command(self, 'root')
112f7bc7da0SCédric Le Goater        time.sleep(0.1)
113f7bc7da0SCédric Le Goater
114*7b5093b8SCédric Le Goater    def do_test_arm_aspeed_buildroot_poweroff(self):
115f7bc7da0SCédric Le Goater        exec_command_and_wait_for_pattern(self, 'poweroff',
116f7bc7da0SCédric Le Goater                                          'reboot: System halted');
117f7bc7da0SCédric Le Goater
118*7b5093b8SCédric Le Goater    def test_arm_ast2500_evb_buildroot(self):
119f7bc7da0SCédric Le Goater        """
120f7bc7da0SCédric Le Goater        :avocado: tags=arch:arm
121f7bc7da0SCédric Le Goater        :avocado: tags=machine:ast2500-evb
122f7bc7da0SCédric Le Goater        """
123f7bc7da0SCédric Le Goater
124f7bc7da0SCédric Le Goater        image_url = ('https://github.com/legoater/qemu-aspeed-boot/raw/master/'
125f7bc7da0SCédric Le Goater                     'images/ast2500-evb/buildroot-2022.05/flash.img')
126f7bc7da0SCédric Le Goater        image_hash = ('549db6e9d8cdaf4367af21c36385a68bb465779c18b5e37094fc7343decccd3f')
127f7bc7da0SCédric Le Goater        image_path = self.fetch_asset(image_url, asset_hash=image_hash,
128f7bc7da0SCédric Le Goater                                      algorithm='sha256')
129f7bc7da0SCédric Le Goater
1307a7308eaSCédric Le Goater        self.vm.add_args('-device',
1317a7308eaSCédric Le Goater                         'tmp105,bus=aspeed.i2c.bus.3,address=0x4d,id=tmp-test');
132*7b5093b8SCédric Le Goater        self.do_test_arm_aspeed_buildroot_start(image_path, '0x0')
1337a7308eaSCédric Le Goater
1347a7308eaSCédric Le Goater        exec_command_and_wait_for_pattern(self,
1357a7308eaSCédric Le Goater             'echo lm75 0x4d > /sys/class/i2c-dev/i2c-3/device/new_device',
1367a7308eaSCédric Le Goater             'i2c i2c-3: new_device: Instantiated device lm75 at 0x4d');
1377a7308eaSCédric Le Goater        exec_command_and_wait_for_pattern(self,
1387a7308eaSCédric Le Goater                             'cat /sys/class/hwmon/hwmon1/temp1_input', '0')
1397a7308eaSCédric Le Goater        self.vm.command('qom-set', path='/machine/peripheral/tmp-test',
1407a7308eaSCédric Le Goater                        property='temperature', value=18000);
1417a7308eaSCédric Le Goater        exec_command_and_wait_for_pattern(self,
1427a7308eaSCédric Le Goater                             'cat /sys/class/hwmon/hwmon1/temp1_input', '18000')
1437a7308eaSCédric Le Goater
144*7b5093b8SCédric Le Goater        self.do_test_arm_aspeed_buildroot_poweroff()
145f7bc7da0SCédric Le Goater
146*7b5093b8SCédric Le Goater    def test_arm_ast2600_evb_buildroot(self):
147f7bc7da0SCédric Le Goater        """
148f7bc7da0SCédric Le Goater        :avocado: tags=arch:arm
149f7bc7da0SCédric Le Goater        :avocado: tags=machine:ast2600-evb
150f7bc7da0SCédric Le Goater        """
151f7bc7da0SCédric Le Goater
152f7bc7da0SCédric Le Goater        image_url = ('https://github.com/legoater/qemu-aspeed-boot/raw/master/'
153f7bc7da0SCédric Le Goater                     'images/ast2600-evb/buildroot-2022.05/flash.img')
154f7bc7da0SCédric Le Goater        image_hash = ('6cc9e7d128fd4fa1fd01c883af67593cae8072c3239a0b8b6ace857f3538a92d')
155f7bc7da0SCédric Le Goater        image_path = self.fetch_asset(image_url, asset_hash=image_hash,
156f7bc7da0SCédric Le Goater                                      algorithm='sha256')
157f7bc7da0SCédric Le Goater
15861cf757dSCédric Le Goater        self.vm.add_args('-device',
15961cf757dSCédric Le Goater                         'tmp105,bus=aspeed.i2c.bus.3,address=0x4d,id=tmp-test');
1603302184fSCédric Le Goater        self.vm.add_args('-device',
1613302184fSCédric Le Goater                         'ds1338,bus=aspeed.i2c.bus.3,address=0x32');
162*7b5093b8SCédric Le Goater        self.do_test_arm_aspeed_buildroot_start(image_path, '0xf00')
16361cf757dSCédric Le Goater
16461cf757dSCédric Le Goater        exec_command_and_wait_for_pattern(self,
16561cf757dSCédric Le Goater             'echo lm75 0x4d > /sys/class/i2c-dev/i2c-3/device/new_device',
16661cf757dSCédric Le Goater             'i2c i2c-3: new_device: Instantiated device lm75 at 0x4d');
16761cf757dSCédric Le Goater        exec_command_and_wait_for_pattern(self,
16861cf757dSCédric Le Goater                             'cat /sys/class/hwmon/hwmon0/temp1_input', '0')
16961cf757dSCédric Le Goater        self.vm.command('qom-set', path='/machine/peripheral/tmp-test',
17061cf757dSCédric Le Goater                        property='temperature', value=18000);
17161cf757dSCédric Le Goater        exec_command_and_wait_for_pattern(self,
17261cf757dSCédric Le Goater                             'cat /sys/class/hwmon/hwmon0/temp1_input', '18000')
17361cf757dSCédric Le Goater
1743302184fSCédric Le Goater        exec_command_and_wait_for_pattern(self,
1753302184fSCédric Le Goater             'echo ds1307 0x32 > /sys/class/i2c-dev/i2c-3/device/new_device',
1763302184fSCédric Le Goater             'i2c i2c-3: new_device: Instantiated device ds1307 at 0x32');
1773302184fSCédric Le Goater        year = time.strftime("%Y")
1783302184fSCédric Le Goater        exec_command_and_wait_for_pattern(self, 'hwclock -f /dev/rtc1', year);
1793302184fSCédric Le Goater
180*7b5093b8SCédric Le Goater        self.do_test_arm_aspeed_buildroot_poweroff()
181bceb4d99SCédric Le Goater
182bceb4d99SCédric Le Goater
18392f8e8e2SAlex Bennéeclass AST2x00MachineSDK(QemuSystemTest):
18492f8e8e2SAlex Bennée
18592f8e8e2SAlex Bennée    # FIXME: Although these tests boot a whole distro they are still
18692f8e8e2SAlex Bennée    # slower than comparable machine models. There may be some
18792f8e8e2SAlex Bennée    # optimisations which bring down the runtime. In the meantime they
18892f8e8e2SAlex Bennée    # have generous timeouts and are disable for CI which aims for all
18992f8e8e2SAlex Bennée    # tests to run in less than 60 seconds.
19092f8e8e2SAlex Bennée    timeout = 240
19192f8e8e2SAlex Bennée
19292f8e8e2SAlex Bennée    def wait_for_console_pattern(self, success_message, vm=None):
19392f8e8e2SAlex Bennée        wait_for_console_pattern(self, success_message,
19492f8e8e2SAlex Bennée                                 failure_message='Kernel panic - not syncing',
19592f8e8e2SAlex Bennée                                 vm=vm)
19692f8e8e2SAlex Bennée
197bceb4d99SCédric Le Goater    def do_test_arm_aspeed_sdk_start(self, image, cpu_id):
1980793fe01SPeter Maydell        self.require_netdev('user')
199bceb4d99SCédric Le Goater        self.vm.set_console()
200bceb4d99SCédric Le Goater        self.vm.add_args('-drive', 'file=' + image + ',if=mtd,format=raw',
201bceb4d99SCédric Le Goater                         '-net', 'nic', '-net', 'user')
202bceb4d99SCédric Le Goater        self.vm.launch()
203bceb4d99SCédric Le Goater
204bceb4d99SCédric Le Goater        self.wait_for_console_pattern('U-Boot 2019.04')
205bceb4d99SCédric Le Goater        self.wait_for_console_pattern('## Loading kernel from FIT Image')
206bceb4d99SCédric Le Goater        self.wait_for_console_pattern('Starting kernel ...')
207bceb4d99SCédric Le Goater        self.wait_for_console_pattern('Booting Linux on physical CPU ' + cpu_id)
208bceb4d99SCédric Le Goater
20992f8e8e2SAlex Bennée    @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
210bceb4d99SCédric Le Goater    def test_arm_ast2500_evb_sdk(self):
211bceb4d99SCédric Le Goater        """
212bceb4d99SCédric Le Goater        :avocado: tags=arch:arm
213bceb4d99SCédric Le Goater        :avocado: tags=machine:ast2500-evb
214bceb4d99SCédric Le Goater        """
215bceb4d99SCédric Le Goater
216bceb4d99SCédric Le Goater        image_url = ('https://github.com/AspeedTech-BMC/openbmc/releases/'
217bceb4d99SCédric Le Goater                     'download/v08.01/ast2500-default-obmc.tar.gz')
218bceb4d99SCédric Le Goater        image_hash = ('5375f82b4c43a79427909342a1e18b4e48bd663e38466862145d27bb358796fd')
219bceb4d99SCédric Le Goater        image_path = self.fetch_asset(image_url, asset_hash=image_hash,
220bceb4d99SCédric Le Goater                                      algorithm='sha256')
221bceb4d99SCédric Le Goater        archive.extract(image_path, self.workdir)
222bceb4d99SCédric Le Goater
223bceb4d99SCédric Le Goater        self.do_test_arm_aspeed_sdk_start(
224bceb4d99SCédric Le Goater            self.workdir + '/ast2500-default/image-bmc', '0x0')
225bceb4d99SCédric Le Goater        self.wait_for_console_pattern('ast2500-default login:')
226bceb4d99SCédric Le Goater
22792f8e8e2SAlex Bennée    @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
228bceb4d99SCédric Le Goater    def test_arm_ast2600_evb_sdk(self):
229bceb4d99SCédric Le Goater        """
230bceb4d99SCédric Le Goater        :avocado: tags=arch:arm
231bceb4d99SCédric Le Goater        :avocado: tags=machine:ast2600-evb
232bceb4d99SCédric Le Goater        """
233bceb4d99SCédric Le Goater
234bceb4d99SCédric Le Goater        image_url = ('https://github.com/AspeedTech-BMC/openbmc/releases/'
235bceb4d99SCédric Le Goater                     'download/v08.01/ast2600-default-obmc.tar.gz')
236bceb4d99SCédric Le Goater        image_hash = ('f12ef15e8c1f03a214df3b91c814515c5e2b2f56119021398c1dbdd626817d15')
237bceb4d99SCédric Le Goater        image_path = self.fetch_asset(image_url, asset_hash=image_hash,
238bceb4d99SCédric Le Goater                                      algorithm='sha256')
239bceb4d99SCédric Le Goater        archive.extract(image_path, self.workdir)
240bceb4d99SCédric Le Goater
241bceb4d99SCédric Le Goater        self.vm.add_args('-device',
242bceb4d99SCédric Le Goater                         'tmp105,bus=aspeed.i2c.bus.5,address=0x4d,id=tmp-test');
243bceb4d99SCédric Le Goater        self.vm.add_args('-device',
244bceb4d99SCédric Le Goater                         'ds1338,bus=aspeed.i2c.bus.5,address=0x32');
245bceb4d99SCédric Le Goater        self.do_test_arm_aspeed_sdk_start(
246bceb4d99SCédric Le Goater            self.workdir + '/ast2600-default/image-bmc', '0xf00')
247bceb4d99SCédric Le Goater        self.wait_for_console_pattern('ast2600-default login:')
248bceb4d99SCédric Le Goater        exec_command_and_wait_for_pattern(self, 'root', 'Password:')
249bceb4d99SCédric Le Goater        exec_command_and_wait_for_pattern(self, '0penBmc', 'root@ast2600-default:~#')
250bceb4d99SCédric Le Goater
251bceb4d99SCédric Le Goater        exec_command_and_wait_for_pattern(self,
252bceb4d99SCédric Le Goater             'echo lm75 0x4d > /sys/class/i2c-dev/i2c-5/device/new_device',
253bceb4d99SCédric Le Goater             'i2c i2c-5: new_device: Instantiated device lm75 at 0x4d');
254bceb4d99SCédric Le Goater        exec_command_and_wait_for_pattern(self,
255bceb4d99SCédric Le Goater                             'cat /sys/class/hwmon/hwmon19/temp1_input', '0')
256bceb4d99SCédric Le Goater        self.vm.command('qom-set', path='/machine/peripheral/tmp-test',
257bceb4d99SCédric Le Goater                        property='temperature', value=18000);
258bceb4d99SCédric Le Goater        exec_command_and_wait_for_pattern(self,
259bceb4d99SCédric Le Goater                             'cat /sys/class/hwmon/hwmon19/temp1_input', '18000')
260bceb4d99SCédric Le Goater
261bceb4d99SCédric Le Goater        exec_command_and_wait_for_pattern(self,
262bceb4d99SCédric Le Goater             'echo ds1307 0x32 > /sys/class/i2c-dev/i2c-5/device/new_device',
263bceb4d99SCédric Le Goater             'i2c i2c-5: new_device: Instantiated device ds1307 at 0x32');
264bceb4d99SCédric Le Goater        year = time.strftime("%Y")
265bceb4d99SCédric Le Goater        exec_command_and_wait_for_pattern(self, 'hwclock -f /dev/rtc1', year);
266