Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions inc/saiport.h
Original file line number Diff line number Diff line change
Expand Up @@ -3481,6 +3481,18 @@ typedef enum _sai_port_attr_t
*/
SAI_PORT_ATTR_APSU_ISL_READY,

/**
* @brief Link down debounce time in microseconds
*
* 0 means no delay time so link down events are immediately delivered as usual
* This attribute overrides the switch level debounce configuration
Comment thread
JaiOCP marked this conversation as resolved.
*
* @type sai_uint32_t
* @flags CREATE_AND_SET
* @default 0
*/
SAI_PORT_ATTR_LINK_DOWN_DEBOUNCE_TIMEOUT,
Comment thread
JaiOCP marked this conversation as resolved.

/**
* @brief End of attributes
*/
Expand Down
27 changes: 27 additions & 0 deletions inc/saiswitch.h
Original file line number Diff line number Diff line change
Expand Up @@ -3652,6 +3652,33 @@ typedef enum _sai_switch_attr_t
*/
SAI_SWITCH_ATTR_TAM_EVENT_LEARN_NOTIFY,

/**
* @brief Link down debounce time in microseconds
*
* 0 means no delay time so link down events are immediately delivered as usual
*
* @type sai_uint32_t
* @flags CREATE_AND_SET
* @default 0
*/
SAI_SWITCH_ATTR_LINK_DOWN_DEBOUNCE_TIMEOUT,

/**
* @brief Link down debounce timeout values supported in microseconds
*
* @type sai_u32_list_t
* @flags READ_ONLY
*/
SAI_SWITCH_ATTR_LINK_DOWN_DEBOUNCE_TIMEOUT_INTEVALS,

/**
* @brief Link up debounce timeout values supported in microseconds
*
* @type sai_u32_list_t
* @flags READ_ONLY
*/
SAI_SWITCH_ATTR_LINK_UP_DEBOUNCE_TIMEOUT_INTEVALS,

/**
* @brief End of attributes
*/
Expand Down
Loading