Skip to content

Commit

Permalink
Fix polling timeouts for exp_omi_train and exp_check_for_ready
Browse files Browse the repository at this point in the history
Change-Id: I9235ac7d70c25b4265fd065d83586fa7b6a12379
Original-Change-Id: Ifb260bb167dc254405884b12bf55246826d6b3bb
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/80152
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: STEPHEN GLANCY <sglancy@us.ibm.com>
Reviewed-by: Mark Pizzutillo <mark.pizzutillo@ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: RYAN P. KING <rpking@us.ibm.com>
Reviewed-by: Louis Stermole <stermole@us.ibm.com>
Dev-Ready: Louis Stermole <stermole@us.ibm.com>
Reviewed-by: Jennifer A Stofer <stofer@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/81021
Reviewed-by: RAJA DAS <rajadas2@in.ibm.com>
Tested-by: RAJA DAS <rajadas2@in.ibm.com>
  • Loading branch information
stermole authored and RAJA DAS committed Jul 25, 2019
1 parent 117e3fb commit 5c3f1d9
Showing 1 changed file with 26 additions and 8 deletions.
Expand Up @@ -94,14 +94,32 @@ namespace i2c
///
enum cmd_id : uint8_t
{
FW_BOOT_CONFIG = 0x01,
FW_STATUS = 0x02,
FW_REG_ADDR_LATCH = 0x03,
FW_REG_READ = 0x04,
FW_REG_WRITE = 0x05,
FW_DOWNLOAD = 0x06,
FW_CONT_REG_READ = 0x07,
FW_CONT_REG_WRITE = 0x08,
FW_BOOT_CONFIG = 0x01,
FW_STATUS = 0x02,
FW_REG_ADDR_LATCH = 0x03,
FW_REG_READ = 0x04,
FW_REG_WRITE = 0x05,
FW_DOWNLOAD = 0x06,
FW_CONT_REG_READ = 0x07,
FW_CONT_REG_WRITE = 0x08,
FW_BYPASS_4SEC_TIMEOUT = 0x09,
FW_PQM_LANE_SET = 0x0A,
FW_PQM_LANE_GET = 0x0B,
FW_PQM_FREQ_SET = 0x0C,
FW_PQM_FREQ_GET = 0x0D,
FW_PQM_LANE_TRAINING = 0x0E,
FW_PQM_TRAINING_RESET = 0x0F,
FW_PQM_RX_ADAPTATION_OBJ_READ = 0x10,
FW_PQM_RX_CALIBRATION_VALUE_READ = 0x11,
FW_PQM_CSU_CALIBRATION_VALUE_STATUS_READ = 0x12,
FW_PQM_PRBS_PATTERN_MODE_SET = 0x13,
FW_PQM_PRBS_USER_DEFINED_PATTERN_SET = 0x14,
FW_PQM_PRBS_MONITOR_CONTROL = 0x15,
FW_PQM_PRBS_GENERATOR_CONTROL = 0x16,
FW_PQM_PRBS_ERR_COUNT_READ = 0x17,
FW_PQM_HORIZONTAL_BATHTUB_GET = 0x18,
FW_PQM_VERTICAL_BATHTUB_GET = 0x19,
FW_PQM_2D_BATHTUB_GET = 0x1A,
};

///
Expand Down

0 comments on commit 5c3f1d9

Please sign in to comment.