Skip to content

Commit

Permalink
lib: Add Gen5 MRPC IDs into gasop_noretry_cmds
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvin-cao committed Jul 14, 2023
1 parent 4e9a1ac commit a7923cc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/platform/gasops.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,13 @@ static const struct no_retry_struct gasop_noretry_cmds[] = {
[MRPC_SECURE_STATE_SET] = {1, 0, NULL},
[MRPC_BOOTUP_RESUME] = {1, 0, NULL},
[MRPC_DBG_UNLOCK] = {1, 0, NULL},
[MRPC_SECURITY_CONFIG_SET_GEN5] = {1, 0, NULL},
[MRPC_FW_TX] = {1, 1, fw_toggle_noretry_subcmds},
[MRPC_SECURITY_CONFIG_SET_GEN5] = {1, 0, NULL},
[MRPC_KMSK_ENTRY_SET_GEN5] = {1, 0, NULL},
[MRPC_SECURE_STATE_SET_GEN5] = {1, 0, NULL},
[MRPC_BOOTUP_RESUME_GEN5] = {1, 0, NULL},
[MRPC_DBG_UNLOCK_GEN5] = {1, 0, NULL},
[MRPC_FW_TX_GEN5] = {1, 1, fw_toggle_noretry_subcmds},
};
static const int gasop_noretry_cmds_count = sizeof(gasop_noretry_cmds) /
sizeof(struct no_retry_struct);
Expand Down

0 comments on commit a7923cc

Please sign in to comment.