blob: 27c6db8d7190442ab292329d645b58ca16c7ce4d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0
Stephen Warrend2015062016-01-15 11:15:24 -07002# Copyright (c) 2015 Stephen Warren
3# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
Stephen Warrend2015062016-01-15 11:15:24 -07004
Heinrich Schuchardt6e6d37f2021-11-23 00:01:48 +01005"""
6Logic to interact with the sandbox port of U-Boot, running as a sub-process.
7"""
Stephen Warrend2015062016-01-15 11:15:24 -07008
9import time
10from u_boot_spawn import Spawn
11from u_boot_console_base import ConsoleBase
12
13class ConsoleSandbox(ConsoleBase):
Stephen Warrene8debf32016-01-26 13:41:30 -070014 """Represents a connection to a sandbox U-Boot console, executed as a sub-
15 process."""
Stephen Warrend2015062016-01-15 11:15:24 -070016
17 def __init__(self, log, config):
Stephen Warrene8debf32016-01-26 13:41:30 -070018 """Initialize a U-Boot console connection.
Stephen Warrend2015062016-01-15 11:15:24 -070019
20 Args:
21 log: A multiplexed_log.Logfile instance.
22 config: A "configuration" object as defined in conftest.py.
23
24 Returns:
25 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -070026 """
Stephen Warrend2015062016-01-15 11:15:24 -070027
28 super(ConsoleSandbox, self).__init__(log, config, max_fifo_fill=1024)
Simon Glass20d44402018-11-15 18:44:00 -070029 self.sandbox_flags = []
Simon Glassee93f612022-04-27 13:47:56 -060030 self.use_dtb = True
Stephen Warrend2015062016-01-15 11:15:24 -070031
32 def get_spawn(self):
Stephen Warrene8debf32016-01-26 13:41:30 -070033 """Connect to a fresh U-Boot instance.
Stephen Warrend2015062016-01-15 11:15:24 -070034
35 A new sandbox process is created, so that U-Boot begins running from
36 scratch.
37
38 Args:
39 None.
40
41 Returns:
42 A u_boot_spawn.Spawn object that is attached to U-Boot.
Stephen Warrene8debf32016-01-26 13:41:30 -070043 """
Stephen Warrend2015062016-01-15 11:15:24 -070044
Simon Glassa8117792016-07-04 11:58:40 -060045 bcfg = self.config.buildconfig
46 config_spl = bcfg.get('config_spl', 'n') == 'y'
Simon Glass313438c2022-04-30 00:56:55 -060047 config_vpl = bcfg.get('config_vpl', 'n') == 'y'
48 if config_vpl:
49 # Run TPL first, which runs VPL
50 fname = '/tpl/u-boot-tpl'
51 else:
52 fname = '/spl/u-boot-spl' if config_spl else '/u-boot'
Paul Burtondffd56d2017-09-14 14:34:43 -070053 print(fname)
Stephen Warren89ab8412016-02-04 16:11:50 -070054 cmd = []
55 if self.config.gdbserver:
56 cmd += ['gdbserver', self.config.gdbserver]
Simon Glassee93f612022-04-27 13:47:56 -060057 cmd += [self.config.build_dir + fname, '-v']
58 if self.use_dtb:
59 cmd += ['-d', self.config.dtb]
Simon Glass20d44402018-11-15 18:44:00 -070060 cmd += self.sandbox_flags
Stephen Warrend27f2fc2016-01-27 23:57:53 -070061 return Spawn(cmd, cwd=self.config.source_dir)
Stephen Warrend2015062016-01-15 11:15:24 -070062
Simon Glassee93f612022-04-27 13:47:56 -060063 def restart_uboot_with_flags(self, flags, expect_reset=False, use_dtb=True):
Simon Glass20d44402018-11-15 18:44:00 -070064 """Run U-Boot with the given command-line flags
65
66 Args:
67 flags: List of flags to pass, each a string
Masami Hiramatsue7233c92022-02-16 15:16:02 +090068 expect_reset: Boolean indication whether this boot is expected
69 to be reset while the 1st boot process after main boot before
70 prompt. False by default.
Simon Glassee93f612022-04-27 13:47:56 -060071 use_dtb: True to use a device tree file, False to run without one
Simon Glass20d44402018-11-15 18:44:00 -070072
73 Returns:
74 A u_boot_spawn.Spawn object that is attached to U-Boot.
75 """
76
77 try:
78 self.sandbox_flags = flags
Simon Glassee93f612022-04-27 13:47:56 -060079 self.use_dtb = use_dtb
Masami Hiramatsue7233c92022-02-16 15:16:02 +090080 return self.restart_uboot(expect_reset)
Simon Glass20d44402018-11-15 18:44:00 -070081 finally:
82 self.sandbox_flags = []
Simon Glassee93f612022-04-27 13:47:56 -060083 self.use_dtb = True
Simon Glass20d44402018-11-15 18:44:00 -070084
Stephen Warrend2015062016-01-15 11:15:24 -070085 def kill(self, sig):
Stephen Warrene8debf32016-01-26 13:41:30 -070086 """Send a specific Unix signal to the sandbox process.
Stephen Warrend2015062016-01-15 11:15:24 -070087
88 Args:
89 sig: The Unix signal to send to the process.
90
91 Returns:
92 Nothing.
Stephen Warrene8debf32016-01-26 13:41:30 -070093 """
Stephen Warrend2015062016-01-15 11:15:24 -070094
Stephen Warrend2015062016-01-15 11:15:24 -070095 self.log.action('kill %d' % sig)
96 self.p.kill(sig)
97
98 def validate_exited(self):
Stephen Warrene8debf32016-01-26 13:41:30 -070099 """Determine whether the sandbox process has exited.
Stephen Warrend2015062016-01-15 11:15:24 -0700100
101 If required, this function waits a reasonable time for the process to
102 exit.
103
104 Args:
105 None.
106
107 Returns:
108 Boolean indicating whether the process has exited.
Stephen Warrene8debf32016-01-26 13:41:30 -0700109 """
Stephen Warrend2015062016-01-15 11:15:24 -0700110
111 p = self.p
112 self.p = None
Paul Burtonb8c45552017-09-14 14:34:44 -0700113 for i in range(100):
Stephen Warrend2015062016-01-15 11:15:24 -0700114 ret = not p.isalive()
115 if ret:
116 break
117 time.sleep(0.1)
118 p.close()
119 return ret