master/fsm_soe.c
changeset 2595 d3c85c7c9e56
parent 2591 23b360e4a530
equal deleted inserted replaced
2594:9b33888de6c3 2595:d3c85c7c9e56
    41 
    41 
    42 /*****************************************************************************/
    42 /*****************************************************************************/
    43 
    43 
    44 /** SoE operations
    44 /** SoE operations
    45  */
    45  */
    46 enum ec_soe_opcodes {
    46 enum {
    47     OPCODE_READ_REQUEST   = 0x01, /**< Read request. */
    47     OPCODE_READ_REQUEST   = 0x01, /**< Read request. */
    48     OPCODE_READ_RESPONSE  = 0x02, /**< Read response. */
    48     OPCODE_READ_RESPONSE  = 0x02, /**< Read response. */
    49     OPCODE_WRITE_REQUEST  = 0x03, /**< Write request. */
    49     OPCODE_WRITE_REQUEST  = 0x03, /**< Write request. */
    50     OPCODE_WRITE_RESPONSE = 0x04  /**< Write response. */
    50     OPCODE_WRITE_RESPONSE = 0x04  /**< Write response. */
    51 };
    51 };