# Copyright 2016 The Chromium OS Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. import logging import re from collections import defaultdict from autotest_lib.client.common_lib import error from autotest_lib.server.cros.faft.firmware_test import FirmwareTest from autotest_lib.server.cros.servo import pd_console class firmware_PDProtocol(FirmwareTest): """ Servo based USB PD protocol test. A charger must be connected to the DUT for this test. This test checks that when an appropriate zinger charger is connected that the PD is properly negotiated in dev mode and when booted from a test image through recovery that the PD is not negotiated. Example: PD Successfully negotiated - ServoV4 in SRC_READY or SNK_READY state PD not negotiated - ServoV4 in SRC_DISCOVERY or SNK_DISCOVERY state """ version = 1 NEEDS_SERVO_USB = True PD_NOT_SUPPORTED_PATTERN = 'INVALID_COMMAND' ECTOOL_CMD_DICT = defaultdict(lambda: 'ectool usbpdpower') def initialize(self, host, cmdline_args, ec_wp=None): """Initialize the test""" super(firmware_PDProtocol, self).initialize(host, cmdline_args, ec_wp=ec_wp) self.ECTOOL_CMD_DICT['samus'] = 'ectool --dev=1 usbpdpower' self.current_board = self.servo.get_board(); self.check_if_pd_supported() self.switcher.setup_mode('dev') # The USB disk is used for recovery. But this test wants a fine-grained # control, i.e. swapping the role just before booting into recovery, # not swapping here. So set used_for_recovery=False. self.setup_usbkey(usbkey=True, host=False, used_for_recovery=False) self.original_dev_boot_usb = self.faft_client.system.get_dev_boot_usb() logging.info('Original dev_boot_usb value: %s', str(self.original_dev_boot_usb)) self.hw_wp = self.servo.get('fw_wp_state') self.sw_wp = self.faft_client.ec.get_write_protect_status()['enabled'] logging.info('hw_wp=%s, sw_wp=%s', self.hw_wp, self.sw_wp) def cleanup(self): """Cleanup the test""" self.ensure_dev_internal_boot(self.original_dev_boot_usb) super(firmware_PDProtocol, self).cleanup() def check_if_pd_supported(self): """ Checks if the DUT responds to ectool usbpdpower and skips the test if it isn't supported on the device. """ output = self.run_command(self.ECTOOL_CMD_DICT[self.current_board]) if (not output or self.check_ec_output(output, self.PD_NOT_SUPPORTED_PATTERN)): raise error.TestNAError("PD not supported skipping test.") def boot_to_recovery(self): """Boot device into recovery mode.""" logging.info('Reboot into Recovery...') self.switcher.reboot_to_mode(to_mode='rec') self.check_state((self.checkers.crossystem_checker, {'mainfw_type': 'recovery'})) def run_command(self, command): """Runs the specified command and returns the output as a list of strings. @param command: The command to run on the DUT @return A list of strings of the command output """ logging.info('Command to run: %s', command) output = self.faft_client.system.run_shell_command_get_output(command) logging.info('Command output: %s', output) return output def check_ec_output(self, output, pattern): """Checks if any line in the output matches the given pattern. @param output: A list of strings containg the output to search @param pattern: The regex to search the output for @return True upon first match found or False """ logging.info('Checking %s for %s.', output, pattern) for line in output: if bool(re.search(pattern, line)): return True return False def run_once(self): """Main test logic""" # TODO(b/35573842): Refactor to use PDPortPartner to probe the port self.pdtester_port = 1 if 'servo_v4' in self.pdtester.servo_type else 0 self.pdtester_pd_utils = pd_console.create_pd_console_utils( self.pdtester) self.ensure_dev_internal_boot(self.original_dev_boot_usb) # Check servo_v4 is negotiated if self.pdtester_pd_utils.is_disconnected(self.pdtester_port): raise error.TestFail('PD not connected') # TODO(b:152148025): Directly set role as pdsnkdts might fail the # PD communication. In short term, we could use PR SWAP instead, and # should also fix the TCPM for handling SRCDTS -> SNKDTS case. self.set_servo_v4_role_to_snk(pd_comm=True) self.boot_to_recovery() # Check PD is not negotiated if (not self.pdtester_pd_utils.is_snk_discovery_state(self.pdtester_port)): raise error.TestFail( 'Expect PD to be disabled, WP (HW/SW) %s/%s', self.hw_wp, self.sw_wp) # Check WP status. Only both SW/HW WP on should pass the test. if (not self.sw_wp) or ('off' in self.hw_wp): raise error.TestFail( 'Expect HW and SW WP on, got hw_wp=%s, sw_wp=%s' % (self.hw_wp, self.sw_wp))