xref: /qemu/tests/avocado/boot_linux_console.py (revision 370ed600)
1# Functional test that boots a Linux kernel and checks the console
2#
3# Copyright (c) 2018 Red Hat, Inc.
4#
5# Author:
6#  Cleber Rosa <crosa@redhat.com>
7#
8# This work is licensed under the terms of the GNU GPL, version 2 or
9# later.  See the COPYING file in the top-level directory.
10
11import os
12import lzma
13import gzip
14import shutil
15
16from avocado import skip
17from avocado import skipUnless
18from avocado import skipIf
19from avocado_qemu import QemuSystemTest
20from avocado_qemu import exec_command
21from avocado_qemu import exec_command_and_wait_for_pattern
22from avocado_qemu import interrupt_interactive_console_until_pattern
23from avocado_qemu import wait_for_console_pattern
24from avocado.utils import process
25from avocado.utils import archive
26
27"""
28Round up to next power of 2
29"""
30def pow2ceil(x):
31    return 1 if x == 0 else 2**(x - 1).bit_length()
32
33def file_truncate(path, size):
34    if size != os.path.getsize(path):
35        with open(path, 'ab+') as fd:
36            fd.truncate(size)
37
38"""
39Expand file size to next power of 2
40"""
41def image_pow2ceil_expand(path):
42        size = os.path.getsize(path)
43        size_aligned = pow2ceil(size)
44        if size != size_aligned:
45            with open(path, 'ab+') as fd:
46                fd.truncate(size_aligned)
47
48class LinuxKernelTest(QemuSystemTest):
49    KERNEL_COMMON_COMMAND_LINE = 'printk.time=0 '
50
51    def wait_for_console_pattern(self, success_message, vm=None):
52        wait_for_console_pattern(self, success_message,
53                                 failure_message='Kernel panic - not syncing',
54                                 vm=vm)
55
56    def extract_from_deb(self, deb, path):
57        """
58        Extracts a file from a deb package into the test workdir
59
60        :param deb: path to the deb archive
61        :param path: path within the deb archive of the file to be extracted
62        :returns: path of the extracted file
63        """
64        cwd = os.getcwd()
65        os.chdir(self.workdir)
66        file_path = process.run("ar t %s" % deb).stdout_text.split()[2]
67        process.run("ar x %s %s" % (deb, file_path))
68        archive.extract(file_path, self.workdir)
69        os.chdir(cwd)
70        # Return complete path to extracted file.  Because callers to
71        # extract_from_deb() specify 'path' with a leading slash, it is
72        # necessary to use os.path.relpath() as otherwise os.path.join()
73        # interprets it as an absolute path and drops the self.workdir part.
74        return os.path.normpath(os.path.join(self.workdir,
75                                             os.path.relpath(path, '/')))
76
77    def extract_from_rpm(self, rpm, path):
78        """
79        Extracts a file from an RPM package into the test workdir.
80
81        :param rpm: path to the rpm archive
82        :param path: path within the rpm archive of the file to be extracted
83                     needs to be a relative path (starting with './') because
84                     cpio(1), which is used to extract the file, expects that.
85        :returns: path of the extracted file
86        """
87        cwd = os.getcwd()
88        os.chdir(self.workdir)
89        process.run("rpm2cpio %s | cpio -id %s" % (rpm, path), shell=True)
90        os.chdir(cwd)
91        return os.path.normpath(os.path.join(self.workdir, path))
92
93class BootLinuxConsole(LinuxKernelTest):
94    """
95    Boots a Linux kernel and checks that the console is operational and the
96    kernel command line is properly passed from QEMU to the kernel
97    """
98    timeout = 90
99
100    def test_x86_64_pc(self):
101        """
102        :avocado: tags=arch:x86_64
103        :avocado: tags=machine:pc
104        """
105        kernel_url = ('https://archives.fedoraproject.org/pub/archive/fedora'
106                      '/linux/releases/29/Everything/x86_64/os/images/pxeboot'
107                      '/vmlinuz')
108        kernel_hash = '23bebd2680757891cf7adedb033532163a792495'
109        kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
110
111        self.vm.set_console()
112        kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
113        self.vm.add_args('-kernel', kernel_path,
114                         '-append', kernel_command_line)
115        self.vm.launch()
116        console_pattern = 'Kernel command line: %s' % kernel_command_line
117        self.wait_for_console_pattern(console_pattern)
118
119    def test_mips_malta(self):
120        """
121        :avocado: tags=arch:mips
122        :avocado: tags=machine:malta
123        :avocado: tags=endian:big
124        """
125        deb_url = ('http://snapshot.debian.org/archive/debian/'
126                   '20130217T032700Z/pool/main/l/linux-2.6/'
127                   'linux-image-2.6.32-5-4kc-malta_2.6.32-48_mips.deb')
128        deb_hash = 'a8cfc28ad8f45f54811fc6cf74fc43ffcfe0ba04'
129        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
130        kernel_path = self.extract_from_deb(deb_path,
131                                            '/boot/vmlinux-2.6.32-5-4kc-malta')
132
133        self.vm.set_console()
134        kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
135        self.vm.add_args('-kernel', kernel_path,
136                         '-append', kernel_command_line)
137        self.vm.launch()
138        console_pattern = 'Kernel command line: %s' % kernel_command_line
139        self.wait_for_console_pattern(console_pattern)
140
141    def test_mips64el_malta(self):
142        """
143        This test requires the ar tool to extract "data.tar.gz" from
144        the Debian package.
145
146        The kernel can be rebuilt using this Debian kernel source [1] and
147        following the instructions on [2].
148
149        [1] http://snapshot.debian.org/package/linux-2.6/2.6.32-48/
150            #linux-source-2.6.32_2.6.32-48
151        [2] https://kernel-team.pages.debian.net/kernel-handbook/
152            ch-common-tasks.html#s-common-official
153
154        :avocado: tags=arch:mips64el
155        :avocado: tags=machine:malta
156        """
157        deb_url = ('http://snapshot.debian.org/archive/debian/'
158                   '20130217T032700Z/pool/main/l/linux-2.6/'
159                   'linux-image-2.6.32-5-5kc-malta_2.6.32-48_mipsel.deb')
160        deb_hash = '1aaec92083bf22fda31e0d27fa8d9a388e5fc3d5'
161        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
162        kernel_path = self.extract_from_deb(deb_path,
163                                            '/boot/vmlinux-2.6.32-5-5kc-malta')
164
165        self.vm.set_console()
166        kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
167        self.vm.add_args('-kernel', kernel_path,
168                         '-append', kernel_command_line)
169        self.vm.launch()
170        console_pattern = 'Kernel command line: %s' % kernel_command_line
171        self.wait_for_console_pattern(console_pattern)
172
173    def test_mips64el_fuloong2e(self):
174        """
175        :avocado: tags=arch:mips64el
176        :avocado: tags=machine:fuloong2e
177        :avocado: tags=endian:little
178        """
179        deb_url = ('http://archive.debian.org/debian/pool/main/l/linux/'
180                   'linux-image-3.16.0-6-loongson-2e_3.16.56-1+deb8u1_mipsel.deb')
181        deb_hash = 'd04d446045deecf7b755ef576551de0c4184dd44'
182        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
183        kernel_path = self.extract_from_deb(deb_path,
184                                            '/boot/vmlinux-3.16.0-6-loongson-2e')
185
186        self.vm.set_console()
187        kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
188        self.vm.add_args('-kernel', kernel_path,
189                         '-append', kernel_command_line)
190        self.vm.launch()
191        console_pattern = 'Kernel command line: %s' % kernel_command_line
192        self.wait_for_console_pattern(console_pattern)
193
194    def test_mips_malta_cpio(self):
195        """
196        :avocado: tags=arch:mips
197        :avocado: tags=machine:malta
198        :avocado: tags=endian:big
199        """
200        deb_url = ('http://snapshot.debian.org/archive/debian/'
201                   '20160601T041800Z/pool/main/l/linux/'
202                   'linux-image-4.5.0-2-4kc-malta_4.5.5-1_mips.deb')
203        deb_hash = 'a3c84f3e88b54e06107d65a410d1d1e8e0f340f8'
204        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
205        kernel_path = self.extract_from_deb(deb_path,
206                                            '/boot/vmlinux-4.5.0-2-4kc-malta')
207        initrd_url = ('https://github.com/groeck/linux-build-test/raw/'
208                      '8584a59ed9e5eb5ee7ca91f6d74bbb06619205b8/rootfs/'
209                      'mips/rootfs.cpio.gz')
210        initrd_hash = 'bf806e17009360a866bf537f6de66590de349a99'
211        initrd_path_gz = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
212        initrd_path = self.workdir + "rootfs.cpio"
213        archive.gzip_uncompress(initrd_path_gz, initrd_path)
214
215        self.vm.set_console()
216        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE
217                               + 'console=ttyS0 console=tty '
218                               + 'rdinit=/sbin/init noreboot')
219        self.vm.add_args('-kernel', kernel_path,
220                         '-initrd', initrd_path,
221                         '-append', kernel_command_line,
222                         '-no-reboot')
223        self.vm.launch()
224        self.wait_for_console_pattern('Boot successful.')
225
226        exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo',
227                                                'BogoMIPS')
228        exec_command_and_wait_for_pattern(self, 'uname -a',
229                                                'Debian')
230        exec_command_and_wait_for_pattern(self, 'reboot',
231                                                'reboot: Restarting system')
232        # Wait for VM to shut down gracefully
233        self.vm.wait()
234
235    @skipUnless(os.getenv('AVOCADO_ALLOW_UNTRUSTED_CODE'), 'untrusted code')
236    def test_mips64el_malta_5KEc_cpio(self):
237        """
238        :avocado: tags=arch:mips64el
239        :avocado: tags=machine:malta
240        :avocado: tags=endian:little
241        :avocado: tags=cpu:5KEc
242        """
243        kernel_url = ('https://github.com/philmd/qemu-testing-blob/'
244                      'raw/9ad2df38/mips/malta/mips64el/'
245                      'vmlinux-3.19.3.mtoman.20150408')
246        kernel_hash = '00d1d268fb9f7d8beda1de6bebcc46e884d71754'
247        kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
248        initrd_url = ('https://github.com/groeck/linux-build-test/'
249                      'raw/8584a59e/rootfs/'
250                      'mipsel64/rootfs.mipsel64r1.cpio.gz')
251        initrd_hash = '1dbb8a396e916847325284dbe2151167'
252        initrd_path_gz = self.fetch_asset(initrd_url, algorithm='md5',
253                                          asset_hash=initrd_hash)
254        initrd_path = self.workdir + "rootfs.cpio"
255        archive.gzip_uncompress(initrd_path_gz, initrd_path)
256
257        self.vm.set_console()
258        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE
259                               + 'console=ttyS0 console=tty '
260                               + 'rdinit=/sbin/init noreboot')
261        self.vm.add_args('-kernel', kernel_path,
262                         '-initrd', initrd_path,
263                         '-append', kernel_command_line,
264                         '-no-reboot')
265        self.vm.launch()
266        wait_for_console_pattern(self, 'Boot successful.')
267
268        exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo',
269                                                'MIPS 5KE')
270        exec_command_and_wait_for_pattern(self, 'uname -a',
271                                                '3.19.3.mtoman.20150408')
272        exec_command_and_wait_for_pattern(self, 'reboot',
273                                                'reboot: Restarting system')
274        # Wait for VM to shut down gracefully
275        self.vm.wait()
276
277    def do_test_mips_malta32el_nanomips(self, kernel_url, kernel_hash):
278        kernel_path_xz = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
279        kernel_path = self.workdir + "kernel"
280        with lzma.open(kernel_path_xz, 'rb') as f_in:
281            with open(kernel_path, 'wb') as f_out:
282                shutil.copyfileobj(f_in, f_out)
283
284        self.vm.set_console()
285        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE
286                               + 'mem=256m@@0x0 '
287                               + 'console=ttyS0')
288        self.vm.add_args('-no-reboot',
289                         '-kernel', kernel_path,
290                         '-append', kernel_command_line)
291        self.vm.launch()
292        console_pattern = 'Kernel command line: %s' % kernel_command_line
293        self.wait_for_console_pattern(console_pattern)
294
295    def test_mips_malta32el_nanomips_4k(self):
296        """
297        :avocado: tags=arch:mipsel
298        :avocado: tags=machine:malta
299        :avocado: tags=endian:little
300        :avocado: tags=cpu:I7200
301        """
302        kernel_url = ('https://mipsdistros.mips.com/LinuxDistro/nanomips/'
303                      'kernels/v4.15.18-432-gb2eb9a8b07a1-20180627102142/'
304                      'generic_nano32r6el_page4k.xz')
305        kernel_hash = '477456aafd2a0f1ddc9482727f20fe9575565dd6'
306        self.do_test_mips_malta32el_nanomips(kernel_url, kernel_hash)
307
308    def test_mips_malta32el_nanomips_16k_up(self):
309        """
310        :avocado: tags=arch:mipsel
311        :avocado: tags=machine:malta
312        :avocado: tags=endian:little
313        :avocado: tags=cpu:I7200
314        """
315        kernel_url = ('https://mipsdistros.mips.com/LinuxDistro/nanomips/'
316                      'kernels/v4.15.18-432-gb2eb9a8b07a1-20180627102142/'
317                      'generic_nano32r6el_page16k_up.xz')
318        kernel_hash = 'e882868f944c71c816e832e2303b7874d044a7bc'
319        self.do_test_mips_malta32el_nanomips(kernel_url, kernel_hash)
320
321    def test_mips_malta32el_nanomips_64k_dbg(self):
322        """
323        :avocado: tags=arch:mipsel
324        :avocado: tags=machine:malta
325        :avocado: tags=endian:little
326        :avocado: tags=cpu:I7200
327        """
328        kernel_url = ('https://mipsdistros.mips.com/LinuxDistro/nanomips/'
329                      'kernels/v4.15.18-432-gb2eb9a8b07a1-20180627102142/'
330                      'generic_nano32r6el_page64k_dbg.xz')
331        kernel_hash = '18d1c68f2e23429e266ca39ba5349ccd0aeb7180'
332        self.do_test_mips_malta32el_nanomips(kernel_url, kernel_hash)
333
334    def test_aarch64_xlnx_versal_virt(self):
335        """
336        :avocado: tags=arch:aarch64
337        :avocado: tags=machine:xlnx-versal-virt
338        :avocado: tags=device:pl011
339        :avocado: tags=device:arm_gicv3
340        :avocado: tags=accel:tcg
341        """
342        images_url = ('http://ports.ubuntu.com/ubuntu-ports/dists/'
343                      'bionic-updates/main/installer-arm64/'
344                      '20101020ubuntu543.19/images/')
345        kernel_url = images_url + 'netboot/ubuntu-installer/arm64/linux'
346        kernel_hash = 'e167757620640eb26de0972f578741924abb3a82'
347        kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
348
349        initrd_url = images_url + 'netboot/ubuntu-installer/arm64/initrd.gz'
350        initrd_hash = 'cab5cb3fcefca8408aa5aae57f24574bfce8bdb9'
351        initrd_path = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
352
353        self.vm.set_console()
354        self.vm.add_args('-m', '2G',
355                         '-accel', 'tcg',
356                         '-kernel', kernel_path,
357                         '-initrd', initrd_path)
358        self.vm.launch()
359        self.wait_for_console_pattern('Checked W+X mappings: passed')
360
361    def test_arm_virt(self):
362        """
363        :avocado: tags=arch:arm
364        :avocado: tags=machine:virt
365        :avocado: tags=accel:tcg
366        """
367        kernel_url = ('https://archives.fedoraproject.org/pub/archive/fedora'
368                      '/linux/releases/29/Everything/armhfp/os/images/pxeboot'
369                      '/vmlinuz')
370        kernel_hash = 'e9826d741b4fb04cadba8d4824d1ed3b7fb8b4d4'
371        kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
372
373        self.vm.set_console()
374        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
375                               'console=ttyAMA0')
376        self.vm.add_args('-kernel', kernel_path,
377                         '-append', kernel_command_line)
378        self.vm.launch()
379        console_pattern = 'Kernel command line: %s' % kernel_command_line
380        self.wait_for_console_pattern(console_pattern)
381
382    def test_arm_emcraft_sf2(self):
383        """
384        :avocado: tags=arch:arm
385        :avocado: tags=machine:emcraft-sf2
386        :avocado: tags=endian:little
387        :avocado: tags=u-boot
388        :avocado: tags=accel:tcg
389        """
390        self.require_netdev('user')
391
392        uboot_url = ('https://raw.githubusercontent.com/'
393                     'Subbaraya-Sundeep/qemu-test-binaries/'
394                     'fe371d32e50ca682391e1e70ab98c2942aeffb01/u-boot')
395        uboot_hash = 'cbb8cbab970f594bf6523b9855be209c08374ae2'
396        uboot_path = self.fetch_asset(uboot_url, asset_hash=uboot_hash)
397        spi_url = ('https://raw.githubusercontent.com/'
398                   'Subbaraya-Sundeep/qemu-test-binaries/'
399                   'fe371d32e50ca682391e1e70ab98c2942aeffb01/spi.bin')
400        spi_hash = '65523a1835949b6f4553be96dec1b6a38fb05501'
401        spi_path = self.fetch_asset(spi_url, asset_hash=spi_hash)
402
403        file_truncate(spi_path, 16 << 20) # Spansion S25FL128SDPBHICO is 16 MiB
404
405        self.vm.set_console()
406        kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE
407        self.vm.add_args('-kernel', uboot_path,
408                         '-append', kernel_command_line,
409                         '-drive', 'file=' + spi_path + ',if=mtd,format=raw',
410                         '-no-reboot')
411        self.vm.launch()
412        self.wait_for_console_pattern('Enter \'help\' for a list')
413
414        exec_command_and_wait_for_pattern(self, 'ifconfig eth0 10.0.2.15',
415                                                 'eth0: link becomes ready')
416        exec_command_and_wait_for_pattern(self, 'ping -c 3 10.0.2.2',
417            '3 packets transmitted, 3 packets received, 0% packet loss')
418
419    def do_test_arm_raspi2(self, uart_id):
420        """
421        :avocado: tags=accel:tcg
422
423        The kernel can be rebuilt using the kernel source referenced
424        and following the instructions on the on:
425        https://www.raspberrypi.org/documentation/linux/kernel/building.md
426        """
427        serial_kernel_cmdline = {
428            0: 'earlycon=pl011,0x3f201000 console=ttyAMA0',
429        }
430        deb_url = ('http://archive.raspberrypi.org/debian/'
431                   'pool/main/r/raspberrypi-firmware/'
432                   'raspberrypi-kernel_1.20190215-1_armhf.deb')
433        deb_hash = 'cd284220b32128c5084037553db3c482426f3972'
434        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
435        kernel_path = self.extract_from_deb(deb_path, '/boot/kernel7.img')
436        dtb_path = self.extract_from_deb(deb_path, '/boot/bcm2709-rpi-2-b.dtb')
437
438        self.vm.set_console()
439        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
440                               serial_kernel_cmdline[uart_id] +
441                               ' root=/dev/mmcblk0p2 rootwait ' +
442                               'dwc_otg.fiq_fsm_enable=0')
443        self.vm.add_args('-kernel', kernel_path,
444                         '-dtb', dtb_path,
445                         '-append', kernel_command_line,
446                         '-device', 'usb-kbd')
447        self.vm.launch()
448        console_pattern = 'Kernel command line: %s' % kernel_command_line
449        self.wait_for_console_pattern(console_pattern)
450        console_pattern = 'Product: QEMU USB Keyboard'
451        self.wait_for_console_pattern(console_pattern)
452
453    def test_arm_raspi2_uart0(self):
454        """
455        :avocado: tags=arch:arm
456        :avocado: tags=machine:raspi2b
457        :avocado: tags=device:pl011
458        :avocado: tags=accel:tcg
459        """
460        self.do_test_arm_raspi2(0)
461
462    def test_arm_raspi2_initrd(self):
463        """
464        :avocado: tags=arch:arm
465        :avocado: tags=machine:raspi2b
466        """
467        deb_url = ('http://archive.raspberrypi.org/debian/'
468                   'pool/main/r/raspberrypi-firmware/'
469                   'raspberrypi-kernel_1.20190215-1_armhf.deb')
470        deb_hash = 'cd284220b32128c5084037553db3c482426f3972'
471        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
472        kernel_path = self.extract_from_deb(deb_path, '/boot/kernel7.img')
473        dtb_path = self.extract_from_deb(deb_path, '/boot/bcm2709-rpi-2-b.dtb')
474
475        initrd_url = ('https://github.com/groeck/linux-build-test/raw/'
476                      '2eb0a73b5d5a28df3170c546ddaaa9757e1e0848/rootfs/'
477                      'arm/rootfs-armv7a.cpio.gz')
478        initrd_hash = '604b2e45cdf35045846b8bbfbf2129b1891bdc9c'
479        initrd_path_gz = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
480        initrd_path = os.path.join(self.workdir, 'rootfs.cpio')
481        archive.gzip_uncompress(initrd_path_gz, initrd_path)
482
483        self.vm.set_console()
484        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
485                               'earlycon=pl011,0x3f201000 console=ttyAMA0 '
486                               'panic=-1 noreboot ' +
487                               'dwc_otg.fiq_fsm_enable=0')
488        self.vm.add_args('-kernel', kernel_path,
489                         '-dtb', dtb_path,
490                         '-initrd', initrd_path,
491                         '-append', kernel_command_line,
492                         '-no-reboot')
493        self.vm.launch()
494        self.wait_for_console_pattern('Boot successful.')
495
496        exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo',
497                                                'BCM2835')
498        exec_command_and_wait_for_pattern(self, 'cat /proc/iomem',
499                                                '/soc/cprman@7e101000')
500        exec_command_and_wait_for_pattern(self, 'halt', 'reboot: System halted')
501        # Wait for VM to shut down gracefully
502        self.vm.wait()
503
504    def test_arm_exynos4210_initrd(self):
505        """
506        :avocado: tags=arch:arm
507        :avocado: tags=machine:smdkc210
508        :avocado: tags=accel:tcg
509        """
510        deb_url = ('https://snapshot.debian.org/archive/debian/'
511                   '20190928T224601Z/pool/main/l/linux/'
512                   'linux-image-4.19.0-6-armmp_4.19.67-2+deb10u1_armhf.deb')
513        deb_hash = 'fa9df4a0d38936cb50084838f2cb933f570d7d82'
514        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
515        kernel_path = self.extract_from_deb(deb_path,
516                                            '/boot/vmlinuz-4.19.0-6-armmp')
517        dtb_path = '/usr/lib/linux-image-4.19.0-6-armmp/exynos4210-smdkv310.dtb'
518        dtb_path = self.extract_from_deb(deb_path, dtb_path)
519
520        initrd_url = ('https://github.com/groeck/linux-build-test/raw/'
521                      '2eb0a73b5d5a28df3170c546ddaaa9757e1e0848/rootfs/'
522                      'arm/rootfs-armv5.cpio.gz')
523        initrd_hash = '2b50f1873e113523967806f4da2afe385462ff9b'
524        initrd_path_gz = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
525        initrd_path = os.path.join(self.workdir, 'rootfs.cpio')
526        archive.gzip_uncompress(initrd_path_gz, initrd_path)
527
528        self.vm.set_console()
529        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
530                               'earlycon=exynos4210,0x13800000 earlyprintk ' +
531                               'console=ttySAC0,115200n8 ' +
532                               'random.trust_cpu=off cryptomgr.notests ' +
533                               'cpuidle.off=1 panic=-1 noreboot')
534
535        self.vm.add_args('-kernel', kernel_path,
536                         '-dtb', dtb_path,
537                         '-initrd', initrd_path,
538                         '-append', kernel_command_line,
539                         '-no-reboot')
540        self.vm.launch()
541
542        self.wait_for_console_pattern('Boot successful.')
543        # TODO user command, for now the uart is stuck
544
545    def test_arm_cubieboard_initrd(self):
546        """
547        :avocado: tags=arch:arm
548        :avocado: tags=machine:cubieboard
549        :avocado: tags=accel:tcg
550        """
551        deb_url = ('https://apt.armbian.com/pool/main/l/'
552                   'linux-5.10.16-sunxi/linux-image-current-sunxi_21.02.2_armhf.deb')
553        deb_hash = '9fa84beda245cabf0b4fa84cf6eaa7738ead1da0'
554        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
555        kernel_path = self.extract_from_deb(deb_path,
556                                            '/boot/vmlinuz-5.10.16-sunxi')
557        dtb_path = '/usr/lib/linux-image-current-sunxi/sun4i-a10-cubieboard.dtb'
558        dtb_path = self.extract_from_deb(deb_path, dtb_path)
559        initrd_url = ('https://github.com/groeck/linux-build-test/raw/'
560                      '2eb0a73b5d5a28df3170c546ddaaa9757e1e0848/rootfs/'
561                      'arm/rootfs-armv5.cpio.gz')
562        initrd_hash = '2b50f1873e113523967806f4da2afe385462ff9b'
563        initrd_path_gz = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
564        initrd_path = os.path.join(self.workdir, 'rootfs.cpio')
565        archive.gzip_uncompress(initrd_path_gz, initrd_path)
566
567        self.vm.set_console()
568        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
569                               'console=ttyS0,115200 '
570                               'usbcore.nousb '
571                               'panic=-1 noreboot')
572        self.vm.add_args('-kernel', kernel_path,
573                         '-dtb', dtb_path,
574                         '-initrd', initrd_path,
575                         '-append', kernel_command_line,
576                         '-no-reboot')
577        self.vm.launch()
578        self.wait_for_console_pattern('Boot successful.')
579
580        exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo',
581                                                'Allwinner sun4i/sun5i')
582        exec_command_and_wait_for_pattern(self, 'cat /proc/iomem',
583                                                'system-control@1c00000')
584        exec_command_and_wait_for_pattern(self, 'reboot',
585                                                'reboot: Restarting system')
586        # Wait for VM to shut down gracefully
587        self.vm.wait()
588
589    def test_arm_cubieboard_sata(self):
590        """
591        :avocado: tags=arch:arm
592        :avocado: tags=machine:cubieboard
593        :avocado: tags=accel:tcg
594        """
595        deb_url = ('https://apt.armbian.com/pool/main/l/'
596                   'linux-5.10.16-sunxi/linux-image-current-sunxi_21.02.2_armhf.deb')
597        deb_hash = '9fa84beda245cabf0b4fa84cf6eaa7738ead1da0'
598        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
599        kernel_path = self.extract_from_deb(deb_path,
600                                            '/boot/vmlinuz-5.10.16-sunxi')
601        dtb_path = '/usr/lib/linux-image-current-sunxi/sun4i-a10-cubieboard.dtb'
602        dtb_path = self.extract_from_deb(deb_path, dtb_path)
603        rootfs_url = ('https://github.com/groeck/linux-build-test/raw/'
604                      '2eb0a73b5d5a28df3170c546ddaaa9757e1e0848/rootfs/'
605                      'arm/rootfs-armv5.ext2.gz')
606        rootfs_hash = '093e89d2b4d982234bf528bc9fb2f2f17a9d1f93'
607        rootfs_path_gz = self.fetch_asset(rootfs_url, asset_hash=rootfs_hash)
608        rootfs_path = os.path.join(self.workdir, 'rootfs.cpio')
609        archive.gzip_uncompress(rootfs_path_gz, rootfs_path)
610
611        self.vm.set_console()
612        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
613                               'console=ttyS0,115200 '
614                               'usbcore.nousb '
615                               'root=/dev/sda ro '
616                               'panic=-1 noreboot')
617        self.vm.add_args('-kernel', kernel_path,
618                         '-dtb', dtb_path,
619                         '-drive', 'if=none,format=raw,id=disk0,file='
620                                   + rootfs_path,
621                         '-device', 'ide-hd,bus=ide.0,drive=disk0',
622                         '-append', kernel_command_line,
623                         '-no-reboot')
624        self.vm.launch()
625        self.wait_for_console_pattern('Boot successful.')
626
627        exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo',
628                                                'Allwinner sun4i/sun5i')
629        exec_command_and_wait_for_pattern(self, 'cat /proc/partitions',
630                                                'sda')
631        exec_command_and_wait_for_pattern(self, 'reboot',
632                                                'reboot: Restarting system')
633        # Wait for VM to shut down gracefully
634        self.vm.wait()
635
636    @skipUnless(os.getenv('AVOCADO_ALLOW_LARGE_STORAGE'), 'storage limited')
637    def test_arm_cubieboard_openwrt_22_03_2(self):
638        """
639        :avocado: tags=arch:arm
640        :avocado: tags=machine:cubieboard
641        :avocado: tags=device:sd
642        """
643
644        # This test download a 7.5 MiB compressed image and expand it
645        # to 126 MiB.
646        image_url = ('https://downloads.openwrt.org/releases/22.03.2/targets/'
647                     'sunxi/cortexa8/openwrt-22.03.2-sunxi-cortexa8-'
648                     'cubietech_a10-cubieboard-ext4-sdcard.img.gz')
649        image_hash = ('94b5ecbfbc0b3b56276e5146b899eafa'
650                      '2ac5dc2d08733d6705af9f144f39f554')
651        image_path_gz = self.fetch_asset(image_url, asset_hash=image_hash,
652                                         algorithm='sha256')
653        image_path = archive.extract(image_path_gz, self.workdir)
654        image_pow2ceil_expand(image_path)
655
656        self.vm.set_console()
657        self.vm.add_args('-drive', 'file=' + image_path + ',if=sd,format=raw',
658                         '-nic', 'user',
659                         '-no-reboot')
660        self.vm.launch()
661
662        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
663                               'usbcore.nousb '
664                               'noreboot')
665
666        self.wait_for_console_pattern('U-Boot SPL')
667
668        interrupt_interactive_console_until_pattern(
669                self, 'Hit any key to stop autoboot:', '=>')
670        exec_command_and_wait_for_pattern(self, "setenv extraargs '" +
671                                                kernel_command_line + "'", '=>')
672        exec_command_and_wait_for_pattern(self, 'boot', 'Starting kernel ...');
673
674        self.wait_for_console_pattern(
675            'Please press Enter to activate this console.')
676
677        exec_command_and_wait_for_pattern(self, ' ', 'root@')
678
679        exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo',
680                                                'Allwinner sun4i/sun5i')
681        exec_command_and_wait_for_pattern(self, 'reboot',
682                                                'reboot: Restarting system')
683        # Wait for VM to shut down gracefully
684        self.vm.wait()
685
686    @skipUnless(os.getenv('AVOCADO_TIMEOUT_EXPECTED'), 'Test might timeout')
687    def test_arm_quanta_gsj(self):
688        """
689        :avocado: tags=arch:arm
690        :avocado: tags=machine:quanta-gsj
691        :avocado: tags=accel:tcg
692        """
693        # 25 MiB compressed, 32 MiB uncompressed.
694        image_url = (
695                'https://github.com/hskinnemoen/openbmc/releases/download/'
696                '20200711-gsj-qemu-0/obmc-phosphor-image-gsj.static.mtd.gz')
697        image_hash = '14895e634923345cb5c8776037ff7876df96f6b1'
698        image_path_gz = self.fetch_asset(image_url, asset_hash=image_hash)
699        image_name = 'obmc.mtd'
700        image_path = os.path.join(self.workdir, image_name)
701        archive.gzip_uncompress(image_path_gz, image_path)
702
703        self.vm.set_console()
704        drive_args = 'file=' + image_path + ',if=mtd,bus=0,unit=0'
705        self.vm.add_args('-drive', drive_args)
706        self.vm.launch()
707
708        # Disable drivers and services that stall for a long time during boot,
709        # to avoid running past the 90-second timeout. These may be removed
710        # as the corresponding device support is added.
711        kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + (
712                'console=${console} '
713                'mem=${mem} '
714                'initcall_blacklist=npcm_i2c_bus_driver_init '
715                'systemd.mask=systemd-random-seed.service '
716                'systemd.mask=dropbearkey.service '
717        )
718
719        self.wait_for_console_pattern('> BootBlock by Nuvoton')
720        self.wait_for_console_pattern('>Device: Poleg BMC NPCM730')
721        self.wait_for_console_pattern('>Skip DDR init.')
722        self.wait_for_console_pattern('U-Boot ')
723        interrupt_interactive_console_until_pattern(
724                self, 'Hit any key to stop autoboot:', 'U-Boot>')
725        exec_command_and_wait_for_pattern(
726                self, "setenv bootargs ${bootargs} " + kernel_command_line,
727                'U-Boot>')
728        exec_command_and_wait_for_pattern(
729                self, 'run romboot', 'Booting Kernel from flash')
730        self.wait_for_console_pattern('Booting Linux on physical CPU 0x0')
731        self.wait_for_console_pattern('CPU1: thread -1, cpu 1, socket 0')
732        self.wait_for_console_pattern('OpenBMC Project Reference Distro')
733        self.wait_for_console_pattern('gsj login:')
734
735    def test_arm_quanta_gsj_initrd(self):
736        """
737        :avocado: tags=arch:arm
738        :avocado: tags=machine:quanta-gsj
739        :avocado: tags=accel:tcg
740        """
741        initrd_url = (
742                'https://github.com/hskinnemoen/openbmc/releases/download/'
743                '20200711-gsj-qemu-0/obmc-phosphor-initramfs-gsj.cpio.xz')
744        initrd_hash = '98fefe5d7e56727b1eb17d5c00311b1b5c945300'
745        initrd_path = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
746        kernel_url = (
747                'https://github.com/hskinnemoen/openbmc/releases/download/'
748                '20200711-gsj-qemu-0/uImage-gsj.bin')
749        kernel_hash = 'fa67b2f141d56d39b3c54305c0e8a899c99eb2c7'
750        kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
751        dtb_url = (
752                'https://github.com/hskinnemoen/openbmc/releases/download/'
753                '20200711-gsj-qemu-0/nuvoton-npcm730-gsj.dtb')
754        dtb_hash = '18315f7006d7b688d8312d5c727eecd819aa36a4'
755        dtb_path = self.fetch_asset(dtb_url, asset_hash=dtb_hash)
756
757        self.vm.set_console()
758        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
759                               'console=ttyS0,115200n8 '
760                               'earlycon=uart8250,mmio32,0xf0001000')
761        self.vm.add_args('-kernel', kernel_path,
762                         '-initrd', initrd_path,
763                         '-dtb', dtb_path,
764                         '-append', kernel_command_line)
765        self.vm.launch()
766
767        self.wait_for_console_pattern('Booting Linux on physical CPU 0x0')
768        self.wait_for_console_pattern('CPU1: thread -1, cpu 1, socket 0')
769        self.wait_for_console_pattern(
770                'Give root password for system maintenance')
771
772    def test_arm_orangepi(self):
773        """
774        :avocado: tags=arch:arm
775        :avocado: tags=machine:orangepi-pc
776        :avocado: tags=accel:tcg
777        """
778        deb_url = ('https://apt.armbian.com/pool/main/l/'
779                   'linux-5.10.16-sunxi/linux-image-current-sunxi_21.02.2_armhf.deb')
780        deb_hash = '9fa84beda245cabf0b4fa84cf6eaa7738ead1da0'
781        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
782        kernel_path = self.extract_from_deb(deb_path,
783                                            '/boot/vmlinuz-5.10.16-sunxi')
784        dtb_path = '/usr/lib/linux-image-current-sunxi/sun8i-h3-orangepi-pc.dtb'
785        dtb_path = self.extract_from_deb(deb_path, dtb_path)
786
787        self.vm.set_console()
788        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
789                               'console=ttyS0,115200n8 '
790                               'earlycon=uart,mmio32,0x1c28000')
791        self.vm.add_args('-kernel', kernel_path,
792                         '-dtb', dtb_path,
793                         '-append', kernel_command_line)
794        self.vm.launch()
795        console_pattern = 'Kernel command line: %s' % kernel_command_line
796        self.wait_for_console_pattern(console_pattern)
797
798    def test_arm_orangepi_initrd(self):
799        """
800        :avocado: tags=arch:arm
801        :avocado: tags=accel:tcg
802        :avocado: tags=machine:orangepi-pc
803        """
804        deb_url = ('https://apt.armbian.com/pool/main/l/'
805                   'linux-5.10.16-sunxi/linux-image-current-sunxi_21.02.2_armhf.deb')
806        deb_hash = '9fa84beda245cabf0b4fa84cf6eaa7738ead1da0'
807        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
808        kernel_path = self.extract_from_deb(deb_path,
809                                            '/boot/vmlinuz-5.10.16-sunxi')
810        dtb_path = '/usr/lib/linux-image-current-sunxi/sun8i-h3-orangepi-pc.dtb'
811        dtb_path = self.extract_from_deb(deb_path, dtb_path)
812        initrd_url = ('https://github.com/groeck/linux-build-test/raw/'
813                      '2eb0a73b5d5a28df3170c546ddaaa9757e1e0848/rootfs/'
814                      'arm/rootfs-armv7a.cpio.gz')
815        initrd_hash = '604b2e45cdf35045846b8bbfbf2129b1891bdc9c'
816        initrd_path_gz = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
817        initrd_path = os.path.join(self.workdir, 'rootfs.cpio')
818        archive.gzip_uncompress(initrd_path_gz, initrd_path)
819
820        self.vm.set_console()
821        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
822                               'console=ttyS0,115200 '
823                               'panic=-1 noreboot')
824        self.vm.add_args('-kernel', kernel_path,
825                         '-dtb', dtb_path,
826                         '-initrd', initrd_path,
827                         '-append', kernel_command_line,
828                         '-no-reboot')
829        self.vm.launch()
830        self.wait_for_console_pattern('Boot successful.')
831
832        exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo',
833                                                'Allwinner sun8i Family')
834        exec_command_and_wait_for_pattern(self, 'cat /proc/iomem',
835                                                'system-control@1c00000')
836        exec_command_and_wait_for_pattern(self, 'reboot',
837                                                'reboot: Restarting system')
838        # Wait for VM to shut down gracefully
839        self.vm.wait()
840
841    def test_arm_orangepi_sd(self):
842        """
843        :avocado: tags=arch:arm
844        :avocado: tags=accel:tcg
845        :avocado: tags=machine:orangepi-pc
846        :avocado: tags=device:sd
847        """
848        self.require_netdev('user')
849
850        deb_url = ('https://apt.armbian.com/pool/main/l/'
851                   'linux-5.10.16-sunxi/linux-image-current-sunxi_21.02.2_armhf.deb')
852        deb_hash = '9fa84beda245cabf0b4fa84cf6eaa7738ead1da0'
853        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
854        kernel_path = self.extract_from_deb(deb_path,
855                                            '/boot/vmlinuz-5.10.16-sunxi')
856        dtb_path = '/usr/lib/linux-image-current-sunxi/sun8i-h3-orangepi-pc.dtb'
857        dtb_path = self.extract_from_deb(deb_path, dtb_path)
858        rootfs_url = ('http://storage.kernelci.org/images/rootfs/buildroot/'
859                      'buildroot-baseline/20221116.0/armel/rootfs.ext2.xz')
860        rootfs_hash = 'fae32f337c7b87547b10f42599acf109da8b6d9a'
861        rootfs_path_xz = self.fetch_asset(rootfs_url, asset_hash=rootfs_hash)
862        rootfs_path = os.path.join(self.workdir, 'rootfs.cpio')
863        archive.lzma_uncompress(rootfs_path_xz, rootfs_path)
864        image_pow2ceil_expand(rootfs_path)
865
866        self.vm.set_console()
867        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
868                               'console=ttyS0,115200 '
869                               'root=/dev/mmcblk0 rootwait rw '
870                               'panic=-1 noreboot')
871        self.vm.add_args('-kernel', kernel_path,
872                         '-dtb', dtb_path,
873                         '-drive', 'file=' + rootfs_path + ',if=sd,format=raw',
874                         '-append', kernel_command_line,
875                         '-no-reboot')
876        self.vm.launch()
877        shell_ready = "/bin/sh: can't access tty; job control turned off"
878        self.wait_for_console_pattern(shell_ready)
879
880        exec_command_and_wait_for_pattern(self, 'cat /proc/cpuinfo',
881                                                'Allwinner sun8i Family')
882        exec_command_and_wait_for_pattern(self, 'cat /proc/partitions',
883                                                'mmcblk0')
884        exec_command_and_wait_for_pattern(self, 'ifconfig eth0 up',
885                                                 'eth0: Link is Up')
886        exec_command_and_wait_for_pattern(self, 'udhcpc eth0',
887            'udhcpc: lease of 10.0.2.15 obtained')
888        exec_command_and_wait_for_pattern(self, 'ping -c 3 10.0.2.2',
889            '3 packets transmitted, 3 packets received, 0% packet loss')
890        exec_command_and_wait_for_pattern(self, 'reboot',
891                                                'reboot: Restarting system')
892        # Wait for VM to shut down gracefully
893        self.vm.wait()
894
895    @skipUnless(os.getenv('AVOCADO_ALLOW_LARGE_STORAGE'), 'storage limited')
896    def test_arm_orangepi_bionic_20_08(self):
897        """
898        :avocado: tags=arch:arm
899        :avocado: tags=machine:orangepi-pc
900        :avocado: tags=device:sd
901        """
902
903        # This test download a 275 MiB compressed image and expand it
904        # to 1036 MiB, but the underlying filesystem is 1552 MiB...
905        # As we expand it to 2 GiB we are safe.
906
907        image_url = ('https://archive.armbian.com/orangepipc/archive/'
908                     'Armbian_20.08.1_Orangepipc_bionic_current_5.8.5.img.xz')
909        image_hash = ('b4d6775f5673486329e45a0586bf06b6'
910                      'dbe792199fd182ac6b9c7bb6c7d3e6dd')
911        image_path_xz = self.fetch_asset(image_url, asset_hash=image_hash,
912                                         algorithm='sha256')
913        image_path = archive.extract(image_path_xz, self.workdir)
914        image_pow2ceil_expand(image_path)
915
916        self.vm.set_console()
917        self.vm.add_args('-drive', 'file=' + image_path + ',if=sd,format=raw',
918                         '-nic', 'user',
919                         '-no-reboot')
920        self.vm.launch()
921
922        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
923                               'console=ttyS0,115200 '
924                               'loglevel=7 '
925                               'nosmp '
926                               'systemd.default_timeout_start_sec=9000 '
927                               'systemd.mask=armbian-zram-config.service '
928                               'systemd.mask=armbian-ramlog.service')
929
930        self.wait_for_console_pattern('U-Boot SPL')
931        self.wait_for_console_pattern('Autoboot in ')
932        exec_command_and_wait_for_pattern(self, ' ', '=>')
933        exec_command_and_wait_for_pattern(self, "setenv extraargs '" +
934                                                kernel_command_line + "'", '=>')
935        exec_command_and_wait_for_pattern(self, 'boot', 'Starting kernel ...');
936
937        self.wait_for_console_pattern('systemd[1]: Set hostname ' +
938                                      'to <orangepipc>')
939        self.wait_for_console_pattern('Starting Load Kernel Modules...')
940
941    @skipUnless(os.getenv('AVOCADO_ALLOW_LARGE_STORAGE'), 'storage limited')
942    def test_arm_orangepi_uboot_netbsd9(self):
943        """
944        :avocado: tags=arch:arm
945        :avocado: tags=machine:orangepi-pc
946        :avocado: tags=device:sd
947        :avocado: tags=os:netbsd
948        """
949        # This test download a 304MB compressed image and expand it to 2GB
950        deb_url = ('http://snapshot.debian.org/archive/debian/'
951                   '20200108T145233Z/pool/main/u/u-boot/'
952                   'u-boot-sunxi_2020.01%2Bdfsg-1_armhf.deb')
953        deb_hash = 'f67f404a80753ca3d1258f13e38f2b060e13db99'
954        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
955        # We use the common OrangePi PC 'plus' build of U-Boot for our secondary
956        # program loader (SPL). We will then set the path to the more specific
957        # OrangePi "PC" device tree blob with 'setenv fdtfile' in U-Boot prompt,
958        # before to boot NetBSD.
959        uboot_path = '/usr/lib/u-boot/orangepi_plus/u-boot-sunxi-with-spl.bin'
960        uboot_path = self.extract_from_deb(deb_path, uboot_path)
961        image_url = ('https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.0/'
962                     'evbarm-earmv7hf/binary/gzimg/armv7.img.gz')
963        image_hash = '2babb29d36d8360adcb39c09e31060945259917a'
964        image_path_gz = self.fetch_asset(image_url, asset_hash=image_hash)
965        image_path = os.path.join(self.workdir, 'armv7.img')
966        archive.gzip_uncompress(image_path_gz, image_path)
967        image_pow2ceil_expand(image_path)
968        image_drive_args = 'if=sd,format=raw,snapshot=on,file=' + image_path
969
970        # dd if=u-boot-sunxi-with-spl.bin of=armv7.img bs=1K seek=8 conv=notrunc
971        with open(uboot_path, 'rb') as f_in:
972            with open(image_path, 'r+b') as f_out:
973                f_out.seek(8 * 1024)
974                shutil.copyfileobj(f_in, f_out)
975
976        self.vm.set_console()
977        self.vm.add_args('-nic', 'user',
978                         '-drive', image_drive_args,
979                         '-global', 'allwinner-rtc.base-year=2000',
980                         '-no-reboot')
981        self.vm.launch()
982        wait_for_console_pattern(self, 'U-Boot 2020.01+dfsg-1')
983        interrupt_interactive_console_until_pattern(self,
984                                       'Hit any key to stop autoboot:',
985                                       'switch to partitions #0, OK')
986
987        exec_command_and_wait_for_pattern(self, '', '=>')
988        cmd = 'setenv bootargs root=ld0a'
989        exec_command_and_wait_for_pattern(self, cmd, '=>')
990        cmd = 'setenv kernel netbsd-GENERIC.ub'
991        exec_command_and_wait_for_pattern(self, cmd, '=>')
992        cmd = 'setenv fdtfile dtb/sun8i-h3-orangepi-pc.dtb'
993        exec_command_and_wait_for_pattern(self, cmd, '=>')
994        cmd = ("setenv bootcmd 'fatload mmc 0:1 ${kernel_addr_r} ${kernel}; "
995               "fatload mmc 0:1 ${fdt_addr_r} ${fdtfile}; "
996               "fdt addr ${fdt_addr_r}; "
997               "bootm ${kernel_addr_r} - ${fdt_addr_r}'")
998        exec_command_and_wait_for_pattern(self, cmd, '=>')
999
1000        exec_command_and_wait_for_pattern(self, 'boot',
1001                                          'Booting kernel from Legacy Image')
1002        wait_for_console_pattern(self, 'Starting kernel ...')
1003        wait_for_console_pattern(self, 'NetBSD 9.0 (GENERIC)')
1004        # Wait for user-space
1005        wait_for_console_pattern(self, 'Starting root file system check')
1006
1007    def test_aarch64_raspi3_atf(self):
1008        """
1009        :avocado: tags=accel:tcg
1010        :avocado: tags=arch:aarch64
1011        :avocado: tags=machine:raspi3b
1012        :avocado: tags=cpu:cortex-a53
1013        :avocado: tags=device:pl011
1014        :avocado: tags=atf
1015        """
1016        zip_url = ('https://github.com/pbatard/RPi3/releases/download/'
1017                   'v1.15/RPi3_UEFI_Firmware_v1.15.zip')
1018        zip_hash = '74b3bd0de92683cadb14e008a7575e1d0c3cafb9'
1019        zip_path = self.fetch_asset(zip_url, asset_hash=zip_hash)
1020
1021        archive.extract(zip_path, self.workdir)
1022        efi_fd = os.path.join(self.workdir, 'RPI_EFI.fd')
1023
1024        self.vm.set_console(console_index=1)
1025        self.vm.add_args('-nodefaults',
1026                         '-device', 'loader,file=%s,force-raw=true' % efi_fd)
1027        self.vm.launch()
1028        self.wait_for_console_pattern('version UEFI Firmware v1.15')
1029
1030    def test_s390x_s390_ccw_virtio(self):
1031        """
1032        :avocado: tags=arch:s390x
1033        :avocado: tags=machine:s390-ccw-virtio
1034        """
1035        kernel_url = ('https://archives.fedoraproject.org/pub/archive'
1036                      '/fedora-secondary/releases/29/Everything/s390x/os/images'
1037                      '/kernel.img')
1038        kernel_hash = 'e8e8439103ef8053418ef062644ffd46a7919313'
1039        kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
1040
1041        self.vm.set_console()
1042        kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=sclp0'
1043        self.vm.add_args('-nodefaults',
1044                         '-kernel', kernel_path,
1045                         '-append', kernel_command_line)
1046        self.vm.launch()
1047        console_pattern = 'Kernel command line: %s' % kernel_command_line
1048        self.wait_for_console_pattern(console_pattern)
1049
1050    def test_alpha_clipper(self):
1051        """
1052        :avocado: tags=arch:alpha
1053        :avocado: tags=machine:clipper
1054        """
1055        kernel_url = ('http://archive.debian.org/debian/dists/lenny/main/'
1056                      'installer-alpha/20090123lenny10/images/cdrom/vmlinuz')
1057        kernel_hash = '3a943149335529e2ed3e74d0d787b85fb5671ba3'
1058        kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
1059
1060        uncompressed_kernel = archive.uncompress(kernel_path, self.workdir)
1061
1062        self.vm.set_console()
1063        kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
1064        self.vm.add_args('-nodefaults',
1065                         '-kernel', uncompressed_kernel,
1066                         '-append', kernel_command_line)
1067        self.vm.launch()
1068        console_pattern = 'Kernel command line: %s' % kernel_command_line
1069        self.wait_for_console_pattern(console_pattern)
1070
1071    def test_m68k_q800(self):
1072        """
1073        :avocado: tags=arch:m68k
1074        :avocado: tags=machine:q800
1075        """
1076        deb_url = ('https://snapshot.debian.org/archive/debian-ports'
1077                   '/20191021T083923Z/pool-m68k/main'
1078                   '/l/linux/kernel-image-5.3.0-1-m68k-di_5.3.7-1_m68k.udeb')
1079        deb_hash = '044954bb9be4160a3ce81f8bc1b5e856b75cccd1'
1080        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash)
1081        kernel_path = self.extract_from_deb(deb_path,
1082                                            '/boot/vmlinux-5.3.0-1-m68k')
1083
1084        self.vm.set_console()
1085        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
1086                               'console=ttyS0 vga=off')
1087        self.vm.add_args('-kernel', kernel_path,
1088                         '-append', kernel_command_line)
1089        self.vm.launch()
1090        console_pattern = 'Kernel command line: %s' % kernel_command_line
1091        self.wait_for_console_pattern(console_pattern)
1092        console_pattern = 'No filesystem could mount root'
1093        self.wait_for_console_pattern(console_pattern)
1094
1095    def do_test_advcal_2018(self, day, tar_hash, kernel_name, console=0):
1096        tar_url = ('https://qemu-advcal.gitlab.io'
1097                   '/qac-best-of-multiarch/download/day' + day + '.tar.xz')
1098        file_path = self.fetch_asset(tar_url, asset_hash=tar_hash)
1099        archive.extract(file_path, self.workdir)
1100        self.vm.set_console(console_index=console)
1101        self.vm.add_args('-kernel',
1102                         self.workdir + '/day' + day + '/' + kernel_name)
1103        self.vm.launch()
1104        self.wait_for_console_pattern('QEMU advent calendar')
1105
1106    def test_arm_vexpressa9(self):
1107        """
1108        :avocado: tags=arch:arm
1109        :avocado: tags=machine:vexpress-a9
1110        """
1111        tar_hash = '32b7677ce8b6f1471fb0059865f451169934245b'
1112        self.vm.add_args('-dtb', self.workdir + '/day16/vexpress-v2p-ca9.dtb')
1113        self.do_test_advcal_2018('16', tar_hash, 'winter.zImage')
1114
1115    def test_arm_ast2600_debian(self):
1116        """
1117        :avocado: tags=arch:arm
1118        :avocado: tags=machine:rainier-bmc
1119        """
1120        deb_url = ('http://snapshot.debian.org/archive/debian/'
1121                   '20220606T211338Z/'
1122                   'pool/main/l/linux/'
1123                   'linux-image-5.17.0-2-armmp_5.17.6-1%2Bb1_armhf.deb')
1124        deb_hash = '8acb2b4439faedc2f3ed4bdb2847ad4f6e0491f73debaeb7f660c8abe4dcdc0e'
1125        deb_path = self.fetch_asset(deb_url, asset_hash=deb_hash,
1126                                    algorithm='sha256')
1127        kernel_path = self.extract_from_deb(deb_path, '/boot/vmlinuz-5.17.0-2-armmp')
1128        dtb_path = self.extract_from_deb(deb_path,
1129                '/usr/lib/linux-image-5.17.0-2-armmp/aspeed-bmc-ibm-rainier.dtb')
1130
1131        self.vm.set_console()
1132        self.vm.add_args('-kernel', kernel_path,
1133                         '-dtb', dtb_path,
1134                         '-net', 'nic')
1135        self.vm.launch()
1136        self.wait_for_console_pattern("Booting Linux on physical CPU 0xf00")
1137        self.wait_for_console_pattern("SMP: Total of 2 processors activated")
1138        self.wait_for_console_pattern("No filesystem could mount root")
1139
1140    def test_m68k_mcf5208evb(self):
1141        """
1142        :avocado: tags=arch:m68k
1143        :avocado: tags=machine:mcf5208evb
1144        """
1145        tar_hash = 'ac688fd00561a2b6ce1359f9ff6aa2b98c9a570c'
1146        self.do_test_advcal_2018('07', tar_hash, 'sanity-clause.elf')
1147
1148    def test_or1k_sim(self):
1149        """
1150        :avocado: tags=arch:or1k
1151        :avocado: tags=machine:or1k-sim
1152        """
1153        tar_hash = '20334cdaf386108c530ff0badaecc955693027dd'
1154        self.do_test_advcal_2018('20', tar_hash, 'vmlinux')
1155
1156    def test_nios2_10m50(self):
1157        """
1158        :avocado: tags=arch:nios2
1159        :avocado: tags=machine:10m50-ghrd
1160        """
1161        tar_hash = 'e4251141726c412ac0407c5a6bceefbbff018918'
1162        self.do_test_advcal_2018('14', tar_hash, 'vmlinux.elf')
1163
1164    def test_ppc64_e500(self):
1165        """
1166        :avocado: tags=arch:ppc64
1167        :avocado: tags=machine:ppce500
1168        :avocado: tags=cpu:e5500
1169        :avocado: tags=accel:tcg
1170        """
1171        self.require_accelerator("tcg")
1172        tar_hash = '6951d86d644b302898da2fd701739c9406527fe1'
1173        self.do_test_advcal_2018('19', tar_hash, 'uImage')
1174
1175    def do_test_ppc64_powernv(self, proc):
1176        self.require_accelerator("tcg")
1177        images_url = ('https://github.com/open-power/op-build/releases/download/v2.7/')
1178
1179        kernel_url = images_url + 'zImage.epapr'
1180        kernel_hash = '0ab237df661727e5392cee97460e8674057a883c5f74381a128fa772588d45cd'
1181        kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash,
1182                                       algorithm='sha256')
1183        self.vm.set_console()
1184        self.vm.add_args('-kernel', kernel_path,
1185                         '-append', 'console=tty0 console=hvc0',
1186                         '-device', 'pcie-pci-bridge,id=bridge1,bus=pcie.1,addr=0x0',
1187                         '-device', 'nvme,bus=pcie.2,addr=0x0,serial=1234',
1188                         '-device', 'e1000e,bus=bridge1,addr=0x3',
1189                         '-device', 'nec-usb-xhci,bus=bridge1,addr=0x2')
1190        self.vm.launch()
1191
1192        self.wait_for_console_pattern("CPU: " + proc + " generation processor")
1193        self.wait_for_console_pattern("zImage starting: loaded")
1194        self.wait_for_console_pattern("Run /init as init process")
1195        self.wait_for_console_pattern("Creating 1 MTD partitions")
1196
1197    def test_ppc_powernv8(self):
1198        """
1199        :avocado: tags=arch:ppc64
1200        :avocado: tags=machine:powernv8
1201        :avocado: tags=accel:tcg
1202        """
1203        self.do_test_ppc64_powernv('P8')
1204
1205    def test_ppc_powernv9(self):
1206        """
1207        :avocado: tags=arch:ppc64
1208        :avocado: tags=machine:powernv9
1209        :avocado: tags=accel:tcg
1210        """
1211        self.do_test_ppc64_powernv('P9')
1212
1213    def test_ppc_g3beige(self):
1214        """
1215        :avocado: tags=arch:ppc
1216        :avocado: tags=machine:g3beige
1217        :avocado: tags=accel:tcg
1218        """
1219        # TODO: g3beige works with kvm_pr but we don't have a
1220        # reliable way ATM (e.g. looking at /proc/modules) to detect
1221        # whether we're running kvm_hv or kvm_pr. For now let's
1222        # disable this test if we don't have TCG support.
1223        self.require_accelerator("tcg")
1224        tar_hash = 'e0b872a5eb8fdc5bed19bd43ffe863900ebcedfc'
1225        self.vm.add_args('-M', 'graphics=off')
1226        self.do_test_advcal_2018('15', tar_hash, 'invaders.elf')
1227
1228    def test_ppc_mac99(self):
1229        """
1230        :avocado: tags=arch:ppc
1231        :avocado: tags=machine:mac99
1232        :avocado: tags=accel:tcg
1233        """
1234        # TODO: mac99 works with kvm_pr but we don't have a
1235        # reliable way ATM (e.g. looking at /proc/modules) to detect
1236        # whether we're running kvm_hv or kvm_pr. For now let's
1237        # disable this test if we don't have TCG support.
1238        self.require_accelerator("tcg")
1239        tar_hash = 'e0b872a5eb8fdc5bed19bd43ffe863900ebcedfc'
1240        self.vm.add_args('-M', 'graphics=off')
1241        self.do_test_advcal_2018('15', tar_hash, 'invaders.elf')
1242
1243    # This test has a 6-10% failure rate on various hosts that look
1244    # like issues with a buggy kernel. As a result we don't want it
1245    # gating releases on Gitlab.
1246    @skipIf(os.getenv('GITLAB_CI'), 'Running on GitLab')
1247    def test_sh4_r2d(self):
1248        """
1249        :avocado: tags=arch:sh4
1250        :avocado: tags=machine:r2d
1251        """
1252        tar_hash = 'fe06a4fd8ccbf2e27928d64472939d47829d4c7e'
1253        self.vm.add_args('-append', 'console=ttySC1')
1254        self.do_test_advcal_2018('09', tar_hash, 'zImage', console=1)
1255
1256    def test_sparc_ss20(self):
1257        """
1258        :avocado: tags=arch:sparc
1259        :avocado: tags=machine:SS-20
1260        """
1261        tar_hash = 'b18550d5d61c7615d989a06edace051017726a9f'
1262        self.do_test_advcal_2018('11', tar_hash, 'zImage.elf')
1263
1264    def test_xtensa_lx60(self):
1265        """
1266        :avocado: tags=arch:xtensa
1267        :avocado: tags=machine:lx60
1268        :avocado: tags=cpu:dc233c
1269        """
1270        tar_hash = '49e88d9933742f0164b60839886c9739cb7a0d34'
1271        self.do_test_advcal_2018('02', tar_hash, 'santas-sleigh-ride.elf')
1272