blob: 27834b55cdd96e707fdffb6c9ce429ea34db2a09 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0
Stephen Warren10e50632016-01-15 11:15:24 -07002# Copyright (c) 2015 Stephen Warren
3# Copyright (c) 2015-2016, NVIDIA CORPORATION. All rights reserved.
Stephen Warren10e50632016-01-15 11:15:24 -07004
5# Logic to interact with U-Boot running on real hardware, typically via a
6# physical serial port.
7
8import sys
9from u_boot_spawn import Spawn
10from u_boot_console_base import ConsoleBase
11
12class ConsoleExecAttach(ConsoleBase):
Stephen Warren75e731e2016-01-26 13:41:30 -070013 """Represents a physical connection to a U-Boot console, typically via a
Stephen Warren10e50632016-01-15 11:15:24 -070014 serial port. This implementation executes a sub-process to attach to the
15 console, expecting that the stdin/out of the sub-process will be forwarded
16 to/from the physical hardware. This approach isolates the test infra-
17 structure from the user-/installation-specific details of how to
Stephen Warren75e731e2016-01-26 13:41:30 -070018 communicate with, and the identity of, serial ports etc."""
Stephen Warren10e50632016-01-15 11:15:24 -070019
20 def __init__(self, log, config):
Stephen Warren75e731e2016-01-26 13:41:30 -070021 """Initialize a U-Boot console connection.
Stephen Warren10e50632016-01-15 11:15:24 -070022
23 Args:
24 log: A multiplexed_log.Logfile instance.
25 config: A "configuration" object as defined in conftest.py.
26
27 Returns:
28 Nothing.
Stephen Warren75e731e2016-01-26 13:41:30 -070029 """
Stephen Warren10e50632016-01-15 11:15:24 -070030
31 # The max_fifo_fill value might need tweaking per-board/-SoC?
32 # 1 would be safe anywhere, but is very slow (a pexpect issue?).
33 # 16 is a common FIFO size.
34 # HW flow control would mean this could be infinite.
35 super(ConsoleExecAttach, self).__init__(log, config, max_fifo_fill=16)
36
Stephen Warrene3f2a502016-02-03 16:46:34 -070037 with self.log.section('flash'):
38 self.log.action('Flashing U-Boot')
39 cmd = ['u-boot-test-flash', config.board_type, config.board_identity]
40 runner = self.log.get_runner(cmd[0], sys.stdout)
41 runner.run(cmd)
42 runner.close()
43 self.log.status_pass('OK')
Stephen Warren10e50632016-01-15 11:15:24 -070044
45 def get_spawn(self):
Stephen Warren75e731e2016-01-26 13:41:30 -070046 """Connect to a fresh U-Boot instance.
Stephen Warren10e50632016-01-15 11:15:24 -070047
48 The target board is reset, so that U-Boot begins running from scratch.
49
50 Args:
51 None.
52
53 Returns:
54 A u_boot_spawn.Spawn object that is attached to U-Boot.
Stephen Warren75e731e2016-01-26 13:41:30 -070055 """
Stephen Warren10e50632016-01-15 11:15:24 -070056
57 args = [self.config.board_type, self.config.board_identity]
58 s = Spawn(['u-boot-test-console'] + args)
59
Stephen Warren65503db2016-02-10 16:54:37 -070060 try:
61 self.log.action('Resetting board')
62 cmd = ['u-boot-test-reset'] + args
63 runner = self.log.get_runner(cmd[0], sys.stdout)
64 runner.run(cmd)
65 runner.close()
66 except:
67 s.close()
68 raise
Stephen Warren10e50632016-01-15 11:15:24 -070069
70 return s