1# Copyright 2019 Google LLC
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5"""FAFT configuration overrides for Sarien."""
6
7class Values(object):
8    """FAFT config values for Sarien."""
9    firmware_screen = 15
10    delay_reboot_to_ping = 40
11    hold_pwr_button_poweron = 1.2
12    has_lid = True
13    lid_wake_from_power_off = False
14    spi_voltage = 'pp3300'
15    # Not a Chrome EC, do not expect keyboard via EC
16    chrome_ec = False
17    ec_capability = []
18    has_keyboard = False
19    # Temporary until switch to power button
20    rec_button_dev_switch = True
21    smm_store = False
22    # The EC image is stored in the AP SPI chip, so flashrom -p ec won't work.
23    ap_access_ec_flash = False
24    # Depthcharge USB stack can drop keys that come in too fast and get stuck
25    # exiting developer mode if the delay for confirmation screen is too short.
26    confirm_screen = 11
27