Lines Matching refs:servo_args
666 servo_args = {k: v for k, v in info.attributes.iteritems()
669 if SERVO_PORT_ATTR in servo_args:
671 servo_args[SERVO_PORT_ATTR] = int(servo_args[SERVO_PORT_ATTR])
674 servo_args[SERVO_PORT_ATTR])
676 servo_args.pop(SERVO_HOST_ATTR, None)
679 servo_args[SERVO_BOARD_ATTR] = _map_afe_board_to_servo_board(info.board)
681 servo_args[SERVO_MODEL_ATTR] = info.model
682 return servo_args if SERVO_HOST_ATTR in servo_args else None
685 def _tweak_args_for_ssp_moblab(servo_args): argument
686 if servo_args[SERVO_HOST_ATTR] in ['localhost', '127.0.0.1']:
687 servo_args[SERVO_HOST_ATTR] = _CONFIG.get_config_value(
691 def create_servo_host(dut, servo_args, try_lab_servo=False, argument
746 servo_dependency = servo_args is not None
755 servo_args,
758 servo_args = servo_args_override
760 if servo_args is None:
763 if SERVO_HOST_ATTR not in servo_args:
765 SERVO_HOST_ATTR, servo_args)
768 not servo_host_is_up(servo_args[SERVO_HOST_ATTR])):
773 is_in_lab=(servo_args
775 servo_args[SERVO_HOST_ATTR])),
776 **servo_args